@vellumai/cli 0.10.0 → 0.10.1-dev.202606240317.ea25efe

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 (750) hide show
  1. package/bun.lock +1 -1
  2. package/node_modules/@vellumai/local-mode/bun.lock +3 -0
  3. package/node_modules/@vellumai/local-mode/package.json +2 -1
  4. package/node_modules/@vellumai/local-mode/src/__tests__/loopback-auth.test.ts +26 -0
  5. package/node_modules/@vellumai/local-mode/src/__tests__/package-boundary.test.ts +6 -6
  6. package/node_modules/@vellumai/local-mode/src/index.ts +2 -0
  7. package/node_modules/@vellumai/local-mode/src/lockfile-contract.test.ts +148 -12
  8. package/node_modules/@vellumai/local-mode/src/lockfile-contract.ts +136 -80
  9. package/node_modules/@vellumai/local-mode/src/lockfile.test.ts +3 -1
  10. package/node_modules/@vellumai/local-mode/src/lockfile.ts +9 -2
  11. package/node_modules/@vellumai/local-mode/src/status.ts +1 -0
  12. package/node_modules/@vellumai/local-mode/src/upgrade.ts +105 -0
  13. package/node_modules/@vellumai/local-mode/src/util.ts +4 -8
  14. package/node_modules/zod/LICENSE +21 -0
  15. package/node_modules/zod/README.md +191 -0
  16. package/node_modules/zod/index.cjs +33 -0
  17. package/node_modules/zod/index.d.cts +4 -0
  18. package/node_modules/zod/index.d.ts +4 -0
  19. package/node_modules/zod/index.js +4 -0
  20. package/node_modules/zod/locales/index.cjs +17 -0
  21. package/node_modules/zod/locales/index.d.cts +1 -0
  22. package/node_modules/zod/locales/index.d.ts +1 -0
  23. package/node_modules/zod/locales/index.js +1 -0
  24. package/node_modules/zod/locales/package.json +7 -0
  25. package/node_modules/zod/mini/index.cjs +32 -0
  26. package/node_modules/zod/mini/index.d.cts +3 -0
  27. package/node_modules/zod/mini/index.d.ts +3 -0
  28. package/node_modules/zod/mini/index.js +3 -0
  29. package/node_modules/zod/mini/package.json +7 -0
  30. package/node_modules/zod/package.json +135 -0
  31. package/node_modules/zod/src/index.ts +4 -0
  32. package/node_modules/zod/src/locales/index.ts +1 -0
  33. package/node_modules/zod/src/mini/index.ts +3 -0
  34. package/node_modules/zod/src/v3/ZodError.ts +330 -0
  35. package/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
  36. package/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
  37. package/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
  38. package/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
  39. package/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
  40. package/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
  41. package/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
  42. package/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
  43. package/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
  44. package/node_modules/zod/src/v3/errors.ts +13 -0
  45. package/node_modules/zod/src/v3/external.ts +6 -0
  46. package/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
  47. package/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
  48. package/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
  49. package/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
  50. package/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
  51. package/node_modules/zod/src/v3/helpers/util.ts +224 -0
  52. package/node_modules/zod/src/v3/index.ts +4 -0
  53. package/node_modules/zod/src/v3/locales/en.ts +124 -0
  54. package/node_modules/zod/src/v3/standard-schema.ts +113 -0
  55. package/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
  56. package/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
  57. package/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
  58. package/node_modules/zod/src/v3/tests/array.test.ts +71 -0
  59. package/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
  60. package/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
  61. package/node_modules/zod/src/v3/tests/base.test.ts +29 -0
  62. package/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
  63. package/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
  64. package/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
  65. package/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
  66. package/node_modules/zod/src/v3/tests/complex.test.ts +70 -0
  67. package/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
  68. package/node_modules/zod/src/v3/tests/date.test.ts +32 -0
  69. package/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
  70. package/node_modules/zod/src/v3/tests/default.test.ts +112 -0
  71. package/node_modules/zod/src/v3/tests/description.test.ts +33 -0
  72. package/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
  73. package/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
  74. package/node_modules/zod/src/v3/tests/error.test.ts +551 -0
  75. package/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
  76. package/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
  77. package/node_modules/zod/src/v3/tests/function.test.ts +261 -0
  78. package/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
  79. package/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
  80. package/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
  81. package/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
  82. package/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
  83. package/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
  84. package/node_modules/zod/src/v3/tests/map.test.ts +110 -0
  85. package/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
  86. package/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
  87. package/node_modules/zod/src/v3/tests/nan.test.ts +24 -0
  88. package/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
  89. package/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
  90. package/node_modules/zod/src/v3/tests/number.test.ts +176 -0
  91. package/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
  92. package/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
  93. package/node_modules/zod/src/v3/tests/object.test.ts +434 -0
  94. package/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
  95. package/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
  96. package/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
  97. package/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
  98. package/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
  99. package/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
  100. package/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
  101. package/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
  102. package/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
  103. package/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
  104. package/node_modules/zod/src/v3/tests/record.test.ts +171 -0
  105. package/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
  106. package/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
  107. package/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
  108. package/node_modules/zod/src/v3/tests/set.test.ts +142 -0
  109. package/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
  110. package/node_modules/zod/src/v3/tests/string.test.ts +916 -0
  111. package/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
  112. package/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
  113. package/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
  114. package/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
  115. package/node_modules/zod/src/v3/tests/void.test.ts +15 -0
  116. package/node_modules/zod/src/v3/types.ts +5138 -0
  117. package/node_modules/zod/src/v4/classic/checks.ts +32 -0
  118. package/node_modules/zod/src/v4/classic/coerce.ts +27 -0
  119. package/node_modules/zod/src/v4/classic/compat.ts +70 -0
  120. package/node_modules/zod/src/v4/classic/errors.ts +82 -0
  121. package/node_modules/zod/src/v4/classic/external.ts +52 -0
  122. package/node_modules/zod/src/v4/classic/from-json-schema.ts +659 -0
  123. package/node_modules/zod/src/v4/classic/index.ts +5 -0
  124. package/node_modules/zod/src/v4/classic/iso.ts +90 -0
  125. package/node_modules/zod/src/v4/classic/parse.ts +82 -0
  126. package/node_modules/zod/src/v4/classic/schemas.ts +2672 -0
  127. package/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
  128. package/node_modules/zod/src/v4/classic/tests/apply.test.ts +59 -0
  129. package/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
  130. package/node_modules/zod/src/v4/classic/tests/assignability.test.ts +216 -0
  131. package/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
  132. package/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
  133. package/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
  134. package/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
  135. package/node_modules/zod/src/v4/classic/tests/brand.test.ts +106 -0
  136. package/node_modules/zod/src/v4/classic/tests/catch.test.ts +326 -0
  137. package/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
  138. package/node_modules/zod/src/v4/classic/tests/codec-examples.test.ts +573 -0
  139. package/node_modules/zod/src/v4/classic/tests/codec.test.ts +703 -0
  140. package/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
  141. package/node_modules/zod/src/v4/classic/tests/continuability.test.ts +374 -0
  142. package/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
  143. package/node_modules/zod/src/v4/classic/tests/date.test.ts +62 -0
  144. package/node_modules/zod/src/v4/classic/tests/datetime.test.ts +302 -0
  145. package/node_modules/zod/src/v4/classic/tests/default.test.ts +409 -0
  146. package/node_modules/zod/src/v4/classic/tests/describe-meta-checks.test.ts +27 -0
  147. package/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
  148. package/node_modules/zod/src/v4/classic/tests/detached-methods.test.ts +197 -0
  149. package/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +694 -0
  150. package/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
  151. package/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +807 -0
  152. package/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
  153. package/node_modules/zod/src/v4/classic/tests/file.test.ts +96 -0
  154. package/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +179 -0
  155. package/node_modules/zod/src/v4/classic/tests/fix-json-issue.test.ts +26 -0
  156. package/node_modules/zod/src/v4/classic/tests/from-json-schema.test.ts +895 -0
  157. package/node_modules/zod/src/v4/classic/tests/function.test.ts +360 -0
  158. package/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
  159. package/node_modules/zod/src/v4/classic/tests/global-config.test.ts +39 -0
  160. package/node_modules/zod/src/v4/classic/tests/hash.test.ts +68 -0
  161. package/node_modules/zod/src/v4/classic/tests/index.test.ts +939 -0
  162. package/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +60 -0
  163. package/node_modules/zod/src/v4/classic/tests/intersection.test.ts +198 -0
  164. package/node_modules/zod/src/v4/classic/tests/jitless-allows-eval.test.ts +46 -0
  165. package/node_modules/zod/src/v4/classic/tests/json.test.ts +109 -0
  166. package/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
  167. package/node_modules/zod/src/v4/classic/tests/literal.test.ts +117 -0
  168. package/node_modules/zod/src/v4/classic/tests/locales_ka.test.ts +29 -0
  169. package/node_modules/zod/src/v4/classic/tests/locales_ro.test.ts +24 -0
  170. package/node_modules/zod/src/v4/classic/tests/map.test.ts +330 -0
  171. package/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
  172. package/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
  173. package/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +101 -0
  174. package/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
  175. package/node_modules/zod/src/v4/classic/tests/number.test.ts +325 -0
  176. package/node_modules/zod/src/v4/classic/tests/object.test.ts +717 -0
  177. package/node_modules/zod/src/v4/classic/tests/optional.test.ts +333 -0
  178. package/node_modules/zod/src/v4/classic/tests/partial.test.ts +450 -0
  179. package/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +211 -0
  180. package/node_modules/zod/src/v4/classic/tests/pipe.test.ts +101 -0
  181. package/node_modules/zod/src/v4/classic/tests/prefault.test.ts +74 -0
  182. package/node_modules/zod/src/v4/classic/tests/preprocess-types.test.ts +26 -0
  183. package/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +351 -0
  184. package/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
  185. package/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
  186. package/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
  187. package/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
  188. package/node_modules/zod/src/v4/classic/tests/record.test.ts +717 -0
  189. package/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +631 -0
  190. package/node_modules/zod/src/v4/classic/tests/refine.test.ts +633 -0
  191. package/node_modules/zod/src/v4/classic/tests/registries.test.ts +243 -0
  192. package/node_modules/zod/src/v4/classic/tests/set.test.ts +181 -0
  193. package/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +134 -0
  194. package/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +125 -0
  195. package/node_modules/zod/src/v4/classic/tests/string.test.ts +1224 -0
  196. package/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +106 -0
  197. package/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +771 -0
  198. package/node_modules/zod/src/v4/classic/tests/to-json-schema-methods.test.ts +438 -0
  199. package/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +3125 -0
  200. package/node_modules/zod/src/v4/classic/tests/transform.test.ts +378 -0
  201. package/node_modules/zod/src/v4/classic/tests/tuple.test.ts +496 -0
  202. package/node_modules/zod/src/v4/classic/tests/union.test.ts +273 -0
  203. package/node_modules/zod/src/v4/classic/tests/url.test.ts +13 -0
  204. package/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
  205. package/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
  206. package/node_modules/zod/src/v4/core/api.ts +1823 -0
  207. package/node_modules/zod/src/v4/core/checks.ts +1293 -0
  208. package/node_modules/zod/src/v4/core/config.ts +15 -0
  209. package/node_modules/zod/src/v4/core/core.ts +153 -0
  210. package/node_modules/zod/src/v4/core/doc.ts +44 -0
  211. package/node_modules/zod/src/v4/core/errors.ts +455 -0
  212. package/node_modules/zod/src/v4/core/index.ts +16 -0
  213. package/node_modules/zod/src/v4/core/json-schema-generator.ts +126 -0
  214. package/node_modules/zod/src/v4/core/json-schema-processors.ts +666 -0
  215. package/node_modules/zod/src/v4/core/json-schema.ts +147 -0
  216. package/node_modules/zod/src/v4/core/parse.ts +195 -0
  217. package/node_modules/zod/src/v4/core/regexes.ts +190 -0
  218. package/node_modules/zod/src/v4/core/registries.ts +105 -0
  219. package/node_modules/zod/src/v4/core/schemas.ts +4730 -0
  220. package/node_modules/zod/src/v4/core/standard-schema.ts +159 -0
  221. package/node_modules/zod/src/v4/core/tests/extend.test.ts +59 -0
  222. package/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
  223. package/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
  224. package/node_modules/zod/src/v4/core/tests/locales/el.test.ts +215 -0
  225. package/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
  226. package/node_modules/zod/src/v4/core/tests/locales/es.test.ts +181 -0
  227. package/node_modules/zod/src/v4/core/tests/locales/fr.test.ts +72 -0
  228. package/node_modules/zod/src/v4/core/tests/locales/he.test.ts +379 -0
  229. package/node_modules/zod/src/v4/core/tests/locales/hr.test.ts +163 -0
  230. package/node_modules/zod/src/v4/core/tests/locales/nl.test.ts +46 -0
  231. package/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
  232. package/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
  233. package/node_modules/zod/src/v4/core/tests/locales/uz.test.ts +105 -0
  234. package/node_modules/zod/src/v4/core/tests/record-constructor.test.ts +125 -0
  235. package/node_modules/zod/src/v4/core/tests/recursive-tuples.test.ts +45 -0
  236. package/node_modules/zod/src/v4/core/to-json-schema.ts +622 -0
  237. package/node_modules/zod/src/v4/core/util.ts +983 -0
  238. package/node_modules/zod/src/v4/core/versions.ts +5 -0
  239. package/node_modules/zod/src/v4/core/zsf.ts +323 -0
  240. package/node_modules/zod/src/v4/index.ts +4 -0
  241. package/node_modules/zod/src/v4/locales/ar.ts +115 -0
  242. package/node_modules/zod/src/v4/locales/az.ts +111 -0
  243. package/node_modules/zod/src/v4/locales/be.ts +176 -0
  244. package/node_modules/zod/src/v4/locales/bg.ts +128 -0
  245. package/node_modules/zod/src/v4/locales/ca.ts +116 -0
  246. package/node_modules/zod/src/v4/locales/cs.ts +118 -0
  247. package/node_modules/zod/src/v4/locales/da.ts +123 -0
  248. package/node_modules/zod/src/v4/locales/de.ts +116 -0
  249. package/node_modules/zod/src/v4/locales/el.ts +121 -0
  250. package/node_modules/zod/src/v4/locales/en.ts +123 -0
  251. package/node_modules/zod/src/v4/locales/eo.ts +118 -0
  252. package/node_modules/zod/src/v4/locales/es.ts +141 -0
  253. package/node_modules/zod/src/v4/locales/fa.ts +126 -0
  254. package/node_modules/zod/src/v4/locales/fi.ts +121 -0
  255. package/node_modules/zod/src/v4/locales/fr-CA.ts +116 -0
  256. package/node_modules/zod/src/v4/locales/fr.ts +132 -0
  257. package/node_modules/zod/src/v4/locales/he.ts +246 -0
  258. package/node_modules/zod/src/v4/locales/hr.ts +131 -0
  259. package/node_modules/zod/src/v4/locales/hu.ts +117 -0
  260. package/node_modules/zod/src/v4/locales/hy.ts +164 -0
  261. package/node_modules/zod/src/v4/locales/id.ts +115 -0
  262. package/node_modules/zod/src/v4/locales/index.ts +52 -0
  263. package/node_modules/zod/src/v4/locales/is.ts +119 -0
  264. package/node_modules/zod/src/v4/locales/it.ts +116 -0
  265. package/node_modules/zod/src/v4/locales/ja.ts +114 -0
  266. package/node_modules/zod/src/v4/locales/ka.ts +123 -0
  267. package/node_modules/zod/src/v4/locales/kh.ts +7 -0
  268. package/node_modules/zod/src/v4/locales/km.ts +119 -0
  269. package/node_modules/zod/src/v4/locales/ko.ts +121 -0
  270. package/node_modules/zod/src/v4/locales/lt.ts +239 -0
  271. package/node_modules/zod/src/v4/locales/mk.ts +118 -0
  272. package/node_modules/zod/src/v4/locales/ms.ts +115 -0
  273. package/node_modules/zod/src/v4/locales/nl.ts +121 -0
  274. package/node_modules/zod/src/v4/locales/no.ts +116 -0
  275. package/node_modules/zod/src/v4/locales/ota.ts +117 -0
  276. package/node_modules/zod/src/v4/locales/pl.ts +118 -0
  277. package/node_modules/zod/src/v4/locales/ps.ts +126 -0
  278. package/node_modules/zod/src/v4/locales/pt.ts +116 -0
  279. package/node_modules/zod/src/v4/locales/ro.ts +129 -0
  280. package/node_modules/zod/src/v4/locales/ru.ts +176 -0
  281. package/node_modules/zod/src/v4/locales/sl.ts +118 -0
  282. package/node_modules/zod/src/v4/locales/sv.ts +119 -0
  283. package/node_modules/zod/src/v4/locales/ta.ts +118 -0
  284. package/node_modules/zod/src/v4/locales/th.ts +119 -0
  285. package/node_modules/zod/src/v4/locales/tr.ts +111 -0
  286. package/node_modules/zod/src/v4/locales/ua.ts +7 -0
  287. package/node_modules/zod/src/v4/locales/uk.ts +117 -0
  288. package/node_modules/zod/src/v4/locales/ur.ts +119 -0
  289. package/node_modules/zod/src/v4/locales/uz.ts +117 -0
  290. package/node_modules/zod/src/v4/locales/vi.ts +117 -0
  291. package/node_modules/zod/src/v4/locales/yo.ts +124 -0
  292. package/node_modules/zod/src/v4/locales/zh-CN.ts +116 -0
  293. package/node_modules/zod/src/v4/locales/zh-TW.ts +115 -0
  294. package/node_modules/zod/src/v4/mini/checks.ts +32 -0
  295. package/node_modules/zod/src/v4/mini/coerce.ts +27 -0
  296. package/node_modules/zod/src/v4/mini/external.ts +41 -0
  297. package/node_modules/zod/src/v4/mini/index.ts +3 -0
  298. package/node_modules/zod/src/v4/mini/iso.ts +66 -0
  299. package/node_modules/zod/src/v4/mini/parse.ts +14 -0
  300. package/node_modules/zod/src/v4/mini/schemas.ts +1947 -0
  301. package/node_modules/zod/src/v4/mini/tests/apply.test.ts +24 -0
  302. package/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
  303. package/node_modules/zod/src/v4/mini/tests/brand.test.ts +94 -0
  304. package/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
  305. package/node_modules/zod/src/v4/mini/tests/codec.test.ts +548 -0
  306. package/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
  307. package/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
  308. package/node_modules/zod/src/v4/mini/tests/functions.test.ts +5 -0
  309. package/node_modules/zod/src/v4/mini/tests/index.test.ts +993 -0
  310. package/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
  311. package/node_modules/zod/src/v4/mini/tests/object.test.ts +227 -0
  312. package/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
  313. package/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +325 -0
  314. package/node_modules/zod/src/v4/mini/tests/standard-schema.test.ts +50 -0
  315. package/node_modules/zod/src/v4/mini/tests/string.test.ts +352 -0
  316. package/node_modules/zod/src/v4-mini/index.ts +3 -0
  317. package/node_modules/zod/v3/ZodError.cjs +138 -0
  318. package/node_modules/zod/v3/ZodError.d.cts +164 -0
  319. package/node_modules/zod/v3/ZodError.d.ts +164 -0
  320. package/node_modules/zod/v3/ZodError.js +133 -0
  321. package/node_modules/zod/v3/errors.cjs +17 -0
  322. package/node_modules/zod/v3/errors.d.cts +5 -0
  323. package/node_modules/zod/v3/errors.d.ts +5 -0
  324. package/node_modules/zod/v3/errors.js +9 -0
  325. package/node_modules/zod/v3/external.cjs +22 -0
  326. package/node_modules/zod/v3/external.d.cts +6 -0
  327. package/node_modules/zod/v3/external.d.ts +6 -0
  328. package/node_modules/zod/v3/external.js +6 -0
  329. package/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
  330. package/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
  331. package/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
  332. package/node_modules/zod/v3/helpers/enumUtil.js +1 -0
  333. package/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
  334. package/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
  335. package/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
  336. package/node_modules/zod/v3/helpers/errorUtil.js +6 -0
  337. package/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
  338. package/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
  339. package/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
  340. package/node_modules/zod/v3/helpers/parseUtil.js +109 -0
  341. package/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
  342. package/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
  343. package/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
  344. package/node_modules/zod/v3/helpers/partialUtil.js +1 -0
  345. package/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
  346. package/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
  347. package/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
  348. package/node_modules/zod/v3/helpers/typeAliases.js +1 -0
  349. package/node_modules/zod/v3/helpers/util.cjs +137 -0
  350. package/node_modules/zod/v3/helpers/util.d.cts +85 -0
  351. package/node_modules/zod/v3/helpers/util.d.ts +85 -0
  352. package/node_modules/zod/v3/helpers/util.js +133 -0
  353. package/node_modules/zod/v3/index.cjs +33 -0
  354. package/node_modules/zod/v3/index.d.cts +4 -0
  355. package/node_modules/zod/v3/index.d.ts +4 -0
  356. package/node_modules/zod/v3/index.js +4 -0
  357. package/node_modules/zod/v3/locales/en.cjs +112 -0
  358. package/node_modules/zod/v3/locales/en.d.cts +3 -0
  359. package/node_modules/zod/v3/locales/en.d.ts +3 -0
  360. package/node_modules/zod/v3/locales/en.js +109 -0
  361. package/node_modules/zod/v3/package.json +7 -0
  362. package/node_modules/zod/v3/standard-schema.cjs +2 -0
  363. package/node_modules/zod/v3/standard-schema.d.cts +102 -0
  364. package/node_modules/zod/v3/standard-schema.d.ts +102 -0
  365. package/node_modules/zod/v3/standard-schema.js +1 -0
  366. package/node_modules/zod/v3/types.cjs +3777 -0
  367. package/node_modules/zod/v3/types.d.cts +1034 -0
  368. package/node_modules/zod/v3/types.d.ts +1034 -0
  369. package/node_modules/zod/v3/types.js +3695 -0
  370. package/node_modules/zod/v4/classic/checks.cjs +33 -0
  371. package/node_modules/zod/v4/classic/checks.d.cts +1 -0
  372. package/node_modules/zod/v4/classic/checks.d.ts +1 -0
  373. package/node_modules/zod/v4/classic/checks.js +1 -0
  374. package/node_modules/zod/v4/classic/coerce.cjs +47 -0
  375. package/node_modules/zod/v4/classic/coerce.d.cts +17 -0
  376. package/node_modules/zod/v4/classic/coerce.d.ts +17 -0
  377. package/node_modules/zod/v4/classic/coerce.js +17 -0
  378. package/node_modules/zod/v4/classic/compat.cjs +61 -0
  379. package/node_modules/zod/v4/classic/compat.d.cts +50 -0
  380. package/node_modules/zod/v4/classic/compat.d.ts +50 -0
  381. package/node_modules/zod/v4/classic/compat.js +31 -0
  382. package/node_modules/zod/v4/classic/errors.cjs +74 -0
  383. package/node_modules/zod/v4/classic/errors.d.cts +30 -0
  384. package/node_modules/zod/v4/classic/errors.d.ts +30 -0
  385. package/node_modules/zod/v4/classic/errors.js +48 -0
  386. package/node_modules/zod/v4/classic/external.cjs +73 -0
  387. package/node_modules/zod/v4/classic/external.d.cts +16 -0
  388. package/node_modules/zod/v4/classic/external.d.ts +16 -0
  389. package/node_modules/zod/v4/classic/external.js +20 -0
  390. package/node_modules/zod/v4/classic/from-json-schema.cjs +625 -0
  391. package/node_modules/zod/v4/classic/from-json-schema.d.cts +12 -0
  392. package/node_modules/zod/v4/classic/from-json-schema.d.ts +12 -0
  393. package/node_modules/zod/v4/classic/from-json-schema.js +599 -0
  394. package/node_modules/zod/v4/classic/index.cjs +33 -0
  395. package/node_modules/zod/v4/classic/index.d.cts +4 -0
  396. package/node_modules/zod/v4/classic/index.d.ts +4 -0
  397. package/node_modules/zod/v4/classic/index.js +4 -0
  398. package/node_modules/zod/v4/classic/iso.cjs +60 -0
  399. package/node_modules/zod/v4/classic/iso.d.cts +22 -0
  400. package/node_modules/zod/v4/classic/iso.d.ts +22 -0
  401. package/node_modules/zod/v4/classic/iso.js +30 -0
  402. package/node_modules/zod/v4/classic/package.json +7 -0
  403. package/node_modules/zod/v4/classic/parse.cjs +41 -0
  404. package/node_modules/zod/v4/classic/parse.d.cts +31 -0
  405. package/node_modules/zod/v4/classic/parse.d.ts +31 -0
  406. package/node_modules/zod/v4/classic/parse.js +15 -0
  407. package/node_modules/zod/v4/classic/schemas.cjs +1511 -0
  408. package/node_modules/zod/v4/classic/schemas.d.cts +767 -0
  409. package/node_modules/zod/v4/classic/schemas.d.ts +767 -0
  410. package/node_modules/zod/v4/classic/schemas.js +1395 -0
  411. package/node_modules/zod/v4/core/api.cjs +1227 -0
  412. package/node_modules/zod/v4/core/api.d.cts +325 -0
  413. package/node_modules/zod/v4/core/api.d.ts +325 -0
  414. package/node_modules/zod/v4/core/api.js +1087 -0
  415. package/node_modules/zod/v4/core/checks.cjs +601 -0
  416. package/node_modules/zod/v4/core/checks.d.cts +278 -0
  417. package/node_modules/zod/v4/core/checks.d.ts +278 -0
  418. package/node_modules/zod/v4/core/checks.js +575 -0
  419. package/node_modules/zod/v4/core/core.cjs +85 -0
  420. package/node_modules/zod/v4/core/core.d.cts +70 -0
  421. package/node_modules/zod/v4/core/core.d.ts +70 -0
  422. package/node_modules/zod/v4/core/core.js +78 -0
  423. package/node_modules/zod/v4/core/doc.cjs +39 -0
  424. package/node_modules/zod/v4/core/doc.d.cts +14 -0
  425. package/node_modules/zod/v4/core/doc.d.ts +14 -0
  426. package/node_modules/zod/v4/core/doc.js +35 -0
  427. package/node_modules/zod/v4/core/errors.cjs +216 -0
  428. package/node_modules/zod/v4/core/errors.d.cts +221 -0
  429. package/node_modules/zod/v4/core/errors.d.ts +221 -0
  430. package/node_modules/zod/v4/core/errors.js +185 -0
  431. package/node_modules/zod/v4/core/index.cjs +47 -0
  432. package/node_modules/zod/v4/core/index.d.cts +16 -0
  433. package/node_modules/zod/v4/core/index.d.ts +16 -0
  434. package/node_modules/zod/v4/core/index.js +16 -0
  435. package/node_modules/zod/v4/core/json-schema-generator.cjs +99 -0
  436. package/node_modules/zod/v4/core/json-schema-generator.d.cts +65 -0
  437. package/node_modules/zod/v4/core/json-schema-generator.d.ts +65 -0
  438. package/node_modules/zod/v4/core/json-schema-generator.js +95 -0
  439. package/node_modules/zod/v4/core/json-schema-processors.cjs +644 -0
  440. package/node_modules/zod/v4/core/json-schema-processors.d.cts +49 -0
  441. package/node_modules/zod/v4/core/json-schema-processors.d.ts +49 -0
  442. package/node_modules/zod/v4/core/json-schema-processors.js +601 -0
  443. package/node_modules/zod/v4/core/json-schema.cjs +2 -0
  444. package/node_modules/zod/v4/core/json-schema.d.cts +88 -0
  445. package/node_modules/zod/v4/core/json-schema.d.ts +88 -0
  446. package/node_modules/zod/v4/core/json-schema.js +1 -0
  447. package/node_modules/zod/v4/core/package.json +7 -0
  448. package/node_modules/zod/v4/core/parse.cjs +131 -0
  449. package/node_modules/zod/v4/core/parse.d.cts +49 -0
  450. package/node_modules/zod/v4/core/parse.d.ts +49 -0
  451. package/node_modules/zod/v4/core/parse.js +93 -0
  452. package/node_modules/zod/v4/core/regexes.cjs +172 -0
  453. package/node_modules/zod/v4/core/regexes.d.cts +85 -0
  454. package/node_modules/zod/v4/core/regexes.d.ts +85 -0
  455. package/node_modules/zod/v4/core/regexes.js +139 -0
  456. package/node_modules/zod/v4/core/registries.cjs +56 -0
  457. package/node_modules/zod/v4/core/registries.d.cts +35 -0
  458. package/node_modules/zod/v4/core/registries.d.ts +35 -0
  459. package/node_modules/zod/v4/core/registries.js +51 -0
  460. package/node_modules/zod/v4/core/schemas.cjs +2270 -0
  461. package/node_modules/zod/v4/core/schemas.d.cts +1184 -0
  462. package/node_modules/zod/v4/core/schemas.d.ts +1184 -0
  463. package/node_modules/zod/v4/core/schemas.js +2239 -0
  464. package/node_modules/zod/v4/core/standard-schema.cjs +2 -0
  465. package/node_modules/zod/v4/core/standard-schema.d.cts +126 -0
  466. package/node_modules/zod/v4/core/standard-schema.d.ts +126 -0
  467. package/node_modules/zod/v4/core/standard-schema.js +1 -0
  468. package/node_modules/zod/v4/core/to-json-schema.cjs +457 -0
  469. package/node_modules/zod/v4/core/to-json-schema.d.cts +114 -0
  470. package/node_modules/zod/v4/core/to-json-schema.d.ts +114 -0
  471. package/node_modules/zod/v4/core/to-json-schema.js +448 -0
  472. package/node_modules/zod/v4/core/util.cjs +734 -0
  473. package/node_modules/zod/v4/core/util.d.cts +200 -0
  474. package/node_modules/zod/v4/core/util.d.ts +200 -0
  475. package/node_modules/zod/v4/core/util.js +674 -0
  476. package/node_modules/zod/v4/core/versions.cjs +8 -0
  477. package/node_modules/zod/v4/core/versions.d.cts +5 -0
  478. package/node_modules/zod/v4/core/versions.d.ts +5 -0
  479. package/node_modules/zod/v4/core/versions.js +5 -0
  480. package/node_modules/zod/v4/index.cjs +22 -0
  481. package/node_modules/zod/v4/index.d.cts +3 -0
  482. package/node_modules/zod/v4/index.d.ts +3 -0
  483. package/node_modules/zod/v4/index.js +3 -0
  484. package/node_modules/zod/v4/locales/ar.cjs +133 -0
  485. package/node_modules/zod/v4/locales/ar.d.cts +5 -0
  486. package/node_modules/zod/v4/locales/ar.d.ts +4 -0
  487. package/node_modules/zod/v4/locales/ar.js +106 -0
  488. package/node_modules/zod/v4/locales/az.cjs +132 -0
  489. package/node_modules/zod/v4/locales/az.d.cts +5 -0
  490. package/node_modules/zod/v4/locales/az.d.ts +4 -0
  491. package/node_modules/zod/v4/locales/az.js +105 -0
  492. package/node_modules/zod/v4/locales/be.cjs +183 -0
  493. package/node_modules/zod/v4/locales/be.d.cts +5 -0
  494. package/node_modules/zod/v4/locales/be.d.ts +4 -0
  495. package/node_modules/zod/v4/locales/be.js +156 -0
  496. package/node_modules/zod/v4/locales/bg.cjs +147 -0
  497. package/node_modules/zod/v4/locales/bg.d.cts +5 -0
  498. package/node_modules/zod/v4/locales/bg.d.ts +4 -0
  499. package/node_modules/zod/v4/locales/bg.js +120 -0
  500. package/node_modules/zod/v4/locales/ca.cjs +134 -0
  501. package/node_modules/zod/v4/locales/ca.d.cts +5 -0
  502. package/node_modules/zod/v4/locales/ca.d.ts +4 -0
  503. package/node_modules/zod/v4/locales/ca.js +107 -0
  504. package/node_modules/zod/v4/locales/cs.cjs +138 -0
  505. package/node_modules/zod/v4/locales/cs.d.cts +5 -0
  506. package/node_modules/zod/v4/locales/cs.d.ts +4 -0
  507. package/node_modules/zod/v4/locales/cs.js +111 -0
  508. package/node_modules/zod/v4/locales/da.cjs +142 -0
  509. package/node_modules/zod/v4/locales/da.d.cts +5 -0
  510. package/node_modules/zod/v4/locales/da.d.ts +4 -0
  511. package/node_modules/zod/v4/locales/da.js +115 -0
  512. package/node_modules/zod/v4/locales/de.cjs +135 -0
  513. package/node_modules/zod/v4/locales/de.d.cts +5 -0
  514. package/node_modules/zod/v4/locales/de.d.ts +4 -0
  515. package/node_modules/zod/v4/locales/de.js +108 -0
  516. package/node_modules/zod/v4/locales/el.cjs +136 -0
  517. package/node_modules/zod/v4/locales/el.d.cts +5 -0
  518. package/node_modules/zod/v4/locales/el.d.ts +4 -0
  519. package/node_modules/zod/v4/locales/el.js +109 -0
  520. package/node_modules/zod/v4/locales/en.cjs +140 -0
  521. package/node_modules/zod/v4/locales/en.d.cts +5 -0
  522. package/node_modules/zod/v4/locales/en.d.ts +4 -0
  523. package/node_modules/zod/v4/locales/en.js +113 -0
  524. package/node_modules/zod/v4/locales/eo.cjs +136 -0
  525. package/node_modules/zod/v4/locales/eo.d.cts +5 -0
  526. package/node_modules/zod/v4/locales/eo.d.ts +4 -0
  527. package/node_modules/zod/v4/locales/eo.js +109 -0
  528. package/node_modules/zod/v4/locales/es.cjs +159 -0
  529. package/node_modules/zod/v4/locales/es.d.cts +5 -0
  530. package/node_modules/zod/v4/locales/es.d.ts +4 -0
  531. package/node_modules/zod/v4/locales/es.js +132 -0
  532. package/node_modules/zod/v4/locales/fa.cjs +141 -0
  533. package/node_modules/zod/v4/locales/fa.d.cts +5 -0
  534. package/node_modules/zod/v4/locales/fa.d.ts +4 -0
  535. package/node_modules/zod/v4/locales/fa.js +114 -0
  536. package/node_modules/zod/v4/locales/fi.cjs +139 -0
  537. package/node_modules/zod/v4/locales/fi.d.cts +5 -0
  538. package/node_modules/zod/v4/locales/fi.d.ts +4 -0
  539. package/node_modules/zod/v4/locales/fi.js +112 -0
  540. package/node_modules/zod/v4/locales/fr-CA.cjs +134 -0
  541. package/node_modules/zod/v4/locales/fr-CA.d.cts +5 -0
  542. package/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
  543. package/node_modules/zod/v4/locales/fr-CA.js +107 -0
  544. package/node_modules/zod/v4/locales/fr.cjs +152 -0
  545. package/node_modules/zod/v4/locales/fr.d.cts +5 -0
  546. package/node_modules/zod/v4/locales/fr.d.ts +4 -0
  547. package/node_modules/zod/v4/locales/fr.js +125 -0
  548. package/node_modules/zod/v4/locales/he.cjs +241 -0
  549. package/node_modules/zod/v4/locales/he.d.cts +5 -0
  550. package/node_modules/zod/v4/locales/he.d.ts +4 -0
  551. package/node_modules/zod/v4/locales/he.js +214 -0
  552. package/node_modules/zod/v4/locales/hr.cjs +149 -0
  553. package/node_modules/zod/v4/locales/hr.d.cts +5 -0
  554. package/node_modules/zod/v4/locales/hr.d.ts +4 -0
  555. package/node_modules/zod/v4/locales/hr.js +122 -0
  556. package/node_modules/zod/v4/locales/hu.cjs +135 -0
  557. package/node_modules/zod/v4/locales/hu.d.cts +5 -0
  558. package/node_modules/zod/v4/locales/hu.d.ts +4 -0
  559. package/node_modules/zod/v4/locales/hu.js +108 -0
  560. package/node_modules/zod/v4/locales/hy.cjs +174 -0
  561. package/node_modules/zod/v4/locales/hy.d.cts +5 -0
  562. package/node_modules/zod/v4/locales/hy.d.ts +4 -0
  563. package/node_modules/zod/v4/locales/hy.js +147 -0
  564. package/node_modules/zod/v4/locales/id.cjs +133 -0
  565. package/node_modules/zod/v4/locales/id.d.cts +5 -0
  566. package/node_modules/zod/v4/locales/id.d.ts +4 -0
  567. package/node_modules/zod/v4/locales/id.js +106 -0
  568. package/node_modules/zod/v4/locales/index.cjs +111 -0
  569. package/node_modules/zod/v4/locales/index.d.cts +52 -0
  570. package/node_modules/zod/v4/locales/index.d.ts +52 -0
  571. package/node_modules/zod/v4/locales/index.js +52 -0
  572. package/node_modules/zod/v4/locales/is.cjs +136 -0
  573. package/node_modules/zod/v4/locales/is.d.cts +5 -0
  574. package/node_modules/zod/v4/locales/is.d.ts +4 -0
  575. package/node_modules/zod/v4/locales/is.js +109 -0
  576. package/node_modules/zod/v4/locales/it.cjs +135 -0
  577. package/node_modules/zod/v4/locales/it.d.cts +5 -0
  578. package/node_modules/zod/v4/locales/it.d.ts +4 -0
  579. package/node_modules/zod/v4/locales/it.js +108 -0
  580. package/node_modules/zod/v4/locales/ja.cjs +134 -0
  581. package/node_modules/zod/v4/locales/ja.d.cts +5 -0
  582. package/node_modules/zod/v4/locales/ja.d.ts +4 -0
  583. package/node_modules/zod/v4/locales/ja.js +107 -0
  584. package/node_modules/zod/v4/locales/ka.cjs +139 -0
  585. package/node_modules/zod/v4/locales/ka.d.cts +5 -0
  586. package/node_modules/zod/v4/locales/ka.d.ts +4 -0
  587. package/node_modules/zod/v4/locales/ka.js +112 -0
  588. package/node_modules/zod/v4/locales/kh.cjs +12 -0
  589. package/node_modules/zod/v4/locales/kh.d.cts +5 -0
  590. package/node_modules/zod/v4/locales/kh.d.ts +5 -0
  591. package/node_modules/zod/v4/locales/kh.js +5 -0
  592. package/node_modules/zod/v4/locales/km.cjs +137 -0
  593. package/node_modules/zod/v4/locales/km.d.cts +5 -0
  594. package/node_modules/zod/v4/locales/km.d.ts +4 -0
  595. package/node_modules/zod/v4/locales/km.js +110 -0
  596. package/node_modules/zod/v4/locales/ko.cjs +138 -0
  597. package/node_modules/zod/v4/locales/ko.d.cts +5 -0
  598. package/node_modules/zod/v4/locales/ko.d.ts +4 -0
  599. package/node_modules/zod/v4/locales/ko.js +111 -0
  600. package/node_modules/zod/v4/locales/lt.cjs +230 -0
  601. package/node_modules/zod/v4/locales/lt.d.cts +5 -0
  602. package/node_modules/zod/v4/locales/lt.d.ts +4 -0
  603. package/node_modules/zod/v4/locales/lt.js +203 -0
  604. package/node_modules/zod/v4/locales/mk.cjs +136 -0
  605. package/node_modules/zod/v4/locales/mk.d.cts +5 -0
  606. package/node_modules/zod/v4/locales/mk.d.ts +4 -0
  607. package/node_modules/zod/v4/locales/mk.js +109 -0
  608. package/node_modules/zod/v4/locales/ms.cjs +134 -0
  609. package/node_modules/zod/v4/locales/ms.d.cts +5 -0
  610. package/node_modules/zod/v4/locales/ms.d.ts +4 -0
  611. package/node_modules/zod/v4/locales/ms.js +107 -0
  612. package/node_modules/zod/v4/locales/nl.cjs +137 -0
  613. package/node_modules/zod/v4/locales/nl.d.cts +5 -0
  614. package/node_modules/zod/v4/locales/nl.d.ts +4 -0
  615. package/node_modules/zod/v4/locales/nl.js +110 -0
  616. package/node_modules/zod/v4/locales/no.cjs +135 -0
  617. package/node_modules/zod/v4/locales/no.d.cts +5 -0
  618. package/node_modules/zod/v4/locales/no.d.ts +4 -0
  619. package/node_modules/zod/v4/locales/no.js +108 -0
  620. package/node_modules/zod/v4/locales/ota.cjs +136 -0
  621. package/node_modules/zod/v4/locales/ota.d.cts +5 -0
  622. package/node_modules/zod/v4/locales/ota.d.ts +4 -0
  623. package/node_modules/zod/v4/locales/ota.js +109 -0
  624. package/node_modules/zod/v4/locales/package.json +7 -0
  625. package/node_modules/zod/v4/locales/pl.cjs +136 -0
  626. package/node_modules/zod/v4/locales/pl.d.cts +5 -0
  627. package/node_modules/zod/v4/locales/pl.d.ts +4 -0
  628. package/node_modules/zod/v4/locales/pl.js +109 -0
  629. package/node_modules/zod/v4/locales/ps.cjs +141 -0
  630. package/node_modules/zod/v4/locales/ps.d.cts +5 -0
  631. package/node_modules/zod/v4/locales/ps.d.ts +4 -0
  632. package/node_modules/zod/v4/locales/ps.js +114 -0
  633. package/node_modules/zod/v4/locales/pt.cjs +135 -0
  634. package/node_modules/zod/v4/locales/pt.d.cts +5 -0
  635. package/node_modules/zod/v4/locales/pt.d.ts +4 -0
  636. package/node_modules/zod/v4/locales/pt.js +108 -0
  637. package/node_modules/zod/v4/locales/ro.cjs +146 -0
  638. package/node_modules/zod/v4/locales/ro.d.cts +5 -0
  639. package/node_modules/zod/v4/locales/ro.d.ts +4 -0
  640. package/node_modules/zod/v4/locales/ro.js +119 -0
  641. package/node_modules/zod/v4/locales/ru.cjs +183 -0
  642. package/node_modules/zod/v4/locales/ru.d.cts +5 -0
  643. package/node_modules/zod/v4/locales/ru.d.ts +4 -0
  644. package/node_modules/zod/v4/locales/ru.js +156 -0
  645. package/node_modules/zod/v4/locales/sl.cjs +136 -0
  646. package/node_modules/zod/v4/locales/sl.d.cts +5 -0
  647. package/node_modules/zod/v4/locales/sl.d.ts +4 -0
  648. package/node_modules/zod/v4/locales/sl.js +109 -0
  649. package/node_modules/zod/v4/locales/sv.cjs +137 -0
  650. package/node_modules/zod/v4/locales/sv.d.cts +5 -0
  651. package/node_modules/zod/v4/locales/sv.d.ts +4 -0
  652. package/node_modules/zod/v4/locales/sv.js +110 -0
  653. package/node_modules/zod/v4/locales/ta.cjs +137 -0
  654. package/node_modules/zod/v4/locales/ta.d.cts +5 -0
  655. package/node_modules/zod/v4/locales/ta.d.ts +4 -0
  656. package/node_modules/zod/v4/locales/ta.js +110 -0
  657. package/node_modules/zod/v4/locales/th.cjs +137 -0
  658. package/node_modules/zod/v4/locales/th.d.cts +5 -0
  659. package/node_modules/zod/v4/locales/th.d.ts +4 -0
  660. package/node_modules/zod/v4/locales/th.js +110 -0
  661. package/node_modules/zod/v4/locales/tr.cjs +132 -0
  662. package/node_modules/zod/v4/locales/tr.d.cts +5 -0
  663. package/node_modules/zod/v4/locales/tr.d.ts +4 -0
  664. package/node_modules/zod/v4/locales/tr.js +105 -0
  665. package/node_modules/zod/v4/locales/ua.cjs +12 -0
  666. package/node_modules/zod/v4/locales/ua.d.cts +5 -0
  667. package/node_modules/zod/v4/locales/ua.d.ts +5 -0
  668. package/node_modules/zod/v4/locales/ua.js +5 -0
  669. package/node_modules/zod/v4/locales/uk.cjs +135 -0
  670. package/node_modules/zod/v4/locales/uk.d.cts +5 -0
  671. package/node_modules/zod/v4/locales/uk.d.ts +4 -0
  672. package/node_modules/zod/v4/locales/uk.js +108 -0
  673. package/node_modules/zod/v4/locales/ur.cjs +137 -0
  674. package/node_modules/zod/v4/locales/ur.d.cts +5 -0
  675. package/node_modules/zod/v4/locales/ur.d.ts +4 -0
  676. package/node_modules/zod/v4/locales/ur.js +110 -0
  677. package/node_modules/zod/v4/locales/uz.cjs +137 -0
  678. package/node_modules/zod/v4/locales/uz.d.cts +5 -0
  679. package/node_modules/zod/v4/locales/uz.d.ts +4 -0
  680. package/node_modules/zod/v4/locales/uz.js +110 -0
  681. package/node_modules/zod/v4/locales/vi.cjs +135 -0
  682. package/node_modules/zod/v4/locales/vi.d.cts +5 -0
  683. package/node_modules/zod/v4/locales/vi.d.ts +4 -0
  684. package/node_modules/zod/v4/locales/vi.js +108 -0
  685. package/node_modules/zod/v4/locales/yo.cjs +134 -0
  686. package/node_modules/zod/v4/locales/yo.d.cts +5 -0
  687. package/node_modules/zod/v4/locales/yo.d.ts +4 -0
  688. package/node_modules/zod/v4/locales/yo.js +107 -0
  689. package/node_modules/zod/v4/locales/zh-CN.cjs +136 -0
  690. package/node_modules/zod/v4/locales/zh-CN.d.cts +5 -0
  691. package/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
  692. package/node_modules/zod/v4/locales/zh-CN.js +109 -0
  693. package/node_modules/zod/v4/locales/zh-TW.cjs +134 -0
  694. package/node_modules/zod/v4/locales/zh-TW.d.cts +5 -0
  695. package/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
  696. package/node_modules/zod/v4/locales/zh-TW.js +107 -0
  697. package/node_modules/zod/v4/mini/checks.cjs +34 -0
  698. package/node_modules/zod/v4/mini/checks.d.cts +1 -0
  699. package/node_modules/zod/v4/mini/checks.d.ts +1 -0
  700. package/node_modules/zod/v4/mini/checks.js +1 -0
  701. package/node_modules/zod/v4/mini/coerce.cjs +52 -0
  702. package/node_modules/zod/v4/mini/coerce.d.cts +7 -0
  703. package/node_modules/zod/v4/mini/coerce.d.ts +7 -0
  704. package/node_modules/zod/v4/mini/coerce.js +22 -0
  705. package/node_modules/zod/v4/mini/external.cjs +63 -0
  706. package/node_modules/zod/v4/mini/external.d.cts +13 -0
  707. package/node_modules/zod/v4/mini/external.d.ts +13 -0
  708. package/node_modules/zod/v4/mini/external.js +14 -0
  709. package/node_modules/zod/v4/mini/index.cjs +32 -0
  710. package/node_modules/zod/v4/mini/index.d.cts +3 -0
  711. package/node_modules/zod/v4/mini/index.d.ts +3 -0
  712. package/node_modules/zod/v4/mini/index.js +3 -0
  713. package/node_modules/zod/v4/mini/iso.cjs +64 -0
  714. package/node_modules/zod/v4/mini/iso.d.cts +22 -0
  715. package/node_modules/zod/v4/mini/iso.d.ts +22 -0
  716. package/node_modules/zod/v4/mini/iso.js +34 -0
  717. package/node_modules/zod/v4/mini/package.json +7 -0
  718. package/node_modules/zod/v4/mini/parse.cjs +16 -0
  719. package/node_modules/zod/v4/mini/parse.d.cts +1 -0
  720. package/node_modules/zod/v4/mini/parse.d.ts +1 -0
  721. package/node_modules/zod/v4/mini/parse.js +1 -0
  722. package/node_modules/zod/v4/mini/schemas.cjs +1083 -0
  723. package/node_modules/zod/v4/mini/schemas.d.cts +445 -0
  724. package/node_modules/zod/v4/mini/schemas.d.ts +445 -0
  725. package/node_modules/zod/v4/mini/schemas.js +961 -0
  726. package/node_modules/zod/v4/package.json +7 -0
  727. package/node_modules/zod/v4-mini/index.cjs +32 -0
  728. package/node_modules/zod/v4-mini/index.d.cts +3 -0
  729. package/node_modules/zod/v4-mini/index.d.ts +3 -0
  730. package/node_modules/zod/v4-mini/index.js +3 -0
  731. package/node_modules/zod/v4-mini/package.json +7 -0
  732. package/package.json +1 -1
  733. package/src/__tests__/upgrade-local.test.ts +443 -0
  734. package/src/commands/client.ts +277 -100
  735. package/src/commands/exec.ts +2 -2
  736. package/src/commands/flags.ts +1 -1
  737. package/src/commands/logs.ts +1 -2
  738. package/src/commands/ps.ts +1 -2
  739. package/src/commands/retire.ts +1 -2
  740. package/src/commands/roadmap.ts +8 -10
  741. package/src/commands/rollback.ts +1 -2
  742. package/src/commands/ssh.ts +1 -2
  743. package/src/commands/teleport.ts +6 -7
  744. package/src/commands/upgrade.ts +351 -25
  745. package/src/lib/assistant-config.ts +56 -48
  746. package/src/lib/confirm-action.ts +4 -0
  747. package/src/lib/local.ts +204 -24
  748. package/src/lib/terminal-session.ts +2 -2
  749. package/src/lib/upgrade-lifecycle.ts +29 -16
  750. package/src/shared/provider-env-vars.ts +1 -0
