aws-runtime-bridge 1.9.71 → 1.9.73

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.
Files changed (990) hide show
  1. package/dist/routes/terminal.d.ts.map +1 -1
  2. package/dist/routes/terminal.js +41 -3
  3. package/dist/services/auto-register.d.ts +13 -0
  4. package/dist/services/auto-register.d.ts.map +1 -1
  5. package/dist/services/auto-register.js +36 -1
  6. package/dist/services/session-output.d.ts.map +1 -1
  7. package/dist/services/session-output.js +18 -3
  8. package/dist/services/tunnel-client.js +4 -0
  9. package/node_modules/zod/mini/index.cjs +17 -0
  10. package/node_modules/zod/mini/index.d.cts +1 -0
  11. package/node_modules/zod/mini/index.d.ts +1 -0
  12. package/node_modules/zod/mini/index.js +1 -0
  13. package/node_modules/zod/package.json +135 -0
  14. package/node_modules/zod/src/mini/index.ts +1 -0
  15. package/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
  16. package/node_modules/zod/src/v3/tests/function.test.ts +257 -0
  17. package/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
  18. package/node_modules/zod/src/v4/classic/checks.ts +31 -0
  19. package/node_modules/zod/src/v4/classic/external.ts +50 -0
  20. package/node_modules/zod/src/v4/classic/schemas.ts +2197 -0
  21. package/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
  22. package/node_modules/zod/src/v4/classic/tests/codec.test.ts +562 -0
  23. package/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
  24. package/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
  25. package/node_modules/zod/src/v4/classic/tests/function.test.ts +308 -0
  26. package/node_modules/zod/src/v4/classic/tests/index.test.ts +844 -0
  27. package/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
  28. package/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
  29. package/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
  30. package/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
  31. package/node_modules/zod/src/v4/classic/tests/object.test.ts +609 -0
  32. package/node_modules/zod/src/v4/classic/tests/optional.test.ts +136 -0
  33. package/node_modules/zod/src/v4/classic/tests/partial.test.ts +340 -0
  34. package/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
  35. package/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
  36. package/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
  37. package/node_modules/zod/src/v4/classic/tests/record.test.ts +356 -0
  38. package/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +582 -0
  39. package/node_modules/zod/src/v4/classic/tests/refine.test.ts +605 -0
  40. package/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
  41. package/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
  42. package/node_modules/zod/src/v4/classic/tests/string.test.ts +1080 -0
  43. package/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +763 -0
  44. package/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2622 -0
  45. package/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
  46. package/node_modules/zod/src/v4/classic/tests/union.test.ts +181 -0
  47. package/node_modules/zod/src/v4/core/api.ts +1621 -0
  48. package/node_modules/zod/src/v4/core/checks.ts +1287 -0
  49. package/node_modules/zod/src/v4/core/core.ts +115 -0
  50. package/node_modules/zod/src/v4/core/errors.ts +413 -0
  51. package/node_modules/zod/src/v4/core/index.ts +14 -0
  52. package/node_modules/zod/src/v4/core/regexes.ts +177 -0
  53. package/node_modules/zod/src/v4/core/registries.ts +97 -0
  54. package/node_modules/zod/src/v4/core/schemas.ts +4317 -0
  55. package/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
  56. package/node_modules/zod/src/v4/core/tests/extend.test.ts +18 -0
  57. package/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
  58. package/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
  59. package/node_modules/zod/src/v4/core/to-json-schema.ts +1044 -0
  60. package/node_modules/zod/src/v4/core/util.ts +910 -0
  61. package/node_modules/zod/src/v4/core/versions.ts +5 -0
  62. package/node_modules/zod/src/v4/locales/ar.ts +125 -0
  63. package/node_modules/zod/src/v4/locales/az.ts +121 -0
  64. package/node_modules/zod/src/v4/locales/be.ts +184 -0
  65. package/node_modules/zod/src/v4/locales/bg.ts +136 -0
  66. package/node_modules/zod/src/v4/locales/ca.ts +127 -0
  67. package/node_modules/zod/src/v4/locales/cs.ts +142 -0
  68. package/node_modules/zod/src/v4/locales/da.ts +141 -0
  69. package/node_modules/zod/src/v4/locales/de.ts +124 -0
  70. package/node_modules/zod/src/v4/locales/en.ts +127 -0
  71. package/node_modules/zod/src/v4/locales/eo.ts +125 -0
  72. package/node_modules/zod/src/v4/locales/es.ts +159 -0
  73. package/node_modules/zod/src/v4/locales/fa.ts +134 -0
  74. package/node_modules/zod/src/v4/locales/fi.ts +131 -0
  75. package/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
  76. package/node_modules/zod/src/v4/locales/fr.ts +124 -0
  77. package/node_modules/zod/src/v4/locales/he.ts +125 -0
  78. package/node_modules/zod/src/v4/locales/hu.ts +126 -0
  79. package/node_modules/zod/src/v4/locales/id.ts +125 -0
  80. package/node_modules/zod/src/v4/locales/index.ts +47 -0
  81. package/node_modules/zod/src/v4/locales/is.ts +127 -0
  82. package/node_modules/zod/src/v4/locales/it.ts +125 -0
  83. package/node_modules/zod/src/v4/locales/ja.ts +122 -0
  84. package/node_modules/zod/src/v4/locales/ka.ts +138 -0
  85. package/node_modules/zod/src/v4/locales/km.ts +126 -0
  86. package/node_modules/zod/src/v4/locales/ko.ts +131 -0
  87. package/node_modules/zod/src/v4/locales/lt.ts +265 -0
  88. package/node_modules/zod/src/v4/locales/mk.ts +127 -0
  89. package/node_modules/zod/src/v4/locales/ms.ts +124 -0
  90. package/node_modules/zod/src/v4/locales/nl.ts +126 -0
  91. package/node_modules/zod/src/v4/locales/no.ts +124 -0
  92. package/node_modules/zod/src/v4/locales/ota.ts +125 -0
  93. package/node_modules/zod/src/v4/locales/pl.ts +126 -0
  94. package/node_modules/zod/src/v4/locales/ps.ts +133 -0
  95. package/node_modules/zod/src/v4/locales/pt.ts +123 -0
  96. package/node_modules/zod/src/v4/locales/ru.ts +184 -0
  97. package/node_modules/zod/src/v4/locales/sl.ts +126 -0
  98. package/node_modules/zod/src/v4/locales/sv.ts +127 -0
  99. package/node_modules/zod/src/v4/locales/ta.ts +125 -0
  100. package/node_modules/zod/src/v4/locales/th.ts +126 -0
  101. package/node_modules/zod/src/v4/locales/tr.ts +121 -0
  102. package/node_modules/zod/src/v4/locales/uk.ts +126 -0
  103. package/node_modules/zod/src/v4/locales/ur.ts +126 -0
  104. package/node_modules/zod/src/v4/locales/vi.ts +125 -0
  105. package/node_modules/zod/src/v4/locales/yo.ts +131 -0
  106. package/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
  107. package/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
  108. package/node_modules/zod/src/v4/mini/coerce.ts +22 -0
  109. package/node_modules/zod/src/v4/mini/external.ts +40 -0
  110. package/node_modules/zod/src/v4/mini/iso.ts +62 -0
  111. package/node_modules/zod/src/v4/mini/schemas.ts +1725 -0
  112. package/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
  113. package/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
  114. package/node_modules/zod/src/v4/mini/tests/index.test.ts +899 -0
  115. package/node_modules/zod/src/v4/mini/tests/object.test.ts +200 -0
  116. package/node_modules/zod/src/v4/mini/tests/string.test.ts +315 -0
  117. package/node_modules/zod/src/v4-mini/index.ts +1 -0
  118. package/node_modules/zod/v3/ZodError.d.cts +164 -0
  119. package/node_modules/zod/v3/ZodError.d.ts +164 -0
  120. package/node_modules/zod/v4/classic/checks.cjs +32 -0
  121. package/node_modules/zod/v4/classic/checks.d.cts +1 -0
  122. package/node_modules/zod/v4/classic/checks.d.ts +1 -0
  123. package/node_modules/zod/v4/classic/checks.js +1 -0
  124. package/node_modules/zod/v4/classic/external.cjs +70 -0
  125. package/node_modules/zod/v4/classic/external.d.cts +13 -0
  126. package/node_modules/zod/v4/classic/external.d.ts +13 -0
  127. package/node_modules/zod/v4/classic/external.js +18 -0
  128. package/node_modules/zod/v4/classic/schemas.cjs +1151 -0
  129. package/node_modules/zod/v4/classic/schemas.d.cts +673 -0
  130. package/node_modules/zod/v4/classic/schemas.d.ts +673 -0
  131. package/node_modules/zod/v4/classic/schemas.js +1040 -0
  132. package/node_modules/zod/v4/core/api.cjs +1060 -0
  133. package/node_modules/zod/v4/core/api.d.cts +295 -0
  134. package/node_modules/zod/v4/core/api.d.ts +295 -0
  135. package/node_modules/zod/v4/core/api.js +925 -0
  136. package/node_modules/zod/v4/core/checks.cjs +595 -0
  137. package/node_modules/zod/v4/core/checks.js +569 -0
  138. package/node_modules/zod/v4/core/core.cjs +74 -0
  139. package/node_modules/zod/v4/core/core.d.cts +52 -0
  140. package/node_modules/zod/v4/core/core.d.ts +52 -0
  141. package/node_modules/zod/v4/core/core.js +67 -0
  142. package/node_modules/zod/v4/core/errors.d.cts +210 -0
  143. package/node_modules/zod/v4/core/errors.d.ts +210 -0
  144. package/node_modules/zod/v4/core/index.cjs +43 -0
  145. package/node_modules/zod/v4/core/index.d.cts +14 -0
  146. package/node_modules/zod/v4/core/index.d.ts +14 -0
  147. package/node_modules/zod/v4/core/index.js +14 -0
  148. package/node_modules/zod/v4/core/regexes.cjs +136 -0
  149. package/node_modules/zod/v4/core/regexes.d.cts +78 -0
  150. package/node_modules/zod/v4/core/regexes.d.ts +78 -0
  151. package/node_modules/zod/v4/core/regexes.js +127 -0
  152. package/node_modules/zod/v4/core/registries.cjs +57 -0
  153. package/node_modules/zod/v4/core/registries.js +52 -0
  154. package/node_modules/zod/v4/core/schemas.cjs +1986 -0
  155. package/node_modules/zod/v4/core/schemas.d.cts +1113 -0
  156. package/node_modules/zod/v4/core/schemas.d.ts +1113 -0
  157. package/node_modules/zod/v4/core/schemas.js +1955 -0
  158. package/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
  159. package/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
  160. package/node_modules/zod/v4/core/to-json-schema.cjs +920 -0
  161. package/node_modules/zod/v4/core/to-json-schema.d.cts +90 -0
  162. package/node_modules/zod/v4/core/to-json-schema.d.ts +90 -0
  163. package/node_modules/zod/v4/core/to-json-schema.js +915 -0
  164. package/node_modules/zod/v4/core/util.cjs +658 -0
  165. package/node_modules/zod/v4/core/util.d.cts +197 -0
  166. package/node_modules/zod/v4/core/util.d.ts +197 -0
  167. package/node_modules/zod/v4/core/util.js +601 -0
  168. package/node_modules/zod/v4/core/versions.cjs +8 -0
  169. package/node_modules/zod/v4/core/versions.d.cts +5 -0
  170. package/node_modules/zod/v4/core/versions.d.ts +5 -0
  171. package/node_modules/zod/v4/core/versions.js +5 -0
  172. package/node_modules/zod/v4/locales/ar.cjs +143 -0
  173. package/node_modules/zod/v4/locales/ar.js +116 -0
  174. package/node_modules/zod/v4/locales/az.cjs +142 -0
  175. package/node_modules/zod/v4/locales/az.js +115 -0
  176. package/node_modules/zod/v4/locales/be.cjs +191 -0
  177. package/node_modules/zod/v4/locales/be.js +164 -0
  178. package/node_modules/zod/v4/locales/bg.cjs +156 -0
  179. package/node_modules/zod/v4/locales/bg.d.cts +5 -0
  180. package/node_modules/zod/v4/locales/bg.d.ts +5 -0
  181. package/node_modules/zod/v4/locales/bg.js +128 -0
  182. package/node_modules/zod/v4/locales/ca.cjs +145 -0
  183. package/node_modules/zod/v4/locales/ca.js +118 -0
  184. package/node_modules/zod/v4/locales/cs.cjs +162 -0
  185. package/node_modules/zod/v4/locales/cs.js +135 -0
  186. package/node_modules/zod/v4/locales/da.cjs +158 -0
  187. package/node_modules/zod/v4/locales/da.js +131 -0
  188. package/node_modules/zod/v4/locales/de.cjs +143 -0
  189. package/node_modules/zod/v4/locales/de.js +116 -0
  190. package/node_modules/zod/v4/locales/en.cjs +145 -0
  191. package/node_modules/zod/v4/locales/en.d.cts +5 -0
  192. package/node_modules/zod/v4/locales/en.d.ts +5 -0
  193. package/node_modules/zod/v4/locales/en.js +117 -0
  194. package/node_modules/zod/v4/locales/eo.cjs +144 -0
  195. package/node_modules/zod/v4/locales/eo.d.cts +5 -0
  196. package/node_modules/zod/v4/locales/eo.d.ts +5 -0
  197. package/node_modules/zod/v4/locales/eo.js +116 -0
  198. package/node_modules/zod/v4/locales/es.cjs +176 -0
  199. package/node_modules/zod/v4/locales/es.js +149 -0
  200. package/node_modules/zod/v4/locales/fa.cjs +149 -0
  201. package/node_modules/zod/v4/locales/fa.js +122 -0
  202. package/node_modules/zod/v4/locales/fi.cjs +149 -0
  203. package/node_modules/zod/v4/locales/fi.js +122 -0
  204. package/node_modules/zod/v4/locales/fr-CA.cjs +144 -0
  205. package/node_modules/zod/v4/locales/fr-CA.js +117 -0
  206. package/node_modules/zod/v4/locales/fr.cjs +143 -0
  207. package/node_modules/zod/v4/locales/fr.js +116 -0
  208. package/node_modules/zod/v4/locales/he.cjs +144 -0
  209. package/node_modules/zod/v4/locales/he.js +117 -0
  210. package/node_modules/zod/v4/locales/hu.cjs +144 -0
  211. package/node_modules/zod/v4/locales/hu.js +117 -0
  212. package/node_modules/zod/v4/locales/id.cjs +143 -0
  213. package/node_modules/zod/v4/locales/id.js +116 -0
  214. package/node_modules/zod/v4/locales/index.cjs +100 -0
  215. package/node_modules/zod/v4/locales/index.d.cts +47 -0
  216. package/node_modules/zod/v4/locales/index.d.ts +47 -0
  217. package/node_modules/zod/v4/locales/index.js +47 -0
  218. package/node_modules/zod/v4/locales/is.cjs +145 -0
  219. package/node_modules/zod/v4/locales/is.d.cts +5 -0
  220. package/node_modules/zod/v4/locales/is.d.ts +5 -0
  221. package/node_modules/zod/v4/locales/is.js +117 -0
  222. package/node_modules/zod/v4/locales/it.cjs +144 -0
  223. package/node_modules/zod/v4/locales/it.js +117 -0
  224. package/node_modules/zod/v4/locales/ja.cjs +142 -0
  225. package/node_modules/zod/v4/locales/ja.js +115 -0
  226. package/node_modules/zod/v4/locales/ka.cjs +153 -0
  227. package/node_modules/zod/v4/locales/ka.d.cts +5 -0
  228. package/node_modules/zod/v4/locales/ka.d.ts +5 -0
  229. package/node_modules/zod/v4/locales/ka.js +125 -0
  230. package/node_modules/zod/v4/locales/km.cjs +144 -0
  231. package/node_modules/zod/v4/locales/km.js +117 -0
  232. package/node_modules/zod/v4/locales/ko.cjs +148 -0
  233. package/node_modules/zod/v4/locales/ko.js +121 -0
  234. package/node_modules/zod/v4/locales/lt.cjs +258 -0
  235. package/node_modules/zod/v4/locales/lt.d.cts +5 -0
  236. package/node_modules/zod/v4/locales/lt.d.ts +5 -0
  237. package/node_modules/zod/v4/locales/lt.js +230 -0
  238. package/node_modules/zod/v4/locales/mk.cjs +145 -0
  239. package/node_modules/zod/v4/locales/mk.js +118 -0
  240. package/node_modules/zod/v4/locales/ms.cjs +143 -0
  241. package/node_modules/zod/v4/locales/ms.js +116 -0
  242. package/node_modules/zod/v4/locales/nl.cjs +144 -0
  243. package/node_modules/zod/v4/locales/nl.js +117 -0
  244. package/node_modules/zod/v4/locales/no.cjs +143 -0
  245. package/node_modules/zod/v4/locales/no.js +116 -0
  246. package/node_modules/zod/v4/locales/ota.cjs +144 -0
  247. package/node_modules/zod/v4/locales/ota.js +117 -0
  248. package/node_modules/zod/v4/locales/pl.cjs +144 -0
  249. package/node_modules/zod/v4/locales/pl.js +117 -0
  250. package/node_modules/zod/v4/locales/ps.cjs +149 -0
  251. package/node_modules/zod/v4/locales/ps.js +122 -0
  252. package/node_modules/zod/v4/locales/pt.cjs +143 -0
  253. package/node_modules/zod/v4/locales/pt.js +116 -0
  254. package/node_modules/zod/v4/locales/ru.cjs +191 -0
  255. package/node_modules/zod/v4/locales/ru.js +164 -0
  256. package/node_modules/zod/v4/locales/sl.cjs +144 -0
  257. package/node_modules/zod/v4/locales/sl.js +117 -0
  258. package/node_modules/zod/v4/locales/sv.cjs +145 -0
  259. package/node_modules/zod/v4/locales/sv.js +118 -0
  260. package/node_modules/zod/v4/locales/ta.cjs +144 -0
  261. package/node_modules/zod/v4/locales/ta.js +117 -0
  262. package/node_modules/zod/v4/locales/th.cjs +144 -0
  263. package/node_modules/zod/v4/locales/th.js +117 -0
  264. package/node_modules/zod/v4/locales/tr.cjs +143 -0
  265. package/node_modules/zod/v4/locales/tr.d.cts +5 -0
  266. package/node_modules/zod/v4/locales/tr.d.ts +5 -0
  267. package/node_modules/zod/v4/locales/tr.js +115 -0
  268. package/node_modules/zod/v4/locales/uk.cjs +144 -0
  269. package/node_modules/zod/v4/locales/uk.js +117 -0
  270. package/node_modules/zod/v4/locales/ur.cjs +144 -0
  271. package/node_modules/zod/v4/locales/ur.js +117 -0
  272. package/node_modules/zod/v4/locales/vi.cjs +143 -0
  273. package/node_modules/zod/v4/locales/vi.js +116 -0
  274. package/node_modules/zod/v4/locales/yo.cjs +142 -0
  275. package/node_modules/zod/v4/locales/yo.js +115 -0
  276. package/node_modules/zod/v4/locales/zh-CN.cjs +143 -0
  277. package/node_modules/zod/v4/locales/zh-CN.js +116 -0
  278. package/node_modules/zod/v4/locales/zh-TW.cjs +144 -0
  279. package/node_modules/zod/v4/locales/zh-TW.js +117 -0
  280. package/node_modules/zod/v4/mini/coerce.cjs +47 -0
  281. package/node_modules/zod/v4/mini/coerce.js +17 -0
  282. package/node_modules/zod/v4/mini/external.cjs +62 -0
  283. package/node_modules/zod/v4/mini/external.d.cts +11 -0
  284. package/node_modules/zod/v4/mini/external.d.ts +11 -0
  285. package/node_modules/zod/v4/mini/external.js +13 -0
  286. package/node_modules/zod/v4/mini/iso.cjs +60 -0
  287. package/node_modules/zod/v4/mini/iso.js +30 -0
  288. package/node_modules/zod/v4/mini/schemas.cjs +892 -0
  289. package/node_modules/zod/v4/mini/schemas.d.cts +407 -0
  290. package/node_modules/zod/v4/mini/schemas.d.ts +407 -0
  291. package/node_modules/zod/v4/mini/schemas.js +775 -0
  292. package/node_modules/zod/v4-mini/index.cjs +17 -0
  293. package/node_modules/zod/v4-mini/index.d.cts +1 -0
  294. package/node_modules/zod/v4-mini/index.d.ts +1 -0
  295. package/node_modules/zod/v4-mini/index.js +1 -0
  296. package/package.json +3 -1
  297. package/package/cc-switch-sdk/node_modules/zod/mini/index.cjs +0 -32
  298. package/package/cc-switch-sdk/node_modules/zod/mini/index.d.cts +0 -3
  299. package/package/cc-switch-sdk/node_modules/zod/mini/index.d.ts +0 -3
  300. package/package/cc-switch-sdk/node_modules/zod/mini/index.js +0 -3
  301. package/package/cc-switch-sdk/node_modules/zod/package.json +0 -135
  302. package/package/cc-switch-sdk/node_modules/zod/src/mini/index.ts +0 -3
  303. package/package/cc-switch-sdk/node_modules/zod/src/v3/tests/complex.test.ts +0 -70
  304. package/package/cc-switch-sdk/node_modules/zod/src/v3/tests/function.test.ts +0 -261
  305. package/package/cc-switch-sdk/node_modules/zod/src/v3/tests/nan.test.ts +0 -24
  306. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/checks.ts +0 -32
  307. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/external.ts +0 -51
  308. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/from-json-schema.ts +0 -643
  309. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/schemas.ts +0 -2409
  310. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/apply.test.ts +0 -59
  311. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/brand.test.ts +0 -106
  312. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/codec.test.ts +0 -562
  313. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/continuability.test.ts +0 -374
  314. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/date.test.ts +0 -62
  315. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/describe-meta-checks.test.ts +0 -27
  316. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/fix-json-issue.test.ts +0 -26
  317. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/from-json-schema.test.ts +0 -734
  318. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/function.test.ts +0 -360
  319. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/index.test.ts +0 -939
  320. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +0 -60
  321. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/intersection.test.ts +0 -198
  322. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/json.test.ts +0 -109
  323. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/map.test.ts +0 -330
  324. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/object.test.ts +0 -640
  325. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/optional.test.ts +0 -223
  326. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/partial.test.ts +0 -427
  327. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +0 -211
  328. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/promise.test.ts +0 -81
  329. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/readonly.test.ts +0 -252
  330. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/record.test.ts +0 -632
  331. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +0 -582
  332. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/refine.test.ts +0 -570
  333. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/registries.test.ts +0 -243
  334. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +0 -134
  335. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/string.test.ts +0 -1175
  336. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +0 -771
  337. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/to-json-schema-methods.test.ts +0 -438
  338. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +0 -2990
  339. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/tuple.test.ts +0 -183
  340. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/union.test.ts +0 -219
  341. package/package/cc-switch-sdk/node_modules/zod/src/v4/classic/tests/url.test.ts +0 -13
  342. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/api.ts +0 -1798
  343. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/checks.ts +0 -1293
  344. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/core.ts +0 -138
  345. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/errors.ts +0 -448
  346. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/index.ts +0 -16
  347. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/json-schema-generator.ts +0 -126
  348. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/json-schema-processors.ts +0 -667
  349. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/regexes.ts +0 -183
  350. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/registries.ts +0 -105
  351. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/schemas.ts +0 -4538
  352. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/standard-schema.ts +0 -159
  353. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/tests/extend.test.ts +0 -59
  354. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/tests/locales/en.test.ts +0 -22
  355. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/tests/locales/he.test.ts +0 -379
  356. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/tests/locales/nl.test.ts +0 -46
  357. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +0 -69
  358. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/tests/locales/uz.test.ts +0 -83
  359. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/tests/record-constructor.test.ts +0 -67
  360. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/tests/recursive-tuples.test.ts +0 -45
  361. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/to-json-schema.ts +0 -613
  362. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/util.ts +0 -966
  363. package/package/cc-switch-sdk/node_modules/zod/src/v4/core/versions.ts +0 -5
  364. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ar.ts +0 -115
  365. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/az.ts +0 -111
  366. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/be.ts +0 -176
  367. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/bg.ts +0 -128
  368. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ca.ts +0 -116
  369. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/cs.ts +0 -118
  370. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/da.ts +0 -123
  371. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/de.ts +0 -116
  372. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/en.ts +0 -119
  373. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/eo.ts +0 -118
  374. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/es.ts +0 -141
  375. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/fa.ts +0 -126
  376. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/fi.ts +0 -121
  377. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/fr-CA.ts +0 -116
  378. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/fr.ts +0 -116
  379. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/he.ts +0 -246
  380. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/hu.ts +0 -117
  381. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/hy.ts +0 -164
  382. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/id.ts +0 -115
  383. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/index.ts +0 -49
  384. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/is.ts +0 -119
  385. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/it.ts +0 -116
  386. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ja.ts +0 -114
  387. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ka.ts +0 -123
  388. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/km.ts +0 -119
  389. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ko.ts +0 -121
  390. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/lt.ts +0 -239
  391. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/mk.ts +0 -118
  392. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ms.ts +0 -115
  393. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/nl.ts +0 -121
  394. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/no.ts +0 -116
  395. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ota.ts +0 -117
  396. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/pl.ts +0 -118
  397. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ps.ts +0 -126
  398. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/pt.ts +0 -116
  399. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ru.ts +0 -176
  400. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/sl.ts +0 -118
  401. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/sv.ts +0 -119
  402. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ta.ts +0 -118
  403. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/th.ts +0 -119
  404. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/tr.ts +0 -111
  405. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/uk.ts +0 -117
  406. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/ur.ts +0 -119
  407. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/uz.ts +0 -116
  408. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/vi.ts +0 -117
  409. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/yo.ts +0 -124
  410. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/zh-CN.ts +0 -116
  411. package/package/cc-switch-sdk/node_modules/zod/src/v4/locales/zh-TW.ts +0 -115
  412. package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/coerce.ts +0 -27
  413. package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/external.ts +0 -40
  414. package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/iso.ts +0 -66
  415. package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/schemas.ts +0 -1916
  416. package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/tests/apply.test.ts +0 -24
  417. package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/tests/brand.test.ts +0 -94
  418. package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/tests/functions.test.ts +0 -5
  419. package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/tests/index.test.ts +0 -963
  420. package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/tests/object.test.ts +0 -227
  421. package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/tests/standard-schema.test.ts +0 -50
  422. package/package/cc-switch-sdk/node_modules/zod/src/v4/mini/tests/string.test.ts +0 -347
  423. package/package/cc-switch-sdk/node_modules/zod/src/v4-mini/index.ts +0 -3
  424. package/package/cc-switch-sdk/node_modules/zod/v3/ZodError.d.cts +0 -164
  425. package/package/cc-switch-sdk/node_modules/zod/v3/ZodError.d.ts +0 -164
  426. package/package/cc-switch-sdk/node_modules/zod/v4/classic/checks.cjs +0 -33
  427. package/package/cc-switch-sdk/node_modules/zod/v4/classic/checks.d.cts +0 -1
  428. package/package/cc-switch-sdk/node_modules/zod/v4/classic/checks.d.ts +0 -1
  429. package/package/cc-switch-sdk/node_modules/zod/v4/classic/checks.js +0 -1
  430. package/package/cc-switch-sdk/node_modules/zod/v4/classic/external.cjs +0 -73
  431. package/package/cc-switch-sdk/node_modules/zod/v4/classic/external.d.cts +0 -15
  432. package/package/cc-switch-sdk/node_modules/zod/v4/classic/external.d.ts +0 -15
  433. package/package/cc-switch-sdk/node_modules/zod/v4/classic/external.js +0 -20
  434. package/package/cc-switch-sdk/node_modules/zod/v4/classic/from-json-schema.cjs +0 -610
  435. package/package/cc-switch-sdk/node_modules/zod/v4/classic/from-json-schema.d.cts +0 -12
  436. package/package/cc-switch-sdk/node_modules/zod/v4/classic/from-json-schema.d.ts +0 -12
  437. package/package/cc-switch-sdk/node_modules/zod/v4/classic/from-json-schema.js +0 -584
  438. package/package/cc-switch-sdk/node_modules/zod/v4/classic/schemas.cjs +0 -1272
  439. package/package/cc-switch-sdk/node_modules/zod/v4/classic/schemas.d.cts +0 -739
  440. package/package/cc-switch-sdk/node_modules/zod/v4/classic/schemas.d.ts +0 -739
  441. package/package/cc-switch-sdk/node_modules/zod/v4/classic/schemas.js +0 -1157
  442. package/package/cc-switch-sdk/node_modules/zod/v4/core/api.cjs +0 -1222
  443. package/package/cc-switch-sdk/node_modules/zod/v4/core/api.d.cts +0 -304
  444. package/package/cc-switch-sdk/node_modules/zod/v4/core/api.d.ts +0 -304
  445. package/package/cc-switch-sdk/node_modules/zod/v4/core/api.js +0 -1082
  446. package/package/cc-switch-sdk/node_modules/zod/v4/core/checks.cjs +0 -601
  447. package/package/cc-switch-sdk/node_modules/zod/v4/core/checks.js +0 -575
  448. package/package/cc-switch-sdk/node_modules/zod/v4/core/core.cjs +0 -83
  449. package/package/cc-switch-sdk/node_modules/zod/v4/core/core.d.cts +0 -70
  450. package/package/cc-switch-sdk/node_modules/zod/v4/core/core.d.ts +0 -70
  451. package/package/cc-switch-sdk/node_modules/zod/v4/core/core.js +0 -76
  452. package/package/cc-switch-sdk/node_modules/zod/v4/core/errors.d.cts +0 -220
  453. package/package/cc-switch-sdk/node_modules/zod/v4/core/errors.d.ts +0 -220
  454. package/package/cc-switch-sdk/node_modules/zod/v4/core/index.cjs +0 -47
  455. package/package/cc-switch-sdk/node_modules/zod/v4/core/index.d.cts +0 -16
  456. package/package/cc-switch-sdk/node_modules/zod/v4/core/index.d.ts +0 -16
  457. package/package/cc-switch-sdk/node_modules/zod/v4/core/index.js +0 -16
  458. package/package/cc-switch-sdk/node_modules/zod/v4/core/json-schema-generator.cjs +0 -99
  459. package/package/cc-switch-sdk/node_modules/zod/v4/core/json-schema-generator.d.cts +0 -65
  460. package/package/cc-switch-sdk/node_modules/zod/v4/core/json-schema-generator.d.ts +0 -65
  461. package/package/cc-switch-sdk/node_modules/zod/v4/core/json-schema-generator.js +0 -95
  462. package/package/cc-switch-sdk/node_modules/zod/v4/core/json-schema-processors.cjs +0 -648
  463. package/package/cc-switch-sdk/node_modules/zod/v4/core/json-schema-processors.d.cts +0 -49
  464. package/package/cc-switch-sdk/node_modules/zod/v4/core/json-schema-processors.d.ts +0 -49
  465. package/package/cc-switch-sdk/node_modules/zod/v4/core/json-schema-processors.js +0 -605
  466. package/package/cc-switch-sdk/node_modules/zod/v4/core/regexes.cjs +0 -166
  467. package/package/cc-switch-sdk/node_modules/zod/v4/core/regexes.d.cts +0 -79
  468. package/package/cc-switch-sdk/node_modules/zod/v4/core/regexes.d.ts +0 -79
  469. package/package/cc-switch-sdk/node_modules/zod/v4/core/regexes.js +0 -133
  470. package/package/cc-switch-sdk/node_modules/zod/v4/core/registries.cjs +0 -56
  471. package/package/cc-switch-sdk/node_modules/zod/v4/core/registries.js +0 -51
  472. package/package/cc-switch-sdk/node_modules/zod/v4/core/schemas.cjs +0 -2124
  473. package/package/cc-switch-sdk/node_modules/zod/v4/core/schemas.d.cts +0 -1146
  474. package/package/cc-switch-sdk/node_modules/zod/v4/core/schemas.d.ts +0 -1146
  475. package/package/cc-switch-sdk/node_modules/zod/v4/core/schemas.js +0 -2093
  476. package/package/cc-switch-sdk/node_modules/zod/v4/core/standard-schema.d.cts +0 -126
  477. package/package/cc-switch-sdk/node_modules/zod/v4/core/standard-schema.d.ts +0 -126
  478. package/package/cc-switch-sdk/node_modules/zod/v4/core/to-json-schema.cjs +0 -446
  479. package/package/cc-switch-sdk/node_modules/zod/v4/core/to-json-schema.d.cts +0 -114
  480. package/package/cc-switch-sdk/node_modules/zod/v4/core/to-json-schema.d.ts +0 -114
  481. package/package/cc-switch-sdk/node_modules/zod/v4/core/to-json-schema.js +0 -437
  482. package/package/cc-switch-sdk/node_modules/zod/v4/core/util.cjs +0 -710
  483. package/package/cc-switch-sdk/node_modules/zod/v4/core/util.d.cts +0 -199
  484. package/package/cc-switch-sdk/node_modules/zod/v4/core/util.d.ts +0 -199
  485. package/package/cc-switch-sdk/node_modules/zod/v4/core/util.js +0 -651
  486. package/package/cc-switch-sdk/node_modules/zod/v4/core/versions.cjs +0 -8
  487. package/package/cc-switch-sdk/node_modules/zod/v4/core/versions.d.cts +0 -5
  488. package/package/cc-switch-sdk/node_modules/zod/v4/core/versions.d.ts +0 -5
  489. package/package/cc-switch-sdk/node_modules/zod/v4/core/versions.js +0 -5
  490. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ar.cjs +0 -133
  491. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ar.js +0 -106
  492. package/package/cc-switch-sdk/node_modules/zod/v4/locales/az.cjs +0 -132
  493. package/package/cc-switch-sdk/node_modules/zod/v4/locales/az.js +0 -105
  494. package/package/cc-switch-sdk/node_modules/zod/v4/locales/be.cjs +0 -183
  495. package/package/cc-switch-sdk/node_modules/zod/v4/locales/be.js +0 -156
  496. package/package/cc-switch-sdk/node_modules/zod/v4/locales/bg.cjs +0 -147
  497. package/package/cc-switch-sdk/node_modules/zod/v4/locales/bg.d.cts +0 -5
  498. package/package/cc-switch-sdk/node_modules/zod/v4/locales/bg.d.ts +0 -4
  499. package/package/cc-switch-sdk/node_modules/zod/v4/locales/bg.js +0 -120
  500. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ca.cjs +0 -134
  501. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ca.js +0 -107
  502. package/package/cc-switch-sdk/node_modules/zod/v4/locales/cs.cjs +0 -138
  503. package/package/cc-switch-sdk/node_modules/zod/v4/locales/cs.js +0 -111
  504. package/package/cc-switch-sdk/node_modules/zod/v4/locales/da.cjs +0 -142
  505. package/package/cc-switch-sdk/node_modules/zod/v4/locales/da.js +0 -115
  506. package/package/cc-switch-sdk/node_modules/zod/v4/locales/de.cjs +0 -135
  507. package/package/cc-switch-sdk/node_modules/zod/v4/locales/de.js +0 -108
  508. package/package/cc-switch-sdk/node_modules/zod/v4/locales/en.cjs +0 -136
  509. package/package/cc-switch-sdk/node_modules/zod/v4/locales/en.d.cts +0 -5
  510. package/package/cc-switch-sdk/node_modules/zod/v4/locales/en.d.ts +0 -4
  511. package/package/cc-switch-sdk/node_modules/zod/v4/locales/en.js +0 -109
  512. package/package/cc-switch-sdk/node_modules/zod/v4/locales/eo.cjs +0 -136
  513. package/package/cc-switch-sdk/node_modules/zod/v4/locales/eo.d.cts +0 -5
  514. package/package/cc-switch-sdk/node_modules/zod/v4/locales/eo.d.ts +0 -4
  515. package/package/cc-switch-sdk/node_modules/zod/v4/locales/eo.js +0 -109
  516. package/package/cc-switch-sdk/node_modules/zod/v4/locales/es.cjs +0 -159
  517. package/package/cc-switch-sdk/node_modules/zod/v4/locales/es.js +0 -132
  518. package/package/cc-switch-sdk/node_modules/zod/v4/locales/fa.cjs +0 -141
  519. package/package/cc-switch-sdk/node_modules/zod/v4/locales/fa.js +0 -114
  520. package/package/cc-switch-sdk/node_modules/zod/v4/locales/fi.cjs +0 -139
  521. package/package/cc-switch-sdk/node_modules/zod/v4/locales/fi.js +0 -112
  522. package/package/cc-switch-sdk/node_modules/zod/v4/locales/fr-CA.cjs +0 -134
  523. package/package/cc-switch-sdk/node_modules/zod/v4/locales/fr-CA.js +0 -107
  524. package/package/cc-switch-sdk/node_modules/zod/v4/locales/fr.cjs +0 -135
  525. package/package/cc-switch-sdk/node_modules/zod/v4/locales/fr.js +0 -108
  526. package/package/cc-switch-sdk/node_modules/zod/v4/locales/he.cjs +0 -241
  527. package/package/cc-switch-sdk/node_modules/zod/v4/locales/he.js +0 -214
  528. package/package/cc-switch-sdk/node_modules/zod/v4/locales/hu.cjs +0 -135
  529. package/package/cc-switch-sdk/node_modules/zod/v4/locales/hu.js +0 -108
  530. package/package/cc-switch-sdk/node_modules/zod/v4/locales/hy.cjs +0 -174
  531. package/package/cc-switch-sdk/node_modules/zod/v4/locales/hy.d.cts +0 -5
  532. package/package/cc-switch-sdk/node_modules/zod/v4/locales/hy.d.ts +0 -4
  533. package/package/cc-switch-sdk/node_modules/zod/v4/locales/hy.js +0 -147
  534. package/package/cc-switch-sdk/node_modules/zod/v4/locales/id.cjs +0 -133
  535. package/package/cc-switch-sdk/node_modules/zod/v4/locales/id.js +0 -106
  536. package/package/cc-switch-sdk/node_modules/zod/v4/locales/index.cjs +0 -104
  537. package/package/cc-switch-sdk/node_modules/zod/v4/locales/index.d.cts +0 -49
  538. package/package/cc-switch-sdk/node_modules/zod/v4/locales/index.d.ts +0 -49
  539. package/package/cc-switch-sdk/node_modules/zod/v4/locales/index.js +0 -49
  540. package/package/cc-switch-sdk/node_modules/zod/v4/locales/is.cjs +0 -136
  541. package/package/cc-switch-sdk/node_modules/zod/v4/locales/is.d.cts +0 -5
  542. package/package/cc-switch-sdk/node_modules/zod/v4/locales/is.d.ts +0 -4
  543. package/package/cc-switch-sdk/node_modules/zod/v4/locales/is.js +0 -109
  544. package/package/cc-switch-sdk/node_modules/zod/v4/locales/it.cjs +0 -135
  545. package/package/cc-switch-sdk/node_modules/zod/v4/locales/it.js +0 -108
  546. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ja.cjs +0 -134
  547. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ja.js +0 -107
  548. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ka.cjs +0 -139
  549. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ka.d.cts +0 -5
  550. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ka.d.ts +0 -4
  551. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ka.js +0 -112
  552. package/package/cc-switch-sdk/node_modules/zod/v4/locales/km.cjs +0 -137
  553. package/package/cc-switch-sdk/node_modules/zod/v4/locales/km.js +0 -110
  554. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ko.cjs +0 -138
  555. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ko.js +0 -111
  556. package/package/cc-switch-sdk/node_modules/zod/v4/locales/lt.cjs +0 -230
  557. package/package/cc-switch-sdk/node_modules/zod/v4/locales/lt.d.cts +0 -5
  558. package/package/cc-switch-sdk/node_modules/zod/v4/locales/lt.d.ts +0 -4
  559. package/package/cc-switch-sdk/node_modules/zod/v4/locales/lt.js +0 -203
  560. package/package/cc-switch-sdk/node_modules/zod/v4/locales/mk.cjs +0 -136
  561. package/package/cc-switch-sdk/node_modules/zod/v4/locales/mk.js +0 -109
  562. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ms.cjs +0 -134
  563. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ms.js +0 -107
  564. package/package/cc-switch-sdk/node_modules/zod/v4/locales/nl.cjs +0 -137
  565. package/package/cc-switch-sdk/node_modules/zod/v4/locales/nl.js +0 -110
  566. package/package/cc-switch-sdk/node_modules/zod/v4/locales/no.cjs +0 -135
  567. package/package/cc-switch-sdk/node_modules/zod/v4/locales/no.js +0 -108
  568. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ota.cjs +0 -136
  569. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ota.js +0 -109
  570. package/package/cc-switch-sdk/node_modules/zod/v4/locales/pl.cjs +0 -136
  571. package/package/cc-switch-sdk/node_modules/zod/v4/locales/pl.js +0 -109
  572. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ps.cjs +0 -141
  573. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ps.js +0 -114
  574. package/package/cc-switch-sdk/node_modules/zod/v4/locales/pt.cjs +0 -135
  575. package/package/cc-switch-sdk/node_modules/zod/v4/locales/pt.js +0 -108
  576. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ru.cjs +0 -183
  577. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ru.js +0 -156
  578. package/package/cc-switch-sdk/node_modules/zod/v4/locales/sl.cjs +0 -136
  579. package/package/cc-switch-sdk/node_modules/zod/v4/locales/sl.js +0 -109
  580. package/package/cc-switch-sdk/node_modules/zod/v4/locales/sv.cjs +0 -137
  581. package/package/cc-switch-sdk/node_modules/zod/v4/locales/sv.js +0 -110
  582. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ta.cjs +0 -137
  583. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ta.js +0 -110
  584. package/package/cc-switch-sdk/node_modules/zod/v4/locales/th.cjs +0 -137
  585. package/package/cc-switch-sdk/node_modules/zod/v4/locales/th.js +0 -110
  586. package/package/cc-switch-sdk/node_modules/zod/v4/locales/tr.cjs +0 -132
  587. package/package/cc-switch-sdk/node_modules/zod/v4/locales/tr.d.cts +0 -5
  588. package/package/cc-switch-sdk/node_modules/zod/v4/locales/tr.d.ts +0 -4
  589. package/package/cc-switch-sdk/node_modules/zod/v4/locales/tr.js +0 -105
  590. package/package/cc-switch-sdk/node_modules/zod/v4/locales/uk.cjs +0 -135
  591. package/package/cc-switch-sdk/node_modules/zod/v4/locales/uk.js +0 -108
  592. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ur.cjs +0 -137
  593. package/package/cc-switch-sdk/node_modules/zod/v4/locales/ur.js +0 -110
  594. package/package/cc-switch-sdk/node_modules/zod/v4/locales/uz.cjs +0 -136
  595. package/package/cc-switch-sdk/node_modules/zod/v4/locales/uz.d.cts +0 -5
  596. package/package/cc-switch-sdk/node_modules/zod/v4/locales/uz.d.ts +0 -4
  597. package/package/cc-switch-sdk/node_modules/zod/v4/locales/uz.js +0 -109
  598. package/package/cc-switch-sdk/node_modules/zod/v4/locales/vi.cjs +0 -135
  599. package/package/cc-switch-sdk/node_modules/zod/v4/locales/vi.js +0 -108
  600. package/package/cc-switch-sdk/node_modules/zod/v4/locales/yo.cjs +0 -134
  601. package/package/cc-switch-sdk/node_modules/zod/v4/locales/yo.js +0 -107
  602. package/package/cc-switch-sdk/node_modules/zod/v4/locales/zh-CN.cjs +0 -136
  603. package/package/cc-switch-sdk/node_modules/zod/v4/locales/zh-CN.js +0 -109
  604. package/package/cc-switch-sdk/node_modules/zod/v4/locales/zh-TW.cjs +0 -134
  605. package/package/cc-switch-sdk/node_modules/zod/v4/locales/zh-TW.js +0 -107
  606. package/package/cc-switch-sdk/node_modules/zod/v4/mini/coerce.cjs +0 -52
  607. package/package/cc-switch-sdk/node_modules/zod/v4/mini/coerce.js +0 -22
  608. package/package/cc-switch-sdk/node_modules/zod/v4/mini/external.cjs +0 -63
  609. package/package/cc-switch-sdk/node_modules/zod/v4/mini/external.d.cts +0 -12
  610. package/package/cc-switch-sdk/node_modules/zod/v4/mini/external.d.ts +0 -12
  611. package/package/cc-switch-sdk/node_modules/zod/v4/mini/external.js +0 -14
  612. package/package/cc-switch-sdk/node_modules/zod/v4/mini/iso.cjs +0 -64
  613. package/package/cc-switch-sdk/node_modules/zod/v4/mini/iso.js +0 -34
  614. package/package/cc-switch-sdk/node_modules/zod/v4/mini/schemas.cjs +0 -1046
  615. package/package/cc-switch-sdk/node_modules/zod/v4/mini/schemas.d.cts +0 -427
  616. package/package/cc-switch-sdk/node_modules/zod/v4/mini/schemas.d.ts +0 -427
  617. package/package/cc-switch-sdk/node_modules/zod/v4/mini/schemas.js +0 -925
  618. package/package/cc-switch-sdk/node_modules/zod/v4-mini/index.cjs +0 -32
  619. package/package/cc-switch-sdk/node_modules/zod/v4-mini/index.d.cts +0 -3
  620. package/package/cc-switch-sdk/node_modules/zod/v4-mini/index.d.ts +0 -3
  621. package/package/cc-switch-sdk/node_modules/zod/v4-mini/index.js +0 -3
  622. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/LICENSE +0 -0
  623. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/README.md +0 -0
  624. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/index.cjs +0 -0
  625. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/index.d.cts +0 -0
  626. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/index.d.ts +0 -0
  627. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/index.js +0 -0
  628. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/locales/index.cjs +0 -0
  629. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/locales/index.d.cts +0 -0
  630. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/locales/index.d.ts +0 -0
  631. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/locales/index.js +0 -0
  632. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/locales/package.json +0 -0
  633. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/mini/package.json +0 -0
  634. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/index.ts +0 -0
  635. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/locales/index.ts +0 -0
  636. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/ZodError.ts +0 -0
  637. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/datetime.ts +0 -0
  638. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/discriminatedUnion.ts +0 -0
  639. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/index.ts +0 -0
  640. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/ipv4.ts +0 -0
  641. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/object.ts +0 -0
  642. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/primitives.ts +0 -0
  643. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/realworld.ts +0 -0
  644. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/string.ts +0 -0
  645. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/benchmarks/union.ts +0 -0
  646. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/errors.ts +0 -0
  647. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/external.ts +0 -0
  648. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/helpers/enumUtil.ts +0 -0
  649. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/helpers/errorUtil.ts +0 -0
  650. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/helpers/parseUtil.ts +0 -0
  651. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/helpers/partialUtil.ts +0 -0
  652. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/helpers/typeAliases.ts +0 -0
  653. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/helpers/util.ts +0 -0
  654. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/index.ts +0 -0
  655. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/locales/en.ts +0 -0
  656. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/standard-schema.ts +0 -0
  657. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/Mocker.ts +0 -0
  658. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/all-errors.test.ts +0 -0
  659. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/anyunknown.test.ts +0 -0
  660. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/array.test.ts +0 -0
  661. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/async-parsing.test.ts +0 -0
  662. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/async-refinements.test.ts +0 -0
  663. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/base.test.ts +0 -0
  664. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/bigint.test.ts +0 -0
  665. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/branded.test.ts +0 -0
  666. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/catch.test.ts +0 -0
  667. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/coerce.test.ts +0 -0
  668. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/custom.test.ts +0 -0
  669. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/date.test.ts +0 -0
  670. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/deepmasking.test.ts +0 -0
  671. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/default.test.ts +0 -0
  672. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/description.test.ts +0 -0
  673. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/discriminated-unions.test.ts +0 -0
  674. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/enum.test.ts +0 -0
  675. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/error.test.ts +0 -0
  676. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/firstparty.test.ts +0 -0
  677. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/firstpartyschematypes.test.ts +0 -0
  678. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/generics.test.ts +0 -0
  679. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/instanceof.test.ts +0 -0
  680. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/intersection.test.ts +0 -0
  681. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/language-server.source.ts +0 -0
  682. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/language-server.test.ts +0 -0
  683. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/literal.test.ts +0 -0
  684. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/map.test.ts +0 -0
  685. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/masking.test.ts +0 -0
  686. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/mocker.test.ts +0 -0
  687. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/nativeEnum.test.ts +0 -0
  688. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/nullable.test.ts +0 -0
  689. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/number.test.ts +0 -0
  690. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/object-augmentation.test.ts +0 -0
  691. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/object-in-es5-env.test.ts +0 -0
  692. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/object.test.ts +0 -0
  693. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/optional.test.ts +0 -0
  694. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/parseUtil.test.ts +0 -0
  695. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/parser.test.ts +0 -0
  696. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/partials.test.ts +0 -0
  697. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/pickomit.test.ts +0 -0
  698. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/pipeline.test.ts +0 -0
  699. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/preprocess.test.ts +0 -0
  700. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/primitive.test.ts +0 -0
  701. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/promise.test.ts +0 -0
  702. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/readonly.test.ts +0 -0
  703. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/record.test.ts +0 -0
  704. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/recursive.test.ts +0 -0
  705. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/refine.test.ts +0 -0
  706. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/safeparse.test.ts +0 -0
  707. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/set.test.ts +0 -0
  708. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/standard-schema.test.ts +0 -0
  709. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/string.test.ts +0 -0
  710. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/transformer.test.ts +0 -0
  711. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/tuple.test.ts +0 -0
  712. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/unions.test.ts +0 -0
  713. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/validations.test.ts +0 -0
  714. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/tests/void.test.ts +0 -0
  715. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v3/types.ts +0 -0
  716. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/coerce.ts +0 -0
  717. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/compat.ts +0 -0
  718. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/errors.ts +0 -0
  719. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/index.ts +0 -0
  720. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/iso.ts +0 -0
  721. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/parse.ts +0 -0
  722. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/anyunknown.test.ts +0 -0
  723. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/array.test.ts +0 -0
  724. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/assignability.test.ts +0 -0
  725. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/async-parsing.test.ts +0 -0
  726. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/async-refinements.test.ts +0 -0
  727. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/base.test.ts +0 -0
  728. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/bigint.test.ts +0 -0
  729. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/catch.test.ts +0 -0
  730. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/coalesce.test.ts +0 -0
  731. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/codec-examples.test.ts +0 -0
  732. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/coerce.test.ts +0 -0
  733. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/custom.test.ts +0 -0
  734. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/datetime.test.ts +0 -0
  735. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/default.test.ts +0 -0
  736. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/description.test.ts +0 -0
  737. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/discriminated-unions.test.ts +0 -0
  738. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/enum.test.ts +0 -0
  739. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/error-utils.test.ts +0 -0
  740. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/error.test.ts +0 -0
  741. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/file.test.ts +0 -0
  742. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/firstparty.test.ts +0 -0
  743. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/generics.test.ts +0 -0
  744. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/hash.test.ts +0 -0
  745. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/lazy.test.ts +0 -0
  746. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/literal.test.ts +0 -0
  747. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/nan.test.ts +0 -0
  748. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/nested-refine.test.ts +0 -0
  749. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/nonoptional.test.ts +0 -0
  750. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/nullable.test.ts +0 -0
  751. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/number.test.ts +0 -0
  752. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/pipe.test.ts +0 -0
  753. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/prefault.test.ts +0 -0
  754. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/preprocess.test.ts +0 -0
  755. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/primitive.test.ts +0 -0
  756. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/prototypes.test.ts +0 -0
  757. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/set.test.ts +0 -0
  758. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/string-formats.test.ts +0 -0
  759. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/stringbool.test.ts +0 -0
  760. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/transform.test.ts +0 -0
  761. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/validations.test.ts +0 -0
  762. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/classic/tests/void.test.ts +0 -0
  763. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/config.ts +0 -0
  764. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/doc.ts +0 -0
  765. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/json-schema.ts +0 -0
  766. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/parse.ts +0 -0
  767. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/tests/index.test.ts +0 -0
  768. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/tests/locales/be.test.ts +0 -0
  769. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/tests/locales/es.test.ts +0 -0
  770. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/tests/locales/ru.test.ts +0 -0
  771. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/core/zsf.ts +0 -0
  772. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/index.ts +0 -0
  773. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/locales/kh.ts +0 -0
  774. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/locales/ua.ts +0 -0
  775. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/checks.ts +0 -0
  776. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/index.ts +0 -0
  777. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/parse.ts +0 -0
  778. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/tests/assignability.test.ts +0 -0
  779. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/tests/checks.test.ts +0 -0
  780. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/tests/codec.test.ts +0 -0
  781. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/tests/computed.test.ts +0 -0
  782. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/tests/error.test.ts +0 -0
  783. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/tests/number.test.ts +0 -0
  784. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/tests/prototypes.test.ts +0 -0
  785. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/src/v4/mini/tests/recursive-types.test.ts +0 -0
  786. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/ZodError.cjs +0 -0
  787. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/ZodError.js +0 -0
  788. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/errors.cjs +0 -0
  789. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/errors.d.cts +0 -0
  790. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/errors.d.ts +0 -0
  791. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/errors.js +0 -0
  792. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/external.cjs +0 -0
  793. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/external.d.cts +0 -0
  794. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/external.d.ts +0 -0
  795. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/external.js +0 -0
  796. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/enumUtil.cjs +0 -0
  797. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/enumUtil.d.cts +0 -0
  798. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/enumUtil.d.ts +0 -0
  799. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/enumUtil.js +0 -0
  800. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/errorUtil.cjs +0 -0
  801. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/errorUtil.d.cts +0 -0
  802. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/errorUtil.d.ts +0 -0
  803. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/errorUtil.js +0 -0
  804. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/parseUtil.cjs +0 -0
  805. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/parseUtil.d.cts +0 -0
  806. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/parseUtil.d.ts +0 -0
  807. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/parseUtil.js +0 -0
  808. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/partialUtil.cjs +0 -0
  809. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/partialUtil.d.cts +0 -0
  810. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/partialUtil.d.ts +0 -0
  811. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/partialUtil.js +0 -0
  812. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/typeAliases.cjs +0 -0
  813. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/typeAliases.d.cts +0 -0
  814. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/typeAliases.d.ts +0 -0
  815. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/typeAliases.js +0 -0
  816. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/util.cjs +0 -0
  817. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/util.d.cts +0 -0
  818. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/util.d.ts +0 -0
  819. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/helpers/util.js +0 -0
  820. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/index.cjs +0 -0
  821. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/index.d.cts +0 -0
  822. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/index.d.ts +0 -0
  823. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/index.js +0 -0
  824. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/locales/en.cjs +0 -0
  825. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/locales/en.d.cts +0 -0
  826. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/locales/en.d.ts +0 -0
  827. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/locales/en.js +0 -0
  828. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/package.json +0 -0
  829. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/standard-schema.cjs +0 -0
  830. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/standard-schema.d.cts +0 -0
  831. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/standard-schema.d.ts +0 -0
  832. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/standard-schema.js +0 -0
  833. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/types.cjs +0 -0
  834. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/types.d.cts +0 -0
  835. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/types.d.ts +0 -0
  836. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v3/types.js +0 -0
  837. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/coerce.cjs +0 -0
  838. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/coerce.d.cts +0 -0
  839. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/coerce.d.ts +0 -0
  840. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/coerce.js +0 -0
  841. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/compat.cjs +0 -0
  842. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/compat.d.cts +0 -0
  843. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/compat.d.ts +0 -0
  844. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/compat.js +0 -0
  845. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/errors.cjs +0 -0
  846. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/errors.d.cts +0 -0
  847. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/errors.d.ts +0 -0
  848. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/errors.js +0 -0
  849. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/index.cjs +0 -0
  850. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/index.d.cts +0 -0
  851. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/index.d.ts +0 -0
  852. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/index.js +0 -0
  853. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/iso.cjs +0 -0
  854. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/iso.d.cts +0 -0
  855. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/iso.d.ts +0 -0
  856. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/iso.js +0 -0
  857. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/package.json +0 -0
  858. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/parse.cjs +0 -0
  859. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/parse.d.cts +0 -0
  860. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/parse.d.ts +0 -0
  861. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/classic/parse.js +0 -0
  862. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/checks.d.cts +0 -0
  863. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/checks.d.ts +0 -0
  864. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/doc.cjs +0 -0
  865. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/doc.d.cts +0 -0
  866. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/doc.d.ts +0 -0
  867. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/doc.js +0 -0
  868. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/errors.cjs +0 -0
  869. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/errors.js +0 -0
  870. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/json-schema.cjs +0 -0
  871. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/json-schema.d.cts +0 -0
  872. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/json-schema.d.ts +0 -0
  873. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/json-schema.js +0 -0
  874. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/package.json +0 -0
  875. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/parse.cjs +0 -0
  876. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/parse.d.cts +0 -0
  877. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/parse.d.ts +0 -0
  878. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/parse.js +0 -0
  879. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/registries.d.cts +0 -0
  880. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/registries.d.ts +0 -0
  881. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/standard-schema.cjs +0 -0
  882. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/core/standard-schema.js +0 -0
  883. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/index.cjs +0 -0
  884. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/index.d.cts +0 -0
  885. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/index.d.ts +0 -0
  886. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/index.js +0 -0
  887. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ar.d.cts +0 -0
  888. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ar.d.ts +0 -0
  889. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/az.d.cts +0 -0
  890. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/az.d.ts +0 -0
  891. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/be.d.cts +0 -0
  892. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/be.d.ts +0 -0
  893. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ca.d.cts +0 -0
  894. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ca.d.ts +0 -0
  895. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/cs.d.cts +0 -0
  896. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/cs.d.ts +0 -0
  897. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/da.d.cts +0 -0
  898. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/da.d.ts +0 -0
  899. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/de.d.cts +0 -0
  900. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/de.d.ts +0 -0
  901. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/es.d.cts +0 -0
  902. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/es.d.ts +0 -0
  903. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/fa.d.cts +0 -0
  904. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/fa.d.ts +0 -0
  905. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/fi.d.cts +0 -0
  906. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/fi.d.ts +0 -0
  907. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/fr-CA.d.cts +0 -0
  908. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/fr-CA.d.ts +0 -0
  909. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/fr.d.cts +0 -0
  910. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/fr.d.ts +0 -0
  911. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/he.d.cts +0 -0
  912. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/he.d.ts +0 -0
  913. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/hu.d.cts +0 -0
  914. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/hu.d.ts +0 -0
  915. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/id.d.cts +0 -0
  916. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/id.d.ts +0 -0
  917. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/it.d.cts +0 -0
  918. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/it.d.ts +0 -0
  919. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ja.d.cts +0 -0
  920. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ja.d.ts +0 -0
  921. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/kh.cjs +0 -0
  922. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/kh.d.cts +0 -0
  923. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/kh.d.ts +0 -0
  924. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/kh.js +0 -0
  925. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/km.d.cts +0 -0
  926. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/km.d.ts +0 -0
  927. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ko.d.cts +0 -0
  928. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ko.d.ts +0 -0
  929. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/mk.d.cts +0 -0
  930. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/mk.d.ts +0 -0
  931. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ms.d.cts +0 -0
  932. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ms.d.ts +0 -0
  933. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/nl.d.cts +0 -0
  934. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/nl.d.ts +0 -0
  935. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/no.d.cts +0 -0
  936. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/no.d.ts +0 -0
  937. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ota.d.cts +0 -0
  938. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ota.d.ts +0 -0
  939. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/package.json +0 -0
  940. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/pl.d.cts +0 -0
  941. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/pl.d.ts +0 -0
  942. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ps.d.cts +0 -0
  943. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ps.d.ts +0 -0
  944. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/pt.d.cts +0 -0
  945. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/pt.d.ts +0 -0
  946. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ru.d.cts +0 -0
  947. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ru.d.ts +0 -0
  948. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/sl.d.cts +0 -0
  949. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/sl.d.ts +0 -0
  950. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/sv.d.cts +0 -0
  951. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/sv.d.ts +0 -0
  952. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ta.d.cts +0 -0
  953. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ta.d.ts +0 -0
  954. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/th.d.cts +0 -0
  955. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/th.d.ts +0 -0
  956. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ua.cjs +0 -0
  957. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ua.d.cts +0 -0
  958. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ua.d.ts +0 -0
  959. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ua.js +0 -0
  960. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/uk.d.cts +0 -0
  961. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/uk.d.ts +0 -0
  962. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ur.d.cts +0 -0
  963. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/ur.d.ts +0 -0
  964. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/vi.d.cts +0 -0
  965. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/vi.d.ts +0 -0
  966. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/yo.d.cts +0 -0
  967. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/yo.d.ts +0 -0
  968. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/zh-CN.d.cts +0 -0
  969. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/zh-CN.d.ts +0 -0
  970. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/zh-TW.d.cts +0 -0
  971. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/locales/zh-TW.d.ts +0 -0
  972. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/checks.cjs +0 -0
  973. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/checks.d.cts +0 -0
  974. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/checks.d.ts +0 -0
  975. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/checks.js +0 -0
  976. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/coerce.d.cts +0 -0
  977. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/coerce.d.ts +0 -0
  978. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/index.cjs +0 -0
  979. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/index.d.cts +0 -0
  980. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/index.d.ts +0 -0
  981. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/index.js +0 -0
  982. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/iso.d.cts +0 -0
  983. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/iso.d.ts +0 -0
  984. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/package.json +0 -0
  985. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/parse.cjs +0 -0
  986. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/parse.d.cts +0 -0
  987. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/parse.d.ts +0 -0
  988. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/mini/parse.js +0 -0
  989. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4/package.json +0 -0
  990. /package/{package/cc-switch-sdk/node_modules → node_modules}/zod/v4-mini/package.json +0 -0
