Patch Changes
-
#4674
47618c1
Thanks @suddenlyGiovanni! - Improved TsDoc documentation forMutableHashSet
module. -
#4699
6077882
Thanks @gcanti! - Fix JSONSchema generation for record values that includeundefined
, closes #4697.Before
import { JSONSchema, Schema } from "effect" const schema = Schema.partial( Schema.Struct( { foo: Schema.Number }, { key: Schema.String, value: Schema.Number } ) ) console.log(JSON.stringify(JSONSchema.make(schema), null, 2)) // throws
After
import { JSONSchema, Schema } from "effect" const schema = Schema.partial( Schema.Struct( { foo: Schema.Number }, { key: Schema.String, value: Schema.Number } ) ) console.log(JSON.stringify(JSONSchema.make(schema), null, 2)) /* Output: { "$schema": "http://json-schema.org/draft-07/schema#", "type": "object", "required": [], "properties": { "foo": { "type": "number" } }, "additionalProperties": { "type": "number" } } */