aws-runtime-bridge 1.9.71 → 1.9.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/routes/terminal.d.ts.map +1 -1
- package/dist/routes/terminal.js +41 -3
- package/dist/services/auto-register.d.ts +13 -0
- package/dist/services/auto-register.d.ts.map +1 -1
- package/dist/services/auto-register.js +36 -1
- package/dist/services/session-output.d.ts.map +1 -1
- package/dist/services/session-output.js +18 -3
- package/dist/services/tunnel-client.js +4 -0
- package/node_modules/zod/mini/index.cjs +17 -0
- package/node_modules/zod/mini/index.d.cts +1 -0
- package/node_modules/zod/mini/index.d.ts +1 -0
- package/node_modules/zod/mini/index.js +1 -0
- package/node_modules/zod/package.json +135 -0
- package/node_modules/zod/src/mini/index.ts +1 -0
- package/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
- package/node_modules/zod/src/v3/tests/function.test.ts +257 -0
- package/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
- package/node_modules/zod/src/v4/classic/checks.ts +31 -0
- package/node_modules/zod/src/v4/classic/external.ts +50 -0
- package/node_modules/zod/src/v4/classic/schemas.ts +2197 -0
- package/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
- package/node_modules/zod/src/v4/classic/tests/codec.test.ts +562 -0
- package/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
- package/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
- package/node_modules/zod/src/v4/classic/tests/function.test.ts +308 -0
- package/node_modules/zod/src/v4/classic/tests/index.test.ts +844 -0
- package/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
- package/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
- package/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
- package/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
- package/node_modules/zod/src/v4/classic/tests/object.test.ts +609 -0
- package/node_modules/zod/src/v4/classic/tests/optional.test.ts +136 -0
- package/node_modules/zod/src/v4/classic/tests/partial.test.ts +340 -0
- package/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
- package/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
- package/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
- package/node_modules/zod/src/v4/classic/tests/record.test.ts +356 -0
- package/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +582 -0
- package/node_modules/zod/src/v4/classic/tests/refine.test.ts +605 -0
- package/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
- package/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
- package/node_modules/zod/src/v4/classic/tests/string.test.ts +1080 -0
- package/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +763 -0
- package/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2622 -0
- package/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
- package/node_modules/zod/src/v4/classic/tests/union.test.ts +181 -0
- package/node_modules/zod/src/v4/core/api.ts +1621 -0
- package/node_modules/zod/src/v4/core/checks.ts +1287 -0
- package/node_modules/zod/src/v4/core/core.ts +115 -0
- package/node_modules/zod/src/v4/core/errors.ts +413 -0
- package/node_modules/zod/src/v4/core/index.ts +14 -0
- package/node_modules/zod/src/v4/core/regexes.ts +177 -0
- package/node_modules/zod/src/v4/core/registries.ts +97 -0
- package/node_modules/zod/src/v4/core/schemas.ts +4317 -0
- package/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
- package/node_modules/zod/src/v4/core/tests/extend.test.ts +18 -0
- package/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
- package/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
- package/node_modules/zod/src/v4/core/to-json-schema.ts +1044 -0
- package/node_modules/zod/src/v4/core/util.ts +910 -0
- package/node_modules/zod/src/v4/core/versions.ts +5 -0
- package/node_modules/zod/src/v4/locales/ar.ts +125 -0
- package/node_modules/zod/src/v4/locales/az.ts +121 -0
- package/node_modules/zod/src/v4/locales/be.ts +184 -0
- package/node_modules/zod/src/v4/locales/bg.ts +136 -0
- package/node_modules/zod/src/v4/locales/ca.ts +127 -0
- package/node_modules/zod/src/v4/locales/cs.ts +142 -0
- package/node_modules/zod/src/v4/locales/da.ts +141 -0
- package/node_modules/zod/src/v4/locales/de.ts +124 -0
- package/node_modules/zod/src/v4/locales/en.ts +127 -0
- package/node_modules/zod/src/v4/locales/eo.ts +125 -0
- package/node_modules/zod/src/v4/locales/es.ts +159 -0
- package/node_modules/zod/src/v4/locales/fa.ts +134 -0
- package/node_modules/zod/src/v4/locales/fi.ts +131 -0
- package/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
- package/node_modules/zod/src/v4/locales/fr.ts +124 -0
- package/node_modules/zod/src/v4/locales/he.ts +125 -0
- package/node_modules/zod/src/v4/locales/hu.ts +126 -0
- package/node_modules/zod/src/v4/locales/id.ts +125 -0
- package/node_modules/zod/src/v4/locales/index.ts +47 -0
- package/node_modules/zod/src/v4/locales/is.ts +127 -0
- package/node_modules/zod/src/v4/locales/it.ts +125 -0
- package/node_modules/zod/src/v4/locales/ja.ts +122 -0
- package/node_modules/zod/src/v4/locales/ka.ts +138 -0
- package/node_modules/zod/src/v4/locales/km.ts +126 -0
- package/node_modules/zod/src/v4/locales/ko.ts +131 -0
- package/node_modules/zod/src/v4/locales/lt.ts +265 -0
- package/node_modules/zod/src/v4/locales/mk.ts +127 -0
- package/node_modules/zod/src/v4/locales/ms.ts +124 -0
- package/node_modules/zod/src/v4/locales/nl.ts +126 -0
- package/node_modules/zod/src/v4/locales/no.ts +124 -0
- package/node_modules/zod/src/v4/locales/ota.ts +125 -0
- package/node_modules/zod/src/v4/locales/pl.ts +126 -0
- package/node_modules/zod/src/v4/locales/ps.ts +133 -0
- package/node_modules/zod/src/v4/locales/pt.ts +123 -0
- package/node_modules/zod/src/v4/locales/ru.ts +184 -0
- package/node_modules/zod/src/v4/locales/sl.ts +126 -0
- package/node_modules/zod/src/v4/locales/sv.ts +127 -0
- package/node_modules/zod/src/v4/locales/ta.ts +125 -0
- package/node_modules/zod/src/v4/locales/th.ts +126 -0
- package/node_modules/zod/src/v4/locales/tr.ts +121 -0
- package/node_modules/zod/src/v4/locales/uk.ts +126 -0
- package/node_modules/zod/src/v4/locales/ur.ts +126 -0
- package/node_modules/zod/src/v4/locales/vi.ts +125 -0
- package/node_modules/zod/src/v4/locales/yo.ts +131 -0
- package/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
- package/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
- package/node_modules/zod/src/v4/mini/coerce.ts +22 -0
- package/node_modules/zod/src/v4/mini/external.ts +40 -0
- package/node_modules/zod/src/v4/mini/iso.ts +62 -0
- package/node_modules/zod/src/v4/mini/schemas.ts +1725 -0
- package/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
- package/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
- package/node_modules/zod/src/v4/mini/tests/index.test.ts +899 -0
- package/node_modules/zod/src/v4/mini/tests/object.test.ts +200 -0
- package/node_modules/zod/src/v4/mini/tests/string.test.ts +315 -0
- package/node_modules/zod/src/v4-mini/index.ts +1 -0
- package/node_modules/zod/v3/ZodError.d.cts +164 -0
- package/node_modules/zod/v3/ZodError.d.ts +164 -0
- package/node_modules/zod/v4/classic/checks.cjs +32 -0
- package/node_modules/zod/v4/classic/checks.d.cts +1 -0
- package/node_modules/zod/v4/classic/checks.d.ts +1 -0
- package/node_modules/zod/v4/classic/checks.js +1 -0
- package/node_modules/zod/v4/classic/external.cjs +70 -0
- package/node_modules/zod/v4/classic/external.d.cts +13 -0
- package/node_modules/zod/v4/classic/external.d.ts +13 -0
- package/node_modules/zod/v4/classic/external.js +18 -0
- package/node_modules/zod/v4/classic/schemas.cjs +1151 -0
- package/node_modules/zod/v4/classic/schemas.d.cts +673 -0
- package/node_modules/zod/v4/classic/schemas.d.ts +673 -0
- package/node_modules/zod/v4/classic/schemas.js +1040 -0
- package/node_modules/zod/v4/core/api.cjs +1060 -0
- package/node_modules/zod/v4/core/api.d.cts +295 -0
- package/node_modules/zod/v4/core/api.d.ts +295 -0
- package/node_modules/zod/v4/core/api.js +925 -0
- package/node_modules/zod/v4/core/checks.cjs +595 -0
- package/node_modules/zod/v4/core/checks.js +569 -0
- package/node_modules/zod/v4/core/core.cjs +74 -0
- package/node_modules/zod/v4/core/core.d.cts +52 -0
- package/node_modules/zod/v4/core/core.d.ts +52 -0
- package/node_modules/zod/v4/core/core.js +67 -0
- package/node_modules/zod/v4/core/errors.d.cts +210 -0
- package/node_modules/zod/v4/core/errors.d.ts +210 -0
- package/node_modules/zod/v4/core/index.cjs +43 -0
- package/node_modules/zod/v4/core/index.d.cts +14 -0
- package/node_modules/zod/v4/core/index.d.ts +14 -0
- package/node_modules/zod/v4/core/index.js +14 -0
- package/node_modules/zod/v4/core/regexes.cjs +136 -0
- package/node_modules/zod/v4/core/regexes.d.cts +78 -0
- package/node_modules/zod/v4/core/regexes.d.ts +78 -0
- package/node_modules/zod/v4/core/regexes.js +127 -0
- package/node_modules/zod/v4/core/registries.cjs +57 -0
- package/node_modules/zod/v4/core/registries.js +52 -0
- package/node_modules/zod/v4/core/schemas.cjs +1986 -0
- package/node_modules/zod/v4/core/schemas.d.cts +1113 -0
- package/node_modules/zod/v4/core/schemas.d.ts +1113 -0
- package/node_modules/zod/v4/core/schemas.js +1955 -0
- package/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
- package/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
- package/node_modules/zod/v4/core/to-json-schema.cjs +920 -0
- package/node_modules/zod/v4/core/to-json-schema.d.cts +90 -0
- package/node_modules/zod/v4/core/to-json-schema.d.ts +90 -0
- package/node_modules/zod/v4/core/to-json-schema.js +915 -0
- package/node_modules/zod/v4/core/util.cjs +658 -0
- package/node_modules/zod/v4/core/util.d.cts +197 -0
- package/node_modules/zod/v4/core/util.d.ts +197 -0
- package/node_modules/zod/v4/core/util.js +601 -0
- package/node_modules/zod/v4/core/versions.cjs +8 -0
- package/node_modules/zod/v4/core/versions.d.cts +5 -0
- package/node_modules/zod/v4/core/versions.d.ts +5 -0
- package/node_modules/zod/v4/core/versions.js +5 -0
- package/node_modules/zod/v4/locales/ar.cjs +143 -0
- package/node_modules/zod/v4/locales/ar.js +116 -0
- package/node_modules/zod/v4/locales/az.cjs +142 -0
- package/node_modules/zod/v4/locales/az.js +115 -0
- package/node_modules/zod/v4/locales/be.cjs +191 -0
- package/node_modules/zod/v4/locales/be.js +164 -0
- package/node_modules/zod/v4/locales/bg.cjs +156 -0
- package/node_modules/zod/v4/locales/bg.d.cts +5 -0
- package/node_modules/zod/v4/locales/bg.d.ts +5 -0
- package/node_modules/zod/v4/locales/bg.js +128 -0
- package/node_modules/zod/v4/locales/ca.cjs +145 -0
- package/node_modules/zod/v4/locales/ca.js +118 -0
- package/node_modules/zod/v4/locales/cs.cjs +162 -0
- package/node_modules/zod/v4/locales/cs.js +135 -0
- package/node_modules/zod/v4/locales/da.cjs +158 -0
- package/node_modules/zod/v4/locales/da.js +131 -0
- package/node_modules/zod/v4/locales/de.cjs +143 -0
- package/node_modules/zod/v4/locales/de.js +116 -0
- package/node_modules/zod/v4/locales/en.cjs +145 -0
- package/node_modules/zod/v4/locales/en.d.cts +5 -0
- package/node_modules/zod/v4/locales/en.d.ts +5 -0
- package/node_modules/zod/v4/locales/en.js +117 -0
- package/node_modules/zod/v4/locales/eo.cjs +144 -0
- package/node_modules/zod/v4/locales/eo.d.cts +5 -0
- package/node_modules/zod/v4/locales/eo.d.ts +5 -0
- package/node_modules/zod/v4/locales/eo.js +116 -0
- package/node_modules/zod/v4/locales/es.cjs +176 -0
- package/node_modules/zod/v4/locales/es.js +149 -0
- package/node_modules/zod/v4/locales/fa.cjs +149 -0
- package/node_modules/zod/v4/locales/fa.js +122 -0
- package/node_modules/zod/v4/locales/fi.cjs +149 -0
- package/node_modules/zod/v4/locales/fi.js +122 -0
- package/node_modules/zod/v4/locales/fr-CA.cjs +144 -0
- package/node_modules/zod/v4/locales/fr-CA.js +117 -0
- package/node_modules/zod/v4/locales/fr.cjs +143 -0
- package/node_modules/zod/v4/locales/fr.js +116 -0
- package/node_modules/zod/v4/locales/he.cjs +144 -0
- package/node_modules/zod/v4/locales/he.js +117 -0
- package/node_modules/zod/v4/locales/hu.cjs +144 -0
- package/node_modules/zod/v4/locales/hu.js +117 -0
- package/node_modules/zod/v4/locales/id.cjs +143 -0
- package/node_modules/zod/v4/locales/id.js +116 -0
- package/node_modules/zod/v4/locales/index.cjs +100 -0
- package/node_modules/zod/v4/locales/index.d.cts +47 -0
- package/node_modules/zod/v4/locales/index.d.ts +47 -0
- package/node_modules/zod/v4/locales/index.js +47 -0
- package/node_modules/zod/v4/locales/is.cjs +145 -0
- package/node_modules/zod/v4/locales/is.d.cts +5 -0
- package/node_modules/zod/v4/locales/is.d.ts +5 -0
- package/node_modules/zod/v4/locales/is.js +117 -0
- package/node_modules/zod/v4/locales/it.cjs +144 -0
- package/node_modules/zod/v4/locales/it.js +117 -0
- package/node_modules/zod/v4/locales/ja.cjs +142 -0
- package/node_modules/zod/v4/locales/ja.js +115 -0
- package/node_modules/zod/v4/locales/ka.cjs +153 -0
- package/node_modules/zod/v4/locales/ka.d.cts +5 -0
- package/node_modules/zod/v4/locales/ka.d.ts +5 -0
- package/node_modules/zod/v4/locales/ka.js +125 -0
- package/node_modules/zod/v4/locales/km.cjs +144 -0
- package/node_modules/zod/v4/locales/km.js +117 -0
- package/node_modules/zod/v4/locales/ko.cjs +148 -0
- package/node_modules/zod/v4/locales/ko.js +121 -0
- package/node_modules/zod/v4/locales/lt.cjs +258 -0
- package/node_modules/zod/v4/locales/lt.d.cts +5 -0
- package/node_modules/zod/v4/locales/lt.d.ts +5 -0
- package/node_modules/zod/v4/locales/lt.js +230 -0
- package/node_modules/zod/v4/locales/mk.cjs +145 -0
- package/node_modules/zod/v4/locales/mk.js +118 -0
- package/node_modules/zod/v4/locales/ms.cjs +143 -0
- package/node_modules/zod/v4/locales/ms.js +116 -0
- package/node_modules/zod/v4/locales/nl.cjs +144 -0
- package/node_modules/zod/v4/locales/nl.js +117 -0
- package/node_modules/zod/v4/locales/no.cjs +143 -0
- package/node_modules/zod/v4/locales/no.js +116 -0
- package/node_modules/zod/v4/locales/ota.cjs +144 -0
- package/node_modules/zod/v4/locales/ota.js +117 -0
- package/node_modules/zod/v4/locales/pl.cjs +144 -0
- package/node_modules/zod/v4/locales/pl.js +117 -0
- package/node_modules/zod/v4/locales/ps.cjs +149 -0
- package/node_modules/zod/v4/locales/ps.js +122 -0
- package/node_modules/zod/v4/locales/pt.cjs +143 -0
- package/node_modules/zod/v4/locales/pt.js +116 -0
- package/node_modules/zod/v4/locales/ru.cjs +191 -0
- package/node_modules/zod/v4/locales/ru.js +164 -0
- package/node_modules/zod/v4/locales/sl.cjs +144 -0
- package/node_modules/zod/v4/locales/sl.js +117 -0
- package/node_modules/zod/v4/locales/sv.cjs +145 -0
- package/node_modules/zod/v4/locales/sv.js +118 -0
- package/node_modules/zod/v4/locales/ta.cjs +144 -0
- package/node_modules/zod/v4/locales/ta.js +117 -0
- package/node_modules/zod/v4/locales/th.cjs +144 -0
- package/node_modules/zod/v4/locales/th.js +117 -0
- package/node_modules/zod/v4/locales/tr.cjs +143 -0
- package/node_modules/zod/v4/locales/tr.d.cts +5 -0
- package/node_modules/zod/v4/locales/tr.d.ts +5 -0
- package/node_modules/zod/v4/locales/tr.js +115 -0
- package/node_modules/zod/v4/locales/uk.cjs +144 -0
- package/node_modules/zod/v4/locales/uk.js +117 -0
- package/node_modules/zod/v4/locales/ur.cjs +144 -0
- package/node_modules/zod/v4/locales/ur.js +117 -0
- package/node_modules/zod/v4/locales/vi.cjs +143 -0
- package/node_modules/zod/v4/locales/vi.js +116 -0
- package/node_modules/zod/v4/locales/yo.cjs +142 -0
- package/node_modules/zod/v4/locales/yo.js +115 -0
- package/node_modules/zod/v4/locales/zh-CN.cjs +143 -0
- package/node_modules/zod/v4/locales/zh-CN.js +116 -0
- package/node_modules/zod/v4/locales/zh-TW.cjs +144 -0
- package/node_modules/zod/v4/locales/zh-TW.js +117 -0
- package/node_modules/zod/v4/mini/coerce.cjs +47 -0
- package/node_modules/zod/v4/mini/coerce.js +17 -0
- package/node_modules/zod/v4/mini/external.cjs +62 -0
- package/node_modules/zod/v4/mini/external.d.cts +11 -0
- package/node_modules/zod/v4/mini/external.d.ts +11 -0
- package/node_modules/zod/v4/mini/external.js +13 -0
- package/node_modules/zod/v4/mini/iso.cjs +60 -0
- package/node_modules/zod/v4/mini/iso.js +30 -0
- package/node_modules/zod/v4/mini/schemas.cjs +892 -0
- package/node_modules/zod/v4/mini/schemas.d.cts +407 -0
- package/node_modules/zod/v4/mini/schemas.d.ts +407 -0
- package/node_modules/zod/v4/mini/schemas.js +775 -0
- package/node_modules/zod/v4-mini/index.cjs +17 -0
- package/node_modules/zod/v4-mini/index.d.cts +1 -0
- package/node_modules/zod/v4-mini/index.d.ts +1 -0
- package/node_modules/zod/v4-mini/index.js +1 -0
- package/package.json +3 -1
- package/package/cc-switch-sdk/node_modules/zod/mini/index.cjs +0 -32
- package/package/cc-switch-sdk/node_modules/zod/mini/index.d.cts +0 -3
- package/package/cc-switch-sdk/node_modules/zod/mini/index.d.ts +0 -3
- package/package/cc-switch-sdk/node_modules/zod/mini/index.js +0 -3
- package/package/cc-switch-sdk/node_modules/zod/package.json +0 -135
- package/package/cc-switch-sdk/node_modules/zod/src/mini/index.ts +0 -3
- package/package/cc-switch-sdk/node_modules/zod/src/v3/tests/complex.test.ts +0 -70
- package/package/cc-switch-sdk/node_modules/zod/src/v3/tests/function.test.ts +0 -261
- package/package/cc-switch-sdk/node_modules/zod/src/v3/tests/nan.test.ts +0 -24
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/checks.ts +0 -32
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/external.ts +0 -51
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/from-json-schema.ts +0 -643
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/schemas.ts +0 -2409
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/apply.test.ts +0 -59
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/brand.test.ts +0 -106
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/codec.test.ts +0 -562
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/continuability.test.ts +0 -374
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/date.test.ts +0 -62
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/describe-meta-checks.test.ts +0 -27
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/fix-json-issue.test.ts +0 -26
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/from-json-schema.test.ts +0 -734
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/function.test.ts +0 -360
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/index.test.ts +0 -939
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +0 -60
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/intersection.test.ts +0 -198
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/json.test.ts +0 -109
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/map.test.ts +0 -330
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/object.test.ts +0 -640
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/optional.test.ts +0 -223
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/partial.test.ts +0 -427
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +0 -211
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/promise.test.ts +0 -81
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/readonly.test.ts +0 -252
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/record.test.ts +0 -632
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +0 -582
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/refine.test.ts +0 -570
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/registries.test.ts +0 -243
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +0 -134
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/string.test.ts +0 -1175
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +0 -771
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/to-json-schema-methods.test.ts +0 -438
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +0 -2990
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/tuple.test.ts +0 -183
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/union.test.ts +0 -219
- package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/url.test.ts +0 -13
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/api.ts +0 -1798
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/checks.ts +0 -1293
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/core.ts +0 -138
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/errors.ts +0 -448
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/index.ts +0 -16
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/json-schema-generator.ts +0 -126
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/json-schema-processors.ts +0 -667
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/regexes.ts +0 -183
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/registries.ts +0 -105
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/schemas.ts +0 -4538
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/standard-schema.ts +0 -159
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/tests/extend.test.ts +0 -59
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/tests/locales/en.test.ts +0 -22
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/tests/locales/he.test.ts +0 -379
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/tests/locales/nl.test.ts +0 -46
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +0 -69
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/tests/locales/uz.test.ts +0 -83
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/tests/record-constructor.test.ts +0 -67
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/tests/recursive-tuples.test.ts +0 -45
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/to-json-schema.ts +0 -613
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/util.ts +0 -966
- package/package/cc-switch-sdk/node_modules/zod/src/v4/core/versions.ts +0 -5
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ar.ts +0 -115
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/az.ts +0 -111
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/be.ts +0 -176
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/bg.ts +0 -128
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ca.ts +0 -116
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/cs.ts +0 -118
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/da.ts +0 -123
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/de.ts +0 -116
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/en.ts +0 -119
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/eo.ts +0 -118
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/es.ts +0 -141
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/fa.ts +0 -126
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/fi.ts +0 -121
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/fr-CA.ts +0 -116
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/fr.ts +0 -116
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/he.ts +0 -246
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/hu.ts +0 -117
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/hy.ts +0 -164
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/id.ts +0 -115
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/index.ts +0 -49
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/is.ts +0 -119
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/it.ts +0 -116
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ja.ts +0 -114
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ka.ts +0 -123
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/km.ts +0 -119
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ko.ts +0 -121
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/lt.ts +0 -239
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/mk.ts +0 -118
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ms.ts +0 -115
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/nl.ts +0 -121
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/no.ts +0 -116
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ota.ts +0 -117
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/pl.ts +0 -118
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ps.ts +0 -126
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/pt.ts +0 -116
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ru.ts +0 -176
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/sl.ts +0 -118
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/sv.ts +0 -119
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ta.ts +0 -118
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/th.ts +0 -119
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/tr.ts +0 -111
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/uk.ts +0 -117
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ur.ts +0 -119
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/uz.ts +0 -116
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/vi.ts +0 -117
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/yo.ts +0 -124
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/zh-CN.ts +0 -116
- package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/zh-TW.ts +0 -115
- package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/coerce.ts +0 -27
- package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/external.ts +0 -40
- package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/iso.ts +0 -66
- package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/schemas.ts +0 -1916
- package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/tests/apply.test.ts +0 -24
- package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/tests/brand.test.ts +0 -94
- package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/tests/functions.test.ts +0 -5
- package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/tests/index.test.ts +0 -963
- package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/tests/object.test.ts +0 -227
- package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/tests/standard-schema.test.ts +0 -50
- package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/tests/string.test.ts +0 -347
- package/package/cc-switch-sdk/node_modules/zod/src/v4-mini/index.ts +0 -3
- package/package/cc-switch-sdk/node_modules/zod/v3/ZodError.d.cts +0 -164
- package/package/cc-switch-sdk/node_modules/zod/v3/ZodError.d.ts +0 -164
- package/package/cc-switch-sdk/node_modules/zod/v4/classic/checks.cjs +0 -33
- package/package/cc-switch-sdk/node_modules/zod/v4/classic/checks.d.cts +0 -1
- package/package/cc-switch-sdk/node_modules/zod/v4/classic/checks.d.ts +0 -1
- package/package/cc-switch-sdk/node_modules/zod/v4/classic/checks.js +0 -1
- package/package/cc-switch-sdk/node_modules/zod/v4/classic/external.cjs +0 -73
- package/package/cc-switch-sdk/node_modules/zod/v4/classic/external.d.cts +0 -15
- package/package/cc-switch-sdk/node_modules/zod/v4/classic/external.d.ts +0 -15
- package/package/cc-switch-sdk/node_modules/zod/v4/classic/external.js +0 -20
- package/package/cc-switch-sdk/node_modules/zod/v4/classic/from-json-schema.cjs +0 -610
- package/package/cc-switch-sdk/node_modules/zod/v4/classic/from-json-schema.d.cts +0 -12
- package/package/cc-switch-sdk/node_modules/zod/v4/classic/from-json-schema.d.ts +0 -12
- package/package/cc-switch-sdk/node_modules/zod/v4/classic/from-json-schema.js +0 -584
- package/package/cc-switch-sdk/node_modules/zod/v4/classic/schemas.cjs +0 -1272
- package/package/cc-switch-sdk/node_modules/zod/v4/classic/schemas.d.cts +0 -739
- package/package/cc-switch-sdk/node_modules/zod/v4/classic/schemas.d.ts +0 -739
- package/package/cc-switch-sdk/node_modules/zod/v4/classic/schemas.js +0 -1157
- package/package/cc-switch-sdk/node_modules/zod/v4/core/api.cjs +0 -1222
- package/package/cc-switch-sdk/node_modules/zod/v4/core/api.d.cts +0 -304
- package/package/cc-switch-sdk/node_modules/zod/v4/core/api.d.ts +0 -304
- package/package/cc-switch-sdk/node_modules/zod/v4/core/api.js +0 -1082
- package/package/cc-switch-sdk/node_modules/zod/v4/core/checks.cjs +0 -601
- package/package/cc-switch-sdk/node_modules/zod/v4/core/checks.js +0 -575
- package/package/cc-switch-sdk/node_modules/zod/v4/core/core.cjs +0 -83
- package/package/cc-switch-sdk/node_modules/zod/v4/core/core.d.cts +0 -70
- package/package/cc-switch-sdk/node_modules/zod/v4/core/core.d.ts +0 -70
- package/package/cc-switch-sdk/node_modules/zod/v4/core/core.js +0 -76
- package/package/cc-switch-sdk/node_modules/zod/v4/core/errors.d.cts +0 -220
- package/package/cc-switch-sdk/node_modules/zod/v4/core/errors.d.ts +0 -220
- package/package/cc-switch-sdk/node_modules/zod/v4/core/index.cjs +0 -47
- package/package/cc-switch-sdk/node_modules/zod/v4/core/index.d.cts +0 -16
- package/package/cc-switch-sdk/node_modules/zod/v4/core/index.d.ts +0 -16
- package/package/cc-switch-sdk/node_modules/zod/v4/core/index.js +0 -16
- package/package/cc-switch-sdk/node_modules/zod/v4/core/json-schema-generator.cjs +0 -99
- package/package/cc-switch-sdk/node_modules/zod/v4/core/json-schema-generator.d.cts +0 -65
- package/package/cc-switch-sdk/node_modules/zod/v4/core/json-schema-generator.d.ts +0 -65
- package/package/cc-switch-sdk/node_modules/zod/v4/core/json-schema-generator.js +0 -95
- package/package/cc-switch-sdk/node_modules/zod/v4/core/json-schema-processors.cjs +0 -648
- package/package/cc-switch-sdk/node_modules/zod/v4/core/json-schema-processors.d.cts +0 -49
- package/package/cc-switch-sdk/node_modules/zod/v4/core/json-schema-processors.d.ts +0 -49
- package/package/cc-switch-sdk/node_modules/zod/v4/core/json-schema-processors.js +0 -605
- package/package/cc-switch-sdk/node_modules/zod/v4/core/regexes.cjs +0 -166
- package/package/cc-switch-sdk/node_modules/zod/v4/core/regexes.d.cts +0 -79
- package/package/cc-switch-sdk/node_modules/zod/v4/core/regexes.d.ts +0 -79
- package/package/cc-switch-sdk/node_modules/zod/v4/core/regexes.js +0 -133
- package/package/cc-switch-sdk/node_modules/zod/v4/core/registries.cjs +0 -56
- package/package/cc-switch-sdk/node_modules/zod/v4/core/registries.js +0 -51
- package/package/cc-switch-sdk/node_modules/zod/v4/core/schemas.cjs +0 -2124
- package/package/cc-switch-sdk/node_modules/zod/v4/core/schemas.d.cts +0 -1146
- package/package/cc-switch-sdk/node_modules/zod/v4/core/schemas.d.ts +0 -1146
- package/package/cc-switch-sdk/node_modules/zod/v4/core/schemas.js +0 -2093
- package/package/cc-switch-sdk/node_modules/zod/v4/core/standard-schema.d.cts +0 -126
- package/package/cc-switch-sdk/node_modules/zod/v4/core/standard-schema.d.ts +0 -126
- package/package/cc-switch-sdk/node_modules/zod/v4/core/to-json-schema.cjs +0 -446
- package/package/cc-switch-sdk/node_modules/zod/v4/core/to-json-schema.d.cts +0 -114
- package/package/cc-switch-sdk/node_modules/zod/v4/core/to-json-schema.d.ts +0 -114
- package/package/cc-switch-sdk/node_modules/zod/v4/core/to-json-schema.js +0 -437
- package/package/cc-switch-sdk/node_modules/zod/v4/core/util.cjs +0 -710
- package/package/cc-switch-sdk/node_modules/zod/v4/core/util.d.cts +0 -199
- package/package/cc-switch-sdk/node_modules/zod/v4/core/util.d.ts +0 -199
- package/package/cc-switch-sdk/node_modules/zod/v4/core/util.js +0 -651
- package/package/cc-switch-sdk/node_modules/zod/v4/core/versions.cjs +0 -8
- package/package/cc-switch-sdk/node_modules/zod/v4/core/versions.d.cts +0 -5
- package/package/cc-switch-sdk/node_modules/zod/v4/core/versions.d.ts +0 -5
- package/package/cc-switch-sdk/node_modules/zod/v4/core/versions.js +0 -5
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ar.cjs +0 -133
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ar.js +0 -106
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/az.cjs +0 -132
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/az.js +0 -105
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/be.cjs +0 -183
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/be.js +0 -156
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/bg.cjs +0 -147
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/bg.d.cts +0 -5
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/bg.d.ts +0 -4
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/bg.js +0 -120
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ca.cjs +0 -134
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ca.js +0 -107
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/cs.cjs +0 -138
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/cs.js +0 -111
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/da.cjs +0 -142
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/da.js +0 -115
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/de.cjs +0 -135
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/de.js +0 -108
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/en.cjs +0 -136
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/en.d.cts +0 -5
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/en.d.ts +0 -4
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/en.js +0 -109
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/eo.cjs +0 -136
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/eo.d.cts +0 -5
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/eo.d.ts +0 -4
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/eo.js +0 -109
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/es.cjs +0 -159
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/es.js +0 -132
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/fa.cjs +0 -141
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/fa.js +0 -114
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/fi.cjs +0 -139
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/fi.js +0 -112
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/fr-CA.cjs +0 -134
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/fr-CA.js +0 -107
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/fr.cjs +0 -135
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/fr.js +0 -108
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/he.cjs +0 -241
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/he.js +0 -214
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/hu.cjs +0 -135
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/hu.js +0 -108
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/hy.cjs +0 -174
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/hy.d.cts +0 -5
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/hy.d.ts +0 -4
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/hy.js +0 -147
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/id.cjs +0 -133
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/id.js +0 -106
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/index.cjs +0 -104
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/index.d.cts +0 -49
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/index.d.ts +0 -49
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/index.js +0 -49
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/is.cjs +0 -136
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/is.d.cts +0 -5
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/is.d.ts +0 -4
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/is.js +0 -109
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/it.cjs +0 -135
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/it.js +0 -108
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ja.cjs +0 -134
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ja.js +0 -107
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ka.cjs +0 -139
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ka.d.cts +0 -5
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ka.d.ts +0 -4
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ka.js +0 -112
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/km.cjs +0 -137
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/km.js +0 -110
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ko.cjs +0 -138
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ko.js +0 -111
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/lt.cjs +0 -230
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/lt.d.cts +0 -5
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/lt.d.ts +0 -4
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/lt.js +0 -203
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/mk.cjs +0 -136
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/mk.js +0 -109
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ms.cjs +0 -134
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ms.js +0 -107
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/nl.cjs +0 -137
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/nl.js +0 -110
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/no.cjs +0 -135
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/no.js +0 -108
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ota.cjs +0 -136
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ota.js +0 -109
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/pl.cjs +0 -136
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/pl.js +0 -109
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ps.cjs +0 -141
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ps.js +0 -114
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/pt.cjs +0 -135
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/pt.js +0 -108
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ru.cjs +0 -183
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ru.js +0 -156
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/sl.cjs +0 -136
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/sl.js +0 -109
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/sv.cjs +0 -137
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/sv.js +0 -110
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ta.cjs +0 -137
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ta.js +0 -110
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/th.cjs +0 -137
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/th.js +0 -110
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/tr.cjs +0 -132
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/tr.d.cts +0 -5
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/tr.d.ts +0 -4
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/tr.js +0 -105
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/uk.cjs +0 -135
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/uk.js +0 -108
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ur.cjs +0 -137
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/ur.js +0 -110
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/uz.cjs +0 -136
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/uz.d.cts +0 -5
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/uz.d.ts +0 -4
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/uz.js +0 -109
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/vi.cjs +0 -135
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/vi.js +0 -108
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/yo.cjs +0 -134
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/yo.js +0 -107
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/zh-CN.cjs +0 -136
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/zh-CN.js +0 -109
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/zh-TW.cjs +0 -134
- package/package/cc-switch-sdk/node_modules/zod/v4/locales/zh-TW.js +0 -107
- package/package/cc-switch-sdk/node_modules/zod/v4/mini/coerce.cjs +0 -52
- package/package/cc-switch-sdk/node_modules/zod/v4/mini/coerce.js +0 -22
- package/package/cc-switch-sdk/node_modules/zod/v4/mini/external.cjs +0 -63
- package/package/cc-switch-sdk/node_modules/zod/v4/mini/external.d.cts +0 -12
- package/package/cc-switch-sdk/node_modules/zod/v4/mini/external.d.ts +0 -12
- package/package/cc-switch-sdk/node_modules/zod/v4/mini/external.js +0 -14
- package/package/cc-switch-sdk/node_modules/zod/v4/mini/iso.cjs +0 -64
- package/package/cc-switch-sdk/node_modules/zod/v4/mini/iso.js +0 -34
- package/package/cc-switch-sdk/node_modules/zod/v4/mini/schemas.cjs +0 -1046
- package/package/cc-switch-sdk/node_modules/zod/v4/mini/schemas.d.cts +0 -427
- package/package/cc-switch-sdk/node_modules/zod/v4/mini/schemas.d.ts +0 -427
- package/package/cc-switch-sdk/node_modules/zod/v4/mini/schemas.js +0 -925
- package/package/cc-switch-sdk/node_modules/zod/v4-mini/index.cjs +0 -32
- package/package/cc-switch-sdk/node_modules/zod/v4-mini/index.d.cts +0 -3
- package/package/cc-switch-sdk/node_modules/zod/v4-mini/index.d.ts +0 -3
- package/package/cc-switch-sdk/node_modules/zod/v4-mini/index.js +0 -3
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/LICENSE +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/README.md +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/index.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/index.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/index.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/index.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/locales/index.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/locales/index.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/locales/index.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/locales/index.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/locales/package.json +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/mini/package.json +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/index.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/locales/index.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/ZodError.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/datetime.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/discriminatedUnion.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/index.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/ipv4.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/object.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/primitives.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/realworld.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/string.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/union.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/errors.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/external.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/helpers/enumUtil.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/helpers/errorUtil.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/helpers/parseUtil.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/helpers/partialUtil.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/helpers/typeAliases.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/helpers/util.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/index.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/locales/en.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/standard-schema.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/Mocker.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/all-errors.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/anyunknown.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/array.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/async-parsing.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/async-refinements.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/base.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/bigint.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/branded.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/catch.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/coerce.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/custom.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/date.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/deepmasking.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/default.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/description.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/discriminated-unions.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/enum.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/error.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/firstparty.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/firstpartyschematypes.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/generics.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/instanceof.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/intersection.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/language-server.source.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/language-server.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/literal.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/map.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/masking.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/mocker.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/nativeEnum.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/nullable.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/number.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/object-augmentation.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/object-in-es5-env.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/object.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/optional.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/parseUtil.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/parser.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/partials.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/pickomit.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/pipeline.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/preprocess.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/primitive.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/promise.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/readonly.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/record.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/recursive.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/refine.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/safeparse.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/set.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/standard-schema.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/string.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/transformer.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/tuple.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/unions.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/validations.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/void.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/types.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/coerce.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/compat.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/errors.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/index.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/iso.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/parse.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/anyunknown.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/array.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/assignability.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/async-parsing.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/async-refinements.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/base.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/bigint.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/catch.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/coalesce.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/codec-examples.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/coerce.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/custom.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/datetime.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/default.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/description.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/discriminated-unions.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/enum.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/error-utils.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/error.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/file.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/firstparty.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/generics.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/hash.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/lazy.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/literal.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/nan.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/nested-refine.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/nonoptional.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/nullable.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/number.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/pipe.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/prefault.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/preprocess.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/primitive.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/prototypes.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/set.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/string-formats.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/stringbool.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/transform.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/validations.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/void.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/config.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/doc.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/json-schema.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/parse.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/tests/index.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/tests/locales/be.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/tests/locales/es.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/tests/locales/ru.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/zsf.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/index.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/locales/kh.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/locales/ua.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/checks.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/index.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/parse.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/tests/assignability.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/tests/checks.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/tests/codec.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/tests/computed.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/tests/error.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/tests/number.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/tests/prototypes.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/tests/recursive-types.test.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/ZodError.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/ZodError.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/errors.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/errors.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/errors.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/errors.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/external.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/external.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/external.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/external.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/enumUtil.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/enumUtil.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/enumUtil.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/enumUtil.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/errorUtil.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/errorUtil.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/errorUtil.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/errorUtil.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/parseUtil.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/parseUtil.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/parseUtil.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/parseUtil.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/partialUtil.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/partialUtil.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/partialUtil.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/partialUtil.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/typeAliases.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/typeAliases.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/typeAliases.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/typeAliases.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/util.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/util.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/util.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/util.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/index.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/index.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/index.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/index.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/locales/en.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/locales/en.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/locales/en.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/locales/en.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/package.json +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/standard-schema.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/standard-schema.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/standard-schema.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/standard-schema.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/types.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/types.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/types.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/types.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/coerce.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/coerce.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/coerce.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/coerce.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/compat.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/compat.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/compat.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/compat.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/errors.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/errors.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/errors.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/errors.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/index.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/index.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/index.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/index.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/iso.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/iso.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/iso.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/iso.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/package.json +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/parse.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/parse.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/parse.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/parse.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/checks.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/checks.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/doc.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/doc.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/doc.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/doc.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/errors.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/errors.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/json-schema.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/json-schema.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/json-schema.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/json-schema.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/package.json +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/parse.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/parse.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/parse.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/parse.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/registries.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/registries.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/standard-schema.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/standard-schema.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/index.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/index.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/index.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/index.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ar.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ar.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/az.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/az.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/be.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/be.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ca.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ca.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/cs.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/cs.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/da.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/da.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/de.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/de.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/es.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/es.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/fa.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/fa.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/fi.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/fi.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/fr-CA.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/fr-CA.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/fr.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/fr.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/he.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/he.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/hu.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/hu.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/id.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/id.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/it.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/it.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ja.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ja.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/kh.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/kh.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/kh.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/kh.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/km.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/km.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ko.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ko.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/mk.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/mk.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ms.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ms.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/nl.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/nl.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/no.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/no.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ota.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ota.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/package.json +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/pl.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/pl.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ps.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ps.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/pt.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/pt.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ru.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ru.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/sl.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/sl.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/sv.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/sv.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ta.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ta.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/th.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/th.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ua.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ua.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ua.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ua.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/uk.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/uk.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ur.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ur.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/vi.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/vi.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/yo.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/yo.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/zh-CN.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/zh-CN.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/zh-TW.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/zh-TW.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/checks.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/checks.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/checks.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/checks.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/coerce.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/coerce.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/index.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/index.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/index.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/index.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/iso.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/iso.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/package.json +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/parse.cjs +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/parse.d.cts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/parse.d.ts +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/parse.js +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/package.json +0 -0
- /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4-mini/package.json +0 -0
|
@@ -0,0 +1,164 @@
|
|
|
1
|
+
import type { Primitive } from "./helpers/typeAliases.js";
|
|
2
|
+
import { util, type ZodParsedType } from "./helpers/util.js";
|
|
3
|
+
import type { TypeOf, ZodType } from "./index.js";
|
|
4
|
+
type allKeys<T> = T extends any ? keyof T : never;
|
|
5
|
+
export type inferFlattenedErrors<T extends ZodType<any, any, any>, U = string> = typeToFlattenedError<TypeOf<T>, U>;
|
|
6
|
+
export type typeToFlattenedError<T, U = string> = {
|
|
7
|
+
formErrors: U[];
|
|
8
|
+
fieldErrors: {
|
|
9
|
+
[P in allKeys<T>]?: U[];
|
|
10
|
+
};
|
|
11
|
+
};
|
|
12
|
+
export declare const ZodIssueCode: {
|
|
13
|
+
custom: "custom";
|
|
14
|
+
invalid_type: "invalid_type";
|
|
15
|
+
unrecognized_keys: "unrecognized_keys";
|
|
16
|
+
too_big: "too_big";
|
|
17
|
+
too_small: "too_small";
|
|
18
|
+
not_multiple_of: "not_multiple_of";
|
|
19
|
+
invalid_union: "invalid_union";
|
|
20
|
+
invalid_literal: "invalid_literal";
|
|
21
|
+
invalid_union_discriminator: "invalid_union_discriminator";
|
|
22
|
+
invalid_enum_value: "invalid_enum_value";
|
|
23
|
+
invalid_arguments: "invalid_arguments";
|
|
24
|
+
invalid_return_type: "invalid_return_type";
|
|
25
|
+
invalid_date: "invalid_date";
|
|
26
|
+
invalid_string: "invalid_string";
|
|
27
|
+
invalid_intersection_types: "invalid_intersection_types";
|
|
28
|
+
not_finite: "not_finite";
|
|
29
|
+
};
|
|
30
|
+
export type ZodIssueCode = keyof typeof ZodIssueCode;
|
|
31
|
+
export type ZodIssueBase = {
|
|
32
|
+
path: (string | number)[];
|
|
33
|
+
message?: string | undefined;
|
|
34
|
+
};
|
|
35
|
+
export interface ZodInvalidTypeIssue extends ZodIssueBase {
|
|
36
|
+
code: typeof ZodIssueCode.invalid_type;
|
|
37
|
+
expected: ZodParsedType;
|
|
38
|
+
received: ZodParsedType;
|
|
39
|
+
}
|
|
40
|
+
export interface ZodInvalidLiteralIssue extends ZodIssueBase {
|
|
41
|
+
code: typeof ZodIssueCode.invalid_literal;
|
|
42
|
+
expected: unknown;
|
|
43
|
+
received: unknown;
|
|
44
|
+
}
|
|
45
|
+
export interface ZodUnrecognizedKeysIssue extends ZodIssueBase {
|
|
46
|
+
code: typeof ZodIssueCode.unrecognized_keys;
|
|
47
|
+
keys: string[];
|
|
48
|
+
}
|
|
49
|
+
export interface ZodInvalidUnionIssue extends ZodIssueBase {
|
|
50
|
+
code: typeof ZodIssueCode.invalid_union;
|
|
51
|
+
unionErrors: ZodError[];
|
|
52
|
+
}
|
|
53
|
+
export interface ZodInvalidUnionDiscriminatorIssue extends ZodIssueBase {
|
|
54
|
+
code: typeof ZodIssueCode.invalid_union_discriminator;
|
|
55
|
+
options: Primitive[];
|
|
56
|
+
}
|
|
57
|
+
export interface ZodInvalidEnumValueIssue extends ZodIssueBase {
|
|
58
|
+
received: string | number;
|
|
59
|
+
code: typeof ZodIssueCode.invalid_enum_value;
|
|
60
|
+
options: (string | number)[];
|
|
61
|
+
}
|
|
62
|
+
export interface ZodInvalidArgumentsIssue extends ZodIssueBase {
|
|
63
|
+
code: typeof ZodIssueCode.invalid_arguments;
|
|
64
|
+
argumentsError: ZodError;
|
|
65
|
+
}
|
|
66
|
+
export interface ZodInvalidReturnTypeIssue extends ZodIssueBase {
|
|
67
|
+
code: typeof ZodIssueCode.invalid_return_type;
|
|
68
|
+
returnTypeError: ZodError;
|
|
69
|
+
}
|
|
70
|
+
export interface ZodInvalidDateIssue extends ZodIssueBase {
|
|
71
|
+
code: typeof ZodIssueCode.invalid_date;
|
|
72
|
+
}
|
|
73
|
+
export type StringValidation = "email" | "url" | "emoji" | "uuid" | "nanoid" | "regex" | "cuid" | "cuid2" | "ulid" | "datetime" | "date" | "time" | "duration" | "ip" | "cidr" | "base64" | "jwt" | "base64url" | {
|
|
74
|
+
includes: string;
|
|
75
|
+
position?: number | undefined;
|
|
76
|
+
} | {
|
|
77
|
+
startsWith: string;
|
|
78
|
+
} | {
|
|
79
|
+
endsWith: string;
|
|
80
|
+
};
|
|
81
|
+
export interface ZodInvalidStringIssue extends ZodIssueBase {
|
|
82
|
+
code: typeof ZodIssueCode.invalid_string;
|
|
83
|
+
validation: StringValidation;
|
|
84
|
+
}
|
|
85
|
+
export interface ZodTooSmallIssue extends ZodIssueBase {
|
|
86
|
+
code: typeof ZodIssueCode.too_small;
|
|
87
|
+
minimum: number | bigint;
|
|
88
|
+
inclusive: boolean;
|
|
89
|
+
exact?: boolean;
|
|
90
|
+
type: "array" | "string" | "number" | "set" | "date" | "bigint";
|
|
91
|
+
}
|
|
92
|
+
export interface ZodTooBigIssue extends ZodIssueBase {
|
|
93
|
+
code: typeof ZodIssueCode.too_big;
|
|
94
|
+
maximum: number | bigint;
|
|
95
|
+
inclusive: boolean;
|
|
96
|
+
exact?: boolean;
|
|
97
|
+
type: "array" | "string" | "number" | "set" | "date" | "bigint";
|
|
98
|
+
}
|
|
99
|
+
export interface ZodInvalidIntersectionTypesIssue extends ZodIssueBase {
|
|
100
|
+
code: typeof ZodIssueCode.invalid_intersection_types;
|
|
101
|
+
}
|
|
102
|
+
export interface ZodNotMultipleOfIssue extends ZodIssueBase {
|
|
103
|
+
code: typeof ZodIssueCode.not_multiple_of;
|
|
104
|
+
multipleOf: number | bigint;
|
|
105
|
+
}
|
|
106
|
+
export interface ZodNotFiniteIssue extends ZodIssueBase {
|
|
107
|
+
code: typeof ZodIssueCode.not_finite;
|
|
108
|
+
}
|
|
109
|
+
export interface ZodCustomIssue extends ZodIssueBase {
|
|
110
|
+
code: typeof ZodIssueCode.custom;
|
|
111
|
+
params?: {
|
|
112
|
+
[k: string]: any;
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
export type DenormalizedError = {
|
|
116
|
+
[k: string]: DenormalizedError | string[];
|
|
117
|
+
};
|
|
118
|
+
export type ZodIssueOptionalMessage = ZodInvalidTypeIssue | ZodInvalidLiteralIssue | ZodUnrecognizedKeysIssue | ZodInvalidUnionIssue | ZodInvalidUnionDiscriminatorIssue | ZodInvalidEnumValueIssue | ZodInvalidArgumentsIssue | ZodInvalidReturnTypeIssue | ZodInvalidDateIssue | ZodInvalidStringIssue | ZodTooSmallIssue | ZodTooBigIssue | ZodInvalidIntersectionTypesIssue | ZodNotMultipleOfIssue | ZodNotFiniteIssue | ZodCustomIssue;
|
|
119
|
+
export type ZodIssue = ZodIssueOptionalMessage & {
|
|
120
|
+
fatal?: boolean | undefined;
|
|
121
|
+
message: string;
|
|
122
|
+
};
|
|
123
|
+
export declare const quotelessJson: (obj: any) => string;
|
|
124
|
+
type recursiveZodFormattedError<T> = T extends [any, ...any[]] ? {
|
|
125
|
+
[K in keyof T]?: ZodFormattedError<T[K]>;
|
|
126
|
+
} : T extends any[] ? {
|
|
127
|
+
[k: number]: ZodFormattedError<T[number]>;
|
|
128
|
+
} : T extends object ? {
|
|
129
|
+
[K in keyof T]?: ZodFormattedError<T[K]>;
|
|
130
|
+
} : unknown;
|
|
131
|
+
export type ZodFormattedError<T, U = string> = {
|
|
132
|
+
_errors: U[];
|
|
133
|
+
} & recursiveZodFormattedError<NonNullable<T>>;
|
|
134
|
+
export type inferFormattedError<T extends ZodType<any, any, any>, U = string> = ZodFormattedError<TypeOf<T>, U>;
|
|
135
|
+
export declare class ZodError<T = any> extends Error {
|
|
136
|
+
issues: ZodIssue[];
|
|
137
|
+
get errors(): ZodIssue[];
|
|
138
|
+
constructor(issues: ZodIssue[]);
|
|
139
|
+
format(): ZodFormattedError<T>;
|
|
140
|
+
format<U>(mapper: (issue: ZodIssue) => U): ZodFormattedError<T, U>;
|
|
141
|
+
static create: (issues: ZodIssue[]) => ZodError<any>;
|
|
142
|
+
static assert(value: unknown): asserts value is ZodError;
|
|
143
|
+
toString(): string;
|
|
144
|
+
get message(): string;
|
|
145
|
+
get isEmpty(): boolean;
|
|
146
|
+
addIssue: (sub: ZodIssue) => void;
|
|
147
|
+
addIssues: (subs?: ZodIssue[]) => void;
|
|
148
|
+
flatten(): typeToFlattenedError<T>;
|
|
149
|
+
flatten<U>(mapper?: (issue: ZodIssue) => U): typeToFlattenedError<T, U>;
|
|
150
|
+
get formErrors(): typeToFlattenedError<T, string>;
|
|
151
|
+
}
|
|
152
|
+
type stripPath<T extends object> = T extends any ? util.OmitKeys<T, "path"> : never;
|
|
153
|
+
export type IssueData = stripPath<ZodIssueOptionalMessage> & {
|
|
154
|
+
path?: (string | number)[];
|
|
155
|
+
fatal?: boolean | undefined;
|
|
156
|
+
};
|
|
157
|
+
export type ErrorMapCtx = {
|
|
158
|
+
defaultError: string;
|
|
159
|
+
data: any;
|
|
160
|
+
};
|
|
161
|
+
export type ZodErrorMap = (issue: ZodIssueOptionalMessage, _ctx: ErrorMapCtx) => {
|
|
162
|
+
message: string;
|
|
163
|
+
};
|
|
164
|
+
export {};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.toUpperCase = exports.toLowerCase = exports.trim = exports.normalize = exports.overwrite = exports.mime = exports.property = exports.endsWith = exports.startsWith = exports.includes = exports.uppercase = exports.lowercase = exports.regex = exports.length = exports.minLength = exports.maxLength = exports.size = exports.minSize = exports.maxSize = exports.multipleOf = exports.nonnegative = exports.nonpositive = exports.negative = exports.positive = exports.gte = exports.gt = exports.lte = exports.lt = void 0;
|
|
4
|
+
var index_js_1 = require("../core/index.cjs");
|
|
5
|
+
Object.defineProperty(exports, "lt", { enumerable: true, get: function () { return index_js_1._lt; } });
|
|
6
|
+
Object.defineProperty(exports, "lte", { enumerable: true, get: function () { return index_js_1._lte; } });
|
|
7
|
+
Object.defineProperty(exports, "gt", { enumerable: true, get: function () { return index_js_1._gt; } });
|
|
8
|
+
Object.defineProperty(exports, "gte", { enumerable: true, get: function () { return index_js_1._gte; } });
|
|
9
|
+
Object.defineProperty(exports, "positive", { enumerable: true, get: function () { return index_js_1._positive; } });
|
|
10
|
+
Object.defineProperty(exports, "negative", { enumerable: true, get: function () { return index_js_1._negative; } });
|
|
11
|
+
Object.defineProperty(exports, "nonpositive", { enumerable: true, get: function () { return index_js_1._nonpositive; } });
|
|
12
|
+
Object.defineProperty(exports, "nonnegative", { enumerable: true, get: function () { return index_js_1._nonnegative; } });
|
|
13
|
+
Object.defineProperty(exports, "multipleOf", { enumerable: true, get: function () { return index_js_1._multipleOf; } });
|
|
14
|
+
Object.defineProperty(exports, "maxSize", { enumerable: true, get: function () { return index_js_1._maxSize; } });
|
|
15
|
+
Object.defineProperty(exports, "minSize", { enumerable: true, get: function () { return index_js_1._minSize; } });
|
|
16
|
+
Object.defineProperty(exports, "size", { enumerable: true, get: function () { return index_js_1._size; } });
|
|
17
|
+
Object.defineProperty(exports, "maxLength", { enumerable: true, get: function () { return index_js_1._maxLength; } });
|
|
18
|
+
Object.defineProperty(exports, "minLength", { enumerable: true, get: function () { return index_js_1._minLength; } });
|
|
19
|
+
Object.defineProperty(exports, "length", { enumerable: true, get: function () { return index_js_1._length; } });
|
|
20
|
+
Object.defineProperty(exports, "regex", { enumerable: true, get: function () { return index_js_1._regex; } });
|
|
21
|
+
Object.defineProperty(exports, "lowercase", { enumerable: true, get: function () { return index_js_1._lowercase; } });
|
|
22
|
+
Object.defineProperty(exports, "uppercase", { enumerable: true, get: function () { return index_js_1._uppercase; } });
|
|
23
|
+
Object.defineProperty(exports, "includes", { enumerable: true, get: function () { return index_js_1._includes; } });
|
|
24
|
+
Object.defineProperty(exports, "startsWith", { enumerable: true, get: function () { return index_js_1._startsWith; } });
|
|
25
|
+
Object.defineProperty(exports, "endsWith", { enumerable: true, get: function () { return index_js_1._endsWith; } });
|
|
26
|
+
Object.defineProperty(exports, "property", { enumerable: true, get: function () { return index_js_1._property; } });
|
|
27
|
+
Object.defineProperty(exports, "mime", { enumerable: true, get: function () { return index_js_1._mime; } });
|
|
28
|
+
Object.defineProperty(exports, "overwrite", { enumerable: true, get: function () { return index_js_1._overwrite; } });
|
|
29
|
+
Object.defineProperty(exports, "normalize", { enumerable: true, get: function () { return index_js_1._normalize; } });
|
|
30
|
+
Object.defineProperty(exports, "trim", { enumerable: true, get: function () { return index_js_1._trim; } });
|
|
31
|
+
Object.defineProperty(exports, "toLowerCase", { enumerable: true, get: function () { return index_js_1._toLowerCase; } });
|
|
32
|
+
Object.defineProperty(exports, "toUpperCase", { enumerable: true, get: function () { return index_js_1._toUpperCase; } });
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { _lt as lt, _lte as lte, _gt as gt, _gte as gte, _positive as positive, _negative as negative, _nonpositive as nonpositive, _nonnegative as nonnegative, _multipleOf as multipleOf, _maxSize as maxSize, _minSize as minSize, _size as size, _maxLength as maxLength, _minLength as minLength, _length as length, _regex as regex, _lowercase as lowercase, _uppercase as uppercase, _includes as includes, _startsWith as startsWith, _endsWith as endsWith, _property as property, _mime as mime, _overwrite as overwrite, _normalize as normalize, _trim as trim, _toLowerCase as toLowerCase, _toUpperCase as toUpperCase, type $RefinementCtx as RefinementCtx, } from "../core/index.cjs";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { _lt as lt, _lte as lte, _gt as gt, _gte as gte, _positive as positive, _negative as negative, _nonpositive as nonpositive, _nonnegative as nonnegative, _multipleOf as multipleOf, _maxSize as maxSize, _minSize as minSize, _size as size, _maxLength as maxLength, _minLength as minLength, _length as length, _regex as regex, _lowercase as lowercase, _uppercase as uppercase, _includes as includes, _startsWith as startsWith, _endsWith as endsWith, _property as property, _mime as mime, _overwrite as overwrite, _normalize as normalize, _trim as trim, _toLowerCase as toLowerCase, _toUpperCase as toUpperCase, type $RefinementCtx as RefinementCtx, } from "../core/index.js";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { _lt as lt, _lte as lte, _gt as gt, _gte as gte, _positive as positive, _negative as negative, _nonpositive as nonpositive, _nonnegative as nonnegative, _multipleOf as multipleOf, _maxSize as maxSize, _minSize as minSize, _size as size, _maxLength as maxLength, _minLength as minLength, _length as length, _regex as regex, _lowercase as lowercase, _uppercase as uppercase, _includes as includes, _startsWith as startsWith, _endsWith as endsWith, _property as property, _mime as mime, _overwrite as overwrite, _normalize as normalize, _trim as trim, _toLowerCase as toLowerCase, _toUpperCase as toUpperCase, } from "../core/index.js";
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
26
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
27
|
+
};
|
|
28
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
29
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
30
|
+
};
|
|
31
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
32
|
+
exports.coerce = exports.iso = exports.ZodISODuration = exports.ZodISOTime = exports.ZodISODate = exports.ZodISODateTime = exports.locales = exports.NEVER = exports.util = exports.TimePrecision = exports.toJSONSchema = exports.flattenError = exports.formatError = exports.prettifyError = exports.treeifyError = exports.regexes = exports.clone = exports.$brand = exports.$input = exports.$output = exports.config = exports.registry = exports.globalRegistry = exports.core = void 0;
|
|
33
|
+
exports.core = __importStar(require("../core/index.cjs"));
|
|
34
|
+
__exportStar(require("./schemas.cjs"), exports);
|
|
35
|
+
__exportStar(require("./checks.cjs"), exports);
|
|
36
|
+
__exportStar(require("./errors.cjs"), exports);
|
|
37
|
+
__exportStar(require("./parse.cjs"), exports);
|
|
38
|
+
__exportStar(require("./compat.cjs"), exports);
|
|
39
|
+
// zod-specified
|
|
40
|
+
const index_js_1 = require("../core/index.cjs");
|
|
41
|
+
const en_js_1 = __importDefault(require("../locales/en.cjs"));
|
|
42
|
+
(0, index_js_1.config)((0, en_js_1.default)());
|
|
43
|
+
var index_js_2 = require("../core/index.cjs");
|
|
44
|
+
Object.defineProperty(exports, "globalRegistry", { enumerable: true, get: function () { return index_js_2.globalRegistry; } });
|
|
45
|
+
Object.defineProperty(exports, "registry", { enumerable: true, get: function () { return index_js_2.registry; } });
|
|
46
|
+
Object.defineProperty(exports, "config", { enumerable: true, get: function () { return index_js_2.config; } });
|
|
47
|
+
Object.defineProperty(exports, "$output", { enumerable: true, get: function () { return index_js_2.$output; } });
|
|
48
|
+
Object.defineProperty(exports, "$input", { enumerable: true, get: function () { return index_js_2.$input; } });
|
|
49
|
+
Object.defineProperty(exports, "$brand", { enumerable: true, get: function () { return index_js_2.$brand; } });
|
|
50
|
+
Object.defineProperty(exports, "clone", { enumerable: true, get: function () { return index_js_2.clone; } });
|
|
51
|
+
Object.defineProperty(exports, "regexes", { enumerable: true, get: function () { return index_js_2.regexes; } });
|
|
52
|
+
Object.defineProperty(exports, "treeifyError", { enumerable: true, get: function () { return index_js_2.treeifyError; } });
|
|
53
|
+
Object.defineProperty(exports, "prettifyError", { enumerable: true, get: function () { return index_js_2.prettifyError; } });
|
|
54
|
+
Object.defineProperty(exports, "formatError", { enumerable: true, get: function () { return index_js_2.formatError; } });
|
|
55
|
+
Object.defineProperty(exports, "flattenError", { enumerable: true, get: function () { return index_js_2.flattenError; } });
|
|
56
|
+
Object.defineProperty(exports, "toJSONSchema", { enumerable: true, get: function () { return index_js_2.toJSONSchema; } });
|
|
57
|
+
Object.defineProperty(exports, "TimePrecision", { enumerable: true, get: function () { return index_js_2.TimePrecision; } });
|
|
58
|
+
Object.defineProperty(exports, "util", { enumerable: true, get: function () { return index_js_2.util; } });
|
|
59
|
+
Object.defineProperty(exports, "NEVER", { enumerable: true, get: function () { return index_js_2.NEVER; } });
|
|
60
|
+
exports.locales = __importStar(require("../locales/index.cjs"));
|
|
61
|
+
// iso
|
|
62
|
+
// must be exported from top-level
|
|
63
|
+
// https://github.com/colinhacks/zod/issues/4491
|
|
64
|
+
var iso_js_1 = require("./iso.cjs");
|
|
65
|
+
Object.defineProperty(exports, "ZodISODateTime", { enumerable: true, get: function () { return iso_js_1.ZodISODateTime; } });
|
|
66
|
+
Object.defineProperty(exports, "ZodISODate", { enumerable: true, get: function () { return iso_js_1.ZodISODate; } });
|
|
67
|
+
Object.defineProperty(exports, "ZodISOTime", { enumerable: true, get: function () { return iso_js_1.ZodISOTime; } });
|
|
68
|
+
Object.defineProperty(exports, "ZodISODuration", { enumerable: true, get: function () { return iso_js_1.ZodISODuration; } });
|
|
69
|
+
exports.iso = __importStar(require("./iso.cjs"));
|
|
70
|
+
exports.coerce = __importStar(require("./coerce.cjs"));
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * as core from "../core/index.cjs";
|
|
2
|
+
export * from "./schemas.cjs";
|
|
3
|
+
export * from "./checks.cjs";
|
|
4
|
+
export * from "./errors.cjs";
|
|
5
|
+
export * from "./parse.cjs";
|
|
6
|
+
export * from "./compat.cjs";
|
|
7
|
+
export type { infer, output, input } from "../core/index.cjs";
|
|
8
|
+
export { globalRegistry, type GlobalMeta, registry, config, $output, $input, $brand, clone, regexes, treeifyError, prettifyError, formatError, flattenError, toJSONSchema, TimePrecision, util, NEVER, } from "../core/index.cjs";
|
|
9
|
+
export * as locales from "../locales/index.cjs";
|
|
10
|
+
export { ZodISODateTime, ZodISODate, ZodISOTime, ZodISODuration } from "./iso.cjs";
|
|
11
|
+
export * as iso from "./iso.cjs";
|
|
12
|
+
export type { ZodCoercedString, ZodCoercedNumber, ZodCoercedBigInt, ZodCoercedBoolean, ZodCoercedDate, } from "./coerce.cjs";
|
|
13
|
+
export * as coerce from "./coerce.cjs";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export * as core from "../core/index.js";
|
|
2
|
+
export * from "./schemas.js";
|
|
3
|
+
export * from "./checks.js";
|
|
4
|
+
export * from "./errors.js";
|
|
5
|
+
export * from "./parse.js";
|
|
6
|
+
export * from "./compat.js";
|
|
7
|
+
export type { infer, output, input } from "../core/index.js";
|
|
8
|
+
export { globalRegistry, type GlobalMeta, registry, config, $output, $input, $brand, clone, regexes, treeifyError, prettifyError, formatError, flattenError, toJSONSchema, TimePrecision, util, NEVER, } from "../core/index.js";
|
|
9
|
+
export * as locales from "../locales/index.js";
|
|
10
|
+
export { ZodISODateTime, ZodISODate, ZodISOTime, ZodISODuration } from "./iso.js";
|
|
11
|
+
export * as iso from "./iso.js";
|
|
12
|
+
export type { ZodCoercedString, ZodCoercedNumber, ZodCoercedBigInt, ZodCoercedBoolean, ZodCoercedDate, } from "./coerce.js";
|
|
13
|
+
export * as coerce from "./coerce.js";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export * as core from "../core/index.js";
|
|
2
|
+
export * from "./schemas.js";
|
|
3
|
+
export * from "./checks.js";
|
|
4
|
+
export * from "./errors.js";
|
|
5
|
+
export * from "./parse.js";
|
|
6
|
+
export * from "./compat.js";
|
|
7
|
+
// zod-specified
|
|
8
|
+
import { config } from "../core/index.js";
|
|
9
|
+
import en from "../locales/en.js";
|
|
10
|
+
config(en());
|
|
11
|
+
export { globalRegistry, registry, config, $output, $input, $brand, clone, regexes, treeifyError, prettifyError, formatError, flattenError, toJSONSchema, TimePrecision, util, NEVER, } from "../core/index.js";
|
|
12
|
+
export * as locales from "../locales/index.js";
|
|
13
|
+
// iso
|
|
14
|
+
// must be exported from top-level
|
|
15
|
+
// https://github.com/colinhacks/zod/issues/4491
|
|
16
|
+
export { ZodISODateTime, ZodISODate, ZodISOTime, ZodISODuration } from "./iso.js";
|
|
17
|
+
export * as iso from "./iso.js";
|
|
18
|
+
export * as coerce from "./coerce.js";
|