-
-
Notifications
You must be signed in to change notification settings - Fork 509
Open
Labels
Description
What version of Effect is running?
3.12.1
What steps can reproduce the bug?
import { Schema } from "effect"
const foo = Schema.Struct({
bar: Schema.String,
}).pipe(Schema.partial)
const afoo = foo.make({ bar: 'hey' })What is the expected behavior?
I would still expect to be able to make a partial schema
What do you see instead?
make has been removed from the schemas operations.
Additional information
No response
MakhBeth and RubenSmn