effect 3.13.3 → 3.13.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/Schema.js.map +1 -1
- package/dist/cjs/internal/version.js +1 -1
- package/dist/dts/Schema.d.ts +7 -0
- package/dist/dts/Schema.d.ts.map +1 -1
- package/dist/esm/Schema.js.map +1 -1
- package/dist/esm/internal/version.js +1 -1
- package/package.json +1 -1
- package/src/Schema.ts +5 -2
- package/src/internal/version.ts +1 -1
package/package.json
CHANGED
package/src/Schema.ts
CHANGED
|
@@ -9284,9 +9284,12 @@ const extendFields = (a: Struct.Fields, b: Struct.Fields): Struct.Fields => {
|
|
|
9284
9284
|
return out
|
|
9285
9285
|
}
|
|
9286
9286
|
|
|
9287
|
-
/**
|
|
9287
|
+
/**
|
|
9288
|
+
* @category Constructor utils
|
|
9289
|
+
* @since 3.13.4
|
|
9290
|
+
*/
|
|
9288
9291
|
export type MakeOptions = boolean | {
|
|
9289
|
-
readonly disableValidation?: boolean
|
|
9292
|
+
readonly disableValidation?: boolean | undefined
|
|
9290
9293
|
}
|
|
9291
9294
|
|
|
9292
9295
|
function getDisableValidationMakeOption(options: MakeOptions | undefined): boolean {
|
package/src/internal/version.ts
CHANGED