@@ -0,0 +1,2270 @@
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.$ZodTuple = exports.$ZodIntersection = exports.$ZodDiscriminatedUnion = exports.$ZodXor = exports.$ZodUnion = exports.$ZodObjectJIT = 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.$ZodMAC = exports.$ZodIPv6 = exports.$ZodIPv4 = exports.$ZodISODuration = exports.$ZodISOTime = exports.$ZodISODate = exports.$ZodISODateTime = exports.$ZodKSUID = exports.$ZodXID = exports.$ZodULID = exports.$ZodCUID2 = exports.$ZodCUID = exports.$ZodNanoID = exports.$ZodEmoji = exports.$ZodURL = exports.$ZodEmail = exports.$ZodUUID = exports.$ZodGUID = exports.$ZodStringFormat = exports.$ZodString = exports.clone = exports.$ZodType = void 0;
27
+ exports.$ZodCustom = exports.$ZodLazy = exports.$ZodPromise = exports.$ZodFunction = exports.$ZodTemplateLiteral = exports.$ZodReadonly = exports.$ZodPreprocess = exports.$ZodCodec = exports.$ZodPipe = exports.$ZodNaN = exports.$ZodCatch = exports.$ZodSuccess = exports.$ZodNonOptional = exports.$ZodPrefault = exports.$ZodDefault = exports.$ZodNullable = exports.$ZodExactOptional = exports.$ZodOptional = exports.$ZodTransform = exports.$ZodFile = exports.$ZodLiteral = exports.$ZodEnum = exports.$ZodSet = exports.$ZodMap = exports.$ZodRecord = void 0;
28
+ exports.isValidBase64 = isValidBase64;
29
+ exports.isValidBase64URL = isValidBase64URL;
30
+ exports.isValidJWT = isValidJWT;
31
+ const checks = __importStar(require("./checks.cjs"));
32
+ const core = __importStar(require("./core.cjs"));
33
+ const doc_js_1 = require("./doc.cjs");
34
+ const parse_js_1 = require("./parse.cjs");
35
+ const regexes = __importStar(require("./regexes.cjs"));
36
+ const util = __importStar(require("./util.cjs"));
37
+ const versions_js_1 = require("./versions.cjs");
38
+ exports.$ZodType = core.$constructor("$ZodType", (inst, def) => {
39
+ var _a;
40
+ inst ?? (inst = {});
41
+ inst._zod.def = def; // set _def property
42
+ inst._zod.bag = inst._zod.bag || {}; // initialize _bag object
43
+ inst._zod.version = versions_js_1.version;
44
+ const checks = [...(inst._zod.def.checks ?? [])];
45
+ // if inst is itself a checks.$ZodCheck, run it as a check
46
+ if (inst._zod.traits.has("$ZodCheck")) {
47
+ checks.unshift(inst);
48
+ }
49
+ for (const ch of checks) {
50
+ for (const fn of ch._zod.onattach) {
51
+ fn(inst);
52
+ }
53
+ }
54
+ if (checks.length === 0) {
55
+ // deferred initializer
56
+ // inst._zod.parse is not yet defined
57
+ (_a = inst._zod).deferred ?? (_a.deferred = []);
58
+ inst._zod.deferred?.push(() => {
59
+ inst._zod.run = inst._zod.parse;
60
+ });
61
+ }
62
+ else {
63
+ const runChecks = (payload, checks, ctx) => {
64
+ let isAborted = util.aborted(payload);
65
+ let asyncResult;
66
+ for (const ch of checks) {
67
+ if (ch._zod.def.when) {
68
+ if (util.explicitlyAborted(payload))
69
+ continue;
70
+ const shouldRun = ch._zod.def.when(payload);
71
+ if (!shouldRun)
72
+ continue;
73
+ }
74
+ else if (isAborted) {
75
+ continue;
76
+ }
77
+ const currLen = payload.issues.length;
78
+ const _ = ch._zod.check(payload);
79
+ if (_ instanceof Promise && ctx?.async === false) {
80
+ throw new core.$ZodAsyncError();
81
+ }
82
+ if (asyncResult || _ instanceof Promise) {
83
+ asyncResult = (asyncResult ?? Promise.resolve()).then(async () => {
84
+ await _;
85
+ const nextLen = payload.issues.length;
86
+ if (nextLen === currLen)
87
+ return;
88
+ if (!isAborted)
89
+ isAborted = util.aborted(payload, currLen);
90
+ });
91
+ }
92
+ else {
93
+ const nextLen = payload.issues.length;
94
+ if (nextLen === currLen)
95
+ continue;
96
+ if (!isAborted)
97
+ isAborted = util.aborted(payload, currLen);
98
+ }
99
+ }
100
+ if (asyncResult) {
101
+ return asyncResult.then(() => {
102
+ return payload;
103
+ });
104
+ }
105
+ return payload;
106
+ };
107
+ const handleCanaryResult = (canary, payload, ctx) => {
108
+ // abort if the canary is aborted
109
+ if (util.aborted(canary)) {
110
+ canary.aborted = true;
111
+ return canary;
112
+ }
113
+ // run checks first, then
114
+ const checkResult = runChecks(payload, checks, ctx);
115
+ if (checkResult instanceof Promise) {
116
+ if (ctx.async === false)
117
+ throw new core.$ZodAsyncError();
118
+ return checkResult.then((checkResult) => inst._zod.parse(checkResult, ctx));
119
+ }
120
+ return inst._zod.parse(checkResult, ctx);
121
+ };
122
+ inst._zod.run = (payload, ctx) => {
123
+ if (ctx.skipChecks) {
124
+ return inst._zod.parse(payload, ctx);
125
+ }
126
+ if (ctx.direction === "backward") {
127
+ // run canary
128
+ // initial pass (no checks)
129
+ const canary = inst._zod.parse({ value: payload.value, issues: [] }, { ...ctx, skipChecks: true });
130
+ if (canary instanceof Promise) {
131
+ return canary.then((canary) => {
132
+ return handleCanaryResult(canary, payload, ctx);
133
+ });
134
+ }
135
+ return handleCanaryResult(canary, payload, ctx);
136
+ }
137
+ // forward
138
+ const result = inst._zod.parse(payload, ctx);
139
+ if (result instanceof Promise) {
140
+ if (ctx.async === false)
141
+ throw new core.$ZodAsyncError();
142
+ return result.then((result) => runChecks(result, checks, ctx));
143
+ }
144
+ return runChecks(result, checks, ctx);
145
+ };
146
+ }
147
+ // Lazy initialize ~standard to avoid creating objects for every schema
148
+ util.defineLazy(inst, "~standard", () => ({
149
+ validate: (value) => {
150
+ try {
151
+ const r = (0, parse_js_1.safeParse)(inst, value);
152
+ return r.success ? { value: r.data } : { issues: r.error?.issues };
153
+ }
154
+ catch (_) {
155
+ return (0, parse_js_1.safeParseAsync)(inst, value).then((r) => (r.success ? { value: r.data } : { issues: r.error?.issues }));
156
+ }
157
+ },
158
+ vendor: "zod",
159
+ version: 1,
160
+ }));
161
+ });
162
+ var util_js_1 = require("./util.cjs");
163
+ Object.defineProperty(exports, "clone", { enumerable: true, get: function () { return util_js_1.clone; } });
164
+ exports.$ZodString = core.$constructor("$ZodString", (inst, def) => {
165
+ exports.$ZodType.init(inst, def);
166
+ inst._zod.pattern = [...(inst?._zod.bag?.patterns ?? [])].pop() ?? regexes.string(inst._zod.bag);
167
+ inst._zod.parse = (payload, _) => {
168
+ if (def.coerce)
169
+ try {
170
+ payload.value = String(payload.value);
171
+ }
172
+ catch (_) { }
173
+ if (typeof payload.value === "string")
174
+ return payload;
175
+ payload.issues.push({
176
+ expected: "string",
177
+ code: "invalid_type",
178
+ input: payload.value,
179
+ inst,
180
+ });
181
+ return payload;
182
+ };
183
+ });
184
+ exports.$ZodStringFormat = core.$constructor("$ZodStringFormat", (inst, def) => {
185
+ // check initialization must come first
186
+ checks.$ZodCheckStringFormat.init(inst, def);
187
+ exports.$ZodString.init(inst, def);
188
+ });
189
+ exports.$ZodGUID = core.$constructor("$ZodGUID", (inst, def) => {
190
+ def.pattern ?? (def.pattern = regexes.guid);
191
+ exports.$ZodStringFormat.init(inst, def);
192
+ });
193
+ exports.$ZodUUID = core.$constructor("$ZodUUID", (inst, def) => {
194
+ if (def.version) {
195
+ const versionMap = {
196
+ v1: 1,
197
+ v2: 2,
198
+ v3: 3,
199
+ v4: 4,
200
+ v5: 5,
201
+ v6: 6,
202
+ v7: 7,
203
+ v8: 8,
204
+ };
205
+ const v = versionMap[def.version];
206
+ if (v === undefined)
207
+ throw new Error(`Invalid UUID version: "${def.version}"`);
208
+ def.pattern ?? (def.pattern = regexes.uuid(v));
209
+ }
210
+ else
211
+ def.pattern ?? (def.pattern = regexes.uuid());
212
+ exports.$ZodStringFormat.init(inst, def);
213
+ });
214
+ exports.$ZodEmail = core.$constructor("$ZodEmail", (inst, def) => {
215
+ def.pattern ?? (def.pattern = regexes.email);
216
+ exports.$ZodStringFormat.init(inst, def);
217
+ });
218
+ exports.$ZodURL = core.$constructor("$ZodURL", (inst, def) => {
219
+ exports.$ZodStringFormat.init(inst, def);
220
+ inst._zod.check = (payload) => {
221
+ try {
222
+ // Trim whitespace from input
223
+ const trimmed = payload.value.trim();
224
+ // When normalize is off, require :// for http/https URLs
225
+ // This prevents strings like "http:example.com" or "https:/path" from being silently accepted
226
+ if (!def.normalize && def.protocol?.source === regexes.httpProtocol.source) {
227
+ if (!/^https?:\/\//i.test(trimmed)) {
228
+ payload.issues.push({
229
+ code: "invalid_format",
230
+ format: "url",
231
+ note: "Invalid URL format",
232
+ input: payload.value,
233
+ inst,
234
+ continue: !def.abort,
235
+ });
236
+ return;
237
+ }
238
+ }
239
+ // @ts-ignore
240
+ const url = new URL(trimmed);
241
+ if (def.hostname) {
242
+ def.hostname.lastIndex = 0;
243
+ if (!def.hostname.test(url.hostname)) {
244
+ payload.issues.push({
245
+ code: "invalid_format",
246
+ format: "url",
247
+ note: "Invalid hostname",
248
+ pattern: def.hostname.source,
249
+ input: payload.value,
250
+ inst,
251
+ continue: !def.abort,
252
+ });
253
+ }
254
+ }
255
+ if (def.protocol) {
256
+ def.protocol.lastIndex = 0;
257
+ if (!def.protocol.test(url.protocol.endsWith(":") ? url.protocol.slice(0, -1) : url.protocol)) {
258
+ payload.issues.push({
259
+ code: "invalid_format",
260
+ format: "url",
261
+ note: "Invalid protocol",
262
+ pattern: def.protocol.source,
263
+ input: payload.value,
264
+ inst,
265
+ continue: !def.abort,
266
+ });
267
+ }
268
+ }
269
+ // Set the output value based on normalize flag
270
+ if (def.normalize) {
271
+ // Use normalized URL
272
+ payload.value = url.href;
273
+ }
274
+ else {
275
+ // Preserve the original input (trimmed)
276
+ payload.value = trimmed;
277
+ }
278
+ return;
279
+ }
280
+ catch (_) {
281
+ payload.issues.push({
282
+ code: "invalid_format",
283
+ format: "url",
284
+ input: payload.value,
285
+ inst,
286
+ continue: !def.abort,
287
+ });
288
+ }
289
+ };
290
+ });
291
+ exports.$ZodEmoji = core.$constructor("$ZodEmoji", (inst, def) => {
292
+ def.pattern ?? (def.pattern = regexes.emoji());
293
+ exports.$ZodStringFormat.init(inst, def);
294
+ });
295
+ exports.$ZodNanoID = core.$constructor("$ZodNanoID", (inst, def) => {
296
+ def.pattern ?? (def.pattern = regexes.nanoid);
297
+ exports.$ZodStringFormat.init(inst, def);
298
+ });
299
+ /**
300
+ * @deprecated CUID v1 is deprecated by its authors due to information leakage
301
+ * (timestamps embedded in the id). Use {@link $ZodCUID2} instead.
302
+ * See https://github.com/paralleldrive/cuid.
303
+ */
304
+ exports.$ZodCUID = core.$constructor("$ZodCUID", (inst, def) => {
305
+ def.pattern ?? (def.pattern = regexes.cuid);
306
+ exports.$ZodStringFormat.init(inst, def);
307
+ });
308
+ exports.$ZodCUID2 = core.$constructor("$ZodCUID2", (inst, def) => {
309
+ def.pattern ?? (def.pattern = regexes.cuid2);
310
+ exports.$ZodStringFormat.init(inst, def);
311
+ });
312
+ exports.$ZodULID = core.$constructor("$ZodULID", (inst, def) => {
313
+ def.pattern ?? (def.pattern = regexes.ulid);
314
+ exports.$ZodStringFormat.init(inst, def);
315
+ });
316
+ exports.$ZodXID = core.$constructor("$ZodXID", (inst, def) => {
317
+ def.pattern ?? (def.pattern = regexes.xid);
318
+ exports.$ZodStringFormat.init(inst, def);
319
+ });
320
+ exports.$ZodKSUID = core.$constructor("$ZodKSUID", (inst, def) => {
321
+ def.pattern ?? (def.pattern = regexes.ksuid);
322
+ exports.$ZodStringFormat.init(inst, def);
323
+ });
324
+ exports.$ZodISODateTime = core.$constructor("$ZodISODateTime", (inst, def) => {
325
+ def.pattern ?? (def.pattern = regexes.datetime(def));
326
+ exports.$ZodStringFormat.init(inst, def);
327
+ });
328
+ exports.$ZodISODate = core.$constructor("$ZodISODate", (inst, def) => {
329
+ def.pattern ?? (def.pattern = regexes.date);
330
+ exports.$ZodStringFormat.init(inst, def);
331
+ });
332
+ exports.$ZodISOTime = core.$constructor("$ZodISOTime", (inst, def) => {
333
+ def.pattern ?? (def.pattern = regexes.time(def));
334
+ exports.$ZodStringFormat.init(inst, def);
335
+ });
336
+ exports.$ZodISODuration = core.$constructor("$ZodISODuration", (inst, def) => {
337
+ def.pattern ?? (def.pattern = regexes.duration);
338
+ exports.$ZodStringFormat.init(inst, def);
339
+ });
340
+ exports.$ZodIPv4 = core.$constructor("$ZodIPv4", (inst, def) => {
341
+ def.pattern ?? (def.pattern = regexes.ipv4);
342
+ exports.$ZodStringFormat.init(inst, def);
343
+ inst._zod.bag.format = `ipv4`;
344
+ });
345
+ exports.$ZodIPv6 = core.$constructor("$ZodIPv6", (inst, def) => {
346
+ def.pattern ?? (def.pattern = regexes.ipv6);
347
+ exports.$ZodStringFormat.init(inst, def);
348
+ inst._zod.bag.format = `ipv6`;
349
+ inst._zod.check = (payload) => {
350
+ try {
351
+ // @ts-ignore
352
+ new URL(`http://[${payload.value}]`);
353
+ // return;
354
+ }
355
+ catch {
356
+ payload.issues.push({
357
+ code: "invalid_format",
358
+ format: "ipv6",
359
+ input: payload.value,
360
+ inst,
361
+ continue: !def.abort,
362
+ });
363
+ }
364
+ };
365
+ });
366
+ exports.$ZodMAC = core.$constructor("$ZodMAC", (inst, def) => {
367
+ def.pattern ?? (def.pattern = regexes.mac(def.delimiter));
368
+ exports.$ZodStringFormat.init(inst, def);
369
+ inst._zod.bag.format = `mac`;
370
+ });
371
+ exports.$ZodCIDRv4 = core.$constructor("$ZodCIDRv4", (inst, def) => {
372
+ def.pattern ?? (def.pattern = regexes.cidrv4);
373
+ exports.$ZodStringFormat.init(inst, def);
374
+ });
375
+ exports.$ZodCIDRv6 = core.$constructor("$ZodCIDRv6", (inst, def) => {
376
+ def.pattern ?? (def.pattern = regexes.cidrv6); // not used for validation
377
+ exports.$ZodStringFormat.init(inst, def);
378
+ inst._zod.check = (payload) => {
379
+ const parts = payload.value.split("/");
380
+ try {
381
+ if (parts.length !== 2)
382
+ throw new Error();
383
+ const [address, prefix] = parts;
384
+ if (!prefix)
385
+ throw new Error();
386
+ const prefixNum = Number(prefix);
387
+ if (`${prefixNum}` !== prefix)
388
+ throw new Error();
389
+ if (prefixNum < 0 || prefixNum > 128)
390
+ throw new Error();
391
+ // @ts-ignore
392
+ new URL(`http://[${address}]`);
393
+ }
394
+ catch {
395
+ payload.issues.push({
396
+ code: "invalid_format",
397
+ format: "cidrv6",
398
+ input: payload.value,
399
+ inst,
400
+ continue: !def.abort,
401
+ });
402
+ }
403
+ };
404
+ });
405
+ ////////////////////////////// ZodBase64 //////////////////////////////
406
+ function isValidBase64(data) {
407
+ if (data === "")
408
+ return true;
409
+ // atob ignores whitespace, so reject it up front.
410
+ if (/\s/.test(data))
411
+ return false;
412
+ if (data.length % 4 !== 0)
413
+ return false;
414
+ try {
415
+ // @ts-ignore
416
+ atob(data);
417
+ return true;
418
+ }
419
+ catch {
420
+ return false;
421
+ }
422
+ }
423
+ exports.$ZodBase64 = core.$constructor("$ZodBase64", (inst, def) => {
424
+ def.pattern ?? (def.pattern = regexes.base64);
425
+ exports.$ZodStringFormat.init(inst, def);
426
+ inst._zod.bag.contentEncoding = "base64";
427
+ inst._zod.check = (payload) => {
428
+ if (isValidBase64(payload.value))
429
+ return;
430
+ payload.issues.push({
431
+ code: "invalid_format",
432
+ format: "base64",
433
+ input: payload.value,
434
+ inst,
435
+ continue: !def.abort,
436
+ });
437
+ };
438
+ });
439
+ ////////////////////////////// ZodBase64 //////////////////////////////
440
+ function isValidBase64URL(data) {
441
+ if (!regexes.base64url.test(data))
442
+ return false;
443
+ const base64 = data.replace(/[-_]/g, (c) => (c === "-" ? "+" : "/"));
444
+ const padded = base64.padEnd(Math.ceil(base64.length / 4) * 4, "=");
445
+ return isValidBase64(padded);
446
+ }
447
+ exports.$ZodBase64URL = core.$constructor("$ZodBase64URL", (inst, def) => {
448
+ def.pattern ?? (def.pattern = regexes.base64url);
449
+ exports.$ZodStringFormat.init(inst, def);
450
+ inst._zod.bag.contentEncoding = "base64url";
451
+ inst._zod.check = (payload) => {
452
+ if (isValidBase64URL(payload.value))
453
+ return;
454
+ payload.issues.push({
455
+ code: "invalid_format",
456
+ format: "base64url",
457
+ input: payload.value,
458
+ inst,
459
+ continue: !def.abort,
460
+ });
461
+ };
462
+ });
463
+ exports.$ZodE164 = core.$constructor("$ZodE164", (inst, def) => {
464
+ def.pattern ?? (def.pattern = regexes.e164);
465
+ exports.$ZodStringFormat.init(inst, def);
466
+ });
467
+ ////////////////////////////// ZodJWT //////////////////////////////
468
+ function isValidJWT(token, algorithm = null) {
469
+ try {
470
+ const tokensParts = token.split(".");
471
+ if (tokensParts.length !== 3)
472
+ return false;
473
+ const [header] = tokensParts;
474
+ if (!header)
475
+ return false;
476
+ // @ts-ignore
477
+ const parsedHeader = JSON.parse(atob(header));
478
+ if ("typ" in parsedHeader && parsedHeader?.typ !== "JWT")
479
+ return false;
480
+ if (!parsedHeader.alg)
481
+ return false;
482
+ if (algorithm && (!("alg" in parsedHeader) || parsedHeader.alg !== algorithm))
483
+ return false;
484
+ return true;
485
+ }
486
+ catch {
487
+ return false;
488
+ }
489
+ }
490
+ exports.$ZodJWT = core.$constructor("$ZodJWT", (inst, def) => {
491
+ exports.$ZodStringFormat.init(inst, def);
492
+ inst._zod.check = (payload) => {
493
+ if (isValidJWT(payload.value, def.alg))
494
+ return;
495
+ payload.issues.push({
496
+ code: "invalid_format",
497
+ format: "jwt",
498
+ input: payload.value,
499
+ inst,
500
+ continue: !def.abort,
501
+ });
502
+ };
503
+ });
504
+ exports.$ZodCustomStringFormat = core.$constructor("$ZodCustomStringFormat", (inst, def) => {
505
+ exports.$ZodStringFormat.init(inst, def);
506
+ inst._zod.check = (payload) => {
507
+ if (def.fn(payload.value))
508
+ return;
509
+ payload.issues.push({
510
+ code: "invalid_format",
511
+ format: def.format,
512
+ input: payload.value,
513
+ inst,
514
+ continue: !def.abort,
515
+ });
516
+ };
517
+ });
518
+ exports.$ZodNumber = core.$constructor("$ZodNumber", (inst, def) => {
519
+ exports.$ZodType.init(inst, def);
520
+ inst._zod.pattern = inst._zod.bag.pattern ?? regexes.number;
521
+ inst._zod.parse = (payload, _ctx) => {
522
+ if (def.coerce)
523
+ try {
524
+ payload.value = Number(payload.value);
525
+ }
526
+ catch (_) { }
527
+ const input = payload.value;
528
+ if (typeof input === "number" && !Number.isNaN(input) && Number.isFinite(input)) {
529
+ return payload;
530
+ }
531
+ const received = typeof input === "number"
532
+ ? Number.isNaN(input)
533
+ ? "NaN"
534
+ : !Number.isFinite(input)
535
+ ? "Infinity"
536
+ : undefined
537
+ : undefined;
538
+ payload.issues.push({
539
+ expected: "number",
540
+ code: "invalid_type",
541
+ input,
542
+ inst,
543
+ ...(received ? { received } : {}),
544
+ });
545
+ return payload;
546
+ };
547
+ });
548
+ exports.$ZodNumberFormat = core.$constructor("$ZodNumberFormat", (inst, def) => {
549
+ checks.$ZodCheckNumberFormat.init(inst, def);
550
+ exports.$ZodNumber.init(inst, def); // no format checks
551
+ });
552
+ exports.$ZodBoolean = core.$constructor("$ZodBoolean", (inst, def) => {
553
+ exports.$ZodType.init(inst, def);
554
+ inst._zod.pattern = regexes.boolean;
555
+ inst._zod.parse = (payload, _ctx) => {
556
+ if (def.coerce)
557
+ try {
558
+ payload.value = Boolean(payload.value);
559
+ }
560
+ catch (_) { }
561
+ const input = payload.value;
562
+ if (typeof input === "boolean")
563
+ return payload;
564
+ payload.issues.push({
565
+ expected: "boolean",
566
+ code: "invalid_type",
567
+ input,
568
+ inst,
569
+ });
570
+ return payload;
571
+ };
572
+ });
573
+ exports.$ZodBigInt = core.$constructor("$ZodBigInt", (inst, def) => {
574
+ exports.$ZodType.init(inst, def);
575
+ inst._zod.pattern = regexes.bigint;
576
+ inst._zod.parse = (payload, _ctx) => {
577
+ if (def.coerce)
578
+ try {
579
+ payload.value = BigInt(payload.value);
580
+ }
581
+ catch (_) { }
582
+ if (typeof payload.value === "bigint")
583
+ return payload;
584
+ payload.issues.push({
585
+ expected: "bigint",
586
+ code: "invalid_type",
587
+ input: payload.value,
588
+ inst,
589
+ });
590
+ return payload;
591
+ };
592
+ });
593
+ exports.$ZodBigIntFormat = core.$constructor("$ZodBigIntFormat", (inst, def) => {
594
+ checks.$ZodCheckBigIntFormat.init(inst, def);
595
+ exports.$ZodBigInt.init(inst, def); // no format checks
596
+ });
597
+ exports.$ZodSymbol = core.$constructor("$ZodSymbol", (inst, def) => {
598
+ exports.$ZodType.init(inst, def);
599
+ inst._zod.parse = (payload, _ctx) => {
600
+ const input = payload.value;
601
+ if (typeof input === "symbol")
602
+ return payload;
603
+ payload.issues.push({
604
+ expected: "symbol",
605
+ code: "invalid_type",
606
+ input,
607
+ inst,
608
+ });
609
+ return payload;
610
+ };
611
+ });
612
+ exports.$ZodUndefined = core.$constructor("$ZodUndefined", (inst, def) => {
613
+ exports.$ZodType.init(inst, def);
614
+ inst._zod.pattern = regexes.undefined;
615
+ inst._zod.values = new Set([undefined]);
616
+ inst._zod.parse = (payload, _ctx) => {
617
+ const input = payload.value;
618
+ if (typeof input === "undefined")
619
+ return payload;
620
+ payload.issues.push({
621
+ expected: "undefined",
622
+ code: "invalid_type",
623
+ input,
624
+ inst,
625
+ });
626
+ return payload;
627
+ };
628
+ });
629
+ exports.$ZodNull = core.$constructor("$ZodNull", (inst, def) => {
630
+ exports.$ZodType.init(inst, def);
631
+ inst._zod.pattern = regexes.null;
632
+ inst._zod.values = new Set([null]);
633
+ inst._zod.parse = (payload, _ctx) => {
634
+ const input = payload.value;
635
+ if (input === null)
636
+ return payload;
637
+ payload.issues.push({
638
+ expected: "null",
639
+ code: "invalid_type",
640
+ input,
641
+ inst,
642
+ });
643
+ return payload;
644
+ };
645
+ });
646
+ exports.$ZodAny = core.$constructor("$ZodAny", (inst, def) => {
647
+ exports.$ZodType.init(inst, def);
648
+ inst._zod.parse = (payload) => payload;
649
+ });
650
+ exports.$ZodUnknown = core.$constructor("$ZodUnknown", (inst, def) => {
651
+ exports.$ZodType.init(inst, def);
652
+ inst._zod.parse = (payload) => payload;
653
+ });
654
+ exports.$ZodNever = core.$constructor("$ZodNever", (inst, def) => {
655
+ exports.$ZodType.init(inst, def);
656
+ inst._zod.parse = (payload, _ctx) => {
657
+ payload.issues.push({
658
+ expected: "never",
659
+ code: "invalid_type",
660
+ input: payload.value,
661
+ inst,
662
+ });
663
+ return payload;
664
+ };
665
+ });
666
+ exports.$ZodVoid = core.$constructor("$ZodVoid", (inst, def) => {
667
+ exports.$ZodType.init(inst, def);
668
+ inst._zod.parse = (payload, _ctx) => {
669
+ const input = payload.value;
670
+ if (typeof input === "undefined")
671
+ return payload;
672
+ payload.issues.push({
673
+ expected: "void",
674
+ code: "invalid_type",
675
+ input,
676
+ inst,
677
+ });
678
+ return payload;
679
+ };
680
+ });
681
+ exports.$ZodDate = core.$constructor("$ZodDate", (inst, def) => {
682
+ exports.$ZodType.init(inst, def);
683
+ inst._zod.parse = (payload, _ctx) => {
684
+ if (def.coerce) {
685
+ try {
686
+ payload.value = new Date(payload.value);
687
+ }
688
+ catch (_err) { }
689
+ }
690
+ const input = payload.value;
691
+ const isDate = input instanceof Date;
692
+ const isValidDate = isDate && !Number.isNaN(input.getTime());
693
+ if (isValidDate)
694
+ return payload;
695
+ payload.issues.push({
696
+ expected: "date",
697
+ code: "invalid_type",
698
+ input,
699
+ ...(isDate ? { received: "Invalid Date" } : {}),
700
+ inst,
701
+ });
702
+ return payload;
703
+ };
704
+ });
705
+ function handleArrayResult(result, final, index) {
706
+ if (result.issues.length) {
707
+ final.issues.push(...util.prefixIssues(index, result.issues));
708
+ }
709
+ final.value[index] = result.value;
710
+ }
711
+ exports.$ZodArray = core.$constructor("$ZodArray", (inst, def) => {
712
+ exports.$ZodType.init(inst, def);
713
+ inst._zod.parse = (payload, ctx) => {
714
+ const input = payload.value;
715
+ if (!Array.isArray(input)) {
716
+ payload.issues.push({
717
+ expected: "array",
718
+ code: "invalid_type",
719
+ input,
720
+ inst,
721
+ });
722
+ return payload;
723
+ }
724
+ payload.value = Array(input.length);
725
+ const proms = [];
726
+ for (let i = 0; i < input.length; i++) {
727
+ const item = input[i];
728
+ const result = def.element._zod.run({
729
+ value: item,
730
+ issues: [],
731
+ }, ctx);
732
+ if (result instanceof Promise) {
733
+ proms.push(result.then((result) => handleArrayResult(result, payload, i)));
734
+ }
735
+ else {
736
+ handleArrayResult(result, payload, i);
737
+ }
738
+ }
739
+ if (proms.length) {
740
+ return Promise.all(proms).then(() => payload);
741
+ }
742
+ return payload; //handleArrayResultsAsync(parseResults, final);
743
+ };
744
+ });
745
+ function handlePropertyResult(result, final, key, input, isOptionalIn, isOptionalOut) {
746
+ const isPresent = key in input;
747
+ if (result.issues.length) {
748
+ // For optional-in/out schemas, ignore errors on absent keys.
749
+ if (isOptionalIn && isOptionalOut && !isPresent) {
750
+ return;
751
+ }
752
+ final.issues.push(...util.prefixIssues(key, result.issues));
753
+ }
754
+ if (!isPresent && !isOptionalIn) {
755
+ if (!result.issues.length) {
756
+ final.issues.push({
757
+ code: "invalid_type",
758
+ expected: "nonoptional",
759
+ input: undefined,
760
+ path: [key],
761
+ });
762
+ }
763
+ return;
764
+ }
765
+ if (result.value === undefined) {
766
+ if (isPresent) {
767
+ final.value[key] = undefined;
768
+ }
769
+ }
770
+ else {
771
+ final.value[key] = result.value;
772
+ }
773
+ }
774
+ function normalizeDef(def) {
775
+ const keys = Object.keys(def.shape);
776
+ for (const k of keys) {
777
+ if (!def.shape?.[k]?._zod?.traits?.has("$ZodType")) {
778
+ throw new Error(`Invalid element at key "${k}": expected a Zod schema`);
779
+ }
780
+ }
781
+ const okeys = util.optionalKeys(def.shape);
782
+ return {
783
+ ...def,
784
+ keys,
785
+ keySet: new Set(keys),
786
+ numKeys: keys.length,
787
+ optionalKeys: new Set(okeys),
788
+ };
789
+ }
790
+ function handleCatchall(proms, input, payload, ctx, def, inst) {
791
+ const unrecognized = [];
792
+ const keySet = def.keySet;
793
+ const _catchall = def.catchall._zod;
794
+ const t = _catchall.def.type;
795
+ const isOptionalIn = _catchall.optin === "optional";
796
+ const isOptionalOut = _catchall.optout === "optional";
797
+ for (const key in input) {
798
+ // skip __proto__ so it can't replace the result prototype via the
799
+ // assignment setter on the plain {} we build into
800
+ if (key === "__proto__")
801
+ continue;
802
+ if (keySet.has(key))
803
+ continue;
804
+ if (t === "never") {
805
+ unrecognized.push(key);
806
+ continue;
807
+ }
808
+ const r = _catchall.run({ value: input[key], issues: [] }, ctx);
809
+ if (r instanceof Promise) {
810
+ proms.push(r.then((r) => handlePropertyResult(r, payload, key, input, isOptionalIn, isOptionalOut)));
811
+ }
812
+ else {
813
+ handlePropertyResult(r, payload, key, input, isOptionalIn, isOptionalOut);
814
+ }
815
+ }
816
+ if (unrecognized.length) {
817
+ payload.issues.push({
818
+ code: "unrecognized_keys",
819
+ keys: unrecognized,
820
+ input,
821
+ inst,
822
+ });
823
+ }
824
+ if (!proms.length)
825
+ return payload;
826
+ return Promise.all(proms).then(() => {
827
+ return payload;
828
+ });
829
+ }
830
+ exports.$ZodObject = core.$constructor("$ZodObject", (inst, def) => {
831
+ // requires cast because technically $ZodObject doesn't extend
832
+ exports.$ZodType.init(inst, def);
833
+ // const sh = def.shape;
834
+ const desc = Object.getOwnPropertyDescriptor(def, "shape");
835
+ if (!desc?.get) {
836
+ const sh = def.shape;
837
+ Object.defineProperty(def, "shape", {
838
+ get: () => {
839
+ const newSh = { ...sh };
840
+ Object.defineProperty(def, "shape", {
841
+ value: newSh,
842
+ });
843
+ return newSh;
844
+ },
845
+ });
846
+ }
847
+ const _normalized = util.cached(() => normalizeDef(def));
848
+ util.defineLazy(inst._zod, "propValues", () => {
849
+ const shape = def.shape;
850
+ const propValues = {};
851
+ for (const key in shape) {
852
+ const field = shape[key]._zod;
853
+ if (field.values) {
854
+ propValues[key] ?? (propValues[key] = new Set());
855
+ for (const v of field.values)
856
+ propValues[key].add(v);
857
+ }
858
+ }
859
+ return propValues;
860
+ });
861
+ const isObject = util.isObject;
862
+ const catchall = def.catchall;
863
+ let value;
864
+ inst._zod.parse = (payload, ctx) => {
865
+ value ?? (value = _normalized.value);
866
+ const input = payload.value;
867
+ if (!isObject(input)) {
868
+ payload.issues.push({
869
+ expected: "object",
870
+ code: "invalid_type",
871
+ input,
872
+ inst,
873
+ });
874
+ return payload;
875
+ }
876
+ payload.value = {};
877
+ const proms = [];
878
+ const shape = value.shape;
879
+ for (const key of value.keys) {
880
+ const el = shape[key];
881
+ const isOptionalIn = el._zod.optin === "optional";
882
+ const isOptionalOut = el._zod.optout === "optional";
883
+ const r = el._zod.run({ value: input[key], issues: [] }, ctx);
884
+ if (r instanceof Promise) {
885
+ proms.push(r.then((r) => handlePropertyResult(r, payload, key, input, isOptionalIn, isOptionalOut)));
886
+ }
887
+ else {
888
+ handlePropertyResult(r, payload, key, input, isOptionalIn, isOptionalOut);
889
+ }
890
+ }
891
+ if (!catchall) {
892
+ return proms.length ? Promise.all(proms).then(() => payload) : payload;
893
+ }
894
+ return handleCatchall(proms, input, payload, ctx, _normalized.value, inst);
895
+ };
896
+ });
897
+ exports.$ZodObjectJIT = core.$constructor("$ZodObjectJIT", (inst, def) => {
898
+ // requires cast because technically $ZodObject doesn't extend
899
+ exports.$ZodObject.init(inst, def);
900
+ const superParse = inst._zod.parse;
901
+ const _normalized = util.cached(() => normalizeDef(def));
902
+ const generateFastpass = (shape) => {
903
+ const doc = new doc_js_1.Doc(["shape", "payload", "ctx"]);
904
+ const normalized = _normalized.value;
905
+ const parseStr = (key) => {
906
+ const k = util.esc(key);
907
+ return `shape[${k}]._zod.run({ value: input[${k}], issues: [] }, ctx)`;
908
+ };
909
+ doc.write(`const input = payload.value;`);
910
+ const ids = Object.create(null);
911
+ let counter = 0;
912
+ for (const key of normalized.keys) {
913
+ ids[key] = `key_${counter++}`;
914
+ }
915
+ // A: preserve key order {
916
+ doc.write(`const newResult = {};`);
917
+ for (const key of normalized.keys) {
918
+ const id = ids[key];
919
+ const k = util.esc(key);
920
+ const schema = shape[key];
921
+ const isOptionalIn = schema?._zod?.optin === "optional";
922
+ const isOptionalOut = schema?._zod?.optout === "optional";
923
+ doc.write(`const ${id} = ${parseStr(key)};`);
924
+ if (isOptionalIn && isOptionalOut) {
925
+ // For optional-in/out schemas, ignore errors on absent keys
926
+ doc.write(`
927
+ if (${id}.issues.length) {
928
+ if (${k} in input) {
929
+ payload.issues = payload.issues.concat(${id}.issues.map(iss => ({
930
+ ...iss,
931
+ path: iss.path ? [${k}, ...iss.path] : [${k}]
932
+ })));
933
+ }
934
+ }
935
+
936
+ if (${id}.value === undefined) {
937
+ if (${k} in input) {
938
+ newResult[${k}] = undefined;
939
+ }
940
+ } else {
941
+ newResult[${k}] = ${id}.value;
942
+ }
943
+
944
+ `);
945
+ }
946
+ else if (!isOptionalIn) {
947
+ doc.write(`
948
+ const ${id}_present = ${k} in input;
949
+ if (${id}.issues.length) {
950
+ payload.issues = payload.issues.concat(${id}.issues.map(iss => ({
951
+ ...iss,
952
+ path: iss.path ? [${k}, ...iss.path] : [${k}]
953
+ })));
954
+ }
955
+ if (!${id}_present && !${id}.issues.length) {
956
+ payload.issues.push({
957
+ code: "invalid_type",
958
+ expected: "nonoptional",
959
+ input: undefined,
960
+ path: [${k}]
961
+ });
962
+ }
963
+
964
+ if (${id}_present) {
965
+ if (${id}.value === undefined) {
966
+ newResult[${k}] = undefined;
967
+ } else {
968
+ newResult[${k}] = ${id}.value;
969
+ }
970
+ }
971
+
972
+ `);
973
+ }
974
+ else {
975
+ doc.write(`
976
+ if (${id}.issues.length) {
977
+ payload.issues = payload.issues.concat(${id}.issues.map(iss => ({
978
+ ...iss,
979
+ path: iss.path ? [${k}, ...iss.path] : [${k}]
980
+ })));
981
+ }
982
+
983
+ if (${id}.value === undefined) {
984
+ if (${k} in input) {
985
+ newResult[${k}] = undefined;
986
+ }
987
+ } else {
988
+ newResult[${k}] = ${id}.value;
989
+ }
990
+
991
+ `);
992
+ }
993
+ }
994
+ doc.write(`payload.value = newResult;`);
995
+ doc.write(`return payload;`);
996
+ const fn = doc.compile();
997
+ return (payload, ctx) => fn(shape, payload, ctx);
998
+ };
999
+ let fastpass;
1000
+ const isObject = util.isObject;
1001
+ const jit = !core.globalConfig.jitless;
1002
+ const allowsEval = util.allowsEval;
1003
+ const fastEnabled = jit && allowsEval.value; // && !def.catchall;
1004
+ const catchall = def.catchall;
1005
+ let value;
1006
+ inst._zod.parse = (payload, ctx) => {
1007
+ value ?? (value = _normalized.value);
1008
+ const input = payload.value;
1009
+ if (!isObject(input)) {
1010
+ payload.issues.push({
1011
+ expected: "object",
1012
+ code: "invalid_type",
1013
+ input,
1014
+ inst,
1015
+ });
1016
+ return payload;
1017
+ }
1018
+ if (jit && fastEnabled && ctx?.async === false && ctx.jitless !== true) {
1019
+ // always synchronous
1020
+ if (!fastpass)
1021
+ fastpass = generateFastpass(def.shape);
1022
+ payload = fastpass(payload, ctx);
1023
+ if (!catchall)
1024
+ return payload;
1025
+ return handleCatchall([], input, payload, ctx, value, inst);
1026
+ }
1027
+ return superParse(payload, ctx);
1028
+ };
1029
+ });
1030
+ function handleUnionResults(results, final, inst, ctx) {
1031
+ for (const result of results) {
1032
+ if (result.issues.length === 0) {
1033
+ final.value = result.value;
1034
+ return final;
1035
+ }
1036
+ }
1037
+ const nonaborted = results.filter((r) => !util.aborted(r));
1038
+ if (nonaborted.length === 1) {
1039
+ final.value = nonaborted[0].value;
1040
+ return nonaborted[0];
1041
+ }
1042
+ final.issues.push({
1043
+ code: "invalid_union",
1044
+ input: final.value,
1045
+ inst,
1046
+ errors: results.map((result) => result.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config()))),
1047
+ });
1048
+ return final;
1049
+ }
1050
+ exports.$ZodUnion = core.$constructor("$ZodUnion", (inst, def) => {
1051
+ exports.$ZodType.init(inst, def);
1052
+ util.defineLazy(inst._zod, "optin", () => def.options.some((o) => o._zod.optin === "optional") ? "optional" : undefined);
1053
+ util.defineLazy(inst._zod, "optout", () => def.options.some((o) => o._zod.optout === "optional") ? "optional" : undefined);
1054
+ util.defineLazy(inst._zod, "values", () => {
1055
+ if (def.options.every((o) => o._zod.values)) {
1056
+ return new Set(def.options.flatMap((option) => Array.from(option._zod.values)));
1057
+ }
1058
+ return undefined;
1059
+ });
1060
+ util.defineLazy(inst._zod, "pattern", () => {
1061
+ if (def.options.every((o) => o._zod.pattern)) {
1062
+ const patterns = def.options.map((o) => o._zod.pattern);
1063
+ return new RegExp(`^(${patterns.map((p) => util.cleanRegex(p.source)).join("|")})$`);
1064
+ }
1065
+ return undefined;
1066
+ });
1067
+ const first = def.options.length === 1 ? def.options[0]._zod.run : null;
1068
+ inst._zod.parse = (payload, ctx) => {
1069
+ if (first) {
1070
+ return first(payload, ctx);
1071
+ }
1072
+ let async = false;
1073
+ const results = [];
1074
+ for (const option of def.options) {
1075
+ const result = option._zod.run({
1076
+ value: payload.value,
1077
+ issues: [],
1078
+ }, ctx);
1079
+ if (result instanceof Promise) {
1080
+ results.push(result);
1081
+ async = true;
1082
+ }
1083
+ else {
1084
+ if (result.issues.length === 0)
1085
+ return result;
1086
+ results.push(result);
1087
+ }
1088
+ }
1089
+ if (!async)
1090
+ return handleUnionResults(results, payload, inst, ctx);
1091
+ return Promise.all(results).then((results) => {
1092
+ return handleUnionResults(results, payload, inst, ctx);
1093
+ });
1094
+ };
1095
+ });
1096
+ function handleExclusiveUnionResults(results, final, inst, ctx) {
1097
+ const successes = results.filter((r) => r.issues.length === 0);
1098
+ if (successes.length === 1) {
1099
+ final.value = successes[0].value;
1100
+ return final;
1101
+ }
1102
+ if (successes.length === 0) {
1103
+ // No matches - same as regular union
1104
+ final.issues.push({
1105
+ code: "invalid_union",
1106
+ input: final.value,
1107
+ inst,
1108
+ errors: results.map((result) => result.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config()))),
1109
+ });
1110
+ }
1111
+ else {
1112
+ // Multiple matches - exclusive union failure
1113
+ final.issues.push({
1114
+ code: "invalid_union",
1115
+ input: final.value,
1116
+ inst,
1117
+ errors: [],
1118
+ inclusive: false,
1119
+ });
1120
+ }
1121
+ return final;
1122
+ }
1123
+ exports.$ZodXor = core.$constructor("$ZodXor", (inst, def) => {
1124
+ exports.$ZodUnion.init(inst, def);
1125
+ def.inclusive = false;
1126
+ const first = def.options.length === 1 ? def.options[0]._zod.run : null;
1127
+ inst._zod.parse = (payload, ctx) => {
1128
+ if (first) {
1129
+ return first(payload, ctx);
1130
+ }
1131
+ let async = false;
1132
+ const results = [];
1133
+ for (const option of def.options) {
1134
+ const result = option._zod.run({
1135
+ value: payload.value,
1136
+ issues: [],
1137
+ }, ctx);
1138
+ if (result instanceof Promise) {
1139
+ results.push(result);
1140
+ async = true;
1141
+ }
1142
+ else {
1143
+ results.push(result);
1144
+ }
1145
+ }
1146
+ if (!async)
1147
+ return handleExclusiveUnionResults(results, payload, inst, ctx);
1148
+ return Promise.all(results).then((results) => {
1149
+ return handleExclusiveUnionResults(results, payload, inst, ctx);
1150
+ });
1151
+ };
1152
+ });
1153
+ exports.$ZodDiscriminatedUnion =
1154
+ /*@__PURE__*/
1155
+ core.$constructor("$ZodDiscriminatedUnion", (inst, def) => {
1156
+ def.inclusive = false;
1157
+ exports.$ZodUnion.init(inst, def);
1158
+ const _super = inst._zod.parse;
1159
+ util.defineLazy(inst._zod, "propValues", () => {
1160
+ const propValues = {};
1161
+ for (const option of def.options) {
1162
+ const pv = option._zod.propValues;
1163
+ if (!pv || Object.keys(pv).length === 0)
1164
+ throw new Error(`Invalid discriminated union option at index "${def.options.indexOf(option)}"`);
1165
+ for (const [k, v] of Object.entries(pv)) {
1166
+ if (!propValues[k])
1167
+ propValues[k] = new Set();
1168
+ for (const val of v) {
1169
+ propValues[k].add(val);
1170
+ }
1171
+ }
1172
+ }
1173
+ return propValues;
1174
+ });
1175
+ const disc = util.cached(() => {
1176
+ const opts = def.options;
1177
+ const map = new Map();
1178
+ for (const o of opts) {
1179
+ const values = o._zod.propValues?.[def.discriminator];
1180
+ if (!values || values.size === 0)
1181
+ throw new Error(`Invalid discriminated union option at index "${def.options.indexOf(o)}"`);
1182
+ for (const v of values) {
1183
+ if (map.has(v)) {
1184
+ throw new Error(`Duplicate discriminator value "${String(v)}"`);
1185
+ }
1186
+ map.set(v, o);
1187
+ }
1188
+ }
1189
+ return map;
1190
+ });
1191
+ inst._zod.parse = (payload, ctx) => {
1192
+ const input = payload.value;
1193
+ if (!util.isObject(input)) {
1194
+ payload.issues.push({
1195
+ code: "invalid_type",
1196
+ expected: "object",
1197
+ input,
1198
+ inst,
1199
+ });
1200
+ return payload;
1201
+ }
1202
+ const opt = disc.value.get(input?.[def.discriminator]);
1203
+ if (opt) {
1204
+ return opt._zod.run(payload, ctx);
1205
+ }
1206
+ // Fall back to union matching when the fast discriminator path fails:
1207
+ // - explicitly enabled via unionFallback, or
1208
+ // - during backward direction (encode), since codec-based discriminators
1209
+ // have different values in forward vs backward directions
1210
+ if (def.unionFallback || ctx.direction === "backward") {
1211
+ return _super(payload, ctx);
1212
+ }
1213
+ // no matching discriminator
1214
+ payload.issues.push({
1215
+ code: "invalid_union",
1216
+ errors: [],
1217
+ note: "No matching discriminator",
1218
+ discriminator: def.discriminator,
1219
+ options: Array.from(disc.value.keys()),
1220
+ input,
1221
+ path: [def.discriminator],
1222
+ inst,
1223
+ });
1224
+ return payload;
1225
+ };
1226
+ });
1227
+ exports.$ZodIntersection = core.$constructor("$ZodIntersection", (inst, def) => {
1228
+ exports.$ZodType.init(inst, def);
1229
+ inst._zod.parse = (payload, ctx) => {
1230
+ const input = payload.value;
1231
+ const left = def.left._zod.run({ value: input, issues: [] }, ctx);
1232
+ const right = def.right._zod.run({ value: input, issues: [] }, ctx);
1233
+ const async = left instanceof Promise || right instanceof Promise;
1234
+ if (async) {
1235
+ return Promise.all([left, right]).then(([left, right]) => {
1236
+ return handleIntersectionResults(payload, left, right);
1237
+ });
1238
+ }
1239
+ return handleIntersectionResults(payload, left, right);
1240
+ };
1241
+ });
1242
+ function mergeValues(a, b) {
1243
+ // const aType = parse.t(a);
1244
+ // const bType = parse.t(b);
1245
+ if (a === b) {
1246
+ return { valid: true, data: a };
1247
+ }
1248
+ if (a instanceof Date && b instanceof Date && +a === +b) {
1249
+ return { valid: true, data: a };
1250
+ }
1251
+ if (util.isPlainObject(a) && util.isPlainObject(b)) {
1252
+ const bKeys = Object.keys(b);
1253
+ const sharedKeys = Object.keys(a).filter((key) => bKeys.indexOf(key) !== -1);
1254
+ const newObj = { ...a, ...b };
1255
+ for (const key of sharedKeys) {
1256
+ const sharedValue = mergeValues(a[key], b[key]);
1257
+ if (!sharedValue.valid) {
1258
+ return {
1259
+ valid: false,
1260
+ mergeErrorPath: [key, ...sharedValue.mergeErrorPath],
1261
+ };
1262
+ }
1263
+ newObj[key] = sharedValue.data;
1264
+ }
1265
+ return { valid: true, data: newObj };
1266
+ }
1267
+ if (Array.isArray(a) && Array.isArray(b)) {
1268
+ if (a.length !== b.length) {
1269
+ return { valid: false, mergeErrorPath: [] };
1270
+ }
1271
+ const newArray = [];
1272
+ for (let index = 0; index < a.length; index++) {
1273
+ const itemA = a[index];
1274
+ const itemB = b[index];
1275
+ const sharedValue = mergeValues(itemA, itemB);
1276
+ if (!sharedValue.valid) {
1277
+ return {
1278
+ valid: false,
1279
+ mergeErrorPath: [index, ...sharedValue.mergeErrorPath],
1280
+ };
1281
+ }
1282
+ newArray.push(sharedValue.data);
1283
+ }
1284
+ return { valid: true, data: newArray };
1285
+ }
1286
+ return { valid: false, mergeErrorPath: [] };
1287
+ }
1288
+ function handleIntersectionResults(result, left, right) {
1289
+ // Track which side(s) report each key as unrecognized
1290
+ const unrecKeys = new Map();
1291
+ let unrecIssue;
1292
+ for (const iss of left.issues) {
1293
+ if (iss.code === "unrecognized_keys") {
1294
+ unrecIssue ?? (unrecIssue = iss);
1295
+ for (const k of iss.keys) {
1296
+ if (!unrecKeys.has(k))
1297
+ unrecKeys.set(k, {});
1298
+ unrecKeys.get(k).l = true;
1299
+ }
1300
+ }
1301
+ else {
1302
+ result.issues.push(iss);
1303
+ }
1304
+ }
1305
+ for (const iss of right.issues) {
1306
+ if (iss.code === "unrecognized_keys") {
1307
+ for (const k of iss.keys) {
1308
+ if (!unrecKeys.has(k))
1309
+ unrecKeys.set(k, {});
1310
+ unrecKeys.get(k).r = true;
1311
+ }
1312
+ }
1313
+ else {
1314
+ result.issues.push(iss);
1315
+ }
1316
+ }
1317
+ // Report only keys unrecognized by BOTH sides
1318
+ const bothKeys = [...unrecKeys].filter(([, f]) => f.l && f.r).map(([k]) => k);
1319
+ if (bothKeys.length && unrecIssue) {
1320
+ result.issues.push({ ...unrecIssue, keys: bothKeys });
1321
+ }
1322
+ if (util.aborted(result))
1323
+ return result;
1324
+ const merged = mergeValues(left.value, right.value);
1325
+ if (!merged.valid) {
1326
+ throw new Error(`Unmergable intersection. Error path: ` + `${JSON.stringify(merged.mergeErrorPath)}`);
1327
+ }
1328
+ result.value = merged.data;
1329
+ return result;
1330
+ }
1331
+ exports.$ZodTuple = core.$constructor("$ZodTuple", (inst, def) => {
1332
+ exports.$ZodType.init(inst, def);
1333
+ const items = def.items;
1334
+ inst._zod.parse = (payload, ctx) => {
1335
+ const input = payload.value;
1336
+ if (!Array.isArray(input)) {
1337
+ payload.issues.push({
1338
+ input,
1339
+ inst,
1340
+ expected: "tuple",
1341
+ code: "invalid_type",
1342
+ });
1343
+ return payload;
1344
+ }
1345
+ payload.value = [];
1346
+ const proms = [];
1347
+ const optinStart = getTupleOptStart(items, "optin");
1348
+ const optoutStart = getTupleOptStart(items, "optout");
1349
+ if (!def.rest) {
1350
+ if (input.length < optinStart) {
1351
+ payload.issues.push({
1352
+ code: "too_small",
1353
+ minimum: optinStart,
1354
+ inclusive: true,
1355
+ input,
1356
+ inst,
1357
+ origin: "array",
1358
+ });
1359
+ return payload;
1360
+ }
1361
+ if (input.length > items.length) {
1362
+ payload.issues.push({
1363
+ code: "too_big",
1364
+ maximum: items.length,
1365
+ inclusive: true,
1366
+ input,
1367
+ inst,
1368
+ origin: "array",
1369
+ });
1370
+ }
1371
+ }
1372
+ // Run every item in parallel, collecting results into an indexed
1373
+ // array. The post-processing in `handleTupleResults` walks them in
1374
+ // order so it can decide whether an absent optional-output error can
1375
+ // truncate the tail or must be reported to preserve required output.
1376
+ const itemResults = new Array(items.length);
1377
+ for (let i = 0; i < items.length; i++) {
1378
+ const r = items[i]._zod.run({ value: input[i], issues: [] }, ctx);
1379
+ if (r instanceof Promise) {
1380
+ proms.push(r.then((rr) => {
1381
+ itemResults[i] = rr;
1382
+ }));
1383
+ }
1384
+ else {
1385
+ itemResults[i] = r;
1386
+ }
1387
+ }
1388
+ if (def.rest) {
1389
+ let i = items.length - 1;
1390
+ const rest = input.slice(items.length);
1391
+ for (const el of rest) {
1392
+ i++;
1393
+ const result = def.rest._zod.run({ value: el, issues: [] }, ctx);
1394
+ if (result instanceof Promise) {
1395
+ proms.push(result.then((r) => handleTupleResult(r, payload, i)));
1396
+ }
1397
+ else {
1398
+ handleTupleResult(result, payload, i);
1399
+ }
1400
+ }
1401
+ }
1402
+ if (proms.length) {
1403
+ return Promise.all(proms).then(() => handleTupleResults(itemResults, payload, items, input, optoutStart));
1404
+ }
1405
+ return handleTupleResults(itemResults, payload, items, input, optoutStart);
1406
+ };
1407
+ });
1408
+ function getTupleOptStart(items, key) {
1409
+ for (let i = items.length - 1; i >= 0; i--) {
1410
+ if (items[i]._zod[key] !== "optional")
1411
+ return i + 1;
1412
+ }
1413
+ return 0;
1414
+ }
1415
+ function handleTupleResult(result, final, index) {
1416
+ if (result.issues.length) {
1417
+ final.issues.push(...util.prefixIssues(index, result.issues));
1418
+ }
1419
+ final.value[index] = result.value;
1420
+ }
1421
+ function handleTupleResults(itemResults, final, items, input, optoutStart) {
1422
+ // Walk results in order. Mirror $ZodObject's swallow-on-absent-optional
1423
+ // rule, but only after `optoutStart`: the first index where the output
1424
+ // tuple tail can be absent.
1425
+ for (let i = 0; i < items.length; i++) {
1426
+ const r = itemResults[i];
1427
+ const isPresent = i < input.length;
1428
+ if (r.issues.length) {
1429
+ if (!isPresent && i >= optoutStart) {
1430
+ final.value.length = i;
1431
+ break;
1432
+ }
1433
+ final.issues.push(...util.prefixIssues(i, r.issues));
1434
+ }
1435
+ final.value[i] = r.value;
1436
+ }
1437
+ // Drop trailing slots that produced `undefined` for absent input
1438
+ // (the array analog of an absent optional key on an object). The
1439
+ // `i >= input.length` floor is critical: an explicit `undefined`
1440
+ // *inside* the input must be preserved even when the schema is
1441
+ // optional-out (e.g. `z.string().or(z.undefined())` accepting an
1442
+ // explicit undefined value).
1443
+ for (let i = final.value.length - 1; i >= input.length; i--) {
1444
+ if (items[i]._zod.optout === "optional" && final.value[i] === undefined) {
1445
+ final.value.length = i;
1446
+ }
1447
+ else {
1448
+ break;
1449
+ }
1450
+ }
1451
+ return final;
1452
+ }
1453
+ exports.$ZodRecord = core.$constructor("$ZodRecord", (inst, def) => {
1454
+ exports.$ZodType.init(inst, def);
1455
+ inst._zod.parse = (payload, ctx) => {
1456
+ const input = payload.value;
1457
+ if (!util.isPlainObject(input)) {
1458
+ payload.issues.push({
1459
+ expected: "record",
1460
+ code: "invalid_type",
1461
+ input,
1462
+ inst,
1463
+ });
1464
+ return payload;
1465
+ }
1466
+ const proms = [];
1467
+ const values = def.keyType._zod.values;
1468
+ if (values) {
1469
+ payload.value = {};
1470
+ const recordKeys = new Set();
1471
+ for (const key of values) {
1472
+ if (typeof key === "string" || typeof key === "number" || typeof key === "symbol") {
1473
+ recordKeys.add(typeof key === "number" ? key.toString() : key);
1474
+ const keyResult = def.keyType._zod.run({ value: key, issues: [] }, ctx);
1475
+ if (keyResult instanceof Promise) {
1476
+ throw new Error("Async schemas not supported in object keys currently");
1477
+ }
1478
+ if (keyResult.issues.length) {
1479
+ payload.issues.push({
1480
+ code: "invalid_key",
1481
+ origin: "record",
1482
+ issues: keyResult.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config())),
1483
+ input: key,
1484
+ path: [key],
1485
+ inst,
1486
+ });
1487
+ continue;
1488
+ }
1489
+ const outKey = keyResult.value;
1490
+ const result = def.valueType._zod.run({ value: input[key], issues: [] }, ctx);
1491
+ if (result instanceof Promise) {
1492
+ proms.push(result.then((result) => {
1493
+ if (result.issues.length) {
1494
+ payload.issues.push(...util.prefixIssues(key, result.issues));
1495
+ }
1496
+ payload.value[outKey] = result.value;
1497
+ }));
1498
+ }
1499
+ else {
1500
+ if (result.issues.length) {
1501
+ payload.issues.push(...util.prefixIssues(key, result.issues));
1502
+ }
1503
+ payload.value[outKey] = result.value;
1504
+ }
1505
+ }
1506
+ }
1507
+ let unrecognized;
1508
+ for (const key in input) {
1509
+ if (!recordKeys.has(key)) {
1510
+ unrecognized = unrecognized ?? [];
1511
+ unrecognized.push(key);
1512
+ }
1513
+ }
1514
+ if (unrecognized && unrecognized.length > 0) {
1515
+ payload.issues.push({
1516
+ code: "unrecognized_keys",
1517
+ input,
1518
+ inst,
1519
+ keys: unrecognized,
1520
+ });
1521
+ }
1522
+ }
1523
+ else {
1524
+ payload.value = {};
1525
+ // Reflect.ownKeys for Symbol-key support; filter non-enumerable to match z.object()
1526
+ for (const key of Reflect.ownKeys(input)) {
1527
+ if (key === "__proto__")
1528
+ continue;
1529
+ if (!Object.prototype.propertyIsEnumerable.call(input, key))
1530
+ continue;
1531
+ let keyResult = def.keyType._zod.run({ value: key, issues: [] }, ctx);
1532
+ if (keyResult instanceof Promise) {
1533
+ throw new Error("Async schemas not supported in object keys currently");
1534
+ }
1535
+ // Numeric string fallback: if key is a numeric string and failed, retry with Number(key)
1536
+ // This handles z.number(), z.literal([1, 2, 3]), and unions containing numeric literals
1537
+ const checkNumericKey = typeof key === "string" && regexes.number.test(key) && keyResult.issues.length;
1538
+ if (checkNumericKey) {
1539
+ const retryResult = def.keyType._zod.run({ value: Number(key), issues: [] }, ctx);
1540
+ if (retryResult instanceof Promise) {
1541
+ throw new Error("Async schemas not supported in object keys currently");
1542
+ }
1543
+ if (retryResult.issues.length === 0) {
1544
+ keyResult = retryResult;
1545
+ }
1546
+ }
1547
+ if (keyResult.issues.length) {
1548
+ if (def.mode === "loose") {
1549
+ // Pass through unchanged
1550
+ payload.value[key] = input[key];
1551
+ }
1552
+ else {
1553
+ // Default "strict" behavior: error on invalid key
1554
+ payload.issues.push({
1555
+ code: "invalid_key",
1556
+ origin: "record",
1557
+ issues: keyResult.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config())),
1558
+ input: key,
1559
+ path: [key],
1560
+ inst,
1561
+ });
1562
+ }
1563
+ continue;
1564
+ }
1565
+ const result = def.valueType._zod.run({ value: input[key], issues: [] }, ctx);
1566
+ if (result instanceof Promise) {
1567
+ proms.push(result.then((result) => {
1568
+ if (result.issues.length) {
1569
+ payload.issues.push(...util.prefixIssues(key, result.issues));
1570
+ }
1571
+ payload.value[keyResult.value] = result.value;
1572
+ }));
1573
+ }
1574
+ else {
1575
+ if (result.issues.length) {
1576
+ payload.issues.push(...util.prefixIssues(key, result.issues));
1577
+ }
1578
+ payload.value[keyResult.value] = result.value;
1579
+ }
1580
+ }
1581
+ }
1582
+ if (proms.length) {
1583
+ return Promise.all(proms).then(() => payload);
1584
+ }
1585
+ return payload;
1586
+ };
1587
+ });
1588
+ exports.$ZodMap = core.$constructor("$ZodMap", (inst, def) => {
1589
+ exports.$ZodType.init(inst, def);
1590
+ inst._zod.parse = (payload, ctx) => {
1591
+ const input = payload.value;
1592
+ if (!(input instanceof Map)) {
1593
+ payload.issues.push({
1594
+ expected: "map",
1595
+ code: "invalid_type",
1596
+ input,
1597
+ inst,
1598
+ });
1599
+ return payload;
1600
+ }
1601
+ const proms = [];
1602
+ payload.value = new Map();
1603
+ for (const [key, value] of input) {
1604
+ const keyResult = def.keyType._zod.run({ value: key, issues: [] }, ctx);
1605
+ const valueResult = def.valueType._zod.run({ value: value, issues: [] }, ctx);
1606
+ if (keyResult instanceof Promise || valueResult instanceof Promise) {
1607
+ proms.push(Promise.all([keyResult, valueResult]).then(([keyResult, valueResult]) => {
1608
+ handleMapResult(keyResult, valueResult, payload, key, input, inst, ctx);
1609
+ }));
1610
+ }
1611
+ else {
1612
+ handleMapResult(keyResult, valueResult, payload, key, input, inst, ctx);
1613
+ }
1614
+ }
1615
+ if (proms.length)
1616
+ return Promise.all(proms).then(() => payload);
1617
+ return payload;
1618
+ };
1619
+ });
1620
+ function handleMapResult(keyResult, valueResult, final, key, input, inst, ctx) {
1621
+ if (keyResult.issues.length) {
1622
+ if (util.propertyKeyTypes.has(typeof key)) {
1623
+ final.issues.push(...util.prefixIssues(key, keyResult.issues));
1624
+ }
1625
+ else {
1626
+ final.issues.push({
1627
+ code: "invalid_key",
1628
+ origin: "map",
1629
+ input,
1630
+ inst,
1631
+ issues: keyResult.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config())),
1632
+ });
1633
+ }
1634
+ }
1635
+ if (valueResult.issues.length) {
1636
+ if (util.propertyKeyTypes.has(typeof key)) {
1637
+ final.issues.push(...util.prefixIssues(key, valueResult.issues));
1638
+ }
1639
+ else {
1640
+ final.issues.push({
1641
+ origin: "map",
1642
+ code: "invalid_element",
1643
+ input,
1644
+ inst,
1645
+ key: key,
1646
+ issues: valueResult.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config())),
1647
+ });
1648
+ }
1649
+ }
1650
+ final.value.set(keyResult.value, valueResult.value);
1651
+ }
1652
+ exports.$ZodSet = core.$constructor("$ZodSet", (inst, def) => {
1653
+ exports.$ZodType.init(inst, def);
1654
+ inst._zod.parse = (payload, ctx) => {
1655
+ const input = payload.value;
1656
+ if (!(input instanceof Set)) {
1657
+ payload.issues.push({
1658
+ input,
1659
+ inst,
1660
+ expected: "set",
1661
+ code: "invalid_type",
1662
+ });
1663
+ return payload;
1664
+ }
1665
+ const proms = [];
1666
+ payload.value = new Set();
1667
+ for (const item of input) {
1668
+ const result = def.valueType._zod.run({ value: item, issues: [] }, ctx);
1669
+ if (result instanceof Promise) {
1670
+ proms.push(result.then((result) => handleSetResult(result, payload)));
1671
+ }
1672
+ else
1673
+ handleSetResult(result, payload);
1674
+ }
1675
+ if (proms.length)
1676
+ return Promise.all(proms).then(() => payload);
1677
+ return payload;
1678
+ };
1679
+ });
1680
+ function handleSetResult(result, final) {
1681
+ if (result.issues.length) {
1682
+ final.issues.push(...result.issues);
1683
+ }
1684
+ final.value.add(result.value);
1685
+ }
1686
+ exports.$ZodEnum = core.$constructor("$ZodEnum", (inst, def) => {
1687
+ exports.$ZodType.init(inst, def);
1688
+ const values = util.getEnumValues(def.entries);
1689
+ const valuesSet = new Set(values);
1690
+ inst._zod.values = valuesSet;
1691
+ inst._zod.pattern = new RegExp(`^(${values
1692
+ .filter((k) => util.propertyKeyTypes.has(typeof k))
1693
+ .map((o) => (typeof o === "string" ? util.escapeRegex(o) : o.toString()))
1694
+ .join("|")})$`);
1695
+ inst._zod.parse = (payload, _ctx) => {
1696
+ const input = payload.value;
1697
+ if (valuesSet.has(input)) {
1698
+ return payload;
1699
+ }
1700
+ payload.issues.push({
1701
+ code: "invalid_value",
1702
+ values,
1703
+ input,
1704
+ inst,
1705
+ });
1706
+ return payload;
1707
+ };
1708
+ });
1709
+ exports.$ZodLiteral = core.$constructor("$ZodLiteral", (inst, def) => {
1710
+ exports.$ZodType.init(inst, def);
1711
+ if (def.values.length === 0) {
1712
+ throw new Error("Cannot create literal schema with no valid values");
1713
+ }
1714
+ const values = new Set(def.values);
1715
+ inst._zod.values = values;
1716
+ inst._zod.pattern = new RegExp(`^(${def.values
1717
+ .map((o) => (typeof o === "string" ? util.escapeRegex(o) : o ? util.escapeRegex(o.toString()) : String(o)))
1718
+ .join("|")})$`);
1719
+ inst._zod.parse = (payload, _ctx) => {
1720
+ const input = payload.value;
1721
+ if (values.has(input)) {
1722
+ return payload;
1723
+ }
1724
+ payload.issues.push({
1725
+ code: "invalid_value",
1726
+ values: def.values,
1727
+ input,
1728
+ inst,
1729
+ });
1730
+ return payload;
1731
+ };
1732
+ });
1733
+ exports.$ZodFile = core.$constructor("$ZodFile", (inst, def) => {
1734
+ exports.$ZodType.init(inst, def);
1735
+ inst._zod.parse = (payload, _ctx) => {
1736
+ const input = payload.value;
1737
+ // @ts-ignore
1738
+ if (input instanceof File)
1739
+ return payload;
1740
+ payload.issues.push({
1741
+ expected: "file",
1742
+ code: "invalid_type",
1743
+ input,
1744
+ inst,
1745
+ });
1746
+ return payload;
1747
+ };
1748
+ });
1749
+ exports.$ZodTransform = core.$constructor("$ZodTransform", (inst, def) => {
1750
+ exports.$ZodType.init(inst, def);
1751
+ inst._zod.optin = "optional";
1752
+ inst._zod.parse = (payload, ctx) => {
1753
+ if (ctx.direction === "backward") {
1754
+ throw new core.$ZodEncodeError(inst.constructor.name);
1755
+ }
1756
+ const _out = def.transform(payload.value, payload);
1757
+ if (ctx.async) {
1758
+ const output = _out instanceof Promise ? _out : Promise.resolve(_out);
1759
+ return output.then((output) => {
1760
+ payload.value = output;
1761
+ payload.fallback = true;
1762
+ return payload;
1763
+ });
1764
+ }
1765
+ if (_out instanceof Promise) {
1766
+ throw new core.$ZodAsyncError();
1767
+ }
1768
+ payload.value = _out;
1769
+ payload.fallback = true;
1770
+ return payload;
1771
+ };
1772
+ });
1773
+ function handleOptionalResult(result, input) {
1774
+ if (input === undefined && (result.issues.length || result.fallback)) {
1775
+ return { issues: [], value: undefined };
1776
+ }
1777
+ return result;
1778
+ }
1779
+ exports.$ZodOptional = core.$constructor("$ZodOptional", (inst, def) => {
1780
+ exports.$ZodType.init(inst, def);
1781
+ inst._zod.optin = "optional";
1782
+ inst._zod.optout = "optional";
1783
+ util.defineLazy(inst._zod, "values", () => {
1784
+ return def.innerType._zod.values ? new Set([...def.innerType._zod.values, undefined]) : undefined;
1785
+ });
1786
+ util.defineLazy(inst._zod, "pattern", () => {
1787
+ const pattern = def.innerType._zod.pattern;
1788
+ return pattern ? new RegExp(`^(${util.cleanRegex(pattern.source)})?$`) : undefined;
1789
+ });
1790
+ inst._zod.parse = (payload, ctx) => {
1791
+ if (def.innerType._zod.optin === "optional") {
1792
+ const input = payload.value;
1793
+ const result = def.innerType._zod.run(payload, ctx);
1794
+ if (result instanceof Promise)
1795
+ return result.then((r) => handleOptionalResult(r, input));
1796
+ return handleOptionalResult(result, input);
1797
+ }
1798
+ if (payload.value === undefined) {
1799
+ return payload;
1800
+ }
1801
+ return def.innerType._zod.run(payload, ctx);
1802
+ };
1803
+ });
1804
+ exports.$ZodExactOptional = core.$constructor("$ZodExactOptional", (inst, def) => {
1805
+ // Call parent init - inherits optin/optout = "optional"
1806
+ exports.$ZodOptional.init(inst, def);
1807
+ // Override values/pattern to NOT add undefined
1808
+ util.defineLazy(inst._zod, "values", () => def.innerType._zod.values);
1809
+ util.defineLazy(inst._zod, "pattern", () => def.innerType._zod.pattern);
1810
+ // Override parse to just delegate (no undefined handling)
1811
+ inst._zod.parse = (payload, ctx) => {
1812
+ return def.innerType._zod.run(payload, ctx);
1813
+ };
1814
+ });
1815
+ exports.$ZodNullable = core.$constructor("$ZodNullable", (inst, def) => {
1816
+ exports.$ZodType.init(inst, def);
1817
+ util.defineLazy(inst._zod, "optin", () => def.innerType._zod.optin);
1818
+ util.defineLazy(inst._zod, "optout", () => def.innerType._zod.optout);
1819
+ util.defineLazy(inst._zod, "pattern", () => {
1820
+ const pattern = def.innerType._zod.pattern;
1821
+ return pattern ? new RegExp(`^(${util.cleanRegex(pattern.source)}|null)$`) : undefined;
1822
+ });
1823
+ util.defineLazy(inst._zod, "values", () => {
1824
+ return def.innerType._zod.values ? new Set([...def.innerType._zod.values, null]) : undefined;
1825
+ });
1826
+ inst._zod.parse = (payload, ctx) => {
1827
+ // Forward direction (decode): allow null to pass through
1828
+ if (payload.value === null)
1829
+ return payload;
1830
+ return def.innerType._zod.run(payload, ctx);
1831
+ };
1832
+ });
1833
+ exports.$ZodDefault = core.$constructor("$ZodDefault", (inst, def) => {
1834
+ exports.$ZodType.init(inst, def);
1835
+ // inst._zod.qin = "true";
1836
+ inst._zod.optin = "optional";
1837
+ util.defineLazy(inst._zod, "values", () => def.innerType._zod.values);
1838
+ inst._zod.parse = (payload, ctx) => {
1839
+ if (ctx.direction === "backward") {
1840
+ return def.innerType._zod.run(payload, ctx);
1841
+ }
1842
+ // Forward direction (decode): apply defaults for undefined input
1843
+ if (payload.value === undefined) {
1844
+ payload.value = def.defaultValue;
1845
+ /**
1846
+ * $ZodDefault returns the default value immediately in forward direction.
1847
+ * It doesn't pass the default value into the validator ("prefault"). There's no reason to pass the default value through validation. The validity of the default is enforced by TypeScript statically. Otherwise, it's the responsibility of the user to ensure the default is valid. In the case of pipes with divergent in/out types, you can specify the default on the `in` schema of your ZodPipe to set a "prefault" for the pipe. */
1848
+ return payload;
1849
+ }
1850
+ // Forward direction: continue with default handling
1851
+ const result = def.innerType._zod.run(payload, ctx);
1852
+ if (result instanceof Promise) {
1853
+ return result.then((result) => handleDefaultResult(result, def));
1854
+ }
1855
+ return handleDefaultResult(result, def);
1856
+ };
1857
+ });
1858
+ function handleDefaultResult(payload, def) {
1859
+ if (payload.value === undefined) {
1860
+ payload.value = def.defaultValue;
1861
+ }
1862
+ return payload;
1863
+ }
1864
+ exports.$ZodPrefault = core.$constructor("$ZodPrefault", (inst, def) => {
1865
+ exports.$ZodType.init(inst, def);
1866
+ inst._zod.optin = "optional";
1867
+ util.defineLazy(inst._zod, "values", () => def.innerType._zod.values);
1868
+ inst._zod.parse = (payload, ctx) => {
1869
+ if (ctx.direction === "backward") {
1870
+ return def.innerType._zod.run(payload, ctx);
1871
+ }
1872
+ // Forward direction (decode): apply prefault for undefined input
1873
+ if (payload.value === undefined) {
1874
+ payload.value = def.defaultValue;
1875
+ }
1876
+ return def.innerType._zod.run(payload, ctx);
1877
+ };
1878
+ });
1879
+ exports.$ZodNonOptional = core.$constructor("$ZodNonOptional", (inst, def) => {
1880
+ exports.$ZodType.init(inst, def);
1881
+ util.defineLazy(inst._zod, "values", () => {
1882
+ const v = def.innerType._zod.values;
1883
+ return v ? new Set([...v].filter((x) => x !== undefined)) : undefined;
1884
+ });
1885
+ inst._zod.parse = (payload, ctx) => {
1886
+ const result = def.innerType._zod.run(payload, ctx);
1887
+ if (result instanceof Promise) {
1888
+ return result.then((result) => handleNonOptionalResult(result, inst));
1889
+ }
1890
+ return handleNonOptionalResult(result, inst);
1891
+ };
1892
+ });
1893
+ function handleNonOptionalResult(payload, inst) {
1894
+ if (!payload.issues.length && payload.value === undefined) {
1895
+ payload.issues.push({
1896
+ code: "invalid_type",
1897
+ expected: "nonoptional",
1898
+ input: payload.value,
1899
+ inst,
1900
+ });
1901
+ }
1902
+ return payload;
1903
+ }
1904
+ exports.$ZodSuccess = core.$constructor("$ZodSuccess", (inst, def) => {
1905
+ exports.$ZodType.init(inst, def);
1906
+ inst._zod.parse = (payload, ctx) => {
1907
+ if (ctx.direction === "backward") {
1908
+ throw new core.$ZodEncodeError("ZodSuccess");
1909
+ }
1910
+ const result = def.innerType._zod.run(payload, ctx);
1911
+ if (result instanceof Promise) {
1912
+ return result.then((result) => {
1913
+ payload.value = result.issues.length === 0;
1914
+ return payload;
1915
+ });
1916
+ }
1917
+ payload.value = result.issues.length === 0;
1918
+ return payload;
1919
+ };
1920
+ });
1921
+ exports.$ZodCatch = core.$constructor("$ZodCatch", (inst, def) => {
1922
+ exports.$ZodType.init(inst, def);
1923
+ inst._zod.optin = "optional";
1924
+ util.defineLazy(inst._zod, "optout", () => def.innerType._zod.optout);
1925
+ util.defineLazy(inst._zod, "values", () => def.innerType._zod.values);
1926
+ inst._zod.parse = (payload, ctx) => {
1927
+ if (ctx.direction === "backward") {
1928
+ return def.innerType._zod.run(payload, ctx);
1929
+ }
1930
+ // Forward direction (decode): apply catch logic
1931
+ const result = def.innerType._zod.run(payload, ctx);
1932
+ if (result instanceof Promise) {
1933
+ return result.then((result) => {
1934
+ payload.value = result.value;
1935
+ if (result.issues.length) {
1936
+ payload.value = def.catchValue({
1937
+ ...payload,
1938
+ error: {
1939
+ issues: result.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config())),
1940
+ },
1941
+ input: payload.value,
1942
+ });
1943
+ payload.issues = [];
1944
+ payload.fallback = true;
1945
+ }
1946
+ return payload;
1947
+ });
1948
+ }
1949
+ payload.value = result.value;
1950
+ if (result.issues.length) {
1951
+ payload.value = def.catchValue({
1952
+ ...payload,
1953
+ error: {
1954
+ issues: result.issues.map((iss) => util.finalizeIssue(iss, ctx, core.config())),
1955
+ },
1956
+ input: payload.value,
1957
+ });
1958
+ payload.issues = [];
1959
+ payload.fallback = true;
1960
+ }
1961
+ return payload;
1962
+ };
1963
+ });
1964
+ exports.$ZodNaN = core.$constructor("$ZodNaN", (inst, def) => {
1965
+ exports.$ZodType.init(inst, def);
1966
+ inst._zod.parse = (payload, _ctx) => {
1967
+ if (typeof payload.value !== "number" || !Number.isNaN(payload.value)) {
1968
+ payload.issues.push({
1969
+ input: payload.value,
1970
+ inst,
1971
+ expected: "nan",
1972
+ code: "invalid_type",
1973
+ });
1974
+ return payload;
1975
+ }
1976
+ return payload;
1977
+ };
1978
+ });
1979
+ exports.$ZodPipe = core.$constructor("$ZodPipe", (inst, def) => {
1980
+ exports.$ZodType.init(inst, def);
1981
+ util.defineLazy(inst._zod, "values", () => def.in._zod.values);
1982
+ util.defineLazy(inst._zod, "optin", () => def.in._zod.optin);
1983
+ util.defineLazy(inst._zod, "optout", () => def.out._zod.optout);
1984
+ util.defineLazy(inst._zod, "propValues", () => def.in._zod.propValues);
1985
+ inst._zod.parse = (payload, ctx) => {
1986
+ if (ctx.direction === "backward") {
1987
+ const right = def.out._zod.run(payload, ctx);
1988
+ if (right instanceof Promise) {
1989
+ return right.then((right) => handlePipeResult(right, def.in, ctx));
1990
+ }
1991
+ return handlePipeResult(right, def.in, ctx);
1992
+ }
1993
+ const left = def.in._zod.run(payload, ctx);
1994
+ if (left instanceof Promise) {
1995
+ return left.then((left) => handlePipeResult(left, def.out, ctx));
1996
+ }
1997
+ return handlePipeResult(left, def.out, ctx);
1998
+ };
1999
+ });
2000
+ function handlePipeResult(left, next, ctx) {
2001
+ if (left.issues.length) {
2002
+ // prevent further checks
2003
+ left.aborted = true;
2004
+ return left;
2005
+ }
2006
+ return next._zod.run({ value: left.value, issues: left.issues, fallback: left.fallback }, ctx);
2007
+ }
2008
+ exports.$ZodCodec = core.$constructor("$ZodCodec", (inst, def) => {
2009
+ exports.$ZodType.init(inst, def);
2010
+ util.defineLazy(inst._zod, "values", () => def.in._zod.values);
2011
+ util.defineLazy(inst._zod, "optin", () => def.in._zod.optin);
2012
+ util.defineLazy(inst._zod, "optout", () => def.out._zod.optout);
2013
+ util.defineLazy(inst._zod, "propValues", () => def.in._zod.propValues);
2014
+ inst._zod.parse = (payload, ctx) => {
2015
+ const direction = ctx.direction || "forward";
2016
+ if (direction === "forward") {
2017
+ const left = def.in._zod.run(payload, ctx);
2018
+ if (left instanceof Promise) {
2019
+ return left.then((left) => handleCodecAResult(left, def, ctx));
2020
+ }
2021
+ return handleCodecAResult(left, def, ctx);
2022
+ }
2023
+ else {
2024
+ const right = def.out._zod.run(payload, ctx);
2025
+ if (right instanceof Promise) {
2026
+ return right.then((right) => handleCodecAResult(right, def, ctx));
2027
+ }
2028
+ return handleCodecAResult(right, def, ctx);
2029
+ }
2030
+ };
2031
+ });
2032
+ function handleCodecAResult(result, def, ctx) {
2033
+ if (result.issues.length) {
2034
+ // prevent further checks
2035
+ result.aborted = true;
2036
+ return result;
2037
+ }
2038
+ const direction = ctx.direction || "forward";
2039
+ if (direction === "forward") {
2040
+ const transformed = def.transform(result.value, result);
2041
+ if (transformed instanceof Promise) {
2042
+ return transformed.then((value) => handleCodecTxResult(result, value, def.out, ctx));
2043
+ }
2044
+ return handleCodecTxResult(result, transformed, def.out, ctx);
2045
+ }
2046
+ else {
2047
+ const transformed = def.reverseTransform(result.value, result);
2048
+ if (transformed instanceof Promise) {
2049
+ return transformed.then((value) => handleCodecTxResult(result, value, def.in, ctx));
2050
+ }
2051
+ return handleCodecTxResult(result, transformed, def.in, ctx);
2052
+ }
2053
+ }
2054
+ function handleCodecTxResult(left, value, nextSchema, ctx) {
2055
+ // Check if transform added any issues
2056
+ if (left.issues.length) {
2057
+ left.aborted = true;
2058
+ return left;
2059
+ }
2060
+ return nextSchema._zod.run({ value, issues: left.issues }, ctx);
2061
+ }
2062
+ exports.$ZodPreprocess = core.$constructor("$ZodPreprocess", (inst, def) => {
2063
+ exports.$ZodPipe.init(inst, def);
2064
+ });
2065
+ exports.$ZodReadonly = core.$constructor("$ZodReadonly", (inst, def) => {
2066
+ exports.$ZodType.init(inst, def);
2067
+ util.defineLazy(inst._zod, "propValues", () => def.innerType._zod.propValues);
2068
+ util.defineLazy(inst._zod, "values", () => def.innerType._zod.values);
2069
+ util.defineLazy(inst._zod, "optin", () => def.innerType?._zod?.optin);
2070
+ util.defineLazy(inst._zod, "optout", () => def.innerType?._zod?.optout);
2071
+ inst._zod.parse = (payload, ctx) => {
2072
+ if (ctx.direction === "backward") {
2073
+ return def.innerType._zod.run(payload, ctx);
2074
+ }
2075
+ const result = def.innerType._zod.run(payload, ctx);
2076
+ if (result instanceof Promise) {
2077
+ return result.then(handleReadonlyResult);
2078
+ }
2079
+ return handleReadonlyResult(result);
2080
+ };
2081
+ });
2082
+ function handleReadonlyResult(payload) {
2083
+ payload.value = Object.freeze(payload.value);
2084
+ return payload;
2085
+ }
2086
+ exports.$ZodTemplateLiteral = core.$constructor("$ZodTemplateLiteral", (inst, def) => {
2087
+ exports.$ZodType.init(inst, def);
2088
+ const regexParts = [];
2089
+ for (const part of def.parts) {
2090
+ if (typeof part === "object" && part !== null) {
2091
+ // is Zod schema
2092
+ if (!part._zod.pattern) {
2093
+ // if (!source)
2094
+ throw new Error(`Invalid template literal part, no pattern found: ${[...part._zod.traits].shift()}`);
2095
+ }
2096
+ const source = part._zod.pattern instanceof RegExp ? part._zod.pattern.source : part._zod.pattern;
2097
+ if (!source)
2098
+ throw new Error(`Invalid template literal part: ${part._zod.traits}`);
2099
+ const start = source.startsWith("^") ? 1 : 0;
2100
+ const end = source.endsWith("$") ? source.length - 1 : source.length;
2101
+ regexParts.push(source.slice(start, end));
2102
+ }
2103
+ else if (part === null || util.primitiveTypes.has(typeof part)) {
2104
+ regexParts.push(util.escapeRegex(`${part}`));
2105
+ }
2106
+ else {
2107
+ throw new Error(`Invalid template literal part: ${part}`);
2108
+ }
2109
+ }
2110
+ inst._zod.pattern = new RegExp(`^${regexParts.join("")}$`);
2111
+ inst._zod.parse = (payload, _ctx) => {
2112
+ if (typeof payload.value !== "string") {
2113
+ payload.issues.push({
2114
+ input: payload.value,
2115
+ inst,
2116
+ expected: "string",
2117
+ code: "invalid_type",
2118
+ });
2119
+ return payload;
2120
+ }
2121
+ inst._zod.pattern.lastIndex = 0;
2122
+ if (!inst._zod.pattern.test(payload.value)) {
2123
+ payload.issues.push({
2124
+ input: payload.value,
2125
+ inst,
2126
+ code: "invalid_format",
2127
+ format: def.format ?? "template_literal",
2128
+ pattern: inst._zod.pattern.source,
2129
+ });
2130
+ return payload;
2131
+ }
2132
+ return payload;
2133
+ };
2134
+ });
2135
+ exports.$ZodFunction = core.$constructor("$ZodFunction", (inst, def) => {
2136
+ exports.$ZodType.init(inst, def);
2137
+ inst._def = def;
2138
+ inst._zod.def = def;
2139
+ inst.implement = (func) => {
2140
+ if (typeof func !== "function") {
2141
+ throw new Error("implement() must be called with a function");
2142
+ }
2143
+ return function (...args) {
2144
+ const parsedArgs = inst._def.input ? (0, parse_js_1.parse)(inst._def.input, args) : args;
2145
+ const result = Reflect.apply(func, this, parsedArgs);
2146
+ if (inst._def.output) {
2147
+ return (0, parse_js_1.parse)(inst._def.output, result);
2148
+ }
2149
+ return result;
2150
+ };
2151
+ };
2152
+ inst.implementAsync = (func) => {
2153
+ if (typeof func !== "function") {
2154
+ throw new Error("implementAsync() must be called with a function");
2155
+ }
2156
+ return async function (...args) {
2157
+ const parsedArgs = inst._def.input ? await (0, parse_js_1.parseAsync)(inst._def.input, args) : args;
2158
+ const result = await Reflect.apply(func, this, parsedArgs);
2159
+ if (inst._def.output) {
2160
+ return await (0, parse_js_1.parseAsync)(inst._def.output, result);
2161
+ }
2162
+ return result;
2163
+ };
2164
+ };
2165
+ inst._zod.parse = (payload, _ctx) => {
2166
+ if (typeof payload.value !== "function") {
2167
+ payload.issues.push({
2168
+ code: "invalid_type",
2169
+ expected: "function",
2170
+ input: payload.value,
2171
+ inst,
2172
+ });
2173
+ return payload;
2174
+ }
2175
+ // Check if output is a promise type to determine if we should use async implementation
2176
+ const hasPromiseOutput = inst._def.output && inst._def.output._zod.def.type === "promise";
2177
+ if (hasPromiseOutput) {
2178
+ payload.value = inst.implementAsync(payload.value);
2179
+ }
2180
+ else {
2181
+ payload.value = inst.implement(payload.value);
2182
+ }
2183
+ return payload;
2184
+ };
2185
+ inst.input = (...args) => {
2186
+ const F = inst.constructor;
2187
+ if (Array.isArray(args[0])) {
2188
+ return new F({
2189
+ type: "function",
2190
+ input: new exports.$ZodTuple({
2191
+ type: "tuple",
2192
+ items: args[0],
2193
+ rest: args[1],
2194
+ }),
2195
+ output: inst._def.output,
2196
+ });
2197
+ }
2198
+ return new F({
2199
+ type: "function",
2200
+ input: args[0],
2201
+ output: inst._def.output,
2202
+ });
2203
+ };
2204
+ inst.output = (output) => {
2205
+ const F = inst.constructor;
2206
+ return new F({
2207
+ type: "function",
2208
+ input: inst._def.input,
2209
+ output,
2210
+ });
2211
+ };
2212
+ return inst;
2213
+ });
2214
+ exports.$ZodPromise = core.$constructor("$ZodPromise", (inst, def) => {
2215
+ exports.$ZodType.init(inst, def);
2216
+ inst._zod.parse = (payload, ctx) => {
2217
+ return Promise.resolve(payload.value).then((inner) => def.innerType._zod.run({ value: inner, issues: [] }, ctx));
2218
+ };
2219
+ });
2220
+ exports.$ZodLazy = core.$constructor("$ZodLazy", (inst, def) => {
2221
+ exports.$ZodType.init(inst, def);
2222
+ // Cache the resolved inner type on the shared `def` so all clones of this
2223
+ // lazy (e.g. via `.describe()`/`.meta()`) share the same inner instance,
2224
+ // preserving identity for cycle detection on recursive schemas.
2225
+ util.defineLazy(inst._zod, "innerType", () => {
2226
+ const d = def;
2227
+ if (!d._cachedInner)
2228
+ d._cachedInner = def.getter();
2229
+ return d._cachedInner;
2230
+ });
2231
+ util.defineLazy(inst._zod, "pattern", () => inst._zod.innerType?._zod?.pattern);
2232
+ util.defineLazy(inst._zod, "propValues", () => inst._zod.innerType?._zod?.propValues);
2233
+ util.defineLazy(inst._zod, "optin", () => inst._zod.innerType?._zod?.optin ?? undefined);
2234
+ util.defineLazy(inst._zod, "optout", () => inst._zod.innerType?._zod?.optout ?? undefined);
2235
+ inst._zod.parse = (payload, ctx) => {
2236
+ const inner = inst._zod.innerType;
2237
+ return inner._zod.run(payload, ctx);
2238
+ };
2239
+ });
2240
+ exports.$ZodCustom = core.$constructor("$ZodCustom", (inst, def) => {
2241
+ checks.$ZodCheck.init(inst, def);
2242
+ exports.$ZodType.init(inst, def);
2243
+ inst._zod.parse = (payload, _) => {
2244
+ return payload;
2245
+ };
2246
+ inst._zod.check = (payload) => {
2247
+ const input = payload.value;
2248
+ const r = def.fn(input);
2249
+ if (r instanceof Promise) {
2250
+ return r.then((r) => handleRefineResult(r, payload, input, inst));
2251
+ }
2252
+ handleRefineResult(r, payload, input, inst);
2253
+ return;
2254
+ };
2255
+ });
2256
+ function handleRefineResult(result, payload, input, inst) {
2257
+ if (!result) {
2258
+ const _iss = {
2259
+ code: "custom",
2260
+ input,
2261
+ inst, // incorporates params.error into issue reporting
2262
+ path: [...(inst._zod.def.path ?? [])], // incorporates params.error into issue reporting
2263
+ continue: !inst._zod.def.abort,
2264
+ // params: inst._zod.def.params,
2265
+ };
2266
+ if (inst._zod.def.params)
2267
+ _iss.params = inst._zod.def.params;
2268
+ payload.issues.push(util.issue(_iss));
2269
+ }
2270
+ }