@@ -0,0 +1,1151 @@
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
+ Object.defineProperty(exports, "__esModule", { value: true });
26
+ exports.ZodTransform = exports.ZodFile = exports.ZodLiteral = exports.ZodEnum = exports.ZodSet = exports.ZodMap = exports.ZodRecord = exports.ZodTuple = exports.ZodIntersection = exports.ZodDiscriminatedUnion = exports.ZodUnion = exports.ZodObject = exports.ZodArray = exports.ZodDate = exports.ZodVoid = exports.ZodNever = exports.ZodUnknown = exports.ZodAny = exports.ZodNull = exports.ZodUndefined = exports.ZodSymbol = exports.ZodBigIntFormat = exports.ZodBigInt = exports.ZodBoolean = exports.ZodNumberFormat = exports.ZodNumber = exports.ZodCustomStringFormat = exports.ZodJWT = exports.ZodE164 = exports.ZodBase64URL = exports.ZodBase64 = exports.ZodCIDRv6 = exports.ZodCIDRv4 = exports.ZodIPv6 = exports.ZodIPv4 = exports.ZodKSUID = exports.ZodXID = exports.ZodULID = exports.ZodCUID2 = exports.ZodCUID = exports.ZodNanoID = exports.ZodEmoji = exports.ZodURL = exports.ZodUUID = exports.ZodGUID = exports.ZodEmail = exports.ZodStringFormat = exports.ZodString = exports._ZodString = exports.ZodType = void 0;
27
+ exports.stringbool = exports.ZodCustom = exports.ZodFunction = exports.ZodPromise = exports.ZodLazy = exports.ZodTemplateLiteral = exports.ZodReadonly = exports.ZodCodec = exports.ZodPipe = exports.ZodNaN = exports.ZodCatch = exports.ZodSuccess = exports.ZodNonOptional = exports.ZodPrefault = exports.ZodDefault = exports.ZodNullable = exports.ZodOptional = void 0;
28
+ exports.string = string;
29
+ exports.email = email;
30
+ exports.guid = guid;
31
+ exports.uuid = uuid;
32
+ exports.uuidv4 = uuidv4;
33
+ exports.uuidv6 = uuidv6;
34
+ exports.uuidv7 = uuidv7;
35
+ exports.url = url;
36
+ exports.httpUrl = httpUrl;
37
+ exports.emoji = emoji;
38
+ exports.nanoid = nanoid;
39
+ exports.cuid = cuid;
40
+ exports.cuid2 = cuid2;
41
+ exports.ulid = ulid;
42
+ exports.xid = xid;
43
+ exports.ksuid = ksuid;
44
+ exports.ipv4 = ipv4;
45
+ exports.ipv6 = ipv6;
46
+ exports.cidrv4 = cidrv4;
47
+ exports.cidrv6 = cidrv6;
48
+ exports.base64 = base64;
49
+ exports.base64url = base64url;
50
+ exports.e164 = e164;
51
+ exports.jwt = jwt;
52
+ exports.stringFormat = stringFormat;
53
+ exports.hostname = hostname;
54
+ exports.hex = hex;
55
+ exports.hash = hash;
56
+ exports.number = number;
57
+ exports.int = int;
58
+ exports.float32 = float32;
59
+ exports.float64 = float64;
60
+ exports.int32 = int32;
61
+ exports.uint32 = uint32;
62
+ exports.boolean = boolean;
63
+ exports.bigint = bigint;
64
+ exports.int64 = int64;
65
+ exports.uint64 = uint64;
66
+ exports.symbol = symbol;
67
+ exports.undefined = _undefined;
68
+ exports.null = _null;
69
+ exports.any = any;
70
+ exports.unknown = unknown;
71
+ exports.never = never;
72
+ exports.void = _void;
73
+ exports.date = date;
74
+ exports.array = array;
75
+ exports.keyof = keyof;
76
+ exports.object = object;
77
+ exports.strictObject = strictObject;
78
+ exports.looseObject = looseObject;
79
+ exports.union = union;
80
+ exports.discriminatedUnion = discriminatedUnion;
81
+ exports.intersection = intersection;
82
+ exports.tuple = tuple;
83
+ exports.record = record;
84
+ exports.partialRecord = partialRecord;
85
+ exports.map = map;
86
+ exports.set = set;
87
+ exports.enum = _enum;
88
+ exports.nativeEnum = nativeEnum;
89
+ exports.literal = literal;
90
+ exports.file = file;
91
+ exports.transform = transform;
92
+ exports.optional = optional;
93
+ exports.nullable = nullable;
94
+ exports.nullish = nullish;
95
+ exports._default = _default;
96
+ exports.prefault = prefault;
97
+ exports.nonoptional = nonoptional;
98
+ exports.success = success;
99
+ exports.catch = _catch;
100
+ exports.nan = nan;
101
+ exports.pipe = pipe;
102
+ exports.codec = codec;
103
+ exports.readonly = readonly;
104
+ exports.templateLiteral = templateLiteral;
105
+ exports.lazy = lazy;
106
+ exports.promise = promise;
107
+ exports._function = _function;
108
+ exports.function = _function;
109
+ exports._function = _function;
110
+ exports.function = _function;
111
+ exports.check = check;
112
+ exports.custom = custom;
113
+ exports.refine = refine;
114
+ exports.superRefine = superRefine;
115
+ exports.instanceof = _instanceof;
116
+ exports.json = json;
117
+ exports.preprocess = preprocess;
118
+ const core = __importStar(require("../core/index.cjs"));
119
+ const index_js_1 = require("../core/index.cjs");
120
+ const checks = __importStar(require("./checks.cjs"));
121
+ const iso = __importStar(require("./iso.cjs"));
122
+ const parse = __importStar(require("./parse.cjs"));
123
+ exports.ZodType = core.$constructor("ZodType", (inst, def) => {
124
+ core.$ZodType.init(inst, def);
125
+ inst.def = def;
126
+ inst.type = def.type;
127
+ Object.defineProperty(inst, "_def", { value: def });
128
+ // base methods
129
+ inst.check = (...checks) => {
130
+ return inst.clone(index_js_1.util.mergeDefs(def, {
131
+ checks: [
132
+ ...(def.checks ?? []),
133
+ ...checks.map((ch) => typeof ch === "function" ? { _zod: { check: ch, def: { check: "custom" }, onattach: [] } } : ch),
134
+ ],
135
+ }));
136
+ };
137
+ inst.clone = (def, params) => core.clone(inst, def, params);
138
+ inst.brand = () => inst;
139
+ inst.register = ((reg, meta) => {
140
+ reg.add(inst, meta);
141
+ return inst;
142
+ });
143
+ // parsing
144
+ inst.parse = (data, params) => parse.parse(inst, data, params, { callee: inst.parse });
145
+ inst.safeParse = (data, params) => parse.safeParse(inst, data, params);
146
+ inst.parseAsync = async (data, params) => parse.parseAsync(inst, data, params, { callee: inst.parseAsync });
147
+ inst.safeParseAsync = async (data, params) => parse.safeParseAsync(inst, data, params);
148
+ inst.spa = inst.safeParseAsync;
149
+ // encoding/decoding
150
+ inst.encode = (data, params) => parse.encode(inst, data, params);
151
+ inst.decode = (data, params) => parse.decode(inst, data, params);
152
+ inst.encodeAsync = async (data, params) => parse.encodeAsync(inst, data, params);
153
+ inst.decodeAsync = async (data, params) => parse.decodeAsync(inst, data, params);
154
+ inst.safeEncode = (data, params) => parse.safeEncode(inst, data, params);
155
+ inst.safeDecode = (data, params) => parse.safeDecode(inst, data, params);
156
+ inst.safeEncodeAsync = async (data, params) => parse.safeEncodeAsync(inst, data, params);
157
+ inst.safeDecodeAsync = async (data, params) => parse.safeDecodeAsync(inst, data, params);
158
+ // refinements
159
+ inst.refine = (check, params) => inst.check(refine(check, params));
160
+ inst.superRefine = (refinement) => inst.check(superRefine(refinement));
161
+ inst.overwrite = (fn) => inst.check(checks.overwrite(fn));
162
+ // wrappers
163
+ inst.optional = () => optional(inst);
164
+ inst.nullable = () => nullable(inst);
165
+ inst.nullish = () => optional(nullable(inst));
166
+ inst.nonoptional = (params) => nonoptional(inst, params);
167
+ inst.array = () => array(inst);
168
+ inst.or = (arg) => union([inst, arg]);
169
+ inst.and = (arg) => intersection(inst, arg);
170
+ inst.transform = (tx) => pipe(inst, transform(tx));
171
+ inst.default = (def) => _default(inst, def);
172
+ inst.prefault = (def) => prefault(inst, def);
173
+ // inst.coalesce = (def, params) => coalesce(inst, def, params);
174
+ inst.catch = (params) => _catch(inst, params);
175
+ inst.pipe = (target) => pipe(inst, target);
176
+ inst.readonly = () => readonly(inst);
177
+ // meta
178
+ inst.describe = (description) => {
179
+ const cl = inst.clone();
180
+ core.globalRegistry.add(cl, { description });
181
+ return cl;
182
+ };
183
+ Object.defineProperty(inst, "description", {
184
+ get() {
185
+ return core.globalRegistry.get(inst)?.description;
186
+ },
187
+ configurable: true,
188
+ });
189
+ inst.meta = (...args) => {
190
+ if (args.length === 0) {
191
+ return core.globalRegistry.get(inst);
192
+ }
193
+ const cl = inst.clone();
194
+ core.globalRegistry.add(cl, args[0]);
195
+ return cl;
196
+ };
197
+ // helpers
198
+ inst.isOptional = () => inst.safeParse(undefined).success;
199
+ inst.isNullable = () => inst.safeParse(null).success;
200
+ return inst;
201
+ });
202
+ /** @internal */
203
+ exports._ZodString = core.$constructor("_ZodString", (inst, def) => {
204
+ core.$ZodString.init(inst, def);
205
+ exports.ZodType.init(inst, def);
206
+ const bag = inst._zod.bag;
207
+ inst.format = bag.format ?? null;
208
+ inst.minLength = bag.minimum ?? null;
209
+ inst.maxLength = bag.maximum ?? null;
210
+ // validations
211
+ inst.regex = (...args) => inst.check(checks.regex(...args));
212
+ inst.includes = (...args) => inst.check(checks.includes(...args));
213
+ inst.startsWith = (...args) => inst.check(checks.startsWith(...args));
214
+ inst.endsWith = (...args) => inst.check(checks.endsWith(...args));
215
+ inst.min = (...args) => inst.check(checks.minLength(...args));
216
+ inst.max = (...args) => inst.check(checks.maxLength(...args));
217
+ inst.length = (...args) => inst.check(checks.length(...args));
218
+ inst.nonempty = (...args) => inst.check(checks.minLength(1, ...args));
219
+ inst.lowercase = (params) => inst.check(checks.lowercase(params));
220
+ inst.uppercase = (params) => inst.check(checks.uppercase(params));
221
+ // transforms
222
+ inst.trim = () => inst.check(checks.trim());
223
+ inst.normalize = (...args) => inst.check(checks.normalize(...args));
224
+ inst.toLowerCase = () => inst.check(checks.toLowerCase());
225
+ inst.toUpperCase = () => inst.check(checks.toUpperCase());
226
+ });
227
+ exports.ZodString = core.$constructor("ZodString", (inst, def) => {
228
+ core.$ZodString.init(inst, def);
229
+ exports._ZodString.init(inst, def);
230
+ inst.email = (params) => inst.check(core._email(exports.ZodEmail, params));
231
+ inst.url = (params) => inst.check(core._url(exports.ZodURL, params));
232
+ inst.jwt = (params) => inst.check(core._jwt(exports.ZodJWT, params));
233
+ inst.emoji = (params) => inst.check(core._emoji(exports.ZodEmoji, params));
234
+ inst.guid = (params) => inst.check(core._guid(exports.ZodGUID, params));
235
+ inst.uuid = (params) => inst.check(core._uuid(exports.ZodUUID, params));
236
+ inst.uuidv4 = (params) => inst.check(core._uuidv4(exports.ZodUUID, params));
237
+ inst.uuidv6 = (params) => inst.check(core._uuidv6(exports.ZodUUID, params));
238
+ inst.uuidv7 = (params) => inst.check(core._uuidv7(exports.ZodUUID, params));
239
+ inst.nanoid = (params) => inst.check(core._nanoid(exports.ZodNanoID, params));
240
+ inst.guid = (params) => inst.check(core._guid(exports.ZodGUID, params));
241
+ inst.cuid = (params) => inst.check(core._cuid(exports.ZodCUID, params));
242
+ inst.cuid2 = (params) => inst.check(core._cuid2(exports.ZodCUID2, params));
243
+ inst.ulid = (params) => inst.check(core._ulid(exports.ZodULID, params));
244
+ inst.base64 = (params) => inst.check(core._base64(exports.ZodBase64, params));
245
+ inst.base64url = (params) => inst.check(core._base64url(exports.ZodBase64URL, params));
246
+ inst.xid = (params) => inst.check(core._xid(exports.ZodXID, params));
247
+ inst.ksuid = (params) => inst.check(core._ksuid(exports.ZodKSUID, params));
248
+ inst.ipv4 = (params) => inst.check(core._ipv4(exports.ZodIPv4, params));
249
+ inst.ipv6 = (params) => inst.check(core._ipv6(exports.ZodIPv6, params));
250
+ inst.cidrv4 = (params) => inst.check(core._cidrv4(exports.ZodCIDRv4, params));
251
+ inst.cidrv6 = (params) => inst.check(core._cidrv6(exports.ZodCIDRv6, params));
252
+ inst.e164 = (params) => inst.check(core._e164(exports.ZodE164, params));
253
+ // iso
254
+ inst.datetime = (params) => inst.check(iso.datetime(params));
255
+ inst.date = (params) => inst.check(iso.date(params));
256
+ inst.time = (params) => inst.check(iso.time(params));
257
+ inst.duration = (params) => inst.check(iso.duration(params));
258
+ });
259
+ function string(params) {
260
+ return core._string(exports.ZodString, params);
261
+ }
262
+ exports.ZodStringFormat = core.$constructor("ZodStringFormat", (inst, def) => {
263
+ core.$ZodStringFormat.init(inst, def);
264
+ exports._ZodString.init(inst, def);
265
+ });
266
+ exports.ZodEmail = core.$constructor("ZodEmail", (inst, def) => {
267
+ // ZodStringFormat.init(inst, def);
268
+ core.$ZodEmail.init(inst, def);
269
+ exports.ZodStringFormat.init(inst, def);
270
+ });
271
+ function email(params) {
272
+ return core._email(exports.ZodEmail, params);
273
+ }
274
+ exports.ZodGUID = core.$constructor("ZodGUID", (inst, def) => {
275
+ // ZodStringFormat.init(inst, def);
276
+ core.$ZodGUID.init(inst, def);
277
+ exports.ZodStringFormat.init(inst, def);
278
+ });
279
+ function guid(params) {
280
+ return core._guid(exports.ZodGUID, params);
281
+ }
282
+ exports.ZodUUID = core.$constructor("ZodUUID", (inst, def) => {
283
+ // ZodStringFormat.init(inst, def);
284
+ core.$ZodUUID.init(inst, def);
285
+ exports.ZodStringFormat.init(inst, def);
286
+ });
287
+ function uuid(params) {
288
+ return core._uuid(exports.ZodUUID, params);
289
+ }
290
+ function uuidv4(params) {
291
+ return core._uuidv4(exports.ZodUUID, params);
292
+ }
293
+ // ZodUUIDv6
294
+ function uuidv6(params) {
295
+ return core._uuidv6(exports.ZodUUID, params);
296
+ }
297
+ // ZodUUIDv7
298
+ function uuidv7(params) {
299
+ return core._uuidv7(exports.ZodUUID, params);
300
+ }
301
+ exports.ZodURL = core.$constructor("ZodURL", (inst, def) => {
302
+ // ZodStringFormat.init(inst, def);
303
+ core.$ZodURL.init(inst, def);
304
+ exports.ZodStringFormat.init(inst, def);
305
+ });
306
+ function url(params) {
307
+ return core._url(exports.ZodURL, params);
308
+ }
309
+ function httpUrl(params) {
310
+ return core._url(exports.ZodURL, {
311
+ protocol: /^https?$/,
312
+ hostname: core.regexes.domain,
313
+ ...index_js_1.util.normalizeParams(params),
314
+ });
315
+ }
316
+ exports.ZodEmoji = core.$constructor("ZodEmoji", (inst, def) => {
317
+ // ZodStringFormat.init(inst, def);
318
+ core.$ZodEmoji.init(inst, def);
319
+ exports.ZodStringFormat.init(inst, def);
320
+ });
321
+ function emoji(params) {
322
+ return core._emoji(exports.ZodEmoji, params);
323
+ }
324
+ exports.ZodNanoID = core.$constructor("ZodNanoID", (inst, def) => {
325
+ // ZodStringFormat.init(inst, def);
326
+ core.$ZodNanoID.init(inst, def);
327
+ exports.ZodStringFormat.init(inst, def);
328
+ });
329
+ function nanoid(params) {
330
+ return core._nanoid(exports.ZodNanoID, params);
331
+ }
332
+ exports.ZodCUID = core.$constructor("ZodCUID", (inst, def) => {
333
+ // ZodStringFormat.init(inst, def);
334
+ core.$ZodCUID.init(inst, def);
335
+ exports.ZodStringFormat.init(inst, def);
336
+ });
337
+ function cuid(params) {
338
+ return core._cuid(exports.ZodCUID, params);
339
+ }
340
+ exports.ZodCUID2 = core.$constructor("ZodCUID2", (inst, def) => {
341
+ // ZodStringFormat.init(inst, def);
342
+ core.$ZodCUID2.init(inst, def);
343
+ exports.ZodStringFormat.init(inst, def);
344
+ });
345
+ function cuid2(params) {
346
+ return core._cuid2(exports.ZodCUID2, params);
347
+ }
348
+ exports.ZodULID = core.$constructor("ZodULID", (inst, def) => {
349
+ // ZodStringFormat.init(inst, def);
350
+ core.$ZodULID.init(inst, def);
351
+ exports.ZodStringFormat.init(inst, def);
352
+ });
353
+ function ulid(params) {
354
+ return core._ulid(exports.ZodULID, params);
355
+ }
356
+ exports.ZodXID = core.$constructor("ZodXID", (inst, def) => {
357
+ // ZodStringFormat.init(inst, def);
358
+ core.$ZodXID.init(inst, def);
359
+ exports.ZodStringFormat.init(inst, def);
360
+ });
361
+ function xid(params) {
362
+ return core._xid(exports.ZodXID, params);
363
+ }
364
+ exports.ZodKSUID = core.$constructor("ZodKSUID", (inst, def) => {
365
+ // ZodStringFormat.init(inst, def);
366
+ core.$ZodKSUID.init(inst, def);
367
+ exports.ZodStringFormat.init(inst, def);
368
+ });
369
+ function ksuid(params) {
370
+ return core._ksuid(exports.ZodKSUID, params);
371
+ }
372
+ exports.ZodIPv4 = core.$constructor("ZodIPv4", (inst, def) => {
373
+ // ZodStringFormat.init(inst, def);
374
+ core.$ZodIPv4.init(inst, def);
375
+ exports.ZodStringFormat.init(inst, def);
376
+ });
377
+ function ipv4(params) {
378
+ return core._ipv4(exports.ZodIPv4, params);
379
+ }
380
+ exports.ZodIPv6 = core.$constructor("ZodIPv6", (inst, def) => {
381
+ // ZodStringFormat.init(inst, def);
382
+ core.$ZodIPv6.init(inst, def);
383
+ exports.ZodStringFormat.init(inst, def);
384
+ });
385
+ function ipv6(params) {
386
+ return core._ipv6(exports.ZodIPv6, params);
387
+ }
388
+ exports.ZodCIDRv4 = core.$constructor("ZodCIDRv4", (inst, def) => {
389
+ core.$ZodCIDRv4.init(inst, def);
390
+ exports.ZodStringFormat.init(inst, def);
391
+ });
392
+ function cidrv4(params) {
393
+ return core._cidrv4(exports.ZodCIDRv4, params);
394
+ }
395
+ exports.ZodCIDRv6 = core.$constructor("ZodCIDRv6", (inst, def) => {
396
+ core.$ZodCIDRv6.init(inst, def);
397
+ exports.ZodStringFormat.init(inst, def);
398
+ });
399
+ function cidrv6(params) {
400
+ return core._cidrv6(exports.ZodCIDRv6, params);
401
+ }
402
+ exports.ZodBase64 = core.$constructor("ZodBase64", (inst, def) => {
403
+ // ZodStringFormat.init(inst, def);
404
+ core.$ZodBase64.init(inst, def);
405
+ exports.ZodStringFormat.init(inst, def);
406
+ });
407
+ function base64(params) {
408
+ return core._base64(exports.ZodBase64, params);
409
+ }
410
+ exports.ZodBase64URL = core.$constructor("ZodBase64URL", (inst, def) => {
411
+ // ZodStringFormat.init(inst, def);
412
+ core.$ZodBase64URL.init(inst, def);
413
+ exports.ZodStringFormat.init(inst, def);
414
+ });
415
+ function base64url(params) {
416
+ return core._base64url(exports.ZodBase64URL, params);
417
+ }
418
+ exports.ZodE164 = core.$constructor("ZodE164", (inst, def) => {
419
+ // ZodStringFormat.init(inst, def);
420
+ core.$ZodE164.init(inst, def);
421
+ exports.ZodStringFormat.init(inst, def);
422
+ });
423
+ function e164(params) {
424
+ return core._e164(exports.ZodE164, params);
425
+ }
426
+ exports.ZodJWT = core.$constructor("ZodJWT", (inst, def) => {
427
+ // ZodStringFormat.init(inst, def);
428
+ core.$ZodJWT.init(inst, def);
429
+ exports.ZodStringFormat.init(inst, def);
430
+ });
431
+ function jwt(params) {
432
+ return core._jwt(exports.ZodJWT, params);
433
+ }
434
+ exports.ZodCustomStringFormat = core.$constructor("ZodCustomStringFormat", (inst, def) => {
435
+ // ZodStringFormat.init(inst, def);
436
+ core.$ZodCustomStringFormat.init(inst, def);
437
+ exports.ZodStringFormat.init(inst, def);
438
+ });
439
+ function stringFormat(format, fnOrRegex, _params = {}) {
440
+ return core._stringFormat(exports.ZodCustomStringFormat, format, fnOrRegex, _params);
441
+ }
442
+ function hostname(_params) {
443
+ return core._stringFormat(exports.ZodCustomStringFormat, "hostname", core.regexes.hostname, _params);
444
+ }
445
+ function hex(_params) {
446
+ return core._stringFormat(exports.ZodCustomStringFormat, "hex", core.regexes.hex, _params);
447
+ }
448
+ function hash(alg, params) {
449
+ const enc = params?.enc ?? "hex";
450
+ const format = `${alg}_${enc}`;
451
+ const regex = core.regexes[format];
452
+ if (!regex)
453
+ throw new Error(`Unrecognized hash format: ${format}`);
454
+ return core._stringFormat(exports.ZodCustomStringFormat, format, regex, params);
455
+ }
456
+ exports.ZodNumber = core.$constructor("ZodNumber", (inst, def) => {
457
+ core.$ZodNumber.init(inst, def);
458
+ exports.ZodType.init(inst, def);
459
+ inst.gt = (value, params) => inst.check(checks.gt(value, params));
460
+ inst.gte = (value, params) => inst.check(checks.gte(value, params));
461
+ inst.min = (value, params) => inst.check(checks.gte(value, params));
462
+ inst.lt = (value, params) => inst.check(checks.lt(value, params));
463
+ inst.lte = (value, params) => inst.check(checks.lte(value, params));
464
+ inst.max = (value, params) => inst.check(checks.lte(value, params));
465
+ inst.int = (params) => inst.check(int(params));
466
+ inst.safe = (params) => inst.check(int(params));
467
+ inst.positive = (params) => inst.check(checks.gt(0, params));
468
+ inst.nonnegative = (params) => inst.check(checks.gte(0, params));
469
+ inst.negative = (params) => inst.check(checks.lt(0, params));
470
+ inst.nonpositive = (params) => inst.check(checks.lte(0, params));
471
+ inst.multipleOf = (value, params) => inst.check(checks.multipleOf(value, params));
472
+ inst.step = (value, params) => inst.check(checks.multipleOf(value, params));
473
+ // inst.finite = (params) => inst.check(core.finite(params));
474
+ inst.finite = () => inst;
475
+ const bag = inst._zod.bag;
476
+ inst.minValue =
477
+ Math.max(bag.minimum ?? Number.NEGATIVE_INFINITY, bag.exclusiveMinimum ?? Number.NEGATIVE_INFINITY) ?? null;
478
+ inst.maxValue =
479
+ Math.min(bag.maximum ?? Number.POSITIVE_INFINITY, bag.exclusiveMaximum ?? Number.POSITIVE_INFINITY) ?? null;
480
+ inst.isInt = (bag.format ?? "").includes("int") || Number.isSafeInteger(bag.multipleOf ?? 0.5);
481
+ inst.isFinite = true;
482
+ inst.format = bag.format ?? null;
483
+ });
484
+ function number(params) {
485
+ return core._number(exports.ZodNumber, params);
486
+ }
487
+ exports.ZodNumberFormat = core.$constructor("ZodNumberFormat", (inst, def) => {
488
+ core.$ZodNumberFormat.init(inst, def);
489
+ exports.ZodNumber.init(inst, def);
490
+ });
491
+ function int(params) {
492
+ return core._int(exports.ZodNumberFormat, params);
493
+ }
494
+ function float32(params) {
495
+ return core._float32(exports.ZodNumberFormat, params);
496
+ }
497
+ function float64(params) {
498
+ return core._float64(exports.ZodNumberFormat, params);
499
+ }
500
+ function int32(params) {
501
+ return core._int32(exports.ZodNumberFormat, params);
502
+ }
503
+ function uint32(params) {
504
+ return core._uint32(exports.ZodNumberFormat, params);
505
+ }
506
+ exports.ZodBoolean = core.$constructor("ZodBoolean", (inst, def) => {
507
+ core.$ZodBoolean.init(inst, def);
508
+ exports.ZodType.init(inst, def);
509
+ });
510
+ function boolean(params) {
511
+ return core._boolean(exports.ZodBoolean, params);
512
+ }
513
+ exports.ZodBigInt = core.$constructor("ZodBigInt", (inst, def) => {
514
+ core.$ZodBigInt.init(inst, def);
515
+ exports.ZodType.init(inst, def);
516
+ inst.gte = (value, params) => inst.check(checks.gte(value, params));
517
+ inst.min = (value, params) => inst.check(checks.gte(value, params));
518
+ inst.gt = (value, params) => inst.check(checks.gt(value, params));
519
+ inst.gte = (value, params) => inst.check(checks.gte(value, params));
520
+ inst.min = (value, params) => inst.check(checks.gte(value, params));
521
+ inst.lt = (value, params) => inst.check(checks.lt(value, params));
522
+ inst.lte = (value, params) => inst.check(checks.lte(value, params));
523
+ inst.max = (value, params) => inst.check(checks.lte(value, params));
524
+ inst.positive = (params) => inst.check(checks.gt(BigInt(0), params));
525
+ inst.negative = (params) => inst.check(checks.lt(BigInt(0), params));
526
+ inst.nonpositive = (params) => inst.check(checks.lte(BigInt(0), params));
527
+ inst.nonnegative = (params) => inst.check(checks.gte(BigInt(0), params));
528
+ inst.multipleOf = (value, params) => inst.check(checks.multipleOf(value, params));
529
+ const bag = inst._zod.bag;
530
+ inst.minValue = bag.minimum ?? null;
531
+ inst.maxValue = bag.maximum ?? null;
532
+ inst.format = bag.format ?? null;
533
+ });
534
+ function bigint(params) {
535
+ return core._bigint(exports.ZodBigInt, params);
536
+ }
537
+ exports.ZodBigIntFormat = core.$constructor("ZodBigIntFormat", (inst, def) => {
538
+ core.$ZodBigIntFormat.init(inst, def);
539
+ exports.ZodBigInt.init(inst, def);
540
+ });
541
+ // int64
542
+ function int64(params) {
543
+ return core._int64(exports.ZodBigIntFormat, params);
544
+ }
545
+ // uint64
546
+ function uint64(params) {
547
+ return core._uint64(exports.ZodBigIntFormat, params);
548
+ }
549
+ exports.ZodSymbol = core.$constructor("ZodSymbol", (inst, def) => {
550
+ core.$ZodSymbol.init(inst, def);
551
+ exports.ZodType.init(inst, def);
552
+ });
553
+ function symbol(params) {
554
+ return core._symbol(exports.ZodSymbol, params);
555
+ }
556
+ exports.ZodUndefined = core.$constructor("ZodUndefined", (inst, def) => {
557
+ core.$ZodUndefined.init(inst, def);
558
+ exports.ZodType.init(inst, def);
559
+ });
560
+ function _undefined(params) {
561
+ return core._undefined(exports.ZodUndefined, params);
562
+ }
563
+ exports.ZodNull = core.$constructor("ZodNull", (inst, def) => {
564
+ core.$ZodNull.init(inst, def);
565
+ exports.ZodType.init(inst, def);
566
+ });
567
+ function _null(params) {
568
+ return core._null(exports.ZodNull, params);
569
+ }
570
+ exports.ZodAny = core.$constructor("ZodAny", (inst, def) => {
571
+ core.$ZodAny.init(inst, def);
572
+ exports.ZodType.init(inst, def);
573
+ });
574
+ function any() {
575
+ return core._any(exports.ZodAny);
576
+ }
577
+ exports.ZodUnknown = core.$constructor("ZodUnknown", (inst, def) => {
578
+ core.$ZodUnknown.init(inst, def);
579
+ exports.ZodType.init(inst, def);
580
+ });
581
+ function unknown() {
582
+ return core._unknown(exports.ZodUnknown);
583
+ }
584
+ exports.ZodNever = core.$constructor("ZodNever", (inst, def) => {
585
+ core.$ZodNever.init(inst, def);
586
+ exports.ZodType.init(inst, def);
587
+ });
588
+ function never(params) {
589
+ return core._never(exports.ZodNever, params);
590
+ }
591
+ exports.ZodVoid = core.$constructor("ZodVoid", (inst, def) => {
592
+ core.$ZodVoid.init(inst, def);
593
+ exports.ZodType.init(inst, def);
594
+ });
595
+ function _void(params) {
596
+ return core._void(exports.ZodVoid, params);
597
+ }
598
+ exports.ZodDate = core.$constructor("ZodDate", (inst, def) => {
599
+ core.$ZodDate.init(inst, def);
600
+ exports.ZodType.init(inst, def);
601
+ inst.min = (value, params) => inst.check(checks.gte(value, params));
602
+ inst.max = (value, params) => inst.check(checks.lte(value, params));
603
+ const c = inst._zod.bag;
604
+ inst.minDate = c.minimum ? new Date(c.minimum) : null;
605
+ inst.maxDate = c.maximum ? new Date(c.maximum) : null;
606
+ });
607
+ function date(params) {
608
+ return core._date(exports.ZodDate, params);
609
+ }
610
+ exports.ZodArray = core.$constructor("ZodArray", (inst, def) => {
611
+ core.$ZodArray.init(inst, def);
612
+ exports.ZodType.init(inst, def);
613
+ inst.element = def.element;
614
+ inst.min = (minLength, params) => inst.check(checks.minLength(minLength, params));
615
+ inst.nonempty = (params) => inst.check(checks.minLength(1, params));
616
+ inst.max = (maxLength, params) => inst.check(checks.maxLength(maxLength, params));
617
+ inst.length = (len, params) => inst.check(checks.length(len, params));
618
+ inst.unwrap = () => inst.element;
619
+ });
620
+ function array(element, params) {
621
+ return core._array(exports.ZodArray, element, params);
622
+ }
623
+ // .keyof
624
+ function keyof(schema) {
625
+ const shape = schema._zod.def.shape;
626
+ return _enum(Object.keys(shape));
627
+ }
628
+ exports.ZodObject = core.$constructor("ZodObject", (inst, def) => {
629
+ core.$ZodObjectJIT.init(inst, def);
630
+ exports.ZodType.init(inst, def);
631
+ index_js_1.util.defineLazy(inst, "shape", () => {
632
+ return def.shape;
633
+ });
634
+ inst.keyof = () => _enum(Object.keys(inst._zod.def.shape));
635
+ inst.catchall = (catchall) => inst.clone({ ...inst._zod.def, catchall: catchall });
636
+ inst.passthrough = () => inst.clone({ ...inst._zod.def, catchall: unknown() });
637
+ inst.loose = () => inst.clone({ ...inst._zod.def, catchall: unknown() });
638
+ inst.strict = () => inst.clone({ ...inst._zod.def, catchall: never() });
639
+ inst.strip = () => inst.clone({ ...inst._zod.def, catchall: undefined });
640
+ inst.extend = (incoming) => {
641
+ return index_js_1.util.extend(inst, incoming);
642
+ };
643
+ inst.safeExtend = (incoming) => {
644
+ return index_js_1.util.safeExtend(inst, incoming);
645
+ };
646
+ inst.merge = (other) => index_js_1.util.merge(inst, other);
647
+ inst.pick = (mask) => index_js_1.util.pick(inst, mask);
648
+ inst.omit = (mask) => index_js_1.util.omit(inst, mask);
649
+ inst.partial = (...args) => index_js_1.util.partial(exports.ZodOptional, inst, args[0]);
650
+ inst.required = (...args) => index_js_1.util.required(exports.ZodNonOptional, inst, args[0]);
651
+ });
652
+ function object(shape, params) {
653
+ const def = {
654
+ type: "object",
655
+ shape: shape ?? {},
656
+ ...index_js_1.util.normalizeParams(params),
657
+ };
658
+ return new exports.ZodObject(def);
659
+ }
660
+ // strictObject
661
+ function strictObject(shape, params) {
662
+ return new exports.ZodObject({
663
+ type: "object",
664
+ shape,
665
+ catchall: never(),
666
+ ...index_js_1.util.normalizeParams(params),
667
+ });
668
+ }
669
+ // looseObject
670
+ function looseObject(shape, params) {
671
+ return new exports.ZodObject({
672
+ type: "object",
673
+ shape,
674
+ catchall: unknown(),
675
+ ...index_js_1.util.normalizeParams(params),
676
+ });
677
+ }
678
+ exports.ZodUnion = core.$constructor("ZodUnion", (inst, def) => {
679
+ core.$ZodUnion.init(inst, def);
680
+ exports.ZodType.init(inst, def);
681
+ inst.options = def.options;
682
+ });
683
+ function union(options, params) {
684
+ return new exports.ZodUnion({
685
+ type: "union",
686
+ options: options,
687
+ ...index_js_1.util.normalizeParams(params),
688
+ });
689
+ }
690
+ exports.ZodDiscriminatedUnion = core.$constructor("ZodDiscriminatedUnion", (inst, def) => {
691
+ exports.ZodUnion.init(inst, def);
692
+ core.$ZodDiscriminatedUnion.init(inst, def);
693
+ });
694
+ function discriminatedUnion(discriminator, options, params) {
695
+ // const [options, params] = args;
696
+ return new exports.ZodDiscriminatedUnion({
697
+ type: "union",
698
+ options,
699
+ discriminator,
700
+ ...index_js_1.util.normalizeParams(params),
701
+ });
702
+ }
703
+ exports.ZodIntersection = core.$constructor("ZodIntersection", (inst, def) => {
704
+ core.$ZodIntersection.init(inst, def);
705
+ exports.ZodType.init(inst, def);
706
+ });
707
+ function intersection(left, right) {
708
+ return new exports.ZodIntersection({
709
+ type: "intersection",
710
+ left: left,
711
+ right: right,
712
+ });
713
+ }
714
+ exports.ZodTuple = core.$constructor("ZodTuple", (inst, def) => {
715
+ core.$ZodTuple.init(inst, def);
716
+ exports.ZodType.init(inst, def);
717
+ inst.rest = (rest) => inst.clone({
718
+ ...inst._zod.def,
719
+ rest: rest,
720
+ });
721
+ });
722
+ function tuple(items, _paramsOrRest, _params) {
723
+ const hasRest = _paramsOrRest instanceof core.$ZodType;
724
+ const params = hasRest ? _params : _paramsOrRest;
725
+ const rest = hasRest ? _paramsOrRest : null;
726
+ return new exports.ZodTuple({
727
+ type: "tuple",
728
+ items: items,
729
+ rest,
730
+ ...index_js_1.util.normalizeParams(params),
731
+ });
732
+ }
733
+ exports.ZodRecord = core.$constructor("ZodRecord", (inst, def) => {
734
+ core.$ZodRecord.init(inst, def);
735
+ exports.ZodType.init(inst, def);
736
+ inst.keyType = def.keyType;
737
+ inst.valueType = def.valueType;
738
+ });
739
+ function record(keyType, valueType, params) {
740
+ return new exports.ZodRecord({
741
+ type: "record",
742
+ keyType,
743
+ valueType: valueType,
744
+ ...index_js_1.util.normalizeParams(params),
745
+ });
746
+ }
747
+ // type alksjf = core.output<core.$ZodRecordKey>;
748
+ function partialRecord(keyType, valueType, params) {
749
+ const k = core.clone(keyType);
750
+ k._zod.values = undefined;
751
+ return new exports.ZodRecord({
752
+ type: "record",
753
+ keyType: k,
754
+ valueType: valueType,
755
+ ...index_js_1.util.normalizeParams(params),
756
+ });
757
+ }
758
+ exports.ZodMap = core.$constructor("ZodMap", (inst, def) => {
759
+ core.$ZodMap.init(inst, def);
760
+ exports.ZodType.init(inst, def);
761
+ inst.keyType = def.keyType;
762
+ inst.valueType = def.valueType;
763
+ });
764
+ function map(keyType, valueType, params) {
765
+ return new exports.ZodMap({
766
+ type: "map",
767
+ keyType: keyType,
768
+ valueType: valueType,
769
+ ...index_js_1.util.normalizeParams(params),
770
+ });
771
+ }
772
+ exports.ZodSet = core.$constructor("ZodSet", (inst, def) => {
773
+ core.$ZodSet.init(inst, def);
774
+ exports.ZodType.init(inst, def);
775
+ inst.min = (...args) => inst.check(core._minSize(...args));
776
+ inst.nonempty = (params) => inst.check(core._minSize(1, params));
777
+ inst.max = (...args) => inst.check(core._maxSize(...args));
778
+ inst.size = (...args) => inst.check(core._size(...args));
779
+ });
780
+ function set(valueType, params) {
781
+ return new exports.ZodSet({
782
+ type: "set",
783
+ valueType: valueType,
784
+ ...index_js_1.util.normalizeParams(params),
785
+ });
786
+ }
787
+ exports.ZodEnum = core.$constructor("ZodEnum", (inst, def) => {
788
+ core.$ZodEnum.init(inst, def);
789
+ exports.ZodType.init(inst, def);
790
+ inst.enum = def.entries;
791
+ inst.options = Object.values(def.entries);
792
+ const keys = new Set(Object.keys(def.entries));
793
+ inst.extract = (values, params) => {
794
+ const newEntries = {};
795
+ for (const value of values) {
796
+ if (keys.has(value)) {
797
+ newEntries[value] = def.entries[value];
798
+ }
799
+ else
800
+ throw new Error(`Key ${value} not found in enum`);
801
+ }
802
+ return new exports.ZodEnum({
803
+ ...def,
804
+ checks: [],
805
+ ...index_js_1.util.normalizeParams(params),
806
+ entries: newEntries,
807
+ });
808
+ };
809
+ inst.exclude = (values, params) => {
810
+ const newEntries = { ...def.entries };
811
+ for (const value of values) {
812
+ if (keys.has(value)) {
813
+ delete newEntries[value];
814
+ }
815
+ else
816
+ throw new Error(`Key ${value} not found in enum`);
817
+ }
818
+ return new exports.ZodEnum({
819
+ ...def,
820
+ checks: [],
821
+ ...index_js_1.util.normalizeParams(params),
822
+ entries: newEntries,
823
+ });
824
+ };
825
+ });
826
+ function _enum(values, params) {
827
+ const entries = Array.isArray(values) ? Object.fromEntries(values.map((v) => [v, v])) : values;
828
+ return new exports.ZodEnum({
829
+ type: "enum",
830
+ entries,
831
+ ...index_js_1.util.normalizeParams(params),
832
+ });
833
+ }
834
+ /** @deprecated This API has been merged into `z.enum()`. Use `z.enum()` instead.
835
+ *
836
+ * ```ts
837
+ * enum Colors { red, green, blue }
838
+ * z.enum(Colors);
839
+ * ```
840
+ */
841
+ function nativeEnum(entries, params) {
842
+ return new exports.ZodEnum({
843
+ type: "enum",
844
+ entries,
845
+ ...index_js_1.util.normalizeParams(params),
846
+ });
847
+ }
848
+ exports.ZodLiteral = core.$constructor("ZodLiteral", (inst, def) => {
849
+ core.$ZodLiteral.init(inst, def);
850
+ exports.ZodType.init(inst, def);
851
+ inst.values = new Set(def.values);
852
+ Object.defineProperty(inst, "value", {
853
+ get() {
854
+ if (def.values.length > 1) {
855
+ throw new Error("This schema contains multiple valid literal values. Use `.values` instead.");
856
+ }
857
+ return def.values[0];
858
+ },
859
+ });
860
+ });
861
+ function literal(value, params) {
862
+ return new exports.ZodLiteral({
863
+ type: "literal",
864
+ values: Array.isArray(value) ? value : [value],
865
+ ...index_js_1.util.normalizeParams(params),
866
+ });
867
+ }
868
+ exports.ZodFile = core.$constructor("ZodFile", (inst, def) => {
869
+ core.$ZodFile.init(inst, def);
870
+ exports.ZodType.init(inst, def);
871
+ inst.min = (size, params) => inst.check(core._minSize(size, params));
872
+ inst.max = (size, params) => inst.check(core._maxSize(size, params));
873
+ inst.mime = (types, params) => inst.check(core._mime(Array.isArray(types) ? types : [types], params));
874
+ });
875
+ function file(params) {
876
+ return core._file(exports.ZodFile, params);
877
+ }
878
+ exports.ZodTransform = core.$constructor("ZodTransform", (inst, def) => {
879
+ core.$ZodTransform.init(inst, def);
880
+ exports.ZodType.init(inst, def);
881
+ inst._zod.parse = (payload, _ctx) => {
882
+ if (_ctx.direction === "backward") {
883
+ throw new core.$ZodEncodeError(inst.constructor.name);
884
+ }
885
+ payload.addIssue = (issue) => {
886
+ if (typeof issue === "string") {
887
+ payload.issues.push(index_js_1.util.issue(issue, payload.value, def));
888
+ }
889
+ else {
890
+ // for Zod 3 backwards compatibility
891
+ const _issue = issue;
892
+ if (_issue.fatal)
893
+ _issue.continue = false;
894
+ _issue.code ?? (_issue.code = "custom");
895
+ _issue.input ?? (_issue.input = payload.value);
896
+ _issue.inst ?? (_issue.inst = inst);
897
+ // _issue.continue ??= true;
898
+ payload.issues.push(index_js_1.util.issue(_issue));
899
+ }
900
+ };
901
+ const output = def.transform(payload.value, payload);
902
+ if (output instanceof Promise) {
903
+ return output.then((output) => {
904
+ payload.value = output;
905
+ return payload;
906
+ });
907
+ }
908
+ payload.value = output;
909
+ return payload;
910
+ };
911
+ });
912
+ function transform(fn) {
913
+ return new exports.ZodTransform({
914
+ type: "transform",
915
+ transform: fn,
916
+ });
917
+ }
918
+ exports.ZodOptional = core.$constructor("ZodOptional", (inst, def) => {
919
+ core.$ZodOptional.init(inst, def);
920
+ exports.ZodType.init(inst, def);
921
+ inst.unwrap = () => inst._zod.def.innerType;
922
+ });
923
+ function optional(innerType) {
924
+ return new exports.ZodOptional({
925
+ type: "optional",
926
+ innerType: innerType,
927
+ });
928
+ }
929
+ exports.ZodNullable = core.$constructor("ZodNullable", (inst, def) => {
930
+ core.$ZodNullable.init(inst, def);
931
+ exports.ZodType.init(inst, def);
932
+ inst.unwrap = () => inst._zod.def.innerType;
933
+ });
934
+ function nullable(innerType) {
935
+ return new exports.ZodNullable({
936
+ type: "nullable",
937
+ innerType: innerType,
938
+ });
939
+ }
940
+ // nullish
941
+ function nullish(innerType) {
942
+ return optional(nullable(innerType));
943
+ }
944
+ exports.ZodDefault = core.$constructor("ZodDefault", (inst, def) => {
945
+ core.$ZodDefault.init(inst, def);
946
+ exports.ZodType.init(inst, def);
947
+ inst.unwrap = () => inst._zod.def.innerType;
948
+ inst.removeDefault = inst.unwrap;
949
+ });
950
+ function _default(innerType, defaultValue) {
951
+ return new exports.ZodDefault({
952
+ type: "default",
953
+ innerType: innerType,
954
+ get defaultValue() {
955
+ return typeof defaultValue === "function" ? defaultValue() : index_js_1.util.shallowClone(defaultValue);
956
+ },
957
+ });
958
+ }
959
+ exports.ZodPrefault = core.$constructor("ZodPrefault", (inst, def) => {
960
+ core.$ZodPrefault.init(inst, def);
961
+ exports.ZodType.init(inst, def);
962
+ inst.unwrap = () => inst._zod.def.innerType;
963
+ });
964
+ function prefault(innerType, defaultValue) {
965
+ return new exports.ZodPrefault({
966
+ type: "prefault",
967
+ innerType: innerType,
968
+ get defaultValue() {
969
+ return typeof defaultValue === "function" ? defaultValue() : index_js_1.util.shallowClone(defaultValue);
970
+ },
971
+ });
972
+ }
973
+ exports.ZodNonOptional = core.$constructor("ZodNonOptional", (inst, def) => {
974
+ core.$ZodNonOptional.init(inst, def);
975
+ exports.ZodType.init(inst, def);
976
+ inst.unwrap = () => inst._zod.def.innerType;
977
+ });
978
+ function nonoptional(innerType, params) {
979
+ return new exports.ZodNonOptional({
980
+ type: "nonoptional",
981
+ innerType: innerType,
982
+ ...index_js_1.util.normalizeParams(params),
983
+ });
984
+ }
985
+ exports.ZodSuccess = core.$constructor("ZodSuccess", (inst, def) => {
986
+ core.$ZodSuccess.init(inst, def);
987
+ exports.ZodType.init(inst, def);
988
+ inst.unwrap = () => inst._zod.def.innerType;
989
+ });
990
+ function success(innerType) {
991
+ return new exports.ZodSuccess({
992
+ type: "success",
993
+ innerType: innerType,
994
+ });
995
+ }
996
+ exports.ZodCatch = core.$constructor("ZodCatch", (inst, def) => {
997
+ core.$ZodCatch.init(inst, def);
998
+ exports.ZodType.init(inst, def);
999
+ inst.unwrap = () => inst._zod.def.innerType;
1000
+ inst.removeCatch = inst.unwrap;
1001
+ });
1002
+ function _catch(innerType, catchValue) {
1003
+ return new exports.ZodCatch({
1004
+ type: "catch",
1005
+ innerType: innerType,
1006
+ catchValue: (typeof catchValue === "function" ? catchValue : () => catchValue),
1007
+ });
1008
+ }
1009
+ exports.ZodNaN = core.$constructor("ZodNaN", (inst, def) => {
1010
+ core.$ZodNaN.init(inst, def);
1011
+ exports.ZodType.init(inst, def);
1012
+ });
1013
+ function nan(params) {
1014
+ return core._nan(exports.ZodNaN, params);
1015
+ }
1016
+ exports.ZodPipe = core.$constructor("ZodPipe", (inst, def) => {
1017
+ core.$ZodPipe.init(inst, def);
1018
+ exports.ZodType.init(inst, def);
1019
+ inst.in = def.in;
1020
+ inst.out = def.out;
1021
+ });
1022
+ function pipe(in_, out) {
1023
+ return new exports.ZodPipe({
1024
+ type: "pipe",
1025
+ in: in_,
1026
+ out: out,
1027
+ // ...util.normalizeParams(params),
1028
+ });
1029
+ }
1030
+ exports.ZodCodec = core.$constructor("ZodCodec", (inst, def) => {
1031
+ exports.ZodPipe.init(inst, def);
1032
+ core.$ZodCodec.init(inst, def);
1033
+ });
1034
+ function codec(in_, out, params) {
1035
+ return new exports.ZodCodec({
1036
+ type: "pipe",
1037
+ in: in_,
1038
+ out: out,
1039
+ transform: params.decode,
1040
+ reverseTransform: params.encode,
1041
+ });
1042
+ }
1043
+ exports.ZodReadonly = core.$constructor("ZodReadonly", (inst, def) => {
1044
+ core.$ZodReadonly.init(inst, def);
1045
+ exports.ZodType.init(inst, def);
1046
+ inst.unwrap = () => inst._zod.def.innerType;
1047
+ });
1048
+ function readonly(innerType) {
1049
+ return new exports.ZodReadonly({
1050
+ type: "readonly",
1051
+ innerType: innerType,
1052
+ });
1053
+ }
1054
+ exports.ZodTemplateLiteral = core.$constructor("ZodTemplateLiteral", (inst, def) => {
1055
+ core.$ZodTemplateLiteral.init(inst, def);
1056
+ exports.ZodType.init(inst, def);
1057
+ });
1058
+ function templateLiteral(parts, params) {
1059
+ return new exports.ZodTemplateLiteral({
1060
+ type: "template_literal",
1061
+ parts,
1062
+ ...index_js_1.util.normalizeParams(params),
1063
+ });
1064
+ }
1065
+ exports.ZodLazy = core.$constructor("ZodLazy", (inst, def) => {
1066
+ core.$ZodLazy.init(inst, def);
1067
+ exports.ZodType.init(inst, def);
1068
+ inst.unwrap = () => inst._zod.def.getter();
1069
+ });
1070
+ function lazy(getter) {
1071
+ return new exports.ZodLazy({
1072
+ type: "lazy",
1073
+ getter: getter,
1074
+ });
1075
+ }
1076
+ exports.ZodPromise = core.$constructor("ZodPromise", (inst, def) => {
1077
+ core.$ZodPromise.init(inst, def);
1078
+ exports.ZodType.init(inst, def);
1079
+ inst.unwrap = () => inst._zod.def.innerType;
1080
+ });
1081
+ function promise(innerType) {
1082
+ return new exports.ZodPromise({
1083
+ type: "promise",
1084
+ innerType: innerType,
1085
+ });
1086
+ }
1087
+ exports.ZodFunction = core.$constructor("ZodFunction", (inst, def) => {
1088
+ core.$ZodFunction.init(inst, def);
1089
+ exports.ZodType.init(inst, def);
1090
+ });
1091
+ function _function(params) {
1092
+ return new exports.ZodFunction({
1093
+ type: "function",
1094
+ input: Array.isArray(params?.input) ? tuple(params?.input) : (params?.input ?? array(unknown())),
1095
+ output: params?.output ?? unknown(),
1096
+ });
1097
+ }
1098
+ exports.ZodCustom = core.$constructor("ZodCustom", (inst, def) => {
1099
+ core.$ZodCustom.init(inst, def);
1100
+ exports.ZodType.init(inst, def);
1101
+ });
1102
+ // custom checks
1103
+ function check(fn) {
1104
+ const ch = new core.$ZodCheck({
1105
+ check: "custom",
1106
+ // ...util.normalizeParams(params),
1107
+ });
1108
+ ch._zod.check = fn;
1109
+ return ch;
1110
+ }
1111
+ function custom(fn, _params) {
1112
+ return core._custom(exports.ZodCustom, fn ?? (() => true), _params);
1113
+ }
1114
+ function refine(fn, _params = {}) {
1115
+ return core._refine(exports.ZodCustom, fn, _params);
1116
+ }
1117
+ // superRefine
1118
+ function superRefine(fn) {
1119
+ return core._superRefine(fn);
1120
+ }
1121
+ function _instanceof(cls, params = {
1122
+ error: `Input not instance of ${cls.name}`,
1123
+ }) {
1124
+ const inst = new exports.ZodCustom({
1125
+ type: "custom",
1126
+ check: "custom",
1127
+ fn: (data) => data instanceof cls,
1128
+ abort: true,
1129
+ ...index_js_1.util.normalizeParams(params),
1130
+ });
1131
+ inst._zod.bag.Class = cls;
1132
+ return inst;
1133
+ }
1134
+ // stringbool
1135
+ const stringbool = (...args) => core._stringbool({
1136
+ Codec: exports.ZodCodec,
1137
+ Boolean: exports.ZodBoolean,
1138
+ String: exports.ZodString,
1139
+ }, ...args);
1140
+ exports.stringbool = stringbool;
1141
+ function json(params) {
1142
+ const jsonSchema = lazy(() => {
1143
+ return union([string(params), number(), boolean(), _null(), array(jsonSchema), record(string(), jsonSchema)]);
1144
+ });
1145
+ return jsonSchema;
1146
+ }
1147
+ // preprocess
1148
+ // /** @deprecated Use `z.pipe()` and `z.transform()` instead. */
1149
+ function preprocess(fn, schema) {
1150
+ return pipe(transform(fn), schema);
1151
+ }