@openclaw/feishu 2026.9.4 → 2026.9.5
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/assets/activity.svg +3 -0
- package/assets/icon.png +0 -0
- package/dist/{accounts-cCMNFBKg.js → .setup/accounts-DmU0xYPx.mjs} +1 -1
- package/dist/{app-registration-BI99e_JI.js → .setup/app-registration-Bv4mvauR.mjs} +1 -1
- package/dist/{channel-HDnQAH4Z.js → .setup/channel-C1KrXXJa.mjs} +93 -86
- package/dist/{channel.runtime-B-f6ajOp.js → .setup/channel.runtime-Bizuv7WZ.mjs} +32 -18
- package/dist/{chat-zhIPXu4X.js → .setup/chat-dWJYS63b.mjs} +2 -2
- package/dist/{client-DMbIL3UH.js → .setup/client-DCwNVFZg.mjs} +128 -11
- package/dist/{conversation-id-VYgGQ-GX.js → .setup/conversation-id-H-lUayji.mjs} +49 -14
- package/dist/{monitor-EuNsFn2T.js → .setup/monitor-C69OLzgO.mjs} +4 -4
- package/dist/{monitor.account-CZ7EtqYS.js → .setup/monitor.account-zwHb3HKM.mjs} +68 -52
- package/dist/{probe-D_SatdZl.js → .setup/probe-bdidyhAn.mjs} +2 -2
- package/dist/{reply-delivery-result-C3smdVzb.js → .setup/reply-delivery-result-DFjxGLgX.mjs} +129 -116
- package/dist/.setup/runtime-setter-api-CG-RC4_r.mjs +3 -0
- package/dist/.setup/secret-contract-api-jmCkqVLc.mjs +3 -0
- package/dist/{security-audit-DKfR4Cv3.js → .setup/security-audit-CmiKKfU-.mjs} +1 -1
- package/dist/{session-conversation-DFCIvQK-.js → .setup/session-conversation-ZC6TC1zk.mjs} +1 -1
- package/dist/.setup/setup-api-CTRwX09n.mjs +3 -0
- package/dist/{subagent-hooks-Buadpie_.js → .setup/subagent-hooks-BBfF1hZk.mjs} +3 -19
- package/dist/api.js +29 -15
- package/dist/channel-plugin-api.js +1 -1
- package/dist/contract-api.js +3 -3
- package/dist/doctor-contract-api.js +1 -1
- package/dist/runtime-api.js +1 -1
- package/dist/runtime-setter-api.js +1 -1
- package/dist/secret-contract-api.js +1 -1
- package/dist/security-contract-api.js +1 -1
- package/dist/session-binding-contract-api.js +1 -1
- package/dist/session-key-api.js +1 -1
- package/dist/setup-api.js +1 -1
- package/dist/setup-entry.js +4 -3
- package/dist/subagent-hooks-api.js +1 -1
- package/node_modules/@larksuiteoapi/node-sdk/es/index.js +199 -35
- package/node_modules/@larksuiteoapi/node-sdk/lib/index.js +199 -35
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/CHANGELOG.md +62 -0
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/README.md +233 -5
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/dist/axios.js +387 -89
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/dist/axios.min.js +3 -3
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/dist/axios.min.js.map +1 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/dist/browser/axios.cjs +458 -98
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/dist/esm/axios.js +458 -98
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/dist/esm/axios.min.js +2 -2
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/dist/esm/axios.min.js.map +1 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/dist/node/axios.cjs +568 -116
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/index.d.cts +4 -0
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/index.d.ts +4 -0
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/adapters/fetch.js +64 -11
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/adapters/http.js +134 -50
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/adapters/xhr.js +52 -3
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/core/Axios.js +19 -14
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/core/InterceptorManager.js +107 -8
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/core/buildFullPath.js +1 -13
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/core/dispatchRequest.js +8 -2
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/core/mergeConfig.js +1 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/core/methodList.js +17 -0
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/defaults/index.js +2 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/env/data.js +1 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/helpers/Http2Sessions.js +2 -0
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/helpers/HttpStatusCode.js +11 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/helpers/fromDataURI.js +5 -4
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/helpers/normalizeURLForProtocolCheck.js +24 -0
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/helpers/progressEventReducer.js +1 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/helpers/resolveConfig.js +4 -2
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/helpers/shouldBypassProxy.js +182 -6
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/helpers/throttle.js +3 -2
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/helpers/toFormData.js +14 -21
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/lib/utils.js +134 -13
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/axios/package.json +1 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/README.md +24 -17
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/dist/light/protobuf.js +124 -14
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/dist/light/protobuf.js.map +1 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/dist/light/protobuf.min.js +3 -3
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/dist/light/protobuf.min.js.map +1 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/dist/minimal/protobuf.js +63 -9
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/dist/minimal/protobuf.js.map +1 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/dist/minimal/protobuf.min.js +3 -3
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/dist/minimal/protobuf.min.js.map +1 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/dist/protobuf.js +133 -18
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/dist/protobuf.js.map +1 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/dist/protobuf.min.js +3 -3
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/dist/protobuf.min.js.map +1 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/ext/descriptor.generated.d.ts +7 -0
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/ext/descriptor.js +24 -0
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/ext/protojson.js +14 -4
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/ext/textformat.js +8 -4
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/google/protobuf/descriptor.json +20 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/google/protobuf/descriptor.proto +14 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/index.d.ts +12 -0
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/package.json +1 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/src/decoder.js +31 -2
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/src/enum.js +10 -0
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/src/object.js +5 -2
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/src/parse.js +9 -4
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/src/reader.js +61 -7
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/src/type.js +10 -0
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/protobufjs/src/wrappers.js +5 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/qs/.github/THREAT_MODEL.md +3 -3
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/qs/CHANGELOG.md +15 -0
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/qs/README.md +19 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/qs/dist/qs.js +21 -21
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/qs/eslint.config.mjs +1 -1
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/qs/lib/parse.js +3 -4
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/qs/lib/stringify.js +23 -8
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/qs/lib/utils.js +10 -3
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/qs/package.json +4 -4
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/qs/test/parse.js +192 -3
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/qs/test/stringify.js +317 -0
- package/node_modules/@larksuiteoapi/node-sdk/node_modules/qs/test/utils.js +12 -0
- package/node_modules/@larksuiteoapi/node-sdk/package.json +1 -1
- package/node_modules/@larksuiteoapi/node-sdk/types/index.d.ts +35 -0
- package/node_modules/typebox/build/compile/validator.d.mts +1 -1
- package/node_modules/typebox/build/compile/validator.mjs +1 -1
- package/node_modules/typebox/build/format/idna/idn-hostname.mjs +7 -5
- package/node_modules/typebox/build/format/iri.mjs +5 -1
- package/node_modules/typebox/build/guard/emit.mjs +2 -4
- package/node_modules/typebox/build/guard/guard.mjs +6 -18
- package/node_modules/typebox/build/guard/string.mjs +16 -24
- package/node_modules/typebox/build/schema/build.mjs +2 -2
- package/node_modules/typebox/build/schema/check.mjs +1 -1
- package/node_modules/typebox/build/schema/compile.d.mts +3 -2
- package/node_modules/typebox/build/schema/compile.mjs +8 -8
- package/node_modules/typebox/build/schema/engine/_context.d.mts +6 -7
- package/node_modules/typebox/build/schema/engine/_context.mjs +23 -15
- package/node_modules/typebox/build/schema/engine/_functions.d.mts +2 -2
- package/node_modules/typebox/build/schema/engine/_functions.mjs +1 -1
- package/node_modules/typebox/build/schema/engine/_reducer.d.mts +3 -3
- package/node_modules/typebox/build/schema/engine/_refine.d.mts +5 -5
- package/node_modules/typebox/build/schema/engine/_refine.mjs +4 -7
- package/node_modules/typebox/build/schema/engine/_stack.d.mts +34 -16
- package/node_modules/typebox/build/schema/engine/_stack.mjs +148 -104
- package/node_modules/typebox/build/schema/engine/additionalItems.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/additionalProperties.d.mts +8 -8
- package/node_modules/typebox/build/schema/engine/additionalProperties.mjs +26 -18
- package/node_modules/typebox/build/schema/engine/allOf.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/allOf.mjs +3 -3
- package/node_modules/typebox/build/schema/engine/anyOf.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/anyOf.mjs +5 -10
- package/node_modules/typebox/build/schema/engine/boolean.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/boolean.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/const.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/const.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/contains.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/contains.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/dependencies.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/dependencies.mjs +3 -6
- package/node_modules/typebox/build/schema/engine/dependentRequired.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/dependentRequired.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/dependentSchemas.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/dynamicRef.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/dynamicRef.mjs +11 -7
- package/node_modules/typebox/build/schema/engine/enum.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/enum.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/exclusiveMaximum.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/exclusiveMaximum.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/exclusiveMinimum.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/exclusiveMinimum.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/format.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/format.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/if.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/if.mjs +7 -15
- package/node_modules/typebox/build/schema/engine/items.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/items.mjs +1 -1
- package/node_modules/typebox/build/schema/engine/maxContains.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/maxContains.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/maxItems.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/maxItems.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/maxLength.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/maxLength.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/maxProperties.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/maxProperties.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/maximum.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/maximum.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/minContains.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/minContains.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/minItems.d.mts +5 -5
- package/node_modules/typebox/build/schema/engine/minItems.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/minLength.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/minLength.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/minProperties.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/minProperties.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/minimum.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/minimum.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/multipleOf.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/multipleOf.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/not.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/not.mjs +4 -8
- package/node_modules/typebox/build/schema/engine/oneOf.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/oneOf.mjs +6 -11
- package/node_modules/typebox/build/schema/engine/pattern.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/pattern.mjs +3 -7
- package/node_modules/typebox/build/schema/engine/patternProperties.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/patternProperties.mjs +1 -1
- package/node_modules/typebox/build/schema/engine/prefixItems.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/prefixItems.mjs +1 -1
- package/node_modules/typebox/build/schema/engine/properties.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/properties.mjs +1 -1
- package/node_modules/typebox/build/schema/engine/propertyNames.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/propertyNames.mjs +4 -10
- package/node_modules/typebox/build/schema/engine/recursiveRef.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/recursiveRef.mjs +11 -7
- package/node_modules/typebox/build/schema/engine/ref.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/ref.mjs +19 -15
- package/node_modules/typebox/build/schema/engine/required.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/required.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/schema.d.mts +7 -7
- package/node_modules/typebox/build/schema/engine/schema.mjs +137 -133
- package/node_modules/typebox/build/schema/engine/type.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/type.mjs +2 -6
- package/node_modules/typebox/build/schema/engine/unevaluatedItems.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/unevaluatedItems.mjs +5 -9
- package/node_modules/typebox/build/schema/engine/unevaluatedProperties.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/unevaluatedProperties.mjs +5 -9
- package/node_modules/typebox/build/schema/engine/uniqueItems.d.mts +4 -4
- package/node_modules/typebox/build/schema/engine/uniqueItems.mjs +2 -6
- package/node_modules/typebox/build/schema/errors.d.mts +2 -2
- package/node_modules/typebox/build/schema/errors.mjs +8 -14
- package/node_modules/typebox/build/schema/intern/index.d.mts +1 -0
- package/node_modules/typebox/build/schema/intern/index.mjs +1 -0
- package/node_modules/typebox/build/schema/intern/intern.d.mts +11 -0
- package/node_modules/typebox/build/schema/intern/intern.mjs +293 -0
- package/node_modules/typebox/build/schema/meta/draft_2019_09.d.mts +2 -0
- package/node_modules/typebox/build/schema/meta/draft_2019_09.mjs +288 -0
- package/node_modules/typebox/build/schema/meta/draft_2020_12.d.mts +2 -0
- package/node_modules/typebox/build/schema/meta/draft_2020_12.mjs +300 -0
- package/node_modules/typebox/build/schema/meta/draft_3.d.mts +2 -0
- package/node_modules/typebox/build/schema/meta/draft_3.mjs +143 -0
- package/node_modules/typebox/build/schema/meta/draft_4.d.mts +2 -0
- package/node_modules/typebox/build/schema/meta/draft_4.mjs +149 -0
- package/node_modules/typebox/build/schema/meta/draft_6.d.mts +2 -0
- package/node_modules/typebox/build/schema/meta/draft_6.mjs +155 -0
- package/node_modules/typebox/build/schema/meta/draft_7.d.mts +2 -0
- package/node_modules/typebox/build/schema/meta/draft_7.mjs +172 -0
- package/node_modules/typebox/build/schema/meta/index.d.mts +2 -0
- package/node_modules/typebox/build/schema/meta/index.mjs +2 -0
- package/node_modules/typebox/build/schema/meta/meta.d.mts +9 -0
- package/node_modules/typebox/build/schema/meta/meta.mjs +15 -0
- package/node_modules/typebox/build/schema/meta/schema.d.mts +6 -0
- package/node_modules/typebox/build/schema/meta/schema.mjs +1 -0
- package/node_modules/typebox/build/schema/parse.d.mts +1 -0
- package/node_modules/typebox/build/schema/parse.mjs +10 -5
- package/node_modules/typebox/build/schema/resolve/resolve.d.mts +8 -3
- package/node_modules/typebox/build/schema/resolve/resolve.mjs +268 -139
- package/node_modules/typebox/build/schema/schema.d.mts +2 -0
- package/node_modules/typebox/build/schema/schema.mjs +2 -0
- package/node_modules/typebox/build/value/errors/errors.d.mts +2 -12
- package/node_modules/typebox/build/value/errors/errors.mjs +2 -7
- package/node_modules/typebox/package.json +1 -1
- package/node_modules/typebox/readme.md +59 -89
- package/node_modules/zod/README.md +27 -0
- package/node_modules/zod/compile.cjs +77 -0
- package/node_modules/zod/compile.d.cts +1 -0
- package/node_modules/zod/compile.d.ts +1 -0
- package/node_modules/zod/compile.js +52 -0
- package/node_modules/zod/index.cjs +2 -2
- package/node_modules/zod/index.d.cts +1 -2
- package/node_modules/zod/index.d.ts +1 -2
- package/node_modules/zod/index.js +5 -2
- package/node_modules/zod/package.json +13 -2
- package/node_modules/zod/src/compile.ts +56 -0
- package/node_modules/zod/src/index.ts +5 -2
- package/node_modules/zod/src/v3/ZodError.ts +22 -12
- package/node_modules/zod/src/v3/tests/error.test.ts +35 -0
- package/node_modules/zod/src/v3/tests/intersection.test.ts +18 -0
- package/node_modules/zod/src/v3/tests/language-server.test.ts +1 -2
- package/node_modules/zod/src/v3/tests/object.test.ts +3 -6
- package/node_modules/zod/src/v3/tests/readonly.test.ts +0 -80
- package/node_modules/zod/src/v3/tests/string.test.ts +6 -0
- package/node_modules/zod/src/v3/types.ts +5 -5
- package/node_modules/zod/src/v4/classic/checks.ts +1 -0
- package/node_modules/zod/src/v4/classic/compat.ts +26 -18
- package/node_modules/zod/src/v4/classic/deep-partial.ts +76 -0
- package/node_modules/zod/src/v4/classic/errors.ts +59 -44
- package/node_modules/zod/src/v4/classic/external.ts +12 -9
- package/node_modules/zod/src/v4/classic/from-json-schema.ts +140 -78
- package/node_modules/zod/src/v4/classic/in-out.ts +45 -0
- package/node_modules/zod/src/v4/classic/index.ts +2 -2
- package/node_modules/zod/src/v4/classic/iso.ts +2 -72
- package/node_modules/zod/src/v4/classic/parse.ts +10 -4
- package/node_modules/zod/src/v4/classic/schemas.ts +452 -262
- package/node_modules/zod/src/v4/classic/tests/apply.test.ts +27 -0
- package/node_modules/zod/src/v4/classic/tests/array.test.ts +2 -2
- package/node_modules/zod/src/v4/classic/tests/assignability.test.ts +135 -0
- package/node_modules/zod/src/v4/classic/tests/bigint.test.ts +30 -1
- package/node_modules/zod/src/v4/classic/tests/catch.test.ts +278 -0
- package/node_modules/zod/src/v4/classic/tests/codec-examples.test.ts +1 -2
- package/node_modules/zod/src/v4/classic/tests/codec.test.ts +2 -1
- package/node_modules/zod/src/v4/classic/tests/continuability.test.ts +2 -2
- package/node_modules/zod/src/v4/classic/tests/credit-card.test.ts +76 -0
- package/node_modules/zod/src/v4/classic/tests/cyclic-data.test.ts +720 -0
- package/node_modules/zod/src/v4/classic/tests/date.test.ts +30 -0
- package/node_modules/zod/src/v4/classic/tests/datetime.test.ts +32 -18
- package/node_modules/zod/src/v4/classic/tests/deep-partial.test.ts +380 -0
- package/node_modules/zod/src/v4/classic/tests/default-locale.test.ts +32 -0
- package/node_modules/zod/src/v4/classic/tests/default.test.ts +46 -0
- package/node_modules/zod/src/v4/classic/tests/detached-methods.test.ts +31 -7
- package/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +155 -13
- package/node_modules/zod/src/v4/classic/tests/enum.test.ts +11 -0
- package/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +112 -2
- package/node_modules/zod/src/v4/classic/tests/error.test.ts +274 -6
- package/node_modules/zod/src/v4/classic/tests/from-json-schema.test.ts +425 -10
- package/node_modules/zod/src/v4/classic/tests/function.test.ts +31 -0
- package/node_modules/zod/src/v4/classic/tests/global-config.test.ts +2 -9
- package/node_modules/zod/src/v4/classic/tests/hash.test.ts +1 -2
- package/node_modules/zod/src/v4/classic/tests/in-out.test.ts +159 -0
- package/node_modules/zod/src/v4/classic/tests/index.test.ts +21 -2
- package/node_modules/zod/src/v4/classic/tests/instance-footprint.test.ts +281 -0
- package/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +47 -0
- package/node_modules/zod/src/v4/classic/tests/intersection.test.ts +136 -0
- package/node_modules/zod/src/v4/classic/tests/issue-schema.test.ts +183 -0
- package/node_modules/zod/src/v4/classic/tests/jitless-allows-eval.test.ts +3 -10
- package/node_modules/zod/src/v4/classic/tests/lazy.test.ts +36 -1
- package/node_modules/zod/src/v4/classic/tests/literal.test.ts +12 -1
- package/node_modules/zod/src/v4/classic/tests/map.test.ts +12 -0
- package/node_modules/zod/src/v4/classic/tests/number.test.ts +46 -9
- package/node_modules/zod/src/v4/classic/tests/object.test.ts +245 -12
- package/node_modules/zod/src/v4/classic/tests/optin-ladder.test.ts +234 -0
- package/node_modules/zod/src/v4/classic/tests/optional.test.ts +49 -16
- package/node_modules/zod/src/v4/classic/tests/partial.test.ts +51 -4
- package/node_modules/zod/src/v4/classic/tests/preprocess-types.test.ts +20 -2
- package/node_modules/zod/src/v4/classic/tests/readonly.test.ts +0 -68
- package/node_modules/zod/src/v4/classic/tests/record.test.ts +186 -18
- package/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +33 -2
- package/node_modules/zod/src/v4/classic/tests/redos.test.ts +68 -0
- package/node_modules/zod/src/v4/classic/tests/refine.test.ts +60 -0
- package/node_modules/zod/src/v4/classic/tests/set.test.ts +9 -0
- package/node_modules/zod/src/v4/classic/tests/string.test.ts +127 -5
- package/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +18 -0
- package/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +11 -2
- package/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +1585 -173
- package/node_modules/zod/src/v4/classic/tests/tuple.test.ts +45 -30
- package/node_modules/zod/src/v4/classic/tests/union.test.ts +39 -2
- package/node_modules/zod/src/v4/classic/tests/validate.test.ts +76 -0
- package/node_modules/zod/src/v4/classic/tests/validations.test.ts +2 -2
- package/node_modules/zod/src/v4/core/api.ts +48 -12
- package/node_modules/zod/src/v4/core/checks.ts +57 -44
- package/node_modules/zod/src/v4/core/compile.ts +2188 -0
- package/node_modules/zod/src/v4/core/core.ts +98 -19
- package/node_modules/zod/src/v4/core/doc.ts +11 -7
- package/node_modules/zod/src/v4/core/errors.ts +115 -24
- package/node_modules/zod/src/v4/core/index.ts +3 -0
- package/node_modules/zod/src/v4/core/json-schema-generator.ts +6 -1
- package/node_modules/zod/src/v4/core/json-schema-processors.ts +257 -93
- package/node_modules/zod/src/v4/core/json-schema.ts +2 -1
- package/node_modules/zod/src/v4/core/memoizer.ts +284 -0
- package/node_modules/zod/src/v4/core/parse.ts +131 -38
- package/node_modules/zod/src/v4/core/regexes.ts +30 -13
- package/node_modules/zod/src/v4/core/registries.ts +2 -2
- package/node_modules/zod/src/v4/core/schemas.ts +759 -461
- package/node_modules/zod/src/v4/core/tests/compile-differential.test.ts +969 -0
- package/node_modules/zod/src/v4/core/tests/compile-global.test.ts +89 -0
- package/node_modules/zod/src/v4/core/tests/compile-off-by-default.test.ts +26 -0
- package/node_modules/zod/src/v4/core/tests/compile-stats.test.ts +34 -0
- package/node_modules/zod/src/v4/core/tests/compile.test.ts +1639 -0
- package/node_modules/zod/src/v4/core/tests/locales/el.test.ts +1 -2
- package/node_modules/zod/src/v4/core/tests/locales/es.test.ts +1 -2
- package/node_modules/zod/src/v4/core/tests/locales/fr.test.ts +3 -3
- package/node_modules/zod/src/v4/core/tests/locales/parity.test.ts +42 -0
- package/node_modules/zod/src/v4/core/tests/locales/tk.test.ts +69 -0
- package/node_modules/zod/src/v4/core/tests/treeshake.test.ts +51 -0
- package/node_modules/zod/src/v4/core/tests/url-no-canparse.test.ts +31 -0
- package/node_modules/zod/src/v4/core/to-json-schema.ts +275 -42
- package/node_modules/zod/src/v4/core/util.ts +268 -42
- package/node_modules/zod/src/v4/core/versions.ts +2 -2
- package/node_modules/zod/src/v4/core/visit.ts +193 -0
- package/node_modules/zod/src/v4/index.ts +3 -3
- package/node_modules/zod/src/v4/locales/ar.ts +3 -0
- package/node_modules/zod/src/v4/locales/az.ts +3 -0
- package/node_modules/zod/src/v4/locales/be.ts +10 -0
- package/node_modules/zod/src/v4/locales/bg.ts +3 -0
- package/node_modules/zod/src/v4/locales/bn.ts +121 -0
- package/node_modules/zod/src/v4/locales/ca.ts +3 -0
- package/node_modules/zod/src/v4/locales/ckb.ts +138 -0
- package/node_modules/zod/src/v4/locales/cs.ts +3 -0
- package/node_modules/zod/src/v4/locales/da.ts +5 -2
- package/node_modules/zod/src/v4/locales/de.ts +3 -0
- package/node_modules/zod/src/v4/locales/el.ts +1 -0
- package/node_modules/zod/src/v4/locales/en.ts +15 -4
- package/node_modules/zod/src/v4/locales/eo.ts +3 -0
- package/node_modules/zod/src/v4/locales/es.ts +2 -0
- package/node_modules/zod/src/v4/locales/fa.ts +3 -0
- package/node_modules/zod/src/v4/locales/fi.ts +3 -0
- package/node_modules/zod/src/v4/locales/fr-CA.ts +3 -0
- package/node_modules/zod/src/v4/locales/fr.ts +19 -14
- package/node_modules/zod/src/v4/locales/gu.ts +121 -0
- package/node_modules/zod/src/v4/locales/he.ts +6 -1
- package/node_modules/zod/src/v4/locales/hi.ts +124 -0
- package/node_modules/zod/src/v4/locales/hr.ts +2 -0
- package/node_modules/zod/src/v4/locales/hu.ts +3 -0
- package/node_modules/zod/src/v4/locales/hy.ts +9 -0
- package/node_modules/zod/src/v4/locales/id.ts +3 -0
- package/node_modules/zod/src/v4/locales/index.ts +10 -0
- package/node_modules/zod/src/v4/locales/is.ts +3 -0
- package/node_modules/zod/src/v4/locales/it.ts +3 -0
- package/node_modules/zod/src/v4/locales/ja.ts +3 -0
- package/node_modules/zod/src/v4/locales/ka.ts +3 -0
- package/node_modules/zod/src/v4/locales/km.ts +3 -0
- package/node_modules/zod/src/v4/locales/kn.ts +124 -0
- package/node_modules/zod/src/v4/locales/ko.ts +3 -0
- package/node_modules/zod/src/v4/locales/lt.ts +2 -0
- package/node_modules/zod/src/v4/locales/mk.ts +3 -0
- package/node_modules/zod/src/v4/locales/ms.ts +3 -0
- package/node_modules/zod/src/v4/locales/ne.ts +126 -0
- package/node_modules/zod/src/v4/locales/nl.ts +3 -0
- package/node_modules/zod/src/v4/locales/nn.ts +119 -0
- package/node_modules/zod/src/v4/locales/no.ts +5 -2
- package/node_modules/zod/src/v4/locales/ota.ts +3 -0
- package/node_modules/zod/src/v4/locales/pl.ts +3 -0
- package/node_modules/zod/src/v4/locales/ps.ts +3 -0
- package/node_modules/zod/src/v4/locales/pt-BR.ts +159 -0
- package/node_modules/zod/src/v4/locales/pt.ts +99 -58
- package/node_modules/zod/src/v4/locales/ro.ts +1 -0
- package/node_modules/zod/src/v4/locales/ru.ts +10 -0
- package/node_modules/zod/src/v4/locales/sk.ts +121 -0
- package/node_modules/zod/src/v4/locales/sl.ts +3 -0
- package/node_modules/zod/src/v4/locales/sv.ts +5 -2
- package/node_modules/zod/src/v4/locales/ta.ts +3 -0
- package/node_modules/zod/src/v4/locales/th.ts +3 -0
- package/node_modules/zod/src/v4/locales/tk.ts +111 -0
- package/node_modules/zod/src/v4/locales/tr.ts +3 -0
- package/node_modules/zod/src/v4/locales/uk.ts +3 -0
- package/node_modules/zod/src/v4/locales/ur.ts +3 -0
- package/node_modules/zod/src/v4/locales/uz.ts +1 -0
- package/node_modules/zod/src/v4/locales/vi.ts +3 -0
- package/node_modules/zod/src/v4/locales/yo.ts +3 -0
- package/node_modules/zod/src/v4/locales/zh-CN.ts +3 -0
- package/node_modules/zod/src/v4/locales/zh-TW.ts +3 -0
- package/node_modules/zod/src/v4/mini/checks.ts +1 -0
- package/node_modules/zod/src/v4/mini/deep-partial.ts +73 -0
- package/node_modules/zod/src/v4/mini/external.ts +10 -1
- package/node_modules/zod/src/v4/mini/in-out.ts +45 -0
- package/node_modules/zod/src/v4/mini/parse.ts +2 -0
- package/node_modules/zod/src/v4/mini/schemas.ts +135 -56
- package/node_modules/zod/src/v4/mini/tests/apply.test.ts +33 -0
- package/node_modules/zod/src/v4/mini/tests/assignability.test.ts +62 -1
- package/node_modules/zod/src/v4/mini/tests/checks.test.ts +14 -0
- package/node_modules/zod/src/v4/mini/tests/codec.test.ts +35 -1
- package/node_modules/zod/src/v4/mini/tests/cyclic-data.test.ts +84 -0
- package/node_modules/zod/src/v4/mini/tests/deep-partial.test.ts +54 -0
- package/node_modules/zod/src/v4/mini/tests/error.test.ts +23 -4
- package/node_modules/zod/src/v4/mini/tests/functions.test.ts +9 -0
- package/node_modules/zod/src/v4/mini/tests/index.test.ts +72 -5
- package/node_modules/zod/src/v4/mini/tests/number.test.ts +14 -0
- package/node_modules/zod/src/v4/mini/tests/object.test.ts +65 -0
- package/node_modules/zod/src/v4/mini/tests/string.test.ts +21 -0
- package/node_modules/zod/v3/ZodError.cjs +22 -12
- package/node_modules/zod/v3/ZodError.d.cts +1 -1
- package/node_modules/zod/v3/ZodError.d.ts +1 -1
- package/node_modules/zod/v3/ZodError.js +22 -12
- package/node_modules/zod/v3/types.cjs +7 -5
- package/node_modules/zod/v3/types.js +7 -5
- package/node_modules/zod/v4/classic/checks.cjs +2 -1
- package/node_modules/zod/v4/classic/checks.d.cts +1 -1
- package/node_modules/zod/v4/classic/checks.d.ts +1 -1
- package/node_modules/zod/v4/classic/checks.js +1 -1
- package/node_modules/zod/v4/classic/compat.d.cts +9 -11
- package/node_modules/zod/v4/classic/compat.d.ts +9 -11
- package/node_modules/zod/v4/classic/deep-partial.cjs +39 -0
- package/node_modules/zod/v4/classic/deep-partial.d.cts +14 -0
- package/node_modules/zod/v4/classic/deep-partial.d.ts +14 -0
- package/node_modules/zod/v4/classic/deep-partial.js +13 -0
- package/node_modules/zod/v4/classic/errors.cjs +43 -34
- package/node_modules/zod/v4/classic/errors.d.cts +3 -4
- package/node_modules/zod/v4/classic/errors.d.ts +3 -4
- package/node_modules/zod/v4/classic/errors.js +43 -34
- package/node_modules/zod/v4/classic/external.cjs +30 -27
- package/node_modules/zod/v4/classic/external.d.cts +5 -2
- package/node_modules/zod/v4/classic/external.d.ts +5 -2
- package/node_modules/zod/v4/classic/external.js +5 -8
- package/node_modules/zod/v4/classic/from-json-schema.cjs +136 -75
- package/node_modules/zod/v4/classic/from-json-schema.js +136 -75
- package/node_modules/zod/v4/classic/in-out.cjs +63 -0
- package/node_modules/zod/v4/classic/in-out.d.cts +8 -0
- package/node_modules/zod/v4/classic/in-out.d.ts +8 -0
- package/node_modules/zod/v4/classic/in-out.js +36 -0
- package/node_modules/zod/v4/classic/index.cjs +2 -2
- package/node_modules/zod/v4/classic/index.d.cts +1 -2
- package/node_modules/zod/v4/classic/index.d.ts +1 -2
- package/node_modules/zod/v4/classic/index.js +2 -2
- package/node_modules/zod/v4/classic/iso.cjs +11 -22
- package/node_modules/zod/v4/classic/iso.d.cts +2 -17
- package/node_modules/zod/v4/classic/iso.d.ts +2 -17
- package/node_modules/zod/v4/classic/iso.js +2 -17
- package/node_modules/zod/v4/classic/parse.cjs +4 -1
- package/node_modules/zod/v4/classic/parse.d.cts +17 -4
- package/node_modules/zod/v4/classic/parse.d.ts +17 -4
- package/node_modules/zod/v4/classic/parse.js +1 -0
- package/node_modules/zod/v4/classic/schemas.cjs +498 -398
- package/node_modules/zod/v4/classic/schemas.d.cts +53 -18
- package/node_modules/zod/v4/classic/schemas.d.ts +53 -18
- package/node_modules/zod/v4/classic/schemas.js +492 -396
- package/node_modules/zod/v4/core/api.cjs +23 -4
- package/node_modules/zod/v4/core/api.d.cts +13 -9
- package/node_modules/zod/v4/core/api.d.ts +13 -9
- package/node_modules/zod/v4/core/api.js +21 -4
- package/node_modules/zod/v4/core/checks.cjs +37 -31
- package/node_modules/zod/v4/core/checks.d.cts +13 -13
- package/node_modules/zod/v4/core/checks.d.ts +13 -13
- package/node_modules/zod/v4/core/checks.js +37 -31
- package/node_modules/zod/v4/core/compile.cjs +1813 -0
- package/node_modules/zod/v4/core/compile.d.cts +51 -0
- package/node_modules/zod/v4/core/compile.d.ts +51 -0
- package/node_modules/zod/v4/core/compile.js +1783 -0
- package/node_modules/zod/v4/core/core.cjs +81 -18
- package/node_modules/zod/v4/core/core.d.cts +16 -4
- package/node_modules/zod/v4/core/core.d.ts +16 -4
- package/node_modules/zod/v4/core/core.js +82 -19
- package/node_modules/zod/v4/core/doc.cjs +5 -7
- package/node_modules/zod/v4/core/doc.d.cts +3 -1
- package/node_modules/zod/v4/core/doc.d.ts +3 -1
- package/node_modules/zod/v4/core/doc.js +5 -7
- package/node_modules/zod/v4/core/errors.cjs +110 -25
- package/node_modules/zod/v4/core/errors.d.cts +4 -0
- package/node_modules/zod/v4/core/errors.d.ts +4 -0
- package/node_modules/zod/v4/core/errors.js +110 -25
- package/node_modules/zod/v4/core/index.cjs +5 -1
- package/node_modules/zod/v4/core/index.d.cts +3 -0
- package/node_modules/zod/v4/core/index.d.ts +3 -0
- package/node_modules/zod/v4/core/index.js +3 -0
- package/node_modules/zod/v4/core/json-schema-generator.cjs +4 -0
- package/node_modules/zod/v4/core/json-schema-generator.d.cts +2 -2
- package/node_modules/zod/v4/core/json-schema-generator.d.ts +2 -2
- package/node_modules/zod/v4/core/json-schema-generator.js +4 -0
- package/node_modules/zod/v4/core/json-schema-processors.cjs +264 -95
- package/node_modules/zod/v4/core/json-schema-processors.js +243 -97
- package/node_modules/zod/v4/core/json-schema.d.cts +2 -1
- package/node_modules/zod/v4/core/json-schema.d.ts +2 -1
- package/node_modules/zod/v4/core/memoizer.cjs +272 -0
- package/node_modules/zod/v4/core/memoizer.d.cts +15 -0
- package/node_modules/zod/v4/core/memoizer.d.ts +15 -0
- package/node_modules/zod/v4/core/memoizer.js +265 -0
- package/node_modules/zod/v4/core/parse.cjs +96 -34
- package/node_modules/zod/v4/core/parse.d.cts +14 -11
- package/node_modules/zod/v4/core/parse.d.ts +14 -11
- package/node_modules/zod/v4/core/parse.js +94 -33
- package/node_modules/zod/v4/core/regexes.cjs +27 -15
- package/node_modules/zod/v4/core/regexes.d.cts +2 -0
- package/node_modules/zod/v4/core/regexes.d.ts +2 -0
- package/node_modules/zod/v4/core/regexes.js +24 -13
- package/node_modules/zod/v4/core/registries.js +2 -2
- package/node_modules/zod/v4/core/schemas.cjs +537 -326
- package/node_modules/zod/v4/core/schemas.d.cts +100 -31
- package/node_modules/zod/v4/core/schemas.d.ts +100 -31
- package/node_modules/zod/v4/core/schemas.js +526 -325
- package/node_modules/zod/v4/core/to-json-schema.cjs +242 -39
- package/node_modules/zod/v4/core/to-json-schema.d.cts +42 -3
- package/node_modules/zod/v4/core/to-json-schema.d.ts +42 -3
- package/node_modules/zod/v4/core/to-json-schema.js +241 -39
- package/node_modules/zod/v4/core/util.cjs +212 -31
- package/node_modules/zod/v4/core/util.d.cts +58 -1
- package/node_modules/zod/v4/core/util.d.ts +58 -1
- package/node_modules/zod/v4/core/util.js +202 -30
- package/node_modules/zod/v4/core/versions.cjs +2 -2
- package/node_modules/zod/v4/core/versions.d.cts +1 -1
- package/node_modules/zod/v4/core/versions.d.ts +1 -1
- package/node_modules/zod/v4/core/versions.js +2 -2
- package/node_modules/zod/v4/core/visit.cjs +195 -0
- package/node_modules/zod/v4/core/visit.d.cts +30 -0
- package/node_modules/zod/v4/core/visit.d.ts +30 -0
- package/node_modules/zod/v4/core/visit.js +169 -0
- package/node_modules/zod/v4/index.cjs +15 -5
- package/node_modules/zod/v4/index.d.cts +2 -2
- package/node_modules/zod/v4/index.d.ts +2 -2
- package/node_modules/zod/v4/index.js +3 -2
- package/node_modules/zod/v4/locales/ar.cjs +3 -0
- package/node_modules/zod/v4/locales/ar.js +3 -0
- package/node_modules/zod/v4/locales/az.cjs +3 -0
- package/node_modules/zod/v4/locales/az.js +3 -0
- package/node_modules/zod/v4/locales/be.cjs +10 -0
- package/node_modules/zod/v4/locales/be.js +10 -0
- package/node_modules/zod/v4/locales/bg.cjs +3 -0
- package/node_modules/zod/v4/locales/bg.js +3 -0
- package/node_modules/zod/v4/locales/bn.cjs +138 -0
- package/node_modules/zod/v4/locales/bn.d.cts +5 -0
- package/node_modules/zod/v4/locales/bn.d.ts +4 -0
- package/node_modules/zod/v4/locales/bn.js +111 -0
- package/node_modules/zod/v4/locales/ca.cjs +3 -0
- package/node_modules/zod/v4/locales/ca.js +3 -0
- package/node_modules/zod/v4/locales/ckb.cjs +158 -0
- package/node_modules/zod/v4/locales/ckb.d.cts +5 -0
- package/node_modules/zod/v4/locales/ckb.d.ts +4 -0
- package/node_modules/zod/v4/locales/ckb.js +131 -0
- package/node_modules/zod/v4/locales/cs.cjs +3 -0
- package/node_modules/zod/v4/locales/cs.js +3 -0
- package/node_modules/zod/v4/locales/da.cjs +5 -2
- package/node_modules/zod/v4/locales/da.js +5 -2
- package/node_modules/zod/v4/locales/de.cjs +3 -0
- package/node_modules/zod/v4/locales/de.js +3 -0
- package/node_modules/zod/v4/locales/el.cjs +1 -0
- package/node_modules/zod/v4/locales/el.js +1 -0
- package/node_modules/zod/v4/locales/en.cjs +14 -4
- package/node_modules/zod/v4/locales/en.js +14 -4
- package/node_modules/zod/v4/locales/eo.cjs +3 -0
- package/node_modules/zod/v4/locales/eo.js +3 -0
- package/node_modules/zod/v4/locales/es.cjs +2 -0
- package/node_modules/zod/v4/locales/es.js +2 -0
- package/node_modules/zod/v4/locales/fa.cjs +3 -0
- package/node_modules/zod/v4/locales/fa.js +3 -0
- package/node_modules/zod/v4/locales/fi.cjs +3 -0
- package/node_modules/zod/v4/locales/fi.js +3 -0
- package/node_modules/zod/v4/locales/fr-CA.cjs +3 -0
- package/node_modules/zod/v4/locales/fr-CA.js +3 -0
- package/node_modules/zod/v4/locales/fr.cjs +16 -14
- package/node_modules/zod/v4/locales/fr.js +16 -14
- package/node_modules/zod/v4/locales/gu.cjs +138 -0
- package/node_modules/zod/v4/locales/gu.d.cts +5 -0
- package/node_modules/zod/v4/locales/gu.d.ts +4 -0
- package/node_modules/zod/v4/locales/gu.js +111 -0
- package/node_modules/zod/v4/locales/he.cjs +5 -0
- package/node_modules/zod/v4/locales/he.js +5 -0
- package/node_modules/zod/v4/locales/hi.cjs +136 -0
- package/node_modules/zod/v4/locales/hi.d.cts +5 -0
- package/node_modules/zod/v4/locales/hi.d.ts +4 -0
- package/node_modules/zod/v4/locales/hi.js +109 -0
- package/node_modules/zod/v4/locales/hr.cjs +2 -0
- package/node_modules/zod/v4/locales/hr.js +2 -0
- package/node_modules/zod/v4/locales/hu.cjs +3 -0
- package/node_modules/zod/v4/locales/hu.js +3 -0
- package/node_modules/zod/v4/locales/hy.cjs +9 -0
- package/node_modules/zod/v4/locales/hy.js +9 -0
- package/node_modules/zod/v4/locales/id.cjs +3 -0
- package/node_modules/zod/v4/locales/id.js +3 -0
- package/node_modules/zod/v4/locales/index.cjs +22 -2
- package/node_modules/zod/v4/locales/index.d.cts +10 -0
- package/node_modules/zod/v4/locales/index.d.ts +10 -0
- package/node_modules/zod/v4/locales/index.js +10 -0
- package/node_modules/zod/v4/locales/is.cjs +3 -0
- package/node_modules/zod/v4/locales/is.js +3 -0
- package/node_modules/zod/v4/locales/it.cjs +3 -0
- package/node_modules/zod/v4/locales/it.js +3 -0
- package/node_modules/zod/v4/locales/ja.cjs +3 -0
- package/node_modules/zod/v4/locales/ja.js +3 -0
- package/node_modules/zod/v4/locales/ka.cjs +3 -0
- package/node_modules/zod/v4/locales/ka.js +3 -0
- package/node_modules/zod/v4/locales/km.cjs +3 -0
- package/node_modules/zod/v4/locales/km.js +3 -0
- package/node_modules/zod/v4/locales/kn.cjs +141 -0
- package/node_modules/zod/v4/locales/kn.d.cts +5 -0
- package/node_modules/zod/v4/locales/kn.d.ts +4 -0
- package/node_modules/zod/v4/locales/kn.js +114 -0
- package/node_modules/zod/v4/locales/ko.cjs +3 -0
- package/node_modules/zod/v4/locales/ko.js +3 -0
- package/node_modules/zod/v4/locales/lt.cjs +2 -0
- package/node_modules/zod/v4/locales/lt.js +2 -0
- package/node_modules/zod/v4/locales/mk.cjs +3 -0
- package/node_modules/zod/v4/locales/mk.js +3 -0
- package/node_modules/zod/v4/locales/ms.cjs +3 -0
- package/node_modules/zod/v4/locales/ms.js +3 -0
- package/node_modules/zod/v4/locales/ne.cjs +136 -0
- package/node_modules/zod/v4/locales/ne.d.cts +5 -0
- package/node_modules/zod/v4/locales/ne.d.ts +4 -0
- package/node_modules/zod/v4/locales/ne.js +109 -0
- package/node_modules/zod/v4/locales/nl.cjs +3 -0
- package/node_modules/zod/v4/locales/nl.js +3 -0
- package/node_modules/zod/v4/locales/nn.cjs +138 -0
- package/node_modules/zod/v4/locales/nn.d.cts +5 -0
- package/node_modules/zod/v4/locales/nn.d.ts +4 -0
- package/node_modules/zod/v4/locales/nn.js +111 -0
- package/node_modules/zod/v4/locales/no.cjs +5 -2
- package/node_modules/zod/v4/locales/no.js +5 -2
- package/node_modules/zod/v4/locales/ota.cjs +3 -0
- package/node_modules/zod/v4/locales/ota.js +3 -0
- package/node_modules/zod/v4/locales/pl.cjs +3 -0
- package/node_modules/zod/v4/locales/pl.js +3 -0
- package/node_modules/zod/v4/locales/ps.cjs +3 -0
- package/node_modules/zod/v4/locales/ps.js +3 -0
- package/node_modules/zod/v4/locales/pt-BR.cjs +168 -0
- package/node_modules/zod/v4/locales/pt-BR.d.cts +5 -0
- package/node_modules/zod/v4/locales/pt-BR.d.ts +4 -0
- package/node_modules/zod/v4/locales/pt-BR.js +141 -0
- package/node_modules/zod/v4/locales/pt.cjs +87 -55
- package/node_modules/zod/v4/locales/pt.js +87 -55
- package/node_modules/zod/v4/locales/ro.cjs +1 -0
- package/node_modules/zod/v4/locales/ro.js +1 -0
- package/node_modules/zod/v4/locales/ru.cjs +10 -0
- package/node_modules/zod/v4/locales/ru.js +10 -0
- package/node_modules/zod/v4/locales/sk.cjs +141 -0
- package/node_modules/zod/v4/locales/sk.d.cts +5 -0
- package/node_modules/zod/v4/locales/sk.d.ts +4 -0
- package/node_modules/zod/v4/locales/sk.js +114 -0
- package/node_modules/zod/v4/locales/sl.cjs +3 -0
- package/node_modules/zod/v4/locales/sl.js +3 -0
- package/node_modules/zod/v4/locales/sv.cjs +5 -2
- package/node_modules/zod/v4/locales/sv.js +5 -2
- package/node_modules/zod/v4/locales/ta.cjs +3 -0
- package/node_modules/zod/v4/locales/ta.js +3 -0
- package/node_modules/zod/v4/locales/th.cjs +3 -0
- package/node_modules/zod/v4/locales/th.js +3 -0
- package/node_modules/zod/v4/locales/tk.cjs +132 -0
- package/node_modules/zod/v4/locales/tk.d.cts +5 -0
- package/node_modules/zod/v4/locales/tk.d.ts +4 -0
- package/node_modules/zod/v4/locales/tk.js +105 -0
- package/node_modules/zod/v4/locales/tr.cjs +3 -0
- package/node_modules/zod/v4/locales/tr.js +3 -0
- package/node_modules/zod/v4/locales/uk.cjs +3 -0
- package/node_modules/zod/v4/locales/uk.js +3 -0
- package/node_modules/zod/v4/locales/ur.cjs +3 -0
- package/node_modules/zod/v4/locales/ur.js +3 -0
- package/node_modules/zod/v4/locales/uz.cjs +1 -0
- package/node_modules/zod/v4/locales/uz.js +1 -0
- package/node_modules/zod/v4/locales/vi.cjs +3 -0
- package/node_modules/zod/v4/locales/vi.js +3 -0
- package/node_modules/zod/v4/locales/yo.cjs +3 -0
- package/node_modules/zod/v4/locales/yo.js +3 -0
- package/node_modules/zod/v4/locales/zh-CN.cjs +3 -0
- package/node_modules/zod/v4/locales/zh-CN.js +3 -0
- package/node_modules/zod/v4/locales/zh-TW.cjs +3 -0
- package/node_modules/zod/v4/locales/zh-TW.js +3 -0
- package/node_modules/zod/v4/mini/checks.cjs +2 -1
- package/node_modules/zod/v4/mini/checks.d.cts +1 -1
- package/node_modules/zod/v4/mini/checks.d.ts +1 -1
- package/node_modules/zod/v4/mini/checks.js +1 -1
- package/node_modules/zod/v4/mini/deep-partial.cjs +39 -0
- package/node_modules/zod/v4/mini/deep-partial.d.cts +14 -0
- package/node_modules/zod/v4/mini/deep-partial.d.ts +14 -0
- package/node_modules/zod/v4/mini/deep-partial.js +13 -0
- package/node_modules/zod/v4/mini/external.cjs +12 -1
- package/node_modules/zod/v4/mini/external.d.cts +5 -2
- package/node_modules/zod/v4/mini/external.d.ts +5 -2
- package/node_modules/zod/v4/mini/external.js +3 -1
- package/node_modules/zod/v4/mini/in-out.cjs +63 -0
- package/node_modules/zod/v4/mini/in-out.d.cts +8 -0
- package/node_modules/zod/v4/mini/in-out.d.ts +8 -0
- package/node_modules/zod/v4/mini/in-out.js +36 -0
- package/node_modules/zod/v4/mini/parse.cjs +3 -1
- package/node_modules/zod/v4/mini/parse.d.cts +1 -1
- package/node_modules/zod/v4/mini/parse.d.ts +1 -1
- package/node_modules/zod/v4/mini/parse.js +1 -1
- package/node_modules/zod/v4/mini/schemas.cjs +75 -47
- package/node_modules/zod/v4/mini/schemas.d.cts +43 -13
- package/node_modules/zod/v4/mini/schemas.d.ts +43 -13
- package/node_modules/zod/v4/mini/schemas.js +71 -45
- package/openclaw.plugin.json +25 -58
- package/package.json +10 -7
- package/dist/targets-BTQCYRZQ.js +0 -48
- package/node_modules/zod/src/v4/core/config.ts +0 -15
- /package/dist/{audio-preflight.runtime-BBfC9elv.js → .setup/audio-preflight.runtime-BBfC9elv.mjs} +0 -0
- /package/dist/{doctor-contract-w6FpMypv.js → .setup/doctor-contract-w6FpMypv.mjs} +0 -0
- /package/dist/{json-response-DXajw_FU.js → .setup/json-response-DXajw_FU.mjs} +0 -0
- /package/dist/{rolldown-runtime-8H4AJuhK.js → .setup/rolldown-runtime-8H4AJuhK.mjs} +0 -0
- /package/dist/{runtime-C5JxBWZp.js → .setup/runtime-C5JxBWZp.mjs} +0 -0
- /package/dist/{secret-contract-BCpDLdg9.js → .setup/secret-contract-BCpDLdg9.mjs} +0 -0
- /package/dist/{security-audit-shared-CK5rVR-1.js → .setup/security-audit-shared-CK5rVR-1.mjs} +0 -0
- /package/dist/{thread-bindings-BiL1wGqK.js → .setup/thread-bindings-BiL1wGqK.mjs} +0 -0
|
@@ -0,0 +1,969 @@
|
|
|
1
|
+
import { expect, test } from "vitest";
|
|
2
|
+
|
|
3
|
+
import * as z from "../../index.js";
|
|
4
|
+
import { INVALID, ZodCompileUnsupportedError, compile, compileFn } from "../compile.js";
|
|
5
|
+
|
|
6
|
+
// Differential harness: assert compiled schema agrees with the original on every fixture. Success path: data identical (incl. key order and undefined-vs-absent, which toEqual cannot see) AND the fast path actually produced the value (a fixture set that silently falls back on valid inputs tests nothing). Failure path: issues deep-equal (errors always come from the runtime fallback).
|
|
7
|
+
function describe(value: unknown): string {
|
|
8
|
+
try {
|
|
9
|
+
return JSON.stringify(value, (_k, v) => (typeof v === "bigint" ? `${v}n` : v));
|
|
10
|
+
} catch {
|
|
11
|
+
return String(value);
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
// Stricter-than-toEqual structural identity: own-key order, symbol keys, undefined-valued vs absent keys, array holes, frozenness, NaN/-0.
|
|
16
|
+
function assertIdentical(actual: unknown, expected: unknown, path: string): void {
|
|
17
|
+
if (Object.is(actual, expected)) return;
|
|
18
|
+
if (actual === null || expected === null || typeof expected !== "object" || typeof actual !== "object") {
|
|
19
|
+
expect(actual, `value mismatch at ${path}`).toEqual(expected);
|
|
20
|
+
expect(Object.is(actual, expected), `Object.is mismatch at ${path} (NaN/-0?)`).toBe(true);
|
|
21
|
+
return;
|
|
22
|
+
}
|
|
23
|
+
expect(Object.getPrototypeOf(actual), `prototype mismatch at ${path}`).toBe(Object.getPrototypeOf(expected));
|
|
24
|
+
expect(Object.isFrozen(actual), `frozenness mismatch at ${path}`).toBe(Object.isFrozen(expected));
|
|
25
|
+
if (expected instanceof Date) {
|
|
26
|
+
expect((actual as Date).getTime(), `Date mismatch at ${path}`).toBe(expected.getTime());
|
|
27
|
+
return;
|
|
28
|
+
}
|
|
29
|
+
if (expected instanceof Map) {
|
|
30
|
+
expect([...(actual as Map<unknown, unknown>).entries()], `Map mismatch at ${path}`).toEqual([
|
|
31
|
+
...expected.entries(),
|
|
32
|
+
]);
|
|
33
|
+
return;
|
|
34
|
+
}
|
|
35
|
+
if (expected instanceof Set) {
|
|
36
|
+
expect([...(actual as Set<unknown>)], `Set mismatch at ${path}`).toEqual([...expected]);
|
|
37
|
+
return;
|
|
38
|
+
}
|
|
39
|
+
if (Array.isArray(expected)) {
|
|
40
|
+
expect((actual as unknown[]).length, `length mismatch at ${path}`).toBe(expected.length);
|
|
41
|
+
for (let i = 0; i < expected.length; i++) {
|
|
42
|
+
expect(i in (actual as object), `hole mismatch at ${path}[${i}]`).toBe(i in expected);
|
|
43
|
+
if (i in expected) assertIdentical((actual as unknown[])[i], expected[i], `${path}[${i}]`);
|
|
44
|
+
}
|
|
45
|
+
return;
|
|
46
|
+
}
|
|
47
|
+
const actualKeys = Reflect.ownKeys(actual as object);
|
|
48
|
+
const expectedKeys = Reflect.ownKeys(expected as object);
|
|
49
|
+
expect(actualKeys, `key set/order mismatch at ${path}`).toEqual(expectedKeys);
|
|
50
|
+
for (const k of expectedKeys) {
|
|
51
|
+
assertIdentical(
|
|
52
|
+
(actual as Record<PropertyKey, unknown>)[k],
|
|
53
|
+
(expected as Record<PropertyKey, unknown>)[k],
|
|
54
|
+
`${path}.${String(k)}`
|
|
55
|
+
);
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
function differential(schema: z.ZodType, inputs: unknown[], opts?: { fallbackOk?: boolean }) {
|
|
60
|
+
const compiled = compile(schema);
|
|
61
|
+
const fast = compileFn(schema);
|
|
62
|
+
// Assert-mode codegen shares every validation path with the parser and only drops the output construction, so it must reach the same verdict on every fixture. Refusing to compile at all is fine (the caller falls back); silently disagreeing is the drift this catches.
|
|
63
|
+
const assertFast = attempt(() => compileFn(schema, { assertOnly: true })).value;
|
|
64
|
+
for (const input of inputs) {
|
|
65
|
+
// A schema may throw rather than return — an async check reached synchronously does. Both sides have to agree on that too, and comparing results would just rethrow.
|
|
66
|
+
const at = attempt(() => schema.safeParse(input));
|
|
67
|
+
const bt = attempt(() => compiled.safeParse(input));
|
|
68
|
+
expect(
|
|
69
|
+
bt.threw,
|
|
70
|
+
`throw mismatch for input ${describe(input)}: runtime ${at.threw ?? "did not throw"}, compiled ${bt.threw ?? "did not throw"}`
|
|
71
|
+
).toBe(at.threw);
|
|
72
|
+
if (at.threw) continue;
|
|
73
|
+
const a = at.value!;
|
|
74
|
+
const b = bt.value!;
|
|
75
|
+
expect(b.success, `success mismatch for input ${describe(input)}`).toBe(a.success);
|
|
76
|
+
if (assertFast) {
|
|
77
|
+
const parseVerdict = attempt(() => fast(input) !== INVALID);
|
|
78
|
+
const assertVerdict = attempt(() => assertFast(input) !== INVALID);
|
|
79
|
+
expect(assertVerdict.threw ?? "did not throw", `assert-mode threw differently for input ${describe(input)}`).toBe(
|
|
80
|
+
parseVerdict.threw ?? "did not throw"
|
|
81
|
+
);
|
|
82
|
+
if (!parseVerdict.threw) {
|
|
83
|
+
expect(
|
|
84
|
+
assertVerdict.value,
|
|
85
|
+
`assert-mode verdict disagreed with the parse fast path for input ${describe(input)}`
|
|
86
|
+
).toBe(parseVerdict.value);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
if (a.success && b.success) {
|
|
90
|
+
if (!opts?.fallbackOk) {
|
|
91
|
+
expect(fast(input) === INVALID, `fast path fell back on valid input ${describe(input)}`).toBe(false);
|
|
92
|
+
}
|
|
93
|
+
assertIdentical(b.data, a.data, "$");
|
|
94
|
+
} else if (!a.success && !b.success) {
|
|
95
|
+
expect(b.error.issues, `issues mismatch for input ${describe(input)}`).toEqual(a.error.issues);
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
assertUnionSound(schema, inputs);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Every other assertion here is rescued by the fallback: a fast path that bails
|
|
103
|
+
* out returns INVALID, the wrapper re-runs the interpreter, and the answer comes
|
|
104
|
+
* out right. A union is the one place that cannot happen — it reads INVALID from
|
|
105
|
+
* a branch as "the interpreter would reject this" and moves to the next branch,
|
|
106
|
+
* so a bail-out silently becomes a different parse result with no error at all.
|
|
107
|
+
*
|
|
108
|
+
* Wrap the schema next to a branch that accepts anything and assert the sentinel
|
|
109
|
+
* never wins on input the schema itself accepts.
|
|
110
|
+
*/
|
|
111
|
+
/** Runs `fn`, reporting the error's class rather than letting it escape. `constructor.name`, not `.name`: `$ZodAsyncError` never sets `.name`, so it reads as plain `"Error"` and a swapped error class would compare equal to a user throw. */
|
|
112
|
+
function attempt<T>(fn: () => T): { value?: T; threw?: string } {
|
|
113
|
+
try {
|
|
114
|
+
return { value: fn() };
|
|
115
|
+
} catch (err) {
|
|
116
|
+
return { threw: (err as Error)?.constructor?.name || "Error" };
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
|
|
120
|
+
function assertUnionSound(schema: z.ZodType, inputs: unknown[]) {
|
|
121
|
+
const marker = Symbol("sentinel");
|
|
122
|
+
const sentinel = z.any().transform(() => marker);
|
|
123
|
+
let union: z.ZodType;
|
|
124
|
+
let compiledUnion: z.ZodType;
|
|
125
|
+
try {
|
|
126
|
+
union = z.union([schema, sentinel]) as unknown as z.ZodType;
|
|
127
|
+
compiledUnion = compile(union);
|
|
128
|
+
} catch {
|
|
129
|
+
return; // Refused at codegen, which is the outcome a union honours.
|
|
130
|
+
}
|
|
131
|
+
for (const input of inputs) {
|
|
132
|
+
const direct = attempt(() => schema.safeParse(input));
|
|
133
|
+
const viaUnion = attempt(() => compiledUnion.safeParse(input));
|
|
134
|
+
|
|
135
|
+
if (direct.threw) {
|
|
136
|
+
// A bare throw does not decide what the union does, so the interpreted union is the only reference: `refine`, `superRefine` and `custom` propagate out of it, while `transform` and `pipe` let it answer with a later branch. Measure it rather than assume. Nothing else in this file can see this class — the bare differential compares a fast path that returned INVALID against a fallback that re-runs the interpreter, so both sides reproduce the throw whichever way the guard is written.
|
|
137
|
+
const interpreted = attempt(() => union.safeParse(input));
|
|
138
|
+
expect(
|
|
139
|
+
viaUnion.threw ?? "did not throw",
|
|
140
|
+
`union disagreed on throwing for input ${describe(input)}: interpreted ${interpreted.threw ?? "did not throw"}, compiled ${viaUnion.threw ?? "did not throw"}`
|
|
141
|
+
).toBe(interpreted.threw ?? "did not throw");
|
|
142
|
+
continue;
|
|
143
|
+
}
|
|
144
|
+
if (!direct.value!.success) continue;
|
|
145
|
+
|
|
146
|
+
expect(
|
|
147
|
+
viaUnion.threw,
|
|
148
|
+
`compiled union threw ${viaUnion.threw} for input ${describe(input)} the schema accepts`
|
|
149
|
+
).toBe(undefined);
|
|
150
|
+
const got = viaUnion.value!;
|
|
151
|
+
expect(
|
|
152
|
+
got.success && got.data === marker,
|
|
153
|
+
`union selected the sentinel for input ${describe(input)} the schema accepts — a bail-out read as a rejection`
|
|
154
|
+
).toBe(false);
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
// --- primitives ---
|
|
159
|
+
|
|
160
|
+
test("string", () => {
|
|
161
|
+
differential(z.string(), ["", "hello", " ", "\n", 0, null, undefined, [], {}]);
|
|
162
|
+
});
|
|
163
|
+
|
|
164
|
+
test("number", () => {
|
|
165
|
+
differential(z.number(), [0, 1, -1, 1.5, Number.MAX_SAFE_INTEGER, Number.NaN, Number.POSITIVE_INFINITY, "1", null]);
|
|
166
|
+
});
|
|
167
|
+
|
|
168
|
+
test("boolean", () => {
|
|
169
|
+
differential(z.boolean(), [true, false, 0, 1, "true", null, undefined]);
|
|
170
|
+
});
|
|
171
|
+
|
|
172
|
+
test("bigint", () => {
|
|
173
|
+
differential(z.bigint(), [0n, 1n, -1n, 9999999999999999999n, 1, "1", null]);
|
|
174
|
+
});
|
|
175
|
+
|
|
176
|
+
test("date", () => {
|
|
177
|
+
differential(z.date(), [new Date(), new Date(0), new Date("invalid"), "2024-01-01", 0, null]);
|
|
178
|
+
});
|
|
179
|
+
|
|
180
|
+
test("null/undefined/void", () => {
|
|
181
|
+
differential(z.null(), [null, undefined, 0, false]);
|
|
182
|
+
differential(z.undefined(), [undefined, null, 0, false]);
|
|
183
|
+
differential(z.void(), [undefined, null, 0]);
|
|
184
|
+
});
|
|
185
|
+
|
|
186
|
+
test("nan", () => {
|
|
187
|
+
differential(z.nan(), [Number.NaN, 0, "NaN", null, Number.POSITIVE_INFINITY]);
|
|
188
|
+
});
|
|
189
|
+
|
|
190
|
+
test("any/unknown", () => {
|
|
191
|
+
differential(z.any(), [undefined, null, 0, "x", { a: 1 }, [1, 2]]);
|
|
192
|
+
differential(z.unknown(), [undefined, null, 0, "x", { a: 1 }]);
|
|
193
|
+
});
|
|
194
|
+
|
|
195
|
+
test("never", () => {
|
|
196
|
+
differential(z.never(), [undefined, null, 0, "x", {}]);
|
|
197
|
+
});
|
|
198
|
+
|
|
199
|
+
// --- literals & enums ---
|
|
200
|
+
|
|
201
|
+
test("literal single", () => {
|
|
202
|
+
differential(z.literal("a"), ["a", "b", 1, null]);
|
|
203
|
+
differential(z.literal(42), [42, 43, "42"]);
|
|
204
|
+
differential(z.literal(true), [true, false, 1]);
|
|
205
|
+
});
|
|
206
|
+
|
|
207
|
+
test("literal multi-value", () => {
|
|
208
|
+
differential(z.literal(["a", "b", 1]), ["a", "b", 1, "c", 2]);
|
|
209
|
+
});
|
|
210
|
+
|
|
211
|
+
test("enum", () => {
|
|
212
|
+
differential(z.enum(["red", "green", "blue"]), ["red", "blue", "yellow", null]);
|
|
213
|
+
});
|
|
214
|
+
|
|
215
|
+
// --- wrappers ---
|
|
216
|
+
|
|
217
|
+
test("optional", () => {
|
|
218
|
+
differential(z.string().optional(), ["hello", undefined, null, 0]);
|
|
219
|
+
});
|
|
220
|
+
|
|
221
|
+
test("nullable", () => {
|
|
222
|
+
differential(z.string().nullable(), ["hello", null, undefined, 0]);
|
|
223
|
+
});
|
|
224
|
+
|
|
225
|
+
// A wrapper around a container is where assert mode stops building: the wrapper itself constructs nothing, so the object or array inside it drops its output. Wrapping a scalar exercises none of that.
|
|
226
|
+
test("wrapped containers", () => {
|
|
227
|
+
const shape = { a: z.string(), b: z.number() };
|
|
228
|
+
differential(z.object(shape).nullable(), [{ a: "x", b: 1 }, null, undefined, { a: 1, b: 1 }, "no"]);
|
|
229
|
+
differential(z.looseObject(shape).optional(), [{ a: "x", b: 1, extra: 9 }, undefined, null, { a: 1 }]);
|
|
230
|
+
differential(z.strictObject(shape).nullable(), [{ a: "x", b: 1 }, null, { a: "x", b: 1, extra: 9 }]);
|
|
231
|
+
differential(z.array(z.object(shape)).nullable(), [[{ a: "x", b: 1 }], [], null, [{ a: 1 }]]);
|
|
232
|
+
differential(z.object({ inner: z.object(shape).nullable() }), [
|
|
233
|
+
{ inner: { a: "x", b: 1 } },
|
|
234
|
+
{ inner: null },
|
|
235
|
+
{ inner: { a: 1, b: 1 } },
|
|
236
|
+
]);
|
|
237
|
+
differential(z.object({ inner: z.looseObject(shape).optional() }), [{ inner: { a: "x", b: 1 } }, {}, { inner: 5 }]);
|
|
238
|
+
});
|
|
239
|
+
|
|
240
|
+
test("nullish", () => {
|
|
241
|
+
differential(z.string().nullish(), ["hello", null, undefined, 0]);
|
|
242
|
+
});
|
|
243
|
+
|
|
244
|
+
test("default", () => {
|
|
245
|
+
differential(z.string().default("fallback"), ["hi", undefined, null, 1]);
|
|
246
|
+
});
|
|
247
|
+
|
|
248
|
+
test("prefault runs default through inner schema", () => {
|
|
249
|
+
differential(z.string().trim().prefault(" fallback "), ["hi", undefined, null, 1]);
|
|
250
|
+
differential(z.string().min(3).prefault("x"), [undefined, "abcd"]);
|
|
251
|
+
});
|
|
252
|
+
|
|
253
|
+
test("optional wrapping default/prefault", () => {
|
|
254
|
+
differential(z.string().default("fallback").optional(), ["hi", undefined, null, 1]);
|
|
255
|
+
differential(z.string().trim().prefault(" fallback ").optional(), ["hi", undefined, null, 1]);
|
|
256
|
+
differential(z.string().min(3).prefault("x").optional(), [undefined, "abcd", "x", null]);
|
|
257
|
+
});
|
|
258
|
+
|
|
259
|
+
test("exactOptional top-level rejects undefined", () => {
|
|
260
|
+
differential(z.string().exactOptional(), ["hi", undefined, null, 1]);
|
|
261
|
+
});
|
|
262
|
+
|
|
263
|
+
test("default applies after transform output", () => {
|
|
264
|
+
differential(
|
|
265
|
+
z
|
|
266
|
+
.string()
|
|
267
|
+
.transform((value) => (value === "missing" ? undefined : value))
|
|
268
|
+
.default("fallback"),
|
|
269
|
+
["hi", "missing", undefined, 1]
|
|
270
|
+
);
|
|
271
|
+
});
|
|
272
|
+
|
|
273
|
+
test("readonly", () => {
|
|
274
|
+
differential(z.string().readonly(), ["hello", 1, null]);
|
|
275
|
+
});
|
|
276
|
+
|
|
277
|
+
// --- containers ---
|
|
278
|
+
|
|
279
|
+
test("array", () => {
|
|
280
|
+
differential(z.array(z.number()), [[], [1, 2, 3], [1, "x"], null, "abc"]);
|
|
281
|
+
});
|
|
282
|
+
|
|
283
|
+
test("array of objects", () => {
|
|
284
|
+
differential(z.array(z.object({ id: z.number() })), [[], [{ id: 1 }], [{ id: "x" }], [{}, { id: 2 }]]);
|
|
285
|
+
});
|
|
286
|
+
|
|
287
|
+
test("array with length checks", () => {
|
|
288
|
+
differential(z.array(z.number()).min(1).max(3), [[], [1], [1, 2, 3], [1, 2, 3, 4]]);
|
|
289
|
+
});
|
|
290
|
+
|
|
291
|
+
test("tuple fixed", () => {
|
|
292
|
+
differential(z.tuple([z.string(), z.number()]), [["a", 1], ["a"], ["a", 1, "x"], [1, "a"], null]);
|
|
293
|
+
});
|
|
294
|
+
|
|
295
|
+
test("tuple with rest", () => {
|
|
296
|
+
differential(z.tuple([z.string()], z.number()), [["a"], ["a", 1, 2], ["a", "x"], [1]]);
|
|
297
|
+
});
|
|
298
|
+
|
|
299
|
+
test("tuple with trailing optional", () => {
|
|
300
|
+
differential(z.tuple([z.string(), z.number().optional()]), [["a"], ["a", 1], [], ["a", "x"]]);
|
|
301
|
+
});
|
|
302
|
+
|
|
303
|
+
test("tuple with missing slots filled by default/prefault", () => {
|
|
304
|
+
differential(z.tuple([z.string().default("fallback")]), [[], ["x"], [1]]);
|
|
305
|
+
differential(z.tuple([z.string().trim().prefault(" fallback ")]), [[], [" x "], [1]]);
|
|
306
|
+
differential(z.tuple([z.string().default("fallback"), z.number().optional()]), [[], ["x"], ["x", 1], ["x", "bad"]]);
|
|
307
|
+
});
|
|
308
|
+
|
|
309
|
+
test("tuple optional-output tail can still fill or truncate", () => {
|
|
310
|
+
differential(z.tuple([z.string().default("fallback").optional()]), [[], ["x"], [undefined], [1]]);
|
|
311
|
+
differential(z.tuple([z.string().min(3).prefault("x").optional()]), [[], ["abcd"], ["x"], [1]]);
|
|
312
|
+
});
|
|
313
|
+
|
|
314
|
+
test("tuple with exactOptional distinguishes absent from explicit undefined", () => {
|
|
315
|
+
differential(z.tuple([z.string().exactOptional()]), [[], ["x"], [undefined], [1]]);
|
|
316
|
+
differential(z.tuple([z.number(), z.string().exactOptional()]), [
|
|
317
|
+
[1],
|
|
318
|
+
[1, "x"],
|
|
319
|
+
[1, undefined],
|
|
320
|
+
[],
|
|
321
|
+
[1, "x", "extra"],
|
|
322
|
+
]);
|
|
323
|
+
differential(z.tuple([z.string().optional(), z.number().exactOptional()]), [
|
|
324
|
+
[],
|
|
325
|
+
["x"],
|
|
326
|
+
["x", 1],
|
|
327
|
+
[undefined],
|
|
328
|
+
[undefined, undefined],
|
|
329
|
+
["x", "bad"],
|
|
330
|
+
]);
|
|
331
|
+
});
|
|
332
|
+
|
|
333
|
+
test("object simple", () => {
|
|
334
|
+
differential(z.object({ name: z.string(), age: z.number() }), [
|
|
335
|
+
{ name: "a", age: 1 },
|
|
336
|
+
{ name: "a", age: 1, extra: "x" },
|
|
337
|
+
{ name: 1, age: 1 },
|
|
338
|
+
{ name: "a" },
|
|
339
|
+
null,
|
|
340
|
+
]);
|
|
341
|
+
});
|
|
342
|
+
|
|
343
|
+
test("object nested", () => {
|
|
344
|
+
differential(z.object({ user: z.object({ name: z.string() }) }), [
|
|
345
|
+
{ user: { name: "a" } },
|
|
346
|
+
{ user: { name: 1 } },
|
|
347
|
+
{ user: {} },
|
|
348
|
+
null,
|
|
349
|
+
]);
|
|
350
|
+
});
|
|
351
|
+
|
|
352
|
+
test("object with optional + default", () => {
|
|
353
|
+
differential(z.object({ a: z.string().optional(), b: z.number().default(0) }), [
|
|
354
|
+
{},
|
|
355
|
+
{ a: "x" },
|
|
356
|
+
{ b: 5 },
|
|
357
|
+
{ a: "x", b: 5 },
|
|
358
|
+
{ a: 1 },
|
|
359
|
+
]);
|
|
360
|
+
});
|
|
361
|
+
|
|
362
|
+
test("object with optional wrapping default/prefault", () => {
|
|
363
|
+
differential(
|
|
364
|
+
z.object({
|
|
365
|
+
a: z.string().default("fallback").optional(),
|
|
366
|
+
b: z.string().trim().prefault(" trimmed ").optional(),
|
|
367
|
+
c: z.string().min(3).prefault("x").optional(),
|
|
368
|
+
}),
|
|
369
|
+
[{}, { a: undefined, b: undefined, c: undefined }, { a: "x", b: " y ", c: "abc" }, { a: null }]
|
|
370
|
+
);
|
|
371
|
+
});
|
|
372
|
+
|
|
373
|
+
test("object with exactOptional distinguishes absent from explicit undefined", () => {
|
|
374
|
+
differential(
|
|
375
|
+
z.object({
|
|
376
|
+
exact: z.string().exactOptional(),
|
|
377
|
+
loose: z.string().optional(),
|
|
378
|
+
}),
|
|
379
|
+
[{}, { exact: "x" }, { exact: undefined }, { loose: undefined }, { exact: null }]
|
|
380
|
+
);
|
|
381
|
+
});
|
|
382
|
+
|
|
383
|
+
test("strictObject", () => {
|
|
384
|
+
differential(z.strictObject({ a: z.string() }), [{ a: "x" }, { a: "x", extra: true }, { a: 1 }, {}]);
|
|
385
|
+
});
|
|
386
|
+
|
|
387
|
+
test("looseObject", () => {
|
|
388
|
+
differential(z.looseObject({ a: z.string() }), [{ a: "x" }, { a: "x", extra: true }, { a: 1 }]);
|
|
389
|
+
});
|
|
390
|
+
|
|
391
|
+
test("object catchall", () => {
|
|
392
|
+
differential(z.object({ a: z.string() }).catchall(z.number()), [
|
|
393
|
+
{ a: "x" },
|
|
394
|
+
{ a: "x", b: 1, c: 2 },
|
|
395
|
+
{ a: "x", b: "y" },
|
|
396
|
+
]);
|
|
397
|
+
});
|
|
398
|
+
|
|
399
|
+
test("record dynamic key", () => {
|
|
400
|
+
differential(z.record(z.string(), z.number()), [{}, { a: 1, b: 2 }, { a: "x" }]);
|
|
401
|
+
});
|
|
402
|
+
|
|
403
|
+
test("record dynamic key rejects enumerable symbol keys", () => {
|
|
404
|
+
const key = Symbol("record-key");
|
|
405
|
+
const input = { a: 1, [key]: 2 };
|
|
406
|
+
differential(z.record(z.string(), z.number()), [input]);
|
|
407
|
+
});
|
|
408
|
+
|
|
409
|
+
test("record enum key", () => {
|
|
410
|
+
differential(z.record(z.enum(["a", "b"]), z.number()), [{ a: 1, b: 2 }, { a: 1, c: 3 }, {}]);
|
|
411
|
+
});
|
|
412
|
+
|
|
413
|
+
test("record enum key transform applies to output keys", () => {
|
|
414
|
+
const schema = z.record(
|
|
415
|
+
z.enum(["a", "b"]).transform((key) => (key === "a" ? "x" : "y")),
|
|
416
|
+
z.number()
|
|
417
|
+
);
|
|
418
|
+
differential(schema, [{ a: 1, b: 2 }, { a: 1 }, { a: 1, b: "bad" }]);
|
|
419
|
+
});
|
|
420
|
+
|
|
421
|
+
test("map", () => {
|
|
422
|
+
differential(z.map(z.string(), z.number()), [new Map(), new Map([["a", 1]]), new Map([["a", "x" as any]]), {}]);
|
|
423
|
+
});
|
|
424
|
+
|
|
425
|
+
test("set", () => {
|
|
426
|
+
differential(z.set(z.number()), [new Set(), new Set([1, 2]), new Set(["x"]), []]);
|
|
427
|
+
});
|
|
428
|
+
|
|
429
|
+
// --- unions / intersection ---
|
|
430
|
+
|
|
431
|
+
test("union of primitives", () => {
|
|
432
|
+
differential(z.union([z.string(), z.number()]), ["a", 1, true, null]);
|
|
433
|
+
});
|
|
434
|
+
|
|
435
|
+
test("union all-literals (Set optimization)", () => {
|
|
436
|
+
differential(z.union([z.literal("a"), z.literal("b"), z.literal("c")]), ["a", "b", "c", "d", 1]);
|
|
437
|
+
});
|
|
438
|
+
|
|
439
|
+
test("xor is unsupported directly; parity holds through a container island", () => {
|
|
440
|
+
// Exactly-one-match counting is unsound against any falsely-rejecting branch, so xor always uses the runtime.
|
|
441
|
+
expect(() => compile(z.xor([z.string(), z.number()]), { strict: true })).toThrow();
|
|
442
|
+
differential(z.object({ v: z.xor([z.string(), z.number()]) }), [{ v: "a" }, { v: 1 }, { v: true }, { v: null }]);
|
|
443
|
+
differential(z.object({ v: z.xor([z.string(), z.any()]) }), [{ v: "a" }, { v: 1 }, { v: null }]);
|
|
444
|
+
});
|
|
445
|
+
|
|
446
|
+
test("intersection of objects", () => {
|
|
447
|
+
differential(z.intersection(z.object({ a: z.string() }), z.object({ b: z.number() })), [
|
|
448
|
+
{ a: "x", b: 1 },
|
|
449
|
+
{ a: "x" },
|
|
450
|
+
{ a: 1, b: 1 },
|
|
451
|
+
]);
|
|
452
|
+
});
|
|
453
|
+
|
|
454
|
+
test("intersection deep merge", () => {
|
|
455
|
+
differential(
|
|
456
|
+
z.intersection(
|
|
457
|
+
z.object({ nested: z.object({ a: z.string() }) }),
|
|
458
|
+
z.object({ nested: z.object({ b: z.number() }) })
|
|
459
|
+
),
|
|
460
|
+
[{ nested: { a: "x", b: 1 } }, { nested: { a: "x" } }, { nested: { b: 1 } }, { nested: { a: "x", b: "bad" } }]
|
|
461
|
+
);
|
|
462
|
+
});
|
|
463
|
+
|
|
464
|
+
// --- string formats & checks ---
|
|
465
|
+
|
|
466
|
+
test("string length checks", () => {
|
|
467
|
+
differential(z.string().min(3).max(5), ["abc", "abcde", "ab", "abcdef", "abcd"]);
|
|
468
|
+
});
|
|
469
|
+
|
|
470
|
+
test("string length checks measure code points", () => {
|
|
471
|
+
const inputs = [
|
|
472
|
+
"abc",
|
|
473
|
+
"\u{1F600}",
|
|
474
|
+
"\u{1F600}\u{1F600}",
|
|
475
|
+
"\u{1F600}\u{1F600}\u{1F600}",
|
|
476
|
+
"\u{1F600}\u{1F600}ab",
|
|
477
|
+
"\uD83D",
|
|
478
|
+
"",
|
|
479
|
+
];
|
|
480
|
+
differential(z.string().min(3), inputs);
|
|
481
|
+
differential(z.string().max(3), inputs);
|
|
482
|
+
differential(z.string().length(3), inputs);
|
|
483
|
+
});
|
|
484
|
+
|
|
485
|
+
test("string regex", () => {
|
|
486
|
+
differential(z.string().regex(/^[a-z]+$/), ["abc", "ABC", "abc123", ""]);
|
|
487
|
+
});
|
|
488
|
+
|
|
489
|
+
test("string startsWith/endsWith/includes", () => {
|
|
490
|
+
differential(z.string().startsWith("a").endsWith("z").includes("m"), ["amz", "az", "abz", "amzz", "xyz"]);
|
|
491
|
+
});
|
|
492
|
+
|
|
493
|
+
test("email/uuid", () => {
|
|
494
|
+
differential(z.email(), ["a@b.co", "not-email", ""]);
|
|
495
|
+
differential(z.uuid(), ["00000000-0000-0000-0000-000000000000", "abc", ""]);
|
|
496
|
+
});
|
|
497
|
+
|
|
498
|
+
// --- numeric checks ---
|
|
499
|
+
|
|
500
|
+
test("number min/max", () => {
|
|
501
|
+
differential(z.number().min(0).max(100), [0, 50, 100, -1, 101]);
|
|
502
|
+
});
|
|
503
|
+
|
|
504
|
+
test("number int / multipleOf", () => {
|
|
505
|
+
differential(z.number().int(), [0, 5, -5, 1.5, "1"]);
|
|
506
|
+
differential(z.number().multipleOf(5), [0, 5, 10, 7, 0.5]);
|
|
507
|
+
// float tolerance regression (#5793)
|
|
508
|
+
differential(z.number().multipleOf(1e-7), [0, 1e-7, 3e-7, 2.5e-7, 1.5e-7]);
|
|
509
|
+
});
|
|
510
|
+
|
|
511
|
+
// --- overwrites & transforms ---
|
|
512
|
+
|
|
513
|
+
test("trim/toLowerCase/toUpperCase", () => {
|
|
514
|
+
differential(z.string().trim(), [" hello ", "hello", "", 1]);
|
|
515
|
+
differential(z.string().toLowerCase(), ["HELLO", "hello", 1]);
|
|
516
|
+
differential(z.string().toUpperCase(), ["hello", "HELLO", 1]);
|
|
517
|
+
});
|
|
518
|
+
|
|
519
|
+
test("trim chained with min", () => {
|
|
520
|
+
differential(z.string().trim().min(3), [" hi ", " hello ", "", "abc"]);
|
|
521
|
+
});
|
|
522
|
+
|
|
523
|
+
test("transform basic", () => {
|
|
524
|
+
differential(
|
|
525
|
+
z.string().transform((s) => s.length),
|
|
526
|
+
["", "hi", "hello", 1]
|
|
527
|
+
);
|
|
528
|
+
});
|
|
529
|
+
|
|
530
|
+
// --- codec ---
|
|
531
|
+
|
|
532
|
+
test("codec stringbool", () => {
|
|
533
|
+
differential(z.stringbool(), ["true", "false", "1", "0", "yes", "no", "maybe", 1, null]);
|
|
534
|
+
});
|
|
535
|
+
|
|
536
|
+
// --- refinements ---
|
|
537
|
+
|
|
538
|
+
test("refine predicate", () => {
|
|
539
|
+
differential(
|
|
540
|
+
z.string().refine((s) => s.length > 3),
|
|
541
|
+
["hello", "hi", "abc"]
|
|
542
|
+
);
|
|
543
|
+
});
|
|
544
|
+
|
|
545
|
+
test("superRefine adds issues", () => {
|
|
546
|
+
const schema = z.string().superRefine((val, ctx) => {
|
|
547
|
+
if (!val.includes("@")) ctx.addIssue({ code: "custom", message: "missing @" });
|
|
548
|
+
});
|
|
549
|
+
differential(schema, ["a@b", "ab", 1]);
|
|
550
|
+
});
|
|
551
|
+
|
|
552
|
+
// --- catch ---
|
|
553
|
+
|
|
554
|
+
test("catch primitive", () => {
|
|
555
|
+
// A caught failure hands the parse back: finalizing the issues the callback sees needs the caller's error map, which the fast path has no access to.
|
|
556
|
+
differential(z.catch(z.string(), "fb"), ["x", "", 1, null, undefined], { fallbackOk: true });
|
|
557
|
+
});
|
|
558
|
+
|
|
559
|
+
test("catch inside object property", () => {
|
|
560
|
+
differential(
|
|
561
|
+
z.object({ name: z.catch(z.string().min(2), "anon") }),
|
|
562
|
+
[{ name: "Alice" }, { name: "x" }, { name: 42 }, {}],
|
|
563
|
+
{ fallbackOk: true }
|
|
564
|
+
);
|
|
565
|
+
});
|
|
566
|
+
|
|
567
|
+
test("catch with function reading issues is refused", () => {
|
|
568
|
+
// The callback reads issues finalized against the caller's per-parse error map, which generated code has no access to. Refusing at codegen is what makes it safe inside a union; returning INVALID at parse time would read as a rejected branch.
|
|
569
|
+
const schema = z.catch(z.string().min(5), (ctx) => `e:${ctx.error.issues.length}`);
|
|
570
|
+
expect(() => compile(schema, { strict: true })).toThrow(ZodCompileUnsupportedError);
|
|
571
|
+
expect(schema.parse("ab")).toBe("e:1");
|
|
572
|
+
expect(schema.parse(123 as never, { error: () => "MAPPED" })).toBe("e:1");
|
|
573
|
+
});
|
|
574
|
+
|
|
575
|
+
test("catch with a callback is refused inside a container, not islanded", () => {
|
|
576
|
+
// A container normally absorbs an unsupported child by running just that node through the runtime. That is only equivalent for a node that *propagates* its issues: an island gets no parse context, and catch CONSUMES issues, so an islanded catch finalizes against an empty error map and still succeeds. The divergence is silent — the parse returns a different string with no error anywhere. Refusing the whole schema is what keeps the container honest, so this asserts the throw rather than a matching value.
|
|
577
|
+
const inner = z.catch(z.string(), (ctx) => `msg=${ctx.error.issues[0]?.message}`);
|
|
578
|
+
const schema = z.object({ a: inner, b: z.number() });
|
|
579
|
+
const mapped = { error: () => "MAPPED" };
|
|
580
|
+
|
|
581
|
+
expect(() => compile(schema, { strict: true })).toThrow(ZodCompileUnsupportedError);
|
|
582
|
+
expect(schema.parse({ a: 1, b: 2 }, mapped)).toEqual({ a: "msg=MAPPED", b: 2 });
|
|
583
|
+
|
|
584
|
+
// The sibling stays compilable on its own, so the refusal is about catch and not about the container.
|
|
585
|
+
expect(() => compile(z.object({ a: z.string(), b: z.number() }), { strict: true })).not.toThrow();
|
|
586
|
+
});
|
|
587
|
+
|
|
588
|
+
test("catch with a constant value keeps the fast path", () => {
|
|
589
|
+
differential(z.catch(z.string().min(5), "fb"), ["abcdef", "ab", 42, undefined]);
|
|
590
|
+
});
|
|
591
|
+
|
|
592
|
+
// --- runtime islands ---
|
|
593
|
+
|
|
594
|
+
test("xor inside object falls back per-property via runtime island", () => {
|
|
595
|
+
differential(z.object({ x: z.xor([z.string(), z.number()]), y: z.boolean() }), [
|
|
596
|
+
{ x: "a", y: true },
|
|
597
|
+
{ x: 1, y: false },
|
|
598
|
+
{ x: true, y: true },
|
|
599
|
+
{ x: "a", y: 1 },
|
|
600
|
+
]);
|
|
601
|
+
});
|
|
602
|
+
|
|
603
|
+
test("xor inside array element via runtime island", () => {
|
|
604
|
+
differential(z.array(z.xor([z.string(), z.number()])), [[], ["a", 1, "b"], ["a", true]]);
|
|
605
|
+
});
|
|
606
|
+
|
|
607
|
+
// --- pathological / regression cases ---
|
|
608
|
+
|
|
609
|
+
test("__proto__ in object catchall", () => {
|
|
610
|
+
const schema = z.looseObject({ name: z.string() });
|
|
611
|
+
const polluted = JSON.parse('{"name":"ok","__proto__":{"x":1}}');
|
|
612
|
+
differential(schema, [polluted, { name: "ok" }, { name: 1 }]);
|
|
613
|
+
});
|
|
614
|
+
|
|
615
|
+
test("nested array of objects of unions", () => {
|
|
616
|
+
const schema = z.array(
|
|
617
|
+
z.object({
|
|
618
|
+
kind: z.string(),
|
|
619
|
+
value: z.union([z.string(), z.number(), z.array(z.boolean())]),
|
|
620
|
+
})
|
|
621
|
+
);
|
|
622
|
+
differential(schema, [
|
|
623
|
+
[],
|
|
624
|
+
[{ kind: "s", value: "hi" }],
|
|
625
|
+
[
|
|
626
|
+
{ kind: "n", value: 5 },
|
|
627
|
+
{ kind: "b", value: [true, false] },
|
|
628
|
+
],
|
|
629
|
+
[{ kind: "n", value: { wrong: true } }],
|
|
630
|
+
]);
|
|
631
|
+
});
|
|
632
|
+
|
|
633
|
+
test("deep optional defaults", () => {
|
|
634
|
+
const schema = z.object({
|
|
635
|
+
a: z
|
|
636
|
+
.object({
|
|
637
|
+
b: z.number().default(10),
|
|
638
|
+
})
|
|
639
|
+
.optional(),
|
|
640
|
+
});
|
|
641
|
+
differential(schema, [{}, { a: {} }, { a: { b: 1 } }, { a: { b: "x" } }]);
|
|
642
|
+
});
|
|
643
|
+
|
|
644
|
+
// --- url: guards the one place the compiler reimplements runtime semantics ---
|
|
645
|
+
|
|
646
|
+
test("url options match the runtime across the whole option matrix", () => {
|
|
647
|
+
// `parseValidURL` is a second implementation of what `$ZodURL`'s own check does inline — the trim, the `://` guard, the hostname and protocol tests, the normalize step. Deduplicating them faithfully is awkward, because hostname and protocol can both fail and each pushes its own issue, so the shared helper would have to return a list of reasons rather than a value. Until that happens this matrix is what keeps the two copies honest: a fix to either that the other misses fails here rather than drifting silently, which is exactly how z.creditCard() went wrong.
|
|
648
|
+
const inputs = [
|
|
649
|
+
"https://example.com",
|
|
650
|
+
"https://example.com/a/b?c=1#d",
|
|
651
|
+
" https://example.com ",
|
|
652
|
+
"http://example.com",
|
|
653
|
+
"http:example.com",
|
|
654
|
+
"https:/path",
|
|
655
|
+
"ftp://example.com",
|
|
656
|
+
"https://sub.example.co.uk",
|
|
657
|
+
"https://example.com:8443/x",
|
|
658
|
+
"not a url",
|
|
659
|
+
"",
|
|
660
|
+
"//example.com",
|
|
661
|
+
"mailto:a@b.com",
|
|
662
|
+
// The WHATWG parser deletes these rather than failing, so the two paths only agree if both apply that deletion to the value they return.
|
|
663
|
+
"https://exa\nmple.com",
|
|
664
|
+
"https://exa\tmple.com",
|
|
665
|
+
"https://example.com/a\rb?c=d#e",
|
|
666
|
+
];
|
|
667
|
+
const schemas: z.ZodType[] = [
|
|
668
|
+
z.url(),
|
|
669
|
+
z.url({ normalize: true }),
|
|
670
|
+
z.url({ hostname: /^example\.com$/ }),
|
|
671
|
+
z.url({ protocol: /^https$/ }),
|
|
672
|
+
z.url({ protocol: /^https?$/ }),
|
|
673
|
+
z.url({ hostname: /^example\.com$/, protocol: /^https$/ }),
|
|
674
|
+
z.url({ hostname: /^example\.com$/, normalize: true }),
|
|
675
|
+
z.httpUrl(),
|
|
676
|
+
];
|
|
677
|
+
for (const schema of schemas) differential(schema, inputs);
|
|
678
|
+
});
|
|
679
|
+
|
|
680
|
+
test("empty strict object compiles", () => {
|
|
681
|
+
// With no keys the unknown-key condition is empty, and `if () return INVALID;` is a syntax error the single top-level `new Function` rejects — too late for compileChild to island, so the whole tree lost its fast path.
|
|
682
|
+
differential(z.strictObject({}), [{}, { a: 1 }, Object.create({ inherited: 1 })]);
|
|
683
|
+
differential(z.object({ inner: z.strictObject({}) }), [{ inner: {} }, { inner: { a: 1 } }]);
|
|
684
|
+
});
|
|
685
|
+
|
|
686
|
+
test("loose record with an enumerated key set", () => {
|
|
687
|
+
// `mode: "loose"` only changes what happens to unrecognized keys; every enumerated key is still required, so this belongs on the exhaustive path.
|
|
688
|
+
differential(z.looseRecord(z.enum(["a", "b"]), z.number()), [
|
|
689
|
+
{ a: 1, b: 2 },
|
|
690
|
+
{ a: 1 },
|
|
691
|
+
{ a: 1, b: 2, extra: "kept" },
|
|
692
|
+
{ a: 1, b: "no" },
|
|
693
|
+
JSON.parse('{"a":1,"b":2,"__proto__":{"p":1}}'),
|
|
694
|
+
]);
|
|
695
|
+
});
|
|
696
|
+
|
|
697
|
+
test("a catch callback is refused however it declares its arity", () => {
|
|
698
|
+
// Function.length reports 0 for rest and defaulted parameters alike, so arity cannot separate a user callback from the thunk `.catch(value)` synthesises. Provenance can.
|
|
699
|
+
const rest = z.catch(z.string().min(5), ((...a: any[]) => `e:${a[0].error.issues.length}`) as never);
|
|
700
|
+
const dflt = z.catch(
|
|
701
|
+
z.string().min(5),
|
|
702
|
+
((ctx: any = { error: { issues: [] } }) => `e:${ctx.error.issues.length}`) as never
|
|
703
|
+
);
|
|
704
|
+
for (const schema of [rest, dflt]) {
|
|
705
|
+
expect(() => compile(schema, { strict: true })).toThrow(ZodCompileUnsupportedError);
|
|
706
|
+
expect(schema.parse("ab")).toBe("e:1");
|
|
707
|
+
}
|
|
708
|
+
differential(z.catch(z.string().min(5), "fb"), ["abcdef", "ab", 42]);
|
|
709
|
+
});
|
|
710
|
+
|
|
711
|
+
test("a coercing object key cannot materialize an absent key", () => {
|
|
712
|
+
// Compilation refuses coercion, so the child becomes a runtime island — and an island receives `input[key]` with no way to tell an absent key from an explicit undefined. The runtime object keeps them apart (#6405): absent rejects, explicit undefined coerces. Without a presence guard the fast path answered `{ k: "undefined" }` for `{}`.
|
|
713
|
+
differential(z.object({ k: z.coerce.string() }), [{}, { k: 5 }, { k: undefined }, { k: "s" }]);
|
|
714
|
+
differential(z.object({ k: z.coerce.number() }), [{}, { k: "42" }, { k: undefined }]);
|
|
715
|
+
differential(z.object({ k: z.coerce.boolean() }), [{}, { k: 1 }, { k: undefined }]);
|
|
716
|
+
differential(z.object({ a: z.string(), k: z.coerce.string() }), [{ a: "x" }, { a: "x", k: 5 }]);
|
|
717
|
+
});
|
|
718
|
+
|
|
719
|
+
test("a thenable predicate throws rather than rejecting", () => {
|
|
720
|
+
// `isAsyncFunction` is syntactic, so a plain function returning a promise reaches the codegen. The interpreter throws $ZodAsyncError for it — returning INVALID instead is a bail-out, and a union reads a bail-out as a rejected branch and answers with a later one. Routed through differential() precisely so assertUnionSound sees it; the previous bespoke helper skipped that and is why this shipped.
|
|
721
|
+
differential(
|
|
722
|
+
z.custom(() => Promise.resolve(true) as never),
|
|
723
|
+
["x", 1, null]
|
|
724
|
+
);
|
|
725
|
+
differential(z.string().refine((() => Promise.resolve(true)) as never), ["x", 1]);
|
|
726
|
+
differential(z.string().superRefine(((_v: any, _c: any) => Promise.resolve(true)) as never), ["x", 1]);
|
|
727
|
+
|
|
728
|
+
// A transform is the other way round: the interpreter's own union also falls through to the next branch, so INVALID there is parity rather than a bail-out.
|
|
729
|
+
differential(z.string().transform((() => Promise.resolve(1)) as never), ["x"], { fallbackOk: true });
|
|
730
|
+
|
|
731
|
+
// A real async predicate is still refused at codegen, and an ordinary one still compiles.
|
|
732
|
+
expect(() =>
|
|
733
|
+
compile(
|
|
734
|
+
z.custom(async () => true),
|
|
735
|
+
{ strict: true }
|
|
736
|
+
)
|
|
737
|
+
).toThrow();
|
|
738
|
+
differential(
|
|
739
|
+
z.custom((v) => typeof v === "string"),
|
|
740
|
+
["x", 1, null, undefined]
|
|
741
|
+
);
|
|
742
|
+
});
|
|
743
|
+
|
|
744
|
+
// Generated corpus. The hand-written fixtures above pin the shapes we reasoned about; this covers the combinations nobody thought to write, which is where a codegen flag actually breaks. Seeded so a failure reproduces.
|
|
745
|
+
function makeRng(seed: number): () => number {
|
|
746
|
+
let a = seed;
|
|
747
|
+
return () => {
|
|
748
|
+
a = (a + 0x6d2b79f5) | 0;
|
|
749
|
+
let t = Math.imul(a ^ (a >>> 15), 1 | a);
|
|
750
|
+
t = (t + Math.imul(t ^ (t >>> 7), 61 | t)) ^ t;
|
|
751
|
+
return ((t ^ (t >>> 14)) >>> 0) / 4294967296;
|
|
752
|
+
};
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
function nonEmpty(v: unknown): boolean {
|
|
756
|
+
if (v === "") return false;
|
|
757
|
+
if (Array.isArray(v)) return v.length > 0;
|
|
758
|
+
if (v !== null && typeof v === "object" && !(v instanceof Date)) return Object.keys(v).length > 0;
|
|
759
|
+
return true;
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
interface Generated {
|
|
763
|
+
schema: z.ZodType;
|
|
764
|
+
ok: () => unknown;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
function generate(rnd: () => number, depth: number): Generated {
|
|
768
|
+
const pick = <T>(xs: T[]): T => xs[Math.floor(rnd() * xs.length)];
|
|
769
|
+
const leaves = ["string", "number", "boolean", "literal", "enum", "bounded", "int"];
|
|
770
|
+
// Only object, array, optional and nullable consume `buildsValue`; every other generator calls the 4-arg `compileChild`, which defaults `needsValue` to true and puts the subtree back in full-value mode. Assert-mode-specific state only arises in chains of those four, so they are weighted to make such chains common rather than incidental.
|
|
771
|
+
const nodes = [
|
|
772
|
+
"object",
|
|
773
|
+
"looseObject",
|
|
774
|
+
"strictObject",
|
|
775
|
+
"array",
|
|
776
|
+
"optional",
|
|
777
|
+
"nullable",
|
|
778
|
+
"object",
|
|
779
|
+
"array",
|
|
780
|
+
"optional",
|
|
781
|
+
"nullable",
|
|
782
|
+
"union",
|
|
783
|
+
"tuple",
|
|
784
|
+
"record",
|
|
785
|
+
"default",
|
|
786
|
+
"catch",
|
|
787
|
+
"refine",
|
|
788
|
+
"refine",
|
|
789
|
+
"refine",
|
|
790
|
+
"transform",
|
|
791
|
+
"pipe",
|
|
792
|
+
];
|
|
793
|
+
switch (depth <= 0 ? pick(leaves) : pick(rnd() < 0.45 ? leaves : nodes)) {
|
|
794
|
+
case "string":
|
|
795
|
+
return { schema: z.string(), ok: () => pick(["a", "", "hello"]) };
|
|
796
|
+
case "bounded":
|
|
797
|
+
return { schema: z.string().min(2).max(6), ok: () => pick(["ab", "abcdef"]) };
|
|
798
|
+
case "number":
|
|
799
|
+
return { schema: z.number(), ok: () => pick([0, 1, -1, 3.5]) };
|
|
800
|
+
case "int":
|
|
801
|
+
return { schema: z.number().int().min(0), ok: () => pick([0, 42]) };
|
|
802
|
+
case "boolean":
|
|
803
|
+
return { schema: z.boolean(), ok: () => rnd() < 0.5 };
|
|
804
|
+
case "literal":
|
|
805
|
+
return { schema: z.literal("lit"), ok: () => "lit" };
|
|
806
|
+
case "enum":
|
|
807
|
+
return { schema: z.enum(["a", "b"]), ok: () => pick(["a", "b"]) };
|
|
808
|
+
case "object":
|
|
809
|
+
case "looseObject":
|
|
810
|
+
case "strictObject": {
|
|
811
|
+
const kids: Record<string, Generated> = {};
|
|
812
|
+
const shape: Record<string, z.ZodType> = {};
|
|
813
|
+
for (let i = 0; i < 1 + Math.floor(rnd() * 3); i++) {
|
|
814
|
+
kids[`k${i}`] = generate(rnd, depth - 1);
|
|
815
|
+
shape[`k${i}`] = kids[`k${i}`].schema;
|
|
816
|
+
}
|
|
817
|
+
const ctor = pick([z.object, z.looseObject, z.strictObject]) as typeof z.object;
|
|
818
|
+
return {
|
|
819
|
+
schema: ctor(shape as never),
|
|
820
|
+
ok: () => Object.fromEntries(Object.entries(kids).map(([k, v]) => [k, v.ok()])),
|
|
821
|
+
};
|
|
822
|
+
}
|
|
823
|
+
case "array": {
|
|
824
|
+
const c = generate(rnd, depth - 1);
|
|
825
|
+
return { schema: z.array(c.schema), ok: () => Array.from({ length: Math.floor(rnd() * 3) }, () => c.ok()) };
|
|
826
|
+
}
|
|
827
|
+
case "tuple": {
|
|
828
|
+
const a = generate(rnd, depth - 1);
|
|
829
|
+
const b = generate(rnd, depth - 1);
|
|
830
|
+
return { schema: z.tuple([a.schema, b.schema]), ok: () => [a.ok(), b.ok()] };
|
|
831
|
+
}
|
|
832
|
+
case "record": {
|
|
833
|
+
const c = generate(rnd, depth - 1);
|
|
834
|
+
return { schema: z.record(z.string(), c.schema), ok: () => ({ p: c.ok(), q: c.ok() }) };
|
|
835
|
+
}
|
|
836
|
+
case "optional": {
|
|
837
|
+
const c = generate(rnd, depth - 1);
|
|
838
|
+
return { schema: z.optional(c.schema), ok: () => (rnd() < 0.3 ? undefined : c.ok()) };
|
|
839
|
+
}
|
|
840
|
+
case "nullable": {
|
|
841
|
+
const c = generate(rnd, depth - 1);
|
|
842
|
+
return { schema: z.nullable(c.schema), ok: () => (rnd() < 0.3 ? null : c.ok()) };
|
|
843
|
+
}
|
|
844
|
+
case "union": {
|
|
845
|
+
const a = generate(rnd, depth - 1);
|
|
846
|
+
const b = generate(rnd, depth - 1);
|
|
847
|
+
return { schema: z.union([a.schema, b.schema]), ok: () => (rnd() < 0.5 ? a.ok() : b.ok()) };
|
|
848
|
+
}
|
|
849
|
+
case "default": {
|
|
850
|
+
const c = generate(rnd, depth - 1);
|
|
851
|
+
return { schema: z.optional(c.schema).default(c.ok() as never), ok: () => (rnd() < 0.3 ? undefined : c.ok()) };
|
|
852
|
+
}
|
|
853
|
+
case "catch": {
|
|
854
|
+
const c = generate(rnd, depth - 1);
|
|
855
|
+
return { schema: c.schema.catch(c.ok() as never), ok: () => (rnd() < 0.4 ? 12345 : c.ok()) };
|
|
856
|
+
}
|
|
857
|
+
case "refine": {
|
|
858
|
+
const c = generate(rnd, depth - 1);
|
|
859
|
+
// Keyed to the value's own content, not a sentinel nothing produces. `refine` is the only generator that hangs a check on a container, so this predicate is what exercises the "carries checks of its own" half of `buildsValue`, and a check that can never reject leaves that half uncovered. Rejecting every empty value makes that rejection common rather than lucky.
|
|
860
|
+
return { schema: c.schema.refine(nonEmpty), ok: () => c.ok() };
|
|
861
|
+
}
|
|
862
|
+
case "transform": {
|
|
863
|
+
const c = generate(rnd, depth - 1);
|
|
864
|
+
return { schema: c.schema.transform((v: unknown) => ({ wrapped: v })), ok: () => c.ok() };
|
|
865
|
+
}
|
|
866
|
+
default: {
|
|
867
|
+
const c = generate(rnd, depth - 1);
|
|
868
|
+
return { schema: c.schema.pipe(z.any()), ok: () => c.ok() };
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
const HOSTILE: unknown[] = [
|
|
874
|
+
undefined,
|
|
875
|
+
null,
|
|
876
|
+
Number.NaN,
|
|
877
|
+
-0,
|
|
878
|
+
0,
|
|
879
|
+
"",
|
|
880
|
+
"x",
|
|
881
|
+
true,
|
|
882
|
+
false,
|
|
883
|
+
[],
|
|
884
|
+
{},
|
|
885
|
+
[1, 2],
|
|
886
|
+
{ k0: 1 },
|
|
887
|
+
Object.create(null),
|
|
888
|
+
new Date(Number.NaN),
|
|
889
|
+
1n,
|
|
890
|
+
Symbol.iterator,
|
|
891
|
+
Number.POSITIVE_INFINITY,
|
|
892
|
+
];
|
|
893
|
+
|
|
894
|
+
function corrupt(rnd: () => number, value: unknown, depth = 0): unknown {
|
|
895
|
+
const pick = <T>(xs: T[]): T => xs[Math.floor(rnd() * xs.length)];
|
|
896
|
+
if (depth > 2 || rnd() < 0.35) return pick(HOSTILE);
|
|
897
|
+
if (Array.isArray(value)) {
|
|
898
|
+
const out = value.slice();
|
|
899
|
+
if (out.length && rnd() < 0.6) out[Math.floor(rnd() * out.length)] = corrupt(rnd, out[0], depth + 1);
|
|
900
|
+
else out.push(pick(HOSTILE));
|
|
901
|
+
return out;
|
|
902
|
+
}
|
|
903
|
+
if (value && typeof value === "object") {
|
|
904
|
+
const out: Record<string, unknown> = { ...(value as Record<string, unknown>) };
|
|
905
|
+
const keys = Object.keys(out);
|
|
906
|
+
if (keys.length && rnd() < 0.6) out[pick(keys)] = corrupt(rnd, out[pick(keys)], depth + 1);
|
|
907
|
+
else if (rnd() < 0.5) out[`extra${Math.floor(rnd() * 3)}`] = pick(HOSTILE);
|
|
908
|
+
else delete out[pick(keys)];
|
|
909
|
+
return out;
|
|
910
|
+
}
|
|
911
|
+
return pick(HOSTILE);
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
test("assert mode agrees with the parser and the runtime across generated schemas", () => {
|
|
915
|
+
let accepted = 0;
|
|
916
|
+
let rejected = 0;
|
|
917
|
+
let refused = 0;
|
|
918
|
+
|
|
919
|
+
for (const seed of [1, 7, 42, 1337]) {
|
|
920
|
+
const rnd = makeRng(seed);
|
|
921
|
+
for (let i = 0; i < 150; i++) {
|
|
922
|
+
const g = generate(rnd, 1 + Math.floor(rnd() * 3));
|
|
923
|
+
const parser = attempt(() => compileFn(g.schema));
|
|
924
|
+
const validator = attempt(() => compileFn(g.schema, { assertOnly: true }));
|
|
925
|
+
// A one-sided refusal is a silent loss of the fast path, so it fails here rather than dropping the schema.
|
|
926
|
+
expect(!!validator.threw, `assert-mode refusal disagrees with the parser, seed ${seed} case ${i}`).toBe(
|
|
927
|
+
!!parser.threw
|
|
928
|
+
);
|
|
929
|
+
const parseFn = parser.value;
|
|
930
|
+
const assertFn = validator.value;
|
|
931
|
+
if (!parseFn || !assertFn) {
|
|
932
|
+
refused++;
|
|
933
|
+
continue;
|
|
934
|
+
}
|
|
935
|
+
const compiled = attempt(() => compile(g.schema));
|
|
936
|
+
const compiledSchema = compiled.value;
|
|
937
|
+
|
|
938
|
+
for (let j = 0; j < 6; j++) {
|
|
939
|
+
const input = j < 3 ? g.ok() : corrupt(rnd, g.ok());
|
|
940
|
+
const label = `seed ${seed} case ${i}/${j} input ${describe(input)}`;
|
|
941
|
+
|
|
942
|
+
const viaParser = attempt(() => parseFn(input) !== INVALID);
|
|
943
|
+
const viaValidator = attempt(() => assertFn(input) !== INVALID);
|
|
944
|
+
expect(viaValidator.threw ?? "did not throw", `assert-mode throw disagrees, ${label}`).toBe(
|
|
945
|
+
viaParser.threw ?? "did not throw"
|
|
946
|
+
);
|
|
947
|
+
if (viaParser.threw) continue;
|
|
948
|
+
expect(viaValidator.value, `assert-mode verdict disagrees, ${label}`).toBe(viaParser.value);
|
|
949
|
+
|
|
950
|
+
const runtime = attempt(() => g.schema.safeParse(input).success);
|
|
951
|
+
if (runtime.threw) continue;
|
|
952
|
+
expect(viaParser.value, `compiled verdict disagrees with the runtime, ${label}`).toBe(runtime.value);
|
|
953
|
+
if (compiledSchema) {
|
|
954
|
+
expect(z.validate(compiledSchema, input), `z.validate disagrees with the runtime, ${label}`).toBe(
|
|
955
|
+
runtime.value
|
|
956
|
+
);
|
|
957
|
+
}
|
|
958
|
+
if (runtime.value) accepted++;
|
|
959
|
+
else rejected++;
|
|
960
|
+
}
|
|
961
|
+
}
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
// Guard against a corpus that only ever passes: agreement on 3600 accepted verdicts would prove nothing about rejection.
|
|
965
|
+
expect(accepted, "generated corpus produced too few accepted inputs").toBeGreaterThan(500);
|
|
966
|
+
expect(rejected, "generated corpus produced too few rejected inputs").toBeGreaterThan(500);
|
|
967
|
+
// Every construct the generator emits compiles today. Pinning it means a schema that starts refusing surfaces here instead of quietly shrinking the corpus behind the floors above.
|
|
968
|
+
expect(refused, "a generated schema stopped compiling").toBe(0);
|
|
969
|
+
});
|