ima2-gen 3.19.0 → 3.20.0
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/docs/migration/runtime-test-inventory.md +2 -1
- package/lib/oauthLauncher.js +10 -5
- package/node_modules/zod/README.md +2 -2
- package/node_modules/zod/compile.cjs +19 -0
- package/node_modules/zod/index.cjs +19 -0
- package/node_modules/zod/locales/index.cjs +19 -0
- package/node_modules/zod/mini/index.cjs +19 -0
- package/node_modules/zod/package.json +8 -7
- package/node_modules/zod/src/v3/helpers/errorUtil.ts +1 -1
- package/node_modules/zod/src/v4/classic/external.ts +2 -0
- package/node_modules/zod/src/v4/classic/from-json-schema.ts +248 -25
- package/node_modules/zod/src/v4/classic/schemas.ts +243 -168
- package/node_modules/zod/src/v4/classic/tests/assignability.test.ts +60 -9
- package/node_modules/zod/src/v4/classic/tests/bigint.test.ts +6 -0
- package/node_modules/zod/src/v4/classic/tests/continuability.test.ts +2 -2
- package/node_modules/zod/src/v4/classic/tests/cyclic-data.test.ts +265 -0
- package/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +112 -6
- package/node_modules/zod/src/v4/classic/tests/enum.test.ts +9 -0
- package/node_modules/zod/src/v4/classic/tests/error.test.ts +130 -1
- package/node_modules/zod/src/v4/classic/tests/from-json-schema.test.ts +157 -0
- package/node_modules/zod/src/v4/classic/tests/iban.test.ts +81 -0
- package/node_modules/zod/src/v4/classic/tests/instance-footprint.test.ts +40 -2
- package/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +27 -7
- package/node_modules/zod/src/v4/classic/tests/issue-schema.test.ts +88 -56
- package/node_modules/zod/src/v4/classic/tests/number.test.ts +39 -0
- package/node_modules/zod/src/v4/classic/tests/object.test.ts +56 -0
- package/node_modules/zod/src/v4/classic/tests/optin-ladder.test.ts +3 -2
- package/node_modules/zod/src/v4/classic/tests/prefault.test.ts +70 -0
- package/node_modules/zod/src/v4/classic/tests/properties.test.ts +141 -0
- package/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +46 -1
- package/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +19 -0
- package/node_modules/zod/src/v4/classic/tests/string.test.ts +95 -1
- package/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +33 -1
- package/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +234 -38
- package/node_modules/zod/src/v4/classic/tests/validate.test.ts +569 -0
- package/node_modules/zod/src/v4/core/api.ts +44 -28
- package/node_modules/zod/src/v4/core/checks.ts +62 -102
- package/node_modules/zod/src/v4/core/compile.ts +218 -93
- package/node_modules/zod/src/v4/core/core.ts +1 -3
- package/node_modules/zod/src/v4/core/doc.ts +6 -2
- package/node_modules/zod/src/v4/core/errors.ts +3 -6
- package/node_modules/zod/src/v4/core/json-schema-generator.ts +2 -2
- package/node_modules/zod/src/v4/core/json-schema-processors.ts +185 -81
- package/node_modules/zod/src/v4/core/memoizer.ts +75 -28
- package/node_modules/zod/src/v4/core/parse.ts +37 -16
- package/node_modules/zod/src/v4/core/regexes.ts +14 -4
- package/node_modules/zod/src/v4/core/schemas.ts +296 -132
- package/node_modules/zod/src/v4/core/tests/cached.test.ts +54 -0
- package/node_modules/zod/src/v4/core/tests/compile-differential.test.ts +35 -0
- package/node_modules/zod/src/v4/core/tests/compile-generative.test.ts +445 -0
- package/node_modules/zod/src/v4/core/tests/compile.test.ts +399 -2
- package/node_modules/zod/src/v4/core/tests/email-regex.test.ts +140 -0
- package/node_modules/zod/src/v4/core/tests/locales/tg.test.ts +85 -0
- package/node_modules/zod/src/v4/core/tests/polyfill-collision.test.ts +46 -0
- package/node_modules/zod/src/v4/core/tests/url-no-canparse.test.ts +118 -16
- package/node_modules/zod/src/v4/core/to-json-schema.ts +9 -7
- package/node_modules/zod/src/v4/core/util.ts +218 -147
- package/node_modules/zod/src/v4/core/versions.ts +2 -2
- package/node_modules/zod/src/v4/locales/ar.ts +2 -0
- package/node_modules/zod/src/v4/locales/az.ts +2 -0
- package/node_modules/zod/src/v4/locales/be.ts +2 -0
- package/node_modules/zod/src/v4/locales/bg.ts +2 -0
- package/node_modules/zod/src/v4/locales/bn.ts +2 -0
- package/node_modules/zod/src/v4/locales/ca.ts +2 -0
- package/node_modules/zod/src/v4/locales/ckb.ts +2 -0
- package/node_modules/zod/src/v4/locales/cs.ts +2 -0
- package/node_modules/zod/src/v4/locales/da.ts +2 -0
- package/node_modules/zod/src/v4/locales/de.ts +2 -0
- package/node_modules/zod/src/v4/locales/el.ts +2 -0
- package/node_modules/zod/src/v4/locales/en.ts +2 -0
- package/node_modules/zod/src/v4/locales/eo.ts +2 -0
- package/node_modules/zod/src/v4/locales/es.ts +2 -0
- package/node_modules/zod/src/v4/locales/fa.ts +2 -0
- package/node_modules/zod/src/v4/locales/fi.ts +2 -0
- package/node_modules/zod/src/v4/locales/fr-CA.ts +2 -0
- package/node_modules/zod/src/v4/locales/fr.ts +2 -0
- package/node_modules/zod/src/v4/locales/gu.ts +2 -0
- package/node_modules/zod/src/v4/locales/he.ts +2 -0
- package/node_modules/zod/src/v4/locales/hi.ts +2 -0
- package/node_modules/zod/src/v4/locales/hr.ts +2 -0
- package/node_modules/zod/src/v4/locales/hu.ts +2 -0
- package/node_modules/zod/src/v4/locales/hy.ts +2 -0
- package/node_modules/zod/src/v4/locales/id.ts +2 -0
- package/node_modules/zod/src/v4/locales/index.ts +1 -0
- package/node_modules/zod/src/v4/locales/is.ts +2 -0
- package/node_modules/zod/src/v4/locales/it.ts +2 -0
- package/node_modules/zod/src/v4/locales/ja.ts +2 -0
- package/node_modules/zod/src/v4/locales/ka.ts +2 -0
- package/node_modules/zod/src/v4/locales/km.ts +2 -0
- package/node_modules/zod/src/v4/locales/kn.ts +2 -0
- package/node_modules/zod/src/v4/locales/ko.ts +2 -0
- package/node_modules/zod/src/v4/locales/lt.ts +2 -0
- package/node_modules/zod/src/v4/locales/mk.ts +2 -0
- package/node_modules/zod/src/v4/locales/ms.ts +2 -0
- package/node_modules/zod/src/v4/locales/ne.ts +2 -0
- package/node_modules/zod/src/v4/locales/nl.ts +2 -0
- package/node_modules/zod/src/v4/locales/nn.ts +2 -0
- package/node_modules/zod/src/v4/locales/no.ts +2 -0
- package/node_modules/zod/src/v4/locales/ota.ts +2 -0
- package/node_modules/zod/src/v4/locales/pl.ts +2 -0
- package/node_modules/zod/src/v4/locales/ps.ts +2 -0
- package/node_modules/zod/src/v4/locales/pt-BR.ts +2 -0
- package/node_modules/zod/src/v4/locales/pt.ts +2 -0
- package/node_modules/zod/src/v4/locales/ro.ts +2 -0
- package/node_modules/zod/src/v4/locales/ru.ts +2 -0
- package/node_modules/zod/src/v4/locales/sk.ts +2 -0
- package/node_modules/zod/src/v4/locales/sl.ts +2 -0
- package/node_modules/zod/src/v4/locales/sv.ts +2 -0
- package/node_modules/zod/src/v4/locales/ta.ts +2 -0
- package/node_modules/zod/src/v4/locales/tg.ts +135 -0
- package/node_modules/zod/src/v4/locales/th.ts +2 -0
- package/node_modules/zod/src/v4/locales/tk.ts +2 -0
- package/node_modules/zod/src/v4/locales/tr.ts +2 -0
- package/node_modules/zod/src/v4/locales/uk.ts +2 -0
- package/node_modules/zod/src/v4/locales/ur.ts +2 -0
- package/node_modules/zod/src/v4/locales/uz.ts +2 -0
- package/node_modules/zod/src/v4/locales/vi.ts +2 -0
- package/node_modules/zod/src/v4/locales/yo.ts +2 -0
- package/node_modules/zod/src/v4/locales/zh-CN.ts +2 -0
- package/node_modules/zod/src/v4/locales/zh-TW.ts +2 -0
- package/node_modules/zod/src/v4/mini/external.ts +2 -0
- package/node_modules/zod/src/v4/mini/schemas.ts +32 -7
- package/node_modules/zod/src/v4/mini/tests/checks.test.ts +1 -1
- package/node_modules/zod/src/v4/mini/tests/computed.test.ts +11 -17
- package/node_modules/zod/src/v4/mini/tests/index.test.ts +86 -0
- package/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +16 -0
- package/node_modules/zod/src/v4/mini/tests/string.test.ts +23 -0
- package/node_modules/zod/v3/ZodError.cjs +19 -0
- package/node_modules/zod/v3/errors.cjs +19 -0
- package/node_modules/zod/v3/external.cjs +19 -0
- package/node_modules/zod/v3/helpers/enumUtil.cjs +19 -0
- package/node_modules/zod/v3/helpers/errorUtil.cjs +20 -1
- package/node_modules/zod/v3/helpers/errorUtil.js +1 -1
- package/node_modules/zod/v3/helpers/parseUtil.cjs +19 -0
- package/node_modules/zod/v3/helpers/partialUtil.cjs +19 -0
- package/node_modules/zod/v3/helpers/typeAliases.cjs +19 -0
- package/node_modules/zod/v3/helpers/util.cjs +19 -0
- package/node_modules/zod/v3/index.cjs +19 -0
- package/node_modules/zod/v3/standard-schema.cjs +19 -0
- package/node_modules/zod/v3/types.cjs +19 -0
- package/node_modules/zod/v4/classic/checks.cjs +19 -0
- package/node_modules/zod/v4/classic/coerce.cjs +19 -0
- package/node_modules/zod/v4/classic/compat.cjs +19 -0
- package/node_modules/zod/v4/classic/deep-partial.cjs +19 -0
- package/node_modules/zod/v4/classic/errors.cjs +19 -0
- package/node_modules/zod/v4/classic/external.cjs +22 -1
- package/node_modules/zod/v4/classic/external.d.cts +1 -1
- package/node_modules/zod/v4/classic/external.d.ts +1 -1
- package/node_modules/zod/v4/classic/external.js +1 -1
- package/node_modules/zod/v4/classic/from-json-schema.cjs +264 -24
- package/node_modules/zod/v4/classic/from-json-schema.js +245 -24
- package/node_modules/zod/v4/classic/in-out.cjs +19 -0
- package/node_modules/zod/v4/classic/index.cjs +19 -0
- package/node_modules/zod/v4/classic/iso.cjs +19 -0
- package/node_modules/zod/v4/classic/parse.cjs +19 -0
- package/node_modules/zod/v4/classic/schemas.cjs +100 -35
- package/node_modules/zod/v4/classic/schemas.d.cts +15 -1
- package/node_modules/zod/v4/classic/schemas.d.ts +15 -1
- package/node_modules/zod/v4/classic/schemas.js +77 -33
- package/node_modules/zod/v4/core/api.cjs +45 -22
- package/node_modules/zod/v4/core/api.d.cts +12 -6
- package/node_modules/zod/v4/core/api.d.ts +12 -6
- package/node_modules/zod/v4/core/api.js +25 -22
- package/node_modules/zod/v4/core/checks.cjs +51 -97
- package/node_modules/zod/v4/core/checks.d.cts +17 -1
- package/node_modules/zod/v4/core/checks.d.ts +17 -1
- package/node_modules/zod/v4/core/checks.js +31 -96
- package/node_modules/zod/v4/core/compile.cjs +173 -78
- package/node_modules/zod/v4/core/compile.d.cts +18 -4
- package/node_modules/zod/v4/core/compile.d.ts +18 -4
- package/node_modules/zod/v4/core/compile.js +154 -79
- package/node_modules/zod/v4/core/core.cjs +20 -1
- package/node_modules/zod/v4/core/core.js +1 -1
- package/node_modules/zod/v4/core/doc.cjs +26 -2
- package/node_modules/zod/v4/core/doc.js +7 -2
- package/node_modules/zod/v4/core/errors.cjs +21 -5
- package/node_modules/zod/v4/core/errors.js +2 -5
- package/node_modules/zod/v4/core/index.cjs +19 -0
- package/node_modules/zod/v4/core/json-schema-generator.cjs +20 -1
- package/node_modules/zod/v4/core/json-schema-generator.js +2 -2
- package/node_modules/zod/v4/core/json-schema-processors.cjs +188 -72
- package/node_modules/zod/v4/core/json-schema-processors.d.cts +16 -0
- package/node_modules/zod/v4/core/json-schema-processors.d.ts +16 -0
- package/node_modules/zod/v4/core/json-schema-processors.js +170 -74
- package/node_modules/zod/v4/core/json-schema.cjs +19 -0
- package/node_modules/zod/v4/core/memoizer.cjs +111 -23
- package/node_modules/zod/v4/core/memoizer.js +69 -23
- package/node_modules/zod/v4/core/parse.cjs +56 -16
- package/node_modules/zod/v4/core/parse.js +37 -16
- package/node_modules/zod/v4/core/regexes.cjs +31 -6
- package/node_modules/zod/v4/core/regexes.d.cts +3 -0
- package/node_modules/zod/v4/core/regexes.d.ts +3 -0
- package/node_modules/zod/v4/core/regexes.js +10 -4
- package/node_modules/zod/v4/core/registries.cjs +19 -0
- package/node_modules/zod/v4/core/schemas.cjs +302 -114
- package/node_modules/zod/v4/core/schemas.d.cts +28 -8
- package/node_modules/zod/v4/core/schemas.d.ts +28 -8
- package/node_modules/zod/v4/core/schemas.js +279 -113
- package/node_modules/zod/v4/core/standard-schema.cjs +19 -0
- package/node_modules/zod/v4/core/to-json-schema.cjs +28 -7
- package/node_modules/zod/v4/core/to-json-schema.d.cts +4 -3
- package/node_modules/zod/v4/core/to-json-schema.d.ts +4 -3
- package/node_modules/zod/v4/core/to-json-schema.js +7 -6
- package/node_modules/zod/v4/core/util.cjs +177 -143
- package/node_modules/zod/v4/core/util.d.cts +25 -4
- package/node_modules/zod/v4/core/util.d.ts +25 -4
- package/node_modules/zod/v4/core/util.js +156 -143
- package/node_modules/zod/v4/core/versions.cjs +21 -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 +19 -0
- package/node_modules/zod/v4/index.cjs +19 -0
- package/node_modules/zod/v4/locales/ar.cjs +2 -0
- package/node_modules/zod/v4/locales/ar.js +2 -0
- package/node_modules/zod/v4/locales/az.cjs +2 -0
- package/node_modules/zod/v4/locales/az.js +2 -0
- package/node_modules/zod/v4/locales/be.cjs +2 -0
- package/node_modules/zod/v4/locales/be.js +2 -0
- package/node_modules/zod/v4/locales/bg.cjs +2 -0
- package/node_modules/zod/v4/locales/bg.js +2 -0
- package/node_modules/zod/v4/locales/bn.cjs +2 -0
- package/node_modules/zod/v4/locales/bn.js +2 -0
- package/node_modules/zod/v4/locales/ca.cjs +2 -0
- package/node_modules/zod/v4/locales/ca.js +2 -0
- package/node_modules/zod/v4/locales/ckb.cjs +2 -0
- package/node_modules/zod/v4/locales/ckb.js +2 -0
- package/node_modules/zod/v4/locales/cs.cjs +2 -0
- package/node_modules/zod/v4/locales/cs.js +2 -0
- package/node_modules/zod/v4/locales/da.cjs +2 -0
- package/node_modules/zod/v4/locales/da.js +2 -0
- package/node_modules/zod/v4/locales/de.cjs +2 -0
- package/node_modules/zod/v4/locales/de.js +2 -0
- package/node_modules/zod/v4/locales/el.cjs +2 -0
- package/node_modules/zod/v4/locales/el.js +2 -0
- package/node_modules/zod/v4/locales/en.cjs +2 -0
- package/node_modules/zod/v4/locales/en.js +2 -0
- package/node_modules/zod/v4/locales/eo.cjs +2 -0
- package/node_modules/zod/v4/locales/eo.js +2 -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 +2 -0
- package/node_modules/zod/v4/locales/fa.js +2 -0
- package/node_modules/zod/v4/locales/fi.cjs +2 -0
- package/node_modules/zod/v4/locales/fi.js +2 -0
- package/node_modules/zod/v4/locales/fr-CA.cjs +2 -0
- package/node_modules/zod/v4/locales/fr-CA.js +2 -0
- package/node_modules/zod/v4/locales/fr.cjs +2 -0
- package/node_modules/zod/v4/locales/fr.js +2 -0
- package/node_modules/zod/v4/locales/gu.cjs +2 -0
- package/node_modules/zod/v4/locales/gu.js +2 -0
- package/node_modules/zod/v4/locales/he.cjs +2 -0
- package/node_modules/zod/v4/locales/he.js +2 -0
- package/node_modules/zod/v4/locales/hi.cjs +2 -0
- package/node_modules/zod/v4/locales/hi.js +2 -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 +2 -0
- package/node_modules/zod/v4/locales/hu.js +2 -0
- package/node_modules/zod/v4/locales/hy.cjs +2 -0
- package/node_modules/zod/v4/locales/hy.js +2 -0
- package/node_modules/zod/v4/locales/id.cjs +2 -0
- package/node_modules/zod/v4/locales/id.js +2 -0
- package/node_modules/zod/v4/locales/index.cjs +22 -1
- package/node_modules/zod/v4/locales/index.d.cts +1 -0
- package/node_modules/zod/v4/locales/index.d.ts +1 -0
- package/node_modules/zod/v4/locales/index.js +1 -0
- package/node_modules/zod/v4/locales/is.cjs +2 -0
- package/node_modules/zod/v4/locales/is.js +2 -0
- package/node_modules/zod/v4/locales/it.cjs +2 -0
- package/node_modules/zod/v4/locales/it.js +2 -0
- package/node_modules/zod/v4/locales/ja.cjs +2 -0
- package/node_modules/zod/v4/locales/ja.js +2 -0
- package/node_modules/zod/v4/locales/ka.cjs +2 -0
- package/node_modules/zod/v4/locales/ka.js +2 -0
- package/node_modules/zod/v4/locales/km.cjs +2 -0
- package/node_modules/zod/v4/locales/km.js +2 -0
- package/node_modules/zod/v4/locales/kn.cjs +2 -0
- package/node_modules/zod/v4/locales/kn.js +2 -0
- package/node_modules/zod/v4/locales/ko.cjs +2 -0
- package/node_modules/zod/v4/locales/ko.js +2 -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 +2 -0
- package/node_modules/zod/v4/locales/mk.js +2 -0
- package/node_modules/zod/v4/locales/ms.cjs +2 -0
- package/node_modules/zod/v4/locales/ms.js +2 -0
- package/node_modules/zod/v4/locales/ne.cjs +2 -0
- package/node_modules/zod/v4/locales/ne.js +2 -0
- package/node_modules/zod/v4/locales/nl.cjs +2 -0
- package/node_modules/zod/v4/locales/nl.js +2 -0
- package/node_modules/zod/v4/locales/nn.cjs +2 -0
- package/node_modules/zod/v4/locales/nn.js +2 -0
- package/node_modules/zod/v4/locales/no.cjs +2 -0
- package/node_modules/zod/v4/locales/no.js +2 -0
- package/node_modules/zod/v4/locales/ota.cjs +2 -0
- package/node_modules/zod/v4/locales/ota.js +2 -0
- package/node_modules/zod/v4/locales/pl.cjs +2 -0
- package/node_modules/zod/v4/locales/pl.js +2 -0
- package/node_modules/zod/v4/locales/ps.cjs +2 -0
- package/node_modules/zod/v4/locales/ps.js +2 -0
- package/node_modules/zod/v4/locales/pt-BR.cjs +2 -0
- package/node_modules/zod/v4/locales/pt-BR.js +2 -0
- package/node_modules/zod/v4/locales/pt.cjs +2 -0
- package/node_modules/zod/v4/locales/pt.js +2 -0
- package/node_modules/zod/v4/locales/ro.cjs +2 -0
- package/node_modules/zod/v4/locales/ro.js +2 -0
- package/node_modules/zod/v4/locales/ru.cjs +2 -0
- package/node_modules/zod/v4/locales/ru.js +2 -0
- package/node_modules/zod/v4/locales/sk.cjs +2 -0
- package/node_modules/zod/v4/locales/sk.js +2 -0
- package/node_modules/zod/v4/locales/sl.cjs +2 -0
- package/node_modules/zod/v4/locales/sl.js +2 -0
- package/node_modules/zod/v4/locales/sv.cjs +2 -0
- package/node_modules/zod/v4/locales/sv.js +2 -0
- package/node_modules/zod/v4/locales/ta.cjs +2 -0
- package/node_modules/zod/v4/locales/ta.js +2 -0
- package/node_modules/zod/v4/locales/tg.cjs +144 -0
- package/node_modules/zod/v4/locales/tg.d.cts +5 -0
- package/node_modules/zod/v4/locales/tg.d.ts +4 -0
- package/node_modules/zod/v4/locales/tg.js +117 -0
- package/node_modules/zod/v4/locales/th.cjs +2 -0
- package/node_modules/zod/v4/locales/th.js +2 -0
- package/node_modules/zod/v4/locales/tk.cjs +2 -0
- package/node_modules/zod/v4/locales/tk.js +2 -0
- package/node_modules/zod/v4/locales/tr.cjs +2 -0
- package/node_modules/zod/v4/locales/tr.js +2 -0
- package/node_modules/zod/v4/locales/uk.cjs +2 -0
- package/node_modules/zod/v4/locales/uk.js +2 -0
- package/node_modules/zod/v4/locales/ur.cjs +2 -0
- package/node_modules/zod/v4/locales/ur.js +2 -0
- package/node_modules/zod/v4/locales/uz.cjs +2 -0
- package/node_modules/zod/v4/locales/uz.js +2 -0
- package/node_modules/zod/v4/locales/vi.cjs +2 -0
- package/node_modules/zod/v4/locales/vi.js +2 -0
- package/node_modules/zod/v4/locales/yo.cjs +2 -0
- package/node_modules/zod/v4/locales/yo.js +2 -0
- package/node_modules/zod/v4/locales/zh-CN.cjs +2 -0
- package/node_modules/zod/v4/locales/zh-CN.js +2 -0
- package/node_modules/zod/v4/locales/zh-TW.cjs +2 -0
- package/node_modules/zod/v4/locales/zh-TW.js +2 -0
- package/node_modules/zod/v4/mini/checks.cjs +19 -0
- package/node_modules/zod/v4/mini/coerce.cjs +19 -0
- package/node_modules/zod/v4/mini/deep-partial.cjs +19 -0
- package/node_modules/zod/v4/mini/external.cjs +22 -1
- package/node_modules/zod/v4/mini/external.d.cts +1 -1
- package/node_modules/zod/v4/mini/external.d.ts +1 -1
- package/node_modules/zod/v4/mini/external.js +1 -1
- package/node_modules/zod/v4/mini/in-out.cjs +19 -0
- package/node_modules/zod/v4/mini/index.cjs +19 -0
- package/node_modules/zod/v4/mini/iso.cjs +19 -0
- package/node_modules/zod/v4/mini/parse.cjs +19 -0
- package/node_modules/zod/v4/mini/schemas.cjs +44 -8
- package/node_modules/zod/v4/mini/schemas.d.cts +6 -1
- package/node_modules/zod/v4/mini/schemas.d.ts +6 -1
- package/node_modules/zod/v4/mini/schemas.js +21 -6
- package/node_modules/zod/v4-mini/index.cjs +19 -0
- package/package.json +6 -6
- package/routes/health.js +10 -1
- package/ui/dist/.vite/manifest.json +64 -64
- package/ui/dist/assets/{AgentWorkspace-C6ke6Eo4.js → AgentWorkspace-CENfXAob.js} +1 -1
- package/ui/dist/assets/{App-pMN1OjNW.js → App-B9y6oVuL.js} +8 -8
- package/ui/dist/assets/{AssetGenWorkspace-DzEfpUy_.js → AssetGenWorkspace-fL2MjYj9.js} +2 -2
- package/ui/dist/assets/{AssetMediaLightbox-Bx0azN0S.js → AssetMediaLightbox-Be4arnGs.js} +1 -1
- package/ui/dist/assets/{AssetsWorkspace-CHw1u9VC.js → AssetsWorkspace-7z4wyfp0.js} +1 -1
- package/ui/dist/assets/{CardNewsWorkspace-DsjqhaYO.js → CardNewsWorkspace-DSldDpsl.js} +1 -1
- package/ui/dist/assets/{GenerationRequestLogPanel-EYEiHIr9.js → GenerationRequestLogPanel-CcQKi89f.js} +1 -1
- package/ui/dist/assets/{HomeWorkspace-DbnY1YF2.js → HomeWorkspace-BZDk2X1U.js} +1 -1
- package/ui/dist/assets/{KeyingPanel-8J_RMrxg.js → KeyingPanel-snhXKnA3.js} +1 -1
- package/ui/dist/assets/{NodeCanvas-DmjbNcTa.js → NodeCanvas-CJQXsS0r.js} +1 -1
- package/ui/dist/assets/{PromptBuilderPanel-CL34Jpso.js → PromptBuilderPanel-B-YP1ph5.js} +1 -1
- package/ui/dist/assets/{PromptImportDialog-B24cvEkK.js → PromptImportDialog-ssPMxE4j.js} +2 -2
- package/ui/dist/assets/{PromptImportDiscoverySection-Bbw1_J_3.js → PromptImportDiscoverySection-CvOgGTOs.js} +1 -1
- package/ui/dist/assets/{PromptImportFolderSection-CMpxuE8e.js → PromptImportFolderSection-CxR9qxbi.js} +1 -1
- package/ui/dist/assets/{PromptLibraryPanel-Ct98TJ61.js → PromptLibraryPanel-DjYgbXes.js} +2 -2
- package/ui/dist/assets/{SettingsWorkspace-DL9Tm90P.js → SettingsWorkspace-BtruYb6g.js} +1 -1
- package/ui/dist/assets/{SpriteRecipeWorkspace-BJUH1ddP.js → SpriteRecipeWorkspace-DBrYOYOK.js} +1 -1
- package/ui/dist/assets/{index-D_LpLGWV.js → index-CWFgCqE1.js} +3 -3
- package/ui/dist/assets/{index-CHeVGnoy.js → index-va83o9G5.js} +12 -12
- package/ui/dist/assets/{pptxgen.es-s4xfPXLT.js → pptxgen.es-D-kntoLD.js} +1 -1
- package/ui/dist/assets/{promptBuilderStore-DQR29LwN.js → promptBuilderStore-BdGPLEra.js} +1 -1
- package/ui/dist/assets/useAgentDialogFocus-BDdVl-nq.js +1 -0
- package/ui/dist/index.html +1 -1
- package/ui/dist/assets/useAgentDialogFocus-DAeS9IWG.js +0 -1
|
@@ -58,16 +58,20 @@ export type CheckTypeParams<
|
|
|
58
58
|
> = Params<T, NonNullable<T["_zod"]["isst"] | T["_zod"]["issc"]>, "type" | "checks" | "error" | "check" | AlsoOmit>;
|
|
59
59
|
|
|
60
60
|
// String
|
|
61
|
-
export type $ZodStringParams = TypeParams<schemas.$ZodString<string>, "coerce"
|
|
61
|
+
export type $ZodStringParams = TypeParams<schemas.$ZodString<string>, "coerce"> & {
|
|
62
|
+
checks?: readonly checks.$ZodCheck<string>[];
|
|
63
|
+
};
|
|
64
|
+
|
|
65
|
+
function snapshotChecks<T extends { checks?: readonly checks.$ZodCheck<never>[] }>(def: T) {
|
|
66
|
+
if (def.checks) def.checks = [...def.checks];
|
|
67
|
+
return def as T & { checks?: NonNullable<T["checks"]>[number][] };
|
|
68
|
+
}
|
|
62
69
|
// @__NO_SIDE_EFFECTS__
|
|
63
70
|
export function _string<T extends schemas.$ZodString>(
|
|
64
71
|
Class: util.SchemaClass<T>,
|
|
65
72
|
params?: string | $ZodStringParams
|
|
66
73
|
): T {
|
|
67
|
-
return new Class({
|
|
68
|
-
type: "string",
|
|
69
|
-
...util.normalizeParams(params),
|
|
70
|
-
});
|
|
74
|
+
return new Class(snapshotChecks({ type: "string" as const, ...util.normalizeParams(params) }));
|
|
71
75
|
}
|
|
72
76
|
|
|
73
77
|
// @__NO_SIDE_EFFECTS__
|
|
@@ -75,11 +79,7 @@ export function _coercedString<T extends schemas.$ZodString>(
|
|
|
75
79
|
Class: util.SchemaClass<T>,
|
|
76
80
|
params?: string | $ZodStringParams
|
|
77
81
|
): T {
|
|
78
|
-
return new Class({
|
|
79
|
-
type: "string",
|
|
80
|
-
coerce: true,
|
|
81
|
-
...util.normalizeParams(params),
|
|
82
|
-
});
|
|
82
|
+
return new Class(snapshotChecks({ type: "string" as const, coerce: true, ...util.normalizeParams(params) }));
|
|
83
83
|
}
|
|
84
84
|
|
|
85
85
|
export type $ZodStringFormatParams = CheckTypeParams<
|
|
@@ -498,6 +498,23 @@ export function _creditCard<T extends schemas.$ZodCreditCard>(
|
|
|
498
498
|
});
|
|
499
499
|
}
|
|
500
500
|
|
|
501
|
+
// IBAN
|
|
502
|
+
export type $ZodIBANParams = StringFormatParams<schemas.$ZodIBAN, "pattern" | "when">;
|
|
503
|
+
export type $ZodCheckIBANParams = CheckStringFormatParams<schemas.$ZodIBAN, "pattern" | "when">;
|
|
504
|
+
// @__NO_SIDE_EFFECTS__
|
|
505
|
+
export function _iban<T extends schemas.$ZodIBAN>(
|
|
506
|
+
Class: util.SchemaClass<T>,
|
|
507
|
+
params?: string | $ZodIBANParams | $ZodCheckIBANParams
|
|
508
|
+
): T {
|
|
509
|
+
return new Class({
|
|
510
|
+
type: "string",
|
|
511
|
+
format: "iban",
|
|
512
|
+
check: "string_format",
|
|
513
|
+
abort: false,
|
|
514
|
+
...util.normalizeParams(params),
|
|
515
|
+
});
|
|
516
|
+
}
|
|
517
|
+
|
|
501
518
|
// JWT
|
|
502
519
|
export type $ZodJWTParams = StringFormatParams<schemas.$ZodJWT, "pattern" | "when">;
|
|
503
520
|
export type $ZodCheckJWTParams = CheckStringFormatParams<schemas.$ZodJWT, "pattern" | "when">;
|
|
@@ -591,7 +608,9 @@ export function _isoDuration<T extends schemas.$ZodISODuration>(
|
|
|
591
608
|
}
|
|
592
609
|
|
|
593
610
|
// Number
|
|
594
|
-
export type $ZodNumberParams = TypeParams<schemas.$ZodNumber<number>, "coerce"
|
|
611
|
+
export type $ZodNumberParams = TypeParams<schemas.$ZodNumber<number>, "coerce"> & {
|
|
612
|
+
checks?: readonly checks.$ZodCheck<number>[];
|
|
613
|
+
};
|
|
595
614
|
export type $ZodNumberFormatParams = CheckTypeParams<schemas.$ZodNumberFormat, "format" | "coerce">;
|
|
596
615
|
export type $ZodCheckNumberFormatParams = CheckParams<checks.$ZodCheckNumberFormat, "format" | "when">;
|
|
597
616
|
// @__NO_SIDE_EFFECTS__
|
|
@@ -599,11 +618,7 @@ export function _number<T extends schemas.$ZodNumber>(
|
|
|
599
618
|
Class: util.SchemaClass<T>,
|
|
600
619
|
params?: string | $ZodNumberParams
|
|
601
620
|
): T {
|
|
602
|
-
return new Class({
|
|
603
|
-
type: "number",
|
|
604
|
-
checks: [],
|
|
605
|
-
...util.normalizeParams(params),
|
|
606
|
-
});
|
|
621
|
+
return new Class(snapshotChecks({ type: "number" as const, checks: [], ...util.normalizeParams(params) }));
|
|
607
622
|
}
|
|
608
623
|
|
|
609
624
|
// @__NO_SIDE_EFFECTS__
|
|
@@ -611,12 +626,9 @@ export function _coercedNumber<T extends schemas.$ZodNumber>(
|
|
|
611
626
|
Class: util.SchemaClass<T>,
|
|
612
627
|
params?: string | $ZodNumberParams
|
|
613
628
|
): T {
|
|
614
|
-
return new Class(
|
|
615
|
-
type: "number",
|
|
616
|
-
|
|
617
|
-
checks: [],
|
|
618
|
-
...util.normalizeParams(params),
|
|
619
|
-
});
|
|
629
|
+
return new Class(
|
|
630
|
+
snapshotChecks({ type: "number" as const, coerce: true, checks: [], ...util.normalizeParams(params) })
|
|
631
|
+
);
|
|
620
632
|
}
|
|
621
633
|
|
|
622
634
|
// @__NO_SIDE_EFFECTS__
|
|
@@ -1118,7 +1130,7 @@ export function _property<K extends string, T extends schemas.$ZodType>(
|
|
|
1118
1130
|
property: K,
|
|
1119
1131
|
schema: T,
|
|
1120
1132
|
params?: string | $ZodCheckPropertyParams
|
|
1121
|
-
): checks.$ZodCheckProperty<{ [k in K]: core.
|
|
1133
|
+
): checks.$ZodCheckProperty<{ [k in K]: util.Widen<core.input<T>> }> {
|
|
1122
1134
|
return new checks.$ZodCheckProperty({
|
|
1123
1135
|
check: "property",
|
|
1124
1136
|
property,
|
|
@@ -1127,13 +1139,17 @@ export function _property<K extends string, T extends schemas.$ZodType>(
|
|
|
1127
1139
|
});
|
|
1128
1140
|
}
|
|
1129
1141
|
|
|
1142
|
+
export type $ZodCheckPropertiesParams = CheckParams<checks.$ZodCheckProperties, "shape" | "when">;
|
|
1130
1143
|
// @__NO_SIDE_EFFECTS__
|
|
1131
1144
|
export function _properties<Shape extends schemas.$ZodShape>(
|
|
1132
|
-
shape: Shape
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1145
|
+
shape: Shape,
|
|
1146
|
+
params?: string | $ZodCheckPropertiesParams
|
|
1147
|
+
): checks.$ZodCheckProperties<Shape> {
|
|
1148
|
+
return new checks.$ZodCheckProperties({
|
|
1149
|
+
check: "properties",
|
|
1150
|
+
shape,
|
|
1151
|
+
...util.normalizeParams(params),
|
|
1152
|
+
}) as any;
|
|
1137
1153
|
}
|
|
1138
1154
|
|
|
1139
1155
|
export type $ZodCheckMimeTypeParams = CheckParams<checks.$ZodCheckMimeType, "mime" | "when">;
|
|
@@ -79,15 +79,6 @@ export const $ZodCheckLessThan: core.$constructor<$ZodCheckLessThan> = /*@__PURE
|
|
|
79
79
|
$ZodCheck.init(inst, def);
|
|
80
80
|
const origin = numericOriginMap[typeof def.value as "number" | "bigint" | "object"];
|
|
81
81
|
|
|
82
|
-
inst._zod.onattach.push((inst) => {
|
|
83
|
-
const bag = inst._zod.bag;
|
|
84
|
-
const curr = (def.inclusive ? bag.maximum : bag.exclusiveMaximum) ?? Number.POSITIVE_INFINITY;
|
|
85
|
-
if (def.value < curr) {
|
|
86
|
-
if (def.inclusive) bag.maximum = def.value;
|
|
87
|
-
else bag.exclusiveMaximum = def.value;
|
|
88
|
-
}
|
|
89
|
-
});
|
|
90
|
-
|
|
91
82
|
inst._zod.check = (payload) => {
|
|
92
83
|
if (def.inclusive ? payload.value <= def.value : payload.value < def.value) {
|
|
93
84
|
return;
|
|
@@ -130,15 +121,6 @@ export const $ZodCheckGreaterThan: core.$constructor<$ZodCheckGreaterThan> = /*@
|
|
|
130
121
|
$ZodCheck.init(inst, def);
|
|
131
122
|
const origin = numericOriginMap[typeof def.value as "number" | "bigint" | "object"];
|
|
132
123
|
|
|
133
|
-
inst._zod.onattach.push((inst) => {
|
|
134
|
-
const bag = inst._zod.bag;
|
|
135
|
-
const curr = (def.inclusive ? bag.minimum : bag.exclusiveMinimum) ?? Number.NEGATIVE_INFINITY;
|
|
136
|
-
if (def.value > curr) {
|
|
137
|
-
if (def.inclusive) bag.minimum = def.value;
|
|
138
|
-
else bag.exclusiveMinimum = def.value;
|
|
139
|
-
}
|
|
140
|
-
});
|
|
141
|
-
|
|
142
124
|
inst._zod.check = (payload) => {
|
|
143
125
|
if (def.inclusive ? payload.value >= def.value : payload.value > def.value) {
|
|
144
126
|
return;
|
|
@@ -181,10 +163,6 @@ export const $ZodCheckMultipleOf: core.$constructor<$ZodCheckMultipleOf<number |
|
|
|
181
163
|
/*@__PURE__*/ core.$constructor("$ZodCheckMultipleOf", (inst, def) => {
|
|
182
164
|
$ZodCheck.init(inst, def);
|
|
183
165
|
|
|
184
|
-
inst._zod.onattach.push((inst) => {
|
|
185
|
-
inst._zod.bag.multipleOf ??= def.value;
|
|
186
|
-
});
|
|
187
|
-
|
|
188
166
|
inst._zod.check = (payload) => {
|
|
189
167
|
if (typeof payload.value !== typeof def.value)
|
|
190
168
|
throw new Error("Cannot mix number and bigint in multiple_of check.");
|
|
@@ -285,14 +263,6 @@ export const $ZodCheckNumberFormat: core.$constructor<$ZodCheckNumberFormat> = /
|
|
|
285
263
|
const origin = isInt ? "int" : "number";
|
|
286
264
|
const [minimum, maximum] = util.NUMBER_FORMAT_RANGES[def.format];
|
|
287
265
|
|
|
288
|
-
inst._zod.onattach.push((inst) => {
|
|
289
|
-
const bag = inst._zod.bag;
|
|
290
|
-
bag.format = def.format;
|
|
291
|
-
bag.minimum = minimum;
|
|
292
|
-
bag.maximum = maximum;
|
|
293
|
-
if (isInt) bag.pattern = regexes.integer;
|
|
294
|
-
});
|
|
295
|
-
|
|
296
266
|
inst._zod.check = (payload) => {
|
|
297
267
|
const input = payload.value;
|
|
298
268
|
|
|
@@ -413,13 +383,6 @@ export const $ZodCheckBigIntFormat: core.$constructor<$ZodCheckBigIntFormat> = /
|
|
|
413
383
|
|
|
414
384
|
const [minimum, maximum] = util.BIGINT_FORMAT_RANGES[def.format];
|
|
415
385
|
|
|
416
|
-
inst._zod.onattach.push((inst) => {
|
|
417
|
-
const bag = inst._zod.bag;
|
|
418
|
-
bag.format = def.format;
|
|
419
|
-
bag.minimum = minimum;
|
|
420
|
-
bag.maximum = maximum;
|
|
421
|
-
});
|
|
422
|
-
|
|
423
386
|
inst._zod.check = (payload) => {
|
|
424
387
|
const input = payload.value;
|
|
425
388
|
|
|
@@ -474,11 +437,6 @@ export const $ZodCheckMaxSize: core.$constructor<$ZodCheckMaxSize> = /*@__PURE__
|
|
|
474
437
|
|
|
475
438
|
inst._zod.def.when ??= _whenHasSize;
|
|
476
439
|
|
|
477
|
-
inst._zod.onattach.push((inst) => {
|
|
478
|
-
const curr = (inst._zod.bag.maximum ?? Number.POSITIVE_INFINITY) as number;
|
|
479
|
-
if (def.maximum < curr) inst._zod.bag.maximum = def.maximum;
|
|
480
|
-
});
|
|
481
|
-
|
|
482
440
|
inst._zod.check = (payload) => {
|
|
483
441
|
const input = payload.value;
|
|
484
442
|
const size = input.size;
|
|
@@ -521,11 +479,6 @@ export const $ZodCheckMinSize: core.$constructor<$ZodCheckMinSize> = /*@__PURE__
|
|
|
521
479
|
|
|
522
480
|
inst._zod.def.when ??= _whenHasSize;
|
|
523
481
|
|
|
524
|
-
inst._zod.onattach.push((inst) => {
|
|
525
|
-
const curr = (inst._zod.bag.minimum ?? Number.NEGATIVE_INFINITY) as number;
|
|
526
|
-
if (def.minimum > curr) inst._zod.bag.minimum = def.minimum;
|
|
527
|
-
});
|
|
528
|
-
|
|
529
482
|
inst._zod.check = (payload) => {
|
|
530
483
|
const input = payload.value;
|
|
531
484
|
const size = input.size;
|
|
@@ -568,13 +521,6 @@ export const $ZodCheckSizeEquals: core.$constructor<$ZodCheckSizeEquals> = /*@__
|
|
|
568
521
|
|
|
569
522
|
inst._zod.def.when ??= _whenHasSize;
|
|
570
523
|
|
|
571
|
-
inst._zod.onattach.push((inst) => {
|
|
572
|
-
const bag = inst._zod.bag;
|
|
573
|
-
bag.minimum = def.size;
|
|
574
|
-
bag.maximum = def.size;
|
|
575
|
-
bag.size = def.size;
|
|
576
|
-
});
|
|
577
|
-
|
|
578
524
|
inst._zod.check = (payload) => {
|
|
579
525
|
const input = payload.value;
|
|
580
526
|
const size = input.size;
|
|
@@ -619,11 +565,6 @@ export const $ZodCheckMaxLength: core.$constructor<$ZodCheckMaxLength> = /*@__PU
|
|
|
619
565
|
|
|
620
566
|
inst._zod.def.when ??= _whenHasLength;
|
|
621
567
|
|
|
622
|
-
inst._zod.onattach.push((inst) => {
|
|
623
|
-
const curr = (inst._zod.bag.maximum ?? Number.POSITIVE_INFINITY) as number;
|
|
624
|
-
if (def.maximum < curr) inst._zod.bag.maximum = def.maximum;
|
|
625
|
-
});
|
|
626
|
-
|
|
627
568
|
inst._zod.check = (payload) => {
|
|
628
569
|
const input = payload.value;
|
|
629
570
|
const units = input.length;
|
|
@@ -669,11 +610,6 @@ export const $ZodCheckMinLength: core.$constructor<$ZodCheckMinLength> = /*@__PU
|
|
|
669
610
|
|
|
670
611
|
inst._zod.def.when ??= _whenHasLength;
|
|
671
612
|
|
|
672
|
-
inst._zod.onattach.push((inst) => {
|
|
673
|
-
const curr = (inst._zod.bag.minimum ?? Number.NEGATIVE_INFINITY) as number;
|
|
674
|
-
if (def.minimum > curr) inst._zod.bag.minimum = def.minimum;
|
|
675
|
-
});
|
|
676
|
-
|
|
677
613
|
inst._zod.check = (payload) => {
|
|
678
614
|
const input = payload.value;
|
|
679
615
|
const units = input.length;
|
|
@@ -723,13 +659,6 @@ export const $ZodCheckLengthEquals: core.$constructor<$ZodCheckLengthEquals> = /
|
|
|
723
659
|
|
|
724
660
|
inst._zod.def.when ??= _whenHasLength;
|
|
725
661
|
|
|
726
|
-
inst._zod.onattach.push((inst) => {
|
|
727
|
-
const bag = inst._zod.bag;
|
|
728
|
-
bag.minimum = def.length;
|
|
729
|
-
bag.maximum = def.length;
|
|
730
|
-
bag.length = def.length;
|
|
731
|
-
});
|
|
732
|
-
|
|
733
662
|
inst._zod.check = (payload) => {
|
|
734
663
|
const input = payload.value;
|
|
735
664
|
const units = input.length;
|
|
@@ -782,6 +711,7 @@ export type $ZodStringFormats =
|
|
|
782
711
|
| "json_string"
|
|
783
712
|
| "e164"
|
|
784
713
|
| "credit_card"
|
|
714
|
+
| "iban"
|
|
785
715
|
| "lowercase"
|
|
786
716
|
| "uppercase"
|
|
787
717
|
| "regex"
|
|
@@ -809,15 +739,6 @@ export const $ZodCheckStringFormat: core.$constructor<$ZodCheckStringFormat> = /
|
|
|
809
739
|
(inst, def) => {
|
|
810
740
|
$ZodCheck.init(inst, def);
|
|
811
741
|
|
|
812
|
-
inst._zod.onattach.push((inst) => {
|
|
813
|
-
const bag = inst._zod.bag as schemas.$ZodStringInternals<unknown>["bag"];
|
|
814
|
-
bag.format = def.format;
|
|
815
|
-
if (def.pattern) {
|
|
816
|
-
bag.patterns ??= new Set();
|
|
817
|
-
bag.patterns.add(def.pattern);
|
|
818
|
-
}
|
|
819
|
-
});
|
|
820
|
-
|
|
821
742
|
if (def.pattern)
|
|
822
743
|
inst._zod.check ??= (payload) => {
|
|
823
744
|
def.pattern!.lastIndex = 0;
|
|
@@ -982,12 +903,6 @@ export const $ZodCheckIncludes: core.$constructor<$ZodCheckIncludes> = /*@__PURE
|
|
|
982
903
|
// (`{N,}`), not exactly `position` chars (`{N}`).
|
|
983
904
|
const pattern = new RegExp(typeof def.position === "number" ? `^.{${def.position},}${escapedRegex}` : escapedRegex);
|
|
984
905
|
def.pattern = pattern;
|
|
985
|
-
inst._zod.onattach.push((inst) => {
|
|
986
|
-
const bag = inst._zod.bag as schemas.$ZodStringInternals<unknown>["bag"];
|
|
987
|
-
bag.patterns ??= new Set();
|
|
988
|
-
bag.patterns.add(pattern);
|
|
989
|
-
});
|
|
990
|
-
|
|
991
906
|
inst._zod.check = (payload) => {
|
|
992
907
|
if (payload.value.includes(def.includes, def.position)) return;
|
|
993
908
|
payload.issues.push({
|
|
@@ -1026,12 +941,6 @@ export const $ZodCheckStartsWith: core.$constructor<$ZodCheckStartsWith> = /*@__
|
|
|
1026
941
|
|
|
1027
942
|
const pattern = new RegExp(`^${util.escapeRegex(def.prefix)}.*`);
|
|
1028
943
|
def.pattern ??= pattern;
|
|
1029
|
-
inst._zod.onattach.push((inst) => {
|
|
1030
|
-
const bag = inst._zod.bag as schemas.$ZodStringInternals<unknown>["bag"];
|
|
1031
|
-
bag.patterns ??= new Set();
|
|
1032
|
-
bag.patterns.add(pattern);
|
|
1033
|
-
});
|
|
1034
|
-
|
|
1035
944
|
inst._zod.check = (payload) => {
|
|
1036
945
|
if (payload.value.startsWith(def.prefix)) return;
|
|
1037
946
|
payload.issues.push({
|
|
@@ -1070,12 +979,6 @@ export const $ZodCheckEndsWith: core.$constructor<$ZodCheckEndsWith> = /*@__PURE
|
|
|
1070
979
|
|
|
1071
980
|
const pattern = new RegExp(`.*${util.escapeRegex(def.suffix)}$`);
|
|
1072
981
|
def.pattern ??= pattern;
|
|
1073
|
-
inst._zod.onattach.push((inst) => {
|
|
1074
|
-
const bag = inst._zod.bag as schemas.$ZodStringInternals<unknown>["bag"];
|
|
1075
|
-
bag.patterns ??= new Set();
|
|
1076
|
-
bag.patterns.add(pattern);
|
|
1077
|
-
});
|
|
1078
|
-
|
|
1079
982
|
inst._zod.check = (payload) => {
|
|
1080
983
|
if (payload.value.endsWith(def.suffix)) return;
|
|
1081
984
|
payload.issues.push({
|
|
@@ -1097,7 +1000,7 @@ export const $ZodCheckEndsWith: core.$constructor<$ZodCheckEndsWith> = /*@__PURE
|
|
|
1097
1000
|
function handleCheckPropertyResult(
|
|
1098
1001
|
result: schemas.ParsePayload<unknown>,
|
|
1099
1002
|
payload: schemas.ParsePayload<unknown>,
|
|
1100
|
-
property: string
|
|
1003
|
+
property: string | symbol
|
|
1101
1004
|
) {
|
|
1102
1005
|
if (result.issues.length) {
|
|
1103
1006
|
payload.issues.push(...util.prefixIssues(property, result.issues));
|
|
@@ -1142,6 +1045,66 @@ export const $ZodCheckProperty: core.$constructor<$ZodCheckProperty> = /*@__PURE
|
|
|
1142
1045
|
}
|
|
1143
1046
|
);
|
|
1144
1047
|
|
|
1048
|
+
/////////////////////////////////////
|
|
1049
|
+
///// $ZodCheckProperties /////
|
|
1050
|
+
/////////////////////////////////////
|
|
1051
|
+
export interface $ZodCheckPropertiesDef<Shape extends schemas.$ZodShape = schemas.$ZodShape> extends $ZodCheckDef {
|
|
1052
|
+
check: "properties";
|
|
1053
|
+
shape: Shape;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
// typed over the input side, since each child's result is discarded; a literal widens to its primitive so spreading over a `string` property still type-checks (#6520)
|
|
1057
|
+
export type $ZodCheckPropertiesInput<Shape extends schemas.$ZodShape = schemas.$ZodShape> = {
|
|
1058
|
+
-readonly [k in keyof Shape]: util.Widen<core.input<Shape[k]>>;
|
|
1059
|
+
};
|
|
1060
|
+
|
|
1061
|
+
export interface $ZodCheckPropertiesInternals<Shape extends schemas.$ZodShape = schemas.$ZodShape>
|
|
1062
|
+
extends $ZodCheckInternals<$ZodCheckPropertiesInput<Shape>> {
|
|
1063
|
+
def: $ZodCheckPropertiesDef<Shape>;
|
|
1064
|
+
issc: errors.$ZodIssue;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
export interface $ZodCheckProperties<Shape extends schemas.$ZodShape = schemas.$ZodShape>
|
|
1068
|
+
extends $ZodCheck<$ZodCheckPropertiesInput<Shape>> {
|
|
1069
|
+
_zod: $ZodCheckPropertiesInternals<Shape>;
|
|
1070
|
+
// yields the check itself, so `.check(...z.properties(shape))` spread call sites keep working
|
|
1071
|
+
[Symbol.iterator](): Iterator<this>;
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
export const $ZodCheckProperties: core.$constructor<$ZodCheckProperties> = /*@__PURE__*/ core.$constructor(
|
|
1075
|
+
"$ZodCheckProperties",
|
|
1076
|
+
(inst, def) => {
|
|
1077
|
+
$ZodCheck.init(inst, def);
|
|
1078
|
+
util.hide(inst, Symbol.iterator, function* () {
|
|
1079
|
+
yield inst;
|
|
1080
|
+
});
|
|
1081
|
+
|
|
1082
|
+
// key and schema snapshotted together: reading one live and the other cached lets a later mutation of the caller's shape object pair a stale key with a missing schema
|
|
1083
|
+
let entries!: [string | symbol, schemas.$ZodType][];
|
|
1084
|
+
inst._zod.check = (payload) => {
|
|
1085
|
+
// the base schema already typed the value, so only a nullish one is rejected here: the properties read on a primitive too, matching z.property() on a string's length
|
|
1086
|
+
if (payload.value == null) {
|
|
1087
|
+
payload.issues.push({ expected: "object", code: "invalid_type", input: payload.value, inst });
|
|
1088
|
+
return undefined;
|
|
1089
|
+
}
|
|
1090
|
+
entries ??= Reflect.ownKeys(def.shape).map((key) => [key, (def.shape as any)[key] as schemas.$ZodType]);
|
|
1091
|
+
const input = payload.value as any;
|
|
1092
|
+
let proms: Promise<any>[] | undefined;
|
|
1093
|
+
for (const [key, schema] of entries) {
|
|
1094
|
+
const result = schema._zod.run({ value: input[key], issues: [] }, {});
|
|
1095
|
+
if (result instanceof Promise) {
|
|
1096
|
+
proms ??= [];
|
|
1097
|
+
proms.push(result.then((result) => handleCheckPropertyResult(result, payload, key)));
|
|
1098
|
+
} else {
|
|
1099
|
+
handleCheckPropertyResult(result, payload, key);
|
|
1100
|
+
}
|
|
1101
|
+
}
|
|
1102
|
+
if (proms) return Promise.all(proms).then(() => undefined);
|
|
1103
|
+
return undefined;
|
|
1104
|
+
};
|
|
1105
|
+
}
|
|
1106
|
+
);
|
|
1107
|
+
|
|
1145
1108
|
///////////////////////////////////
|
|
1146
1109
|
///// $ZodCheckMimeType /////
|
|
1147
1110
|
///////////////////////////////////
|
|
@@ -1164,9 +1127,6 @@ export const $ZodCheckMimeType: core.$constructor<$ZodCheckMimeType> = /*@__PURE
|
|
|
1164
1127
|
(inst, def) => {
|
|
1165
1128
|
$ZodCheck.init(inst, def);
|
|
1166
1129
|
const mimeSet = new Set(def.mime);
|
|
1167
|
-
inst._zod.onattach.push((inst) => {
|
|
1168
|
-
inst._zod.bag.mime = def.mime;
|
|
1169
|
-
});
|
|
1170
1130
|
inst._zod.check = (payload) => {
|
|
1171
1131
|
if (mimeSet.has(payload.value.type)) return;
|
|
1172
1132
|
payload.issues.push({
|