@alma-cdk/project 2.0.0 → 2.0.2

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 (775) hide show
  1. package/.jsii +6 -4
  2. package/AlmaCdkConstructLibrary/AlmaCdkConstructLibrary.ts +115 -0
  3. package/AlmaCdkConstructLibrary/NodeConfig.ts +35 -0
  4. package/AlmaCdkConstructLibrary/SonarCloudReportWorkflow.ts +64 -0
  5. package/AlmaCdkConstructLibrary/index.ts +4 -0
  6. package/AlmaCdkConstructLibrary/pnpm-workspace-schema.d.ts +665 -0
  7. package/AlmaCdkConstructLibrary/schemas/almaCdkConstructLibraryOptions.ts +72 -0
  8. package/AlmaCdkConstructLibrary/schemas/name.ts +23 -0
  9. package/AlmaCdkConstructLibrary/schemas/repositoryUrl.ts +13 -0
  10. package/lib/configurations/accounts.js +1 -1
  11. package/lib/context/account.js +1 -1
  12. package/lib/context/environment.js +1 -1
  13. package/lib/name/name-path.js +1 -1
  14. package/lib/name/name-url.js +1 -1
  15. package/lib/name/name.js +1 -1
  16. package/lib/project/account-type.js +1 -1
  17. package/lib/project/environment-type.js +1 -1
  18. package/lib/project/envregexp.js +1 -1
  19. package/lib/project/project-context.js +1 -1
  20. package/lib/project/project.js +1 -1
  21. package/lib/smartstack/stack.js +1 -1
  22. package/lib/wrapper/account.js +1 -1
  23. package/lib/wrapper/environment.js +1 -1
  24. package/node_modules/asap/CHANGES.md +70 -0
  25. package/node_modules/commander/CHANGELOG.md +385 -0
  26. package/node_modules/nunjucks/bin/precompile +0 -0
  27. package/node_modules/semver/LICENSE +15 -0
  28. package/node_modules/semver/README.md +665 -0
  29. package/node_modules/semver/bin/semver.js +191 -0
  30. package/node_modules/semver/classes/comparator.js +143 -0
  31. package/node_modules/semver/classes/index.js +7 -0
  32. package/node_modules/semver/classes/range.js +557 -0
  33. package/node_modules/semver/classes/semver.js +333 -0
  34. package/node_modules/semver/functions/clean.js +8 -0
  35. package/node_modules/semver/functions/cmp.js +54 -0
  36. package/node_modules/semver/functions/coerce.js +62 -0
  37. package/node_modules/semver/functions/compare-build.js +9 -0
  38. package/node_modules/semver/functions/compare-loose.js +5 -0
  39. package/node_modules/semver/functions/compare.js +7 -0
  40. package/node_modules/semver/functions/diff.js +60 -0
  41. package/node_modules/semver/functions/eq.js +5 -0
  42. package/node_modules/semver/functions/gt.js +5 -0
  43. package/node_modules/semver/functions/gte.js +5 -0
  44. package/node_modules/semver/functions/inc.js +21 -0
  45. package/node_modules/semver/functions/lt.js +5 -0
  46. package/node_modules/semver/functions/lte.js +5 -0
  47. package/node_modules/semver/functions/major.js +5 -0
  48. package/node_modules/semver/functions/minor.js +5 -0
  49. package/node_modules/semver/functions/neq.js +5 -0
  50. package/node_modules/semver/functions/parse.js +18 -0
  51. package/node_modules/semver/functions/patch.js +5 -0
  52. package/node_modules/semver/functions/prerelease.js +8 -0
  53. package/node_modules/semver/functions/rcompare.js +5 -0
  54. package/node_modules/semver/functions/rsort.js +5 -0
  55. package/node_modules/semver/functions/satisfies.js +12 -0
  56. package/node_modules/semver/functions/sort.js +5 -0
  57. package/node_modules/semver/functions/valid.js +8 -0
  58. package/node_modules/semver/index.js +91 -0
  59. package/node_modules/semver/internal/constants.js +37 -0
  60. package/node_modules/semver/internal/debug.js +11 -0
  61. package/node_modules/semver/internal/identifiers.js +29 -0
  62. package/node_modules/semver/internal/lrucache.js +42 -0
  63. package/node_modules/semver/internal/parse-options.js +17 -0
  64. package/node_modules/semver/internal/re.js +223 -0
  65. package/node_modules/semver/package.json +78 -0
  66. package/node_modules/semver/preload.js +4 -0
  67. package/node_modules/semver/range.bnf +16 -0
  68. package/node_modules/semver/ranges/gtr.js +6 -0
  69. package/node_modules/semver/ranges/intersects.js +9 -0
  70. package/node_modules/semver/ranges/ltr.js +6 -0
  71. package/node_modules/semver/ranges/max-satisfying.js +27 -0
  72. package/node_modules/semver/ranges/min-satisfying.js +26 -0
  73. package/node_modules/semver/ranges/min-version.js +63 -0
  74. package/node_modules/semver/ranges/outside.js +82 -0
  75. package/node_modules/semver/ranges/simplify.js +49 -0
  76. package/node_modules/semver/ranges/subset.js +249 -0
  77. package/node_modules/semver/ranges/to-comparators.js +10 -0
  78. package/node_modules/semver/ranges/valid.js +13 -0
  79. package/node_modules/zod/LICENSE +21 -0
  80. package/node_modules/zod/README.md +208 -0
  81. package/node_modules/zod/index.cjs +33 -0
  82. package/node_modules/zod/index.d.cts +4 -0
  83. package/node_modules/zod/index.d.ts +4 -0
  84. package/node_modules/zod/index.js +4 -0
  85. package/node_modules/zod/locales/index.cjs +17 -0
  86. package/node_modules/zod/locales/index.d.cts +1 -0
  87. package/node_modules/zod/locales/index.d.ts +1 -0
  88. package/node_modules/zod/locales/index.js +1 -0
  89. package/node_modules/zod/locales/package.json +6 -0
  90. package/node_modules/zod/mini/index.cjs +32 -0
  91. package/node_modules/zod/mini/index.d.cts +3 -0
  92. package/node_modules/zod/mini/index.d.ts +3 -0
  93. package/node_modules/zod/mini/index.js +3 -0
  94. package/node_modules/zod/mini/package.json +6 -0
  95. package/node_modules/zod/package.json +135 -0
  96. package/node_modules/zod/src/index.ts +4 -0
  97. package/node_modules/zod/src/locales/index.ts +1 -0
  98. package/node_modules/zod/src/mini/index.ts +3 -0
  99. package/node_modules/zod/src/v3/ZodError.ts +330 -0
  100. package/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
  101. package/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
  102. package/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
  103. package/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
  104. package/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
  105. package/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
  106. package/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
  107. package/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
  108. package/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
  109. package/node_modules/zod/src/v3/errors.ts +13 -0
  110. package/node_modules/zod/src/v3/external.ts +6 -0
  111. package/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
  112. package/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
  113. package/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
  114. package/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
  115. package/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
  116. package/node_modules/zod/src/v3/helpers/util.ts +224 -0
  117. package/node_modules/zod/src/v3/index.ts +4 -0
  118. package/node_modules/zod/src/v3/locales/en.ts +124 -0
  119. package/node_modules/zod/src/v3/standard-schema.ts +113 -0
  120. package/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
  121. package/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
  122. package/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
  123. package/node_modules/zod/src/v3/tests/array.test.ts +71 -0
  124. package/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
  125. package/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
  126. package/node_modules/zod/src/v3/tests/base.test.ts +29 -0
  127. package/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
  128. package/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
  129. package/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
  130. package/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
  131. package/node_modules/zod/src/v3/tests/complex.test.ts +70 -0
  132. package/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
  133. package/node_modules/zod/src/v3/tests/date.test.ts +32 -0
  134. package/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
  135. package/node_modules/zod/src/v3/tests/default.test.ts +112 -0
  136. package/node_modules/zod/src/v3/tests/description.test.ts +33 -0
  137. package/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
  138. package/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
  139. package/node_modules/zod/src/v3/tests/error.test.ts +551 -0
  140. package/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
  141. package/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
  142. package/node_modules/zod/src/v3/tests/function.test.ts +261 -0
  143. package/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
  144. package/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
  145. package/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
  146. package/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
  147. package/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
  148. package/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
  149. package/node_modules/zod/src/v3/tests/map.test.ts +110 -0
  150. package/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
  151. package/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
  152. package/node_modules/zod/src/v3/tests/nan.test.ts +24 -0
  153. package/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
  154. package/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
  155. package/node_modules/zod/src/v3/tests/number.test.ts +176 -0
  156. package/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
  157. package/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
  158. package/node_modules/zod/src/v3/tests/object.test.ts +434 -0
  159. package/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
  160. package/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
  161. package/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
  162. package/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
  163. package/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
  164. package/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
  165. package/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
  166. package/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
  167. package/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
  168. package/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
  169. package/node_modules/zod/src/v3/tests/record.test.ts +171 -0
  170. package/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
  171. package/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
  172. package/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
  173. package/node_modules/zod/src/v3/tests/set.test.ts +142 -0
  174. package/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
  175. package/node_modules/zod/src/v3/tests/string.test.ts +916 -0
  176. package/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
  177. package/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
  178. package/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
  179. package/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
  180. package/node_modules/zod/src/v3/tests/void.test.ts +15 -0
  181. package/node_modules/zod/src/v3/types.ts +5138 -0
  182. package/node_modules/zod/src/v4/classic/checks.ts +32 -0
  183. package/node_modules/zod/src/v4/classic/coerce.ts +27 -0
  184. package/node_modules/zod/src/v4/classic/compat.ts +70 -0
  185. package/node_modules/zod/src/v4/classic/errors.ts +82 -0
  186. package/node_modules/zod/src/v4/classic/external.ts +51 -0
  187. package/node_modules/zod/src/v4/classic/from-json-schema.ts +643 -0
  188. package/node_modules/zod/src/v4/classic/index.ts +5 -0
  189. package/node_modules/zod/src/v4/classic/iso.ts +90 -0
  190. package/node_modules/zod/src/v4/classic/parse.ts +82 -0
  191. package/node_modules/zod/src/v4/classic/schemas.ts +2409 -0
  192. package/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
  193. package/node_modules/zod/src/v4/classic/tests/apply.test.ts +59 -0
  194. package/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
  195. package/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
  196. package/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
  197. package/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
  198. package/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
  199. package/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
  200. package/node_modules/zod/src/v4/classic/tests/brand.test.ts +106 -0
  201. package/node_modules/zod/src/v4/classic/tests/catch.test.ts +276 -0
  202. package/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
  203. package/node_modules/zod/src/v4/classic/tests/codec-examples.test.ts +573 -0
  204. package/node_modules/zod/src/v4/classic/tests/codec.test.ts +562 -0
  205. package/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
  206. package/node_modules/zod/src/v4/classic/tests/continuability.test.ts +374 -0
  207. package/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
  208. package/node_modules/zod/src/v4/classic/tests/date.test.ts +62 -0
  209. package/node_modules/zod/src/v4/classic/tests/datetime.test.ts +302 -0
  210. package/node_modules/zod/src/v4/classic/tests/default.test.ts +365 -0
  211. package/node_modules/zod/src/v4/classic/tests/describe-meta-checks.test.ts +27 -0
  212. package/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
  213. package/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +661 -0
  214. package/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
  215. package/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +595 -0
  216. package/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
  217. package/node_modules/zod/src/v4/classic/tests/file.test.ts +96 -0
  218. package/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +179 -0
  219. package/node_modules/zod/src/v4/classic/tests/fix-json-issue.test.ts +26 -0
  220. package/node_modules/zod/src/v4/classic/tests/from-json-schema.test.ts +734 -0
  221. package/node_modules/zod/src/v4/classic/tests/function.test.ts +360 -0
  222. package/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
  223. package/node_modules/zod/src/v4/classic/tests/hash.test.ts +68 -0
  224. package/node_modules/zod/src/v4/classic/tests/index.test.ts +939 -0
  225. package/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +60 -0
  226. package/node_modules/zod/src/v4/classic/tests/intersection.test.ts +198 -0
  227. package/node_modules/zod/src/v4/classic/tests/json.test.ts +109 -0
  228. package/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
  229. package/node_modules/zod/src/v4/classic/tests/literal.test.ts +117 -0
  230. package/node_modules/zod/src/v4/classic/tests/map.test.ts +330 -0
  231. package/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
  232. package/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
  233. package/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +101 -0
  234. package/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
  235. package/node_modules/zod/src/v4/classic/tests/number.test.ts +270 -0
  236. package/node_modules/zod/src/v4/classic/tests/object.test.ts +640 -0
  237. package/node_modules/zod/src/v4/classic/tests/optional.test.ts +223 -0
  238. package/node_modules/zod/src/v4/classic/tests/partial.test.ts +427 -0
  239. package/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +211 -0
  240. package/node_modules/zod/src/v4/classic/tests/pipe.test.ts +101 -0
  241. package/node_modules/zod/src/v4/classic/tests/prefault.test.ts +74 -0
  242. package/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +282 -0
  243. package/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
  244. package/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
  245. package/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
  246. package/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
  247. package/node_modules/zod/src/v4/classic/tests/record.test.ts +632 -0
  248. package/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +582 -0
  249. package/node_modules/zod/src/v4/classic/tests/refine.test.ts +570 -0
  250. package/node_modules/zod/src/v4/classic/tests/registries.test.ts +243 -0
  251. package/node_modules/zod/src/v4/classic/tests/set.test.ts +181 -0
  252. package/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +134 -0
  253. package/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +125 -0
  254. package/node_modules/zod/src/v4/classic/tests/string.test.ts +1175 -0
  255. package/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +106 -0
  256. package/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +771 -0
  257. package/node_modules/zod/src/v4/classic/tests/to-json-schema-methods.test.ts +438 -0
  258. package/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2990 -0
  259. package/node_modules/zod/src/v4/classic/tests/transform.test.ts +361 -0
  260. package/node_modules/zod/src/v4/classic/tests/tuple.test.ts +183 -0
  261. package/node_modules/zod/src/v4/classic/tests/union.test.ts +219 -0
  262. package/node_modules/zod/src/v4/classic/tests/url.test.ts +13 -0
  263. package/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
  264. package/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
  265. package/node_modules/zod/src/v4/core/api.ts +1798 -0
  266. package/node_modules/zod/src/v4/core/checks.ts +1293 -0
  267. package/node_modules/zod/src/v4/core/config.ts +15 -0
  268. package/node_modules/zod/src/v4/core/core.ts +138 -0
  269. package/node_modules/zod/src/v4/core/doc.ts +44 -0
  270. package/node_modules/zod/src/v4/core/errors.ts +448 -0
  271. package/node_modules/zod/src/v4/core/index.ts +16 -0
  272. package/node_modules/zod/src/v4/core/json-schema-generator.ts +126 -0
  273. package/node_modules/zod/src/v4/core/json-schema-processors.ts +667 -0
  274. package/node_modules/zod/src/v4/core/json-schema.ts +147 -0
  275. package/node_modules/zod/src/v4/core/parse.ts +195 -0
  276. package/node_modules/zod/src/v4/core/regexes.ts +183 -0
  277. package/node_modules/zod/src/v4/core/registries.ts +105 -0
  278. package/node_modules/zod/src/v4/core/schemas.ts +4538 -0
  279. package/node_modules/zod/src/v4/core/standard-schema.ts +159 -0
  280. package/node_modules/zod/src/v4/core/tests/extend.test.ts +59 -0
  281. package/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
  282. package/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
  283. package/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
  284. package/node_modules/zod/src/v4/core/tests/locales/es.test.ts +181 -0
  285. package/node_modules/zod/src/v4/core/tests/locales/he.test.ts +379 -0
  286. package/node_modules/zod/src/v4/core/tests/locales/nl.test.ts +46 -0
  287. package/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
  288. package/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
  289. package/node_modules/zod/src/v4/core/tests/locales/uz.test.ts +83 -0
  290. package/node_modules/zod/src/v4/core/tests/record-constructor.test.ts +67 -0
  291. package/node_modules/zod/src/v4/core/tests/recursive-tuples.test.ts +45 -0
  292. package/node_modules/zod/src/v4/core/to-json-schema.ts +613 -0
  293. package/node_modules/zod/src/v4/core/util.ts +966 -0
  294. package/node_modules/zod/src/v4/core/versions.ts +5 -0
  295. package/node_modules/zod/src/v4/core/zsf.ts +323 -0
  296. package/node_modules/zod/src/v4/index.ts +4 -0
  297. package/node_modules/zod/src/v4/locales/ar.ts +115 -0
  298. package/node_modules/zod/src/v4/locales/az.ts +111 -0
  299. package/node_modules/zod/src/v4/locales/be.ts +176 -0
  300. package/node_modules/zod/src/v4/locales/bg.ts +128 -0
  301. package/node_modules/zod/src/v4/locales/ca.ts +116 -0
  302. package/node_modules/zod/src/v4/locales/cs.ts +118 -0
  303. package/node_modules/zod/src/v4/locales/da.ts +123 -0
  304. package/node_modules/zod/src/v4/locales/de.ts +116 -0
  305. package/node_modules/zod/src/v4/locales/en.ts +119 -0
  306. package/node_modules/zod/src/v4/locales/eo.ts +118 -0
  307. package/node_modules/zod/src/v4/locales/es.ts +141 -0
  308. package/node_modules/zod/src/v4/locales/fa.ts +126 -0
  309. package/node_modules/zod/src/v4/locales/fi.ts +121 -0
  310. package/node_modules/zod/src/v4/locales/fr-CA.ts +116 -0
  311. package/node_modules/zod/src/v4/locales/fr.ts +116 -0
  312. package/node_modules/zod/src/v4/locales/he.ts +246 -0
  313. package/node_modules/zod/src/v4/locales/hu.ts +117 -0
  314. package/node_modules/zod/src/v4/locales/hy.ts +164 -0
  315. package/node_modules/zod/src/v4/locales/id.ts +115 -0
  316. package/node_modules/zod/src/v4/locales/index.ts +49 -0
  317. package/node_modules/zod/src/v4/locales/is.ts +119 -0
  318. package/node_modules/zod/src/v4/locales/it.ts +116 -0
  319. package/node_modules/zod/src/v4/locales/ja.ts +114 -0
  320. package/node_modules/zod/src/v4/locales/ka.ts +123 -0
  321. package/node_modules/zod/src/v4/locales/kh.ts +7 -0
  322. package/node_modules/zod/src/v4/locales/km.ts +119 -0
  323. package/node_modules/zod/src/v4/locales/ko.ts +121 -0
  324. package/node_modules/zod/src/v4/locales/lt.ts +239 -0
  325. package/node_modules/zod/src/v4/locales/mk.ts +118 -0
  326. package/node_modules/zod/src/v4/locales/ms.ts +115 -0
  327. package/node_modules/zod/src/v4/locales/nl.ts +121 -0
  328. package/node_modules/zod/src/v4/locales/no.ts +116 -0
  329. package/node_modules/zod/src/v4/locales/ota.ts +117 -0
  330. package/node_modules/zod/src/v4/locales/pl.ts +118 -0
  331. package/node_modules/zod/src/v4/locales/ps.ts +126 -0
  332. package/node_modules/zod/src/v4/locales/pt.ts +116 -0
  333. package/node_modules/zod/src/v4/locales/ru.ts +176 -0
  334. package/node_modules/zod/src/v4/locales/sl.ts +118 -0
  335. package/node_modules/zod/src/v4/locales/sv.ts +119 -0
  336. package/node_modules/zod/src/v4/locales/ta.ts +118 -0
  337. package/node_modules/zod/src/v4/locales/th.ts +119 -0
  338. package/node_modules/zod/src/v4/locales/tr.ts +111 -0
  339. package/node_modules/zod/src/v4/locales/ua.ts +7 -0
  340. package/node_modules/zod/src/v4/locales/uk.ts +117 -0
  341. package/node_modules/zod/src/v4/locales/ur.ts +119 -0
  342. package/node_modules/zod/src/v4/locales/uz.ts +116 -0
  343. package/node_modules/zod/src/v4/locales/vi.ts +117 -0
  344. package/node_modules/zod/src/v4/locales/yo.ts +124 -0
  345. package/node_modules/zod/src/v4/locales/zh-CN.ts +116 -0
  346. package/node_modules/zod/src/v4/locales/zh-TW.ts +115 -0
  347. package/node_modules/zod/src/v4/mini/checks.ts +32 -0
  348. package/node_modules/zod/src/v4/mini/coerce.ts +27 -0
  349. package/node_modules/zod/src/v4/mini/external.ts +40 -0
  350. package/node_modules/zod/src/v4/mini/index.ts +3 -0
  351. package/node_modules/zod/src/v4/mini/iso.ts +66 -0
  352. package/node_modules/zod/src/v4/mini/parse.ts +14 -0
  353. package/node_modules/zod/src/v4/mini/schemas.ts +1916 -0
  354. package/node_modules/zod/src/v4/mini/tests/apply.test.ts +24 -0
  355. package/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
  356. package/node_modules/zod/src/v4/mini/tests/brand.test.ts +94 -0
  357. package/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
  358. package/node_modules/zod/src/v4/mini/tests/codec.test.ts +529 -0
  359. package/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
  360. package/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
  361. package/node_modules/zod/src/v4/mini/tests/functions.test.ts +5 -0
  362. package/node_modules/zod/src/v4/mini/tests/index.test.ts +963 -0
  363. package/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
  364. package/node_modules/zod/src/v4/mini/tests/object.test.ts +227 -0
  365. package/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
  366. package/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
  367. package/node_modules/zod/src/v4/mini/tests/standard-schema.test.ts +50 -0
  368. package/node_modules/zod/src/v4/mini/tests/string.test.ts +347 -0
  369. package/node_modules/zod/src/v4-mini/index.ts +3 -0
  370. package/node_modules/zod/v3/ZodError.cjs +138 -0
  371. package/node_modules/zod/v3/ZodError.d.cts +164 -0
  372. package/node_modules/zod/v3/ZodError.d.ts +164 -0
  373. package/node_modules/zod/v3/ZodError.js +133 -0
  374. package/node_modules/zod/v3/errors.cjs +17 -0
  375. package/node_modules/zod/v3/errors.d.cts +5 -0
  376. package/node_modules/zod/v3/errors.d.ts +5 -0
  377. package/node_modules/zod/v3/errors.js +9 -0
  378. package/node_modules/zod/v3/external.cjs +22 -0
  379. package/node_modules/zod/v3/external.d.cts +6 -0
  380. package/node_modules/zod/v3/external.d.ts +6 -0
  381. package/node_modules/zod/v3/external.js +6 -0
  382. package/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
  383. package/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
  384. package/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
  385. package/node_modules/zod/v3/helpers/enumUtil.js +1 -0
  386. package/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
  387. package/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
  388. package/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
  389. package/node_modules/zod/v3/helpers/errorUtil.js +6 -0
  390. package/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
  391. package/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
  392. package/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
  393. package/node_modules/zod/v3/helpers/parseUtil.js +109 -0
  394. package/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
  395. package/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
  396. package/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
  397. package/node_modules/zod/v3/helpers/partialUtil.js +1 -0
  398. package/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
  399. package/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
  400. package/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
  401. package/node_modules/zod/v3/helpers/typeAliases.js +1 -0
  402. package/node_modules/zod/v3/helpers/util.cjs +137 -0
  403. package/node_modules/zod/v3/helpers/util.d.cts +85 -0
  404. package/node_modules/zod/v3/helpers/util.d.ts +85 -0
  405. package/node_modules/zod/v3/helpers/util.js +133 -0
  406. package/node_modules/zod/v3/index.cjs +33 -0
  407. package/node_modules/zod/v3/index.d.cts +4 -0
  408. package/node_modules/zod/v3/index.d.ts +4 -0
  409. package/node_modules/zod/v3/index.js +4 -0
  410. package/node_modules/zod/v3/locales/en.cjs +112 -0
  411. package/node_modules/zod/v3/locales/en.d.cts +3 -0
  412. package/node_modules/zod/v3/locales/en.d.ts +3 -0
  413. package/node_modules/zod/v3/locales/en.js +109 -0
  414. package/node_modules/zod/v3/package.json +6 -0
  415. package/node_modules/zod/v3/standard-schema.cjs +2 -0
  416. package/node_modules/zod/v3/standard-schema.d.cts +102 -0
  417. package/node_modules/zod/v3/standard-schema.d.ts +102 -0
  418. package/node_modules/zod/v3/standard-schema.js +1 -0
  419. package/node_modules/zod/v3/types.cjs +3777 -0
  420. package/node_modules/zod/v3/types.d.cts +1034 -0
  421. package/node_modules/zod/v3/types.d.ts +1034 -0
  422. package/node_modules/zod/v3/types.js +3695 -0
  423. package/node_modules/zod/v4/classic/checks.cjs +33 -0
  424. package/node_modules/zod/v4/classic/checks.d.cts +1 -0
  425. package/node_modules/zod/v4/classic/checks.d.ts +1 -0
  426. package/node_modules/zod/v4/classic/checks.js +1 -0
  427. package/node_modules/zod/v4/classic/coerce.cjs +47 -0
  428. package/node_modules/zod/v4/classic/coerce.d.cts +17 -0
  429. package/node_modules/zod/v4/classic/coerce.d.ts +17 -0
  430. package/node_modules/zod/v4/classic/coerce.js +17 -0
  431. package/node_modules/zod/v4/classic/compat.cjs +61 -0
  432. package/node_modules/zod/v4/classic/compat.d.cts +50 -0
  433. package/node_modules/zod/v4/classic/compat.d.ts +50 -0
  434. package/node_modules/zod/v4/classic/compat.js +31 -0
  435. package/node_modules/zod/v4/classic/errors.cjs +74 -0
  436. package/node_modules/zod/v4/classic/errors.d.cts +30 -0
  437. package/node_modules/zod/v4/classic/errors.d.ts +30 -0
  438. package/node_modules/zod/v4/classic/errors.js +48 -0
  439. package/node_modules/zod/v4/classic/external.cjs +73 -0
  440. package/node_modules/zod/v4/classic/external.d.cts +15 -0
  441. package/node_modules/zod/v4/classic/external.d.ts +15 -0
  442. package/node_modules/zod/v4/classic/external.js +20 -0
  443. package/node_modules/zod/v4/classic/from-json-schema.cjs +610 -0
  444. package/node_modules/zod/v4/classic/from-json-schema.d.cts +12 -0
  445. package/node_modules/zod/v4/classic/from-json-schema.d.ts +12 -0
  446. package/node_modules/zod/v4/classic/from-json-schema.js +584 -0
  447. package/node_modules/zod/v4/classic/index.cjs +33 -0
  448. package/node_modules/zod/v4/classic/index.d.cts +4 -0
  449. package/node_modules/zod/v4/classic/index.d.ts +4 -0
  450. package/node_modules/zod/v4/classic/index.js +4 -0
  451. package/node_modules/zod/v4/classic/iso.cjs +60 -0
  452. package/node_modules/zod/v4/classic/iso.d.cts +22 -0
  453. package/node_modules/zod/v4/classic/iso.d.ts +22 -0
  454. package/node_modules/zod/v4/classic/iso.js +30 -0
  455. package/node_modules/zod/v4/classic/package.json +6 -0
  456. package/node_modules/zod/v4/classic/parse.cjs +41 -0
  457. package/node_modules/zod/v4/classic/parse.d.cts +31 -0
  458. package/node_modules/zod/v4/classic/parse.d.ts +31 -0
  459. package/node_modules/zod/v4/classic/parse.js +15 -0
  460. package/node_modules/zod/v4/classic/schemas.cjs +1272 -0
  461. package/node_modules/zod/v4/classic/schemas.d.cts +739 -0
  462. package/node_modules/zod/v4/classic/schemas.d.ts +739 -0
  463. package/node_modules/zod/v4/classic/schemas.js +1157 -0
  464. package/node_modules/zod/v4/core/api.cjs +1222 -0
  465. package/node_modules/zod/v4/core/api.d.cts +304 -0
  466. package/node_modules/zod/v4/core/api.d.ts +304 -0
  467. package/node_modules/zod/v4/core/api.js +1082 -0
  468. package/node_modules/zod/v4/core/checks.cjs +601 -0
  469. package/node_modules/zod/v4/core/checks.d.cts +278 -0
  470. package/node_modules/zod/v4/core/checks.d.ts +278 -0
  471. package/node_modules/zod/v4/core/checks.js +575 -0
  472. package/node_modules/zod/v4/core/core.cjs +83 -0
  473. package/node_modules/zod/v4/core/core.d.cts +70 -0
  474. package/node_modules/zod/v4/core/core.d.ts +70 -0
  475. package/node_modules/zod/v4/core/core.js +76 -0
  476. package/node_modules/zod/v4/core/doc.cjs +39 -0
  477. package/node_modules/zod/v4/core/doc.d.cts +14 -0
  478. package/node_modules/zod/v4/core/doc.d.ts +14 -0
  479. package/node_modules/zod/v4/core/doc.js +35 -0
  480. package/node_modules/zod/v4/core/errors.cjs +213 -0
  481. package/node_modules/zod/v4/core/errors.d.cts +220 -0
  482. package/node_modules/zod/v4/core/errors.d.ts +220 -0
  483. package/node_modules/zod/v4/core/errors.js +182 -0
  484. package/node_modules/zod/v4/core/index.cjs +47 -0
  485. package/node_modules/zod/v4/core/index.d.cts +16 -0
  486. package/node_modules/zod/v4/core/index.d.ts +16 -0
  487. package/node_modules/zod/v4/core/index.js +16 -0
  488. package/node_modules/zod/v4/core/json-schema-generator.cjs +99 -0
  489. package/node_modules/zod/v4/core/json-schema-generator.d.cts +65 -0
  490. package/node_modules/zod/v4/core/json-schema-generator.d.ts +65 -0
  491. package/node_modules/zod/v4/core/json-schema-generator.js +95 -0
  492. package/node_modules/zod/v4/core/json-schema-processors.cjs +648 -0
  493. package/node_modules/zod/v4/core/json-schema-processors.d.cts +49 -0
  494. package/node_modules/zod/v4/core/json-schema-processors.d.ts +49 -0
  495. package/node_modules/zod/v4/core/json-schema-processors.js +605 -0
  496. package/node_modules/zod/v4/core/json-schema.cjs +2 -0
  497. package/node_modules/zod/v4/core/json-schema.d.cts +88 -0
  498. package/node_modules/zod/v4/core/json-schema.d.ts +88 -0
  499. package/node_modules/zod/v4/core/json-schema.js +1 -0
  500. package/node_modules/zod/v4/core/package.json +6 -0
  501. package/node_modules/zod/v4/core/parse.cjs +131 -0
  502. package/node_modules/zod/v4/core/parse.d.cts +49 -0
  503. package/node_modules/zod/v4/core/parse.d.ts +49 -0
  504. package/node_modules/zod/v4/core/parse.js +93 -0
  505. package/node_modules/zod/v4/core/regexes.cjs +166 -0
  506. package/node_modules/zod/v4/core/regexes.d.cts +79 -0
  507. package/node_modules/zod/v4/core/regexes.d.ts +79 -0
  508. package/node_modules/zod/v4/core/regexes.js +133 -0
  509. package/node_modules/zod/v4/core/registries.cjs +56 -0
  510. package/node_modules/zod/v4/core/registries.d.cts +35 -0
  511. package/node_modules/zod/v4/core/registries.d.ts +35 -0
  512. package/node_modules/zod/v4/core/registries.js +51 -0
  513. package/node_modules/zod/v4/core/schemas.cjs +2124 -0
  514. package/node_modules/zod/v4/core/schemas.d.cts +1146 -0
  515. package/node_modules/zod/v4/core/schemas.d.ts +1146 -0
  516. package/node_modules/zod/v4/core/schemas.js +2093 -0
  517. package/node_modules/zod/v4/core/standard-schema.cjs +2 -0
  518. package/node_modules/zod/v4/core/standard-schema.d.cts +126 -0
  519. package/node_modules/zod/v4/core/standard-schema.d.ts +126 -0
  520. package/node_modules/zod/v4/core/standard-schema.js +1 -0
  521. package/node_modules/zod/v4/core/to-json-schema.cjs +446 -0
  522. package/node_modules/zod/v4/core/to-json-schema.d.cts +114 -0
  523. package/node_modules/zod/v4/core/to-json-schema.d.ts +114 -0
  524. package/node_modules/zod/v4/core/to-json-schema.js +437 -0
  525. package/node_modules/zod/v4/core/util.cjs +710 -0
  526. package/node_modules/zod/v4/core/util.d.cts +199 -0
  527. package/node_modules/zod/v4/core/util.d.ts +199 -0
  528. package/node_modules/zod/v4/core/util.js +651 -0
  529. package/node_modules/zod/v4/core/versions.cjs +8 -0
  530. package/node_modules/zod/v4/core/versions.d.cts +5 -0
  531. package/node_modules/zod/v4/core/versions.d.ts +5 -0
  532. package/node_modules/zod/v4/core/versions.js +5 -0
  533. package/node_modules/zod/v4/index.cjs +22 -0
  534. package/node_modules/zod/v4/index.d.cts +3 -0
  535. package/node_modules/zod/v4/index.d.ts +3 -0
  536. package/node_modules/zod/v4/index.js +3 -0
  537. package/node_modules/zod/v4/locales/ar.cjs +133 -0
  538. package/node_modules/zod/v4/locales/ar.d.cts +5 -0
  539. package/node_modules/zod/v4/locales/ar.d.ts +4 -0
  540. package/node_modules/zod/v4/locales/ar.js +106 -0
  541. package/node_modules/zod/v4/locales/az.cjs +132 -0
  542. package/node_modules/zod/v4/locales/az.d.cts +5 -0
  543. package/node_modules/zod/v4/locales/az.d.ts +4 -0
  544. package/node_modules/zod/v4/locales/az.js +105 -0
  545. package/node_modules/zod/v4/locales/be.cjs +183 -0
  546. package/node_modules/zod/v4/locales/be.d.cts +5 -0
  547. package/node_modules/zod/v4/locales/be.d.ts +4 -0
  548. package/node_modules/zod/v4/locales/be.js +156 -0
  549. package/node_modules/zod/v4/locales/bg.cjs +147 -0
  550. package/node_modules/zod/v4/locales/bg.d.cts +5 -0
  551. package/node_modules/zod/v4/locales/bg.d.ts +4 -0
  552. package/node_modules/zod/v4/locales/bg.js +120 -0
  553. package/node_modules/zod/v4/locales/ca.cjs +134 -0
  554. package/node_modules/zod/v4/locales/ca.d.cts +5 -0
  555. package/node_modules/zod/v4/locales/ca.d.ts +4 -0
  556. package/node_modules/zod/v4/locales/ca.js +107 -0
  557. package/node_modules/zod/v4/locales/cs.cjs +138 -0
  558. package/node_modules/zod/v4/locales/cs.d.cts +5 -0
  559. package/node_modules/zod/v4/locales/cs.d.ts +4 -0
  560. package/node_modules/zod/v4/locales/cs.js +111 -0
  561. package/node_modules/zod/v4/locales/da.cjs +142 -0
  562. package/node_modules/zod/v4/locales/da.d.cts +5 -0
  563. package/node_modules/zod/v4/locales/da.d.ts +4 -0
  564. package/node_modules/zod/v4/locales/da.js +115 -0
  565. package/node_modules/zod/v4/locales/de.cjs +135 -0
  566. package/node_modules/zod/v4/locales/de.d.cts +5 -0
  567. package/node_modules/zod/v4/locales/de.d.ts +4 -0
  568. package/node_modules/zod/v4/locales/de.js +108 -0
  569. package/node_modules/zod/v4/locales/en.cjs +136 -0
  570. package/node_modules/zod/v4/locales/en.d.cts +5 -0
  571. package/node_modules/zod/v4/locales/en.d.ts +4 -0
  572. package/node_modules/zod/v4/locales/en.js +109 -0
  573. package/node_modules/zod/v4/locales/eo.cjs +136 -0
  574. package/node_modules/zod/v4/locales/eo.d.cts +5 -0
  575. package/node_modules/zod/v4/locales/eo.d.ts +4 -0
  576. package/node_modules/zod/v4/locales/eo.js +109 -0
  577. package/node_modules/zod/v4/locales/es.cjs +159 -0
  578. package/node_modules/zod/v4/locales/es.d.cts +5 -0
  579. package/node_modules/zod/v4/locales/es.d.ts +4 -0
  580. package/node_modules/zod/v4/locales/es.js +132 -0
  581. package/node_modules/zod/v4/locales/fa.cjs +141 -0
  582. package/node_modules/zod/v4/locales/fa.d.cts +5 -0
  583. package/node_modules/zod/v4/locales/fa.d.ts +4 -0
  584. package/node_modules/zod/v4/locales/fa.js +114 -0
  585. package/node_modules/zod/v4/locales/fi.cjs +139 -0
  586. package/node_modules/zod/v4/locales/fi.d.cts +5 -0
  587. package/node_modules/zod/v4/locales/fi.d.ts +4 -0
  588. package/node_modules/zod/v4/locales/fi.js +112 -0
  589. package/node_modules/zod/v4/locales/fr-CA.cjs +134 -0
  590. package/node_modules/zod/v4/locales/fr-CA.d.cts +5 -0
  591. package/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
  592. package/node_modules/zod/v4/locales/fr-CA.js +107 -0
  593. package/node_modules/zod/v4/locales/fr.cjs +135 -0
  594. package/node_modules/zod/v4/locales/fr.d.cts +5 -0
  595. package/node_modules/zod/v4/locales/fr.d.ts +4 -0
  596. package/node_modules/zod/v4/locales/fr.js +108 -0
  597. package/node_modules/zod/v4/locales/he.cjs +241 -0
  598. package/node_modules/zod/v4/locales/he.d.cts +5 -0
  599. package/node_modules/zod/v4/locales/he.d.ts +4 -0
  600. package/node_modules/zod/v4/locales/he.js +214 -0
  601. package/node_modules/zod/v4/locales/hu.cjs +135 -0
  602. package/node_modules/zod/v4/locales/hu.d.cts +5 -0
  603. package/node_modules/zod/v4/locales/hu.d.ts +4 -0
  604. package/node_modules/zod/v4/locales/hu.js +108 -0
  605. package/node_modules/zod/v4/locales/hy.cjs +174 -0
  606. package/node_modules/zod/v4/locales/hy.d.cts +5 -0
  607. package/node_modules/zod/v4/locales/hy.d.ts +4 -0
  608. package/node_modules/zod/v4/locales/hy.js +147 -0
  609. package/node_modules/zod/v4/locales/id.cjs +133 -0
  610. package/node_modules/zod/v4/locales/id.d.cts +5 -0
  611. package/node_modules/zod/v4/locales/id.d.ts +4 -0
  612. package/node_modules/zod/v4/locales/id.js +106 -0
  613. package/node_modules/zod/v4/locales/index.cjs +104 -0
  614. package/node_modules/zod/v4/locales/index.d.cts +49 -0
  615. package/node_modules/zod/v4/locales/index.d.ts +49 -0
  616. package/node_modules/zod/v4/locales/index.js +49 -0
  617. package/node_modules/zod/v4/locales/is.cjs +136 -0
  618. package/node_modules/zod/v4/locales/is.d.cts +5 -0
  619. package/node_modules/zod/v4/locales/is.d.ts +4 -0
  620. package/node_modules/zod/v4/locales/is.js +109 -0
  621. package/node_modules/zod/v4/locales/it.cjs +135 -0
  622. package/node_modules/zod/v4/locales/it.d.cts +5 -0
  623. package/node_modules/zod/v4/locales/it.d.ts +4 -0
  624. package/node_modules/zod/v4/locales/it.js +108 -0
  625. package/node_modules/zod/v4/locales/ja.cjs +134 -0
  626. package/node_modules/zod/v4/locales/ja.d.cts +5 -0
  627. package/node_modules/zod/v4/locales/ja.d.ts +4 -0
  628. package/node_modules/zod/v4/locales/ja.js +107 -0
  629. package/node_modules/zod/v4/locales/ka.cjs +139 -0
  630. package/node_modules/zod/v4/locales/ka.d.cts +5 -0
  631. package/node_modules/zod/v4/locales/ka.d.ts +4 -0
  632. package/node_modules/zod/v4/locales/ka.js +112 -0
  633. package/node_modules/zod/v4/locales/kh.cjs +12 -0
  634. package/node_modules/zod/v4/locales/kh.d.cts +5 -0
  635. package/node_modules/zod/v4/locales/kh.d.ts +5 -0
  636. package/node_modules/zod/v4/locales/kh.js +5 -0
  637. package/node_modules/zod/v4/locales/km.cjs +137 -0
  638. package/node_modules/zod/v4/locales/km.d.cts +5 -0
  639. package/node_modules/zod/v4/locales/km.d.ts +4 -0
  640. package/node_modules/zod/v4/locales/km.js +110 -0
  641. package/node_modules/zod/v4/locales/ko.cjs +138 -0
  642. package/node_modules/zod/v4/locales/ko.d.cts +5 -0
  643. package/node_modules/zod/v4/locales/ko.d.ts +4 -0
  644. package/node_modules/zod/v4/locales/ko.js +111 -0
  645. package/node_modules/zod/v4/locales/lt.cjs +230 -0
  646. package/node_modules/zod/v4/locales/lt.d.cts +5 -0
  647. package/node_modules/zod/v4/locales/lt.d.ts +4 -0
  648. package/node_modules/zod/v4/locales/lt.js +203 -0
  649. package/node_modules/zod/v4/locales/mk.cjs +136 -0
  650. package/node_modules/zod/v4/locales/mk.d.cts +5 -0
  651. package/node_modules/zod/v4/locales/mk.d.ts +4 -0
  652. package/node_modules/zod/v4/locales/mk.js +109 -0
  653. package/node_modules/zod/v4/locales/ms.cjs +134 -0
  654. package/node_modules/zod/v4/locales/ms.d.cts +5 -0
  655. package/node_modules/zod/v4/locales/ms.d.ts +4 -0
  656. package/node_modules/zod/v4/locales/ms.js +107 -0
  657. package/node_modules/zod/v4/locales/nl.cjs +137 -0
  658. package/node_modules/zod/v4/locales/nl.d.cts +5 -0
  659. package/node_modules/zod/v4/locales/nl.d.ts +4 -0
  660. package/node_modules/zod/v4/locales/nl.js +110 -0
  661. package/node_modules/zod/v4/locales/no.cjs +135 -0
  662. package/node_modules/zod/v4/locales/no.d.cts +5 -0
  663. package/node_modules/zod/v4/locales/no.d.ts +4 -0
  664. package/node_modules/zod/v4/locales/no.js +108 -0
  665. package/node_modules/zod/v4/locales/ota.cjs +136 -0
  666. package/node_modules/zod/v4/locales/ota.d.cts +5 -0
  667. package/node_modules/zod/v4/locales/ota.d.ts +4 -0
  668. package/node_modules/zod/v4/locales/ota.js +109 -0
  669. package/node_modules/zod/v4/locales/package.json +6 -0
  670. package/node_modules/zod/v4/locales/pl.cjs +136 -0
  671. package/node_modules/zod/v4/locales/pl.d.cts +5 -0
  672. package/node_modules/zod/v4/locales/pl.d.ts +4 -0
  673. package/node_modules/zod/v4/locales/pl.js +109 -0
  674. package/node_modules/zod/v4/locales/ps.cjs +141 -0
  675. package/node_modules/zod/v4/locales/ps.d.cts +5 -0
  676. package/node_modules/zod/v4/locales/ps.d.ts +4 -0
  677. package/node_modules/zod/v4/locales/ps.js +114 -0
  678. package/node_modules/zod/v4/locales/pt.cjs +135 -0
  679. package/node_modules/zod/v4/locales/pt.d.cts +5 -0
  680. package/node_modules/zod/v4/locales/pt.d.ts +4 -0
  681. package/node_modules/zod/v4/locales/pt.js +108 -0
  682. package/node_modules/zod/v4/locales/ru.cjs +183 -0
  683. package/node_modules/zod/v4/locales/ru.d.cts +5 -0
  684. package/node_modules/zod/v4/locales/ru.d.ts +4 -0
  685. package/node_modules/zod/v4/locales/ru.js +156 -0
  686. package/node_modules/zod/v4/locales/sl.cjs +136 -0
  687. package/node_modules/zod/v4/locales/sl.d.cts +5 -0
  688. package/node_modules/zod/v4/locales/sl.d.ts +4 -0
  689. package/node_modules/zod/v4/locales/sl.js +109 -0
  690. package/node_modules/zod/v4/locales/sv.cjs +137 -0
  691. package/node_modules/zod/v4/locales/sv.d.cts +5 -0
  692. package/node_modules/zod/v4/locales/sv.d.ts +4 -0
  693. package/node_modules/zod/v4/locales/sv.js +110 -0
  694. package/node_modules/zod/v4/locales/ta.cjs +137 -0
  695. package/node_modules/zod/v4/locales/ta.d.cts +5 -0
  696. package/node_modules/zod/v4/locales/ta.d.ts +4 -0
  697. package/node_modules/zod/v4/locales/ta.js +110 -0
  698. package/node_modules/zod/v4/locales/th.cjs +137 -0
  699. package/node_modules/zod/v4/locales/th.d.cts +5 -0
  700. package/node_modules/zod/v4/locales/th.d.ts +4 -0
  701. package/node_modules/zod/v4/locales/th.js +110 -0
  702. package/node_modules/zod/v4/locales/tr.cjs +132 -0
  703. package/node_modules/zod/v4/locales/tr.d.cts +5 -0
  704. package/node_modules/zod/v4/locales/tr.d.ts +4 -0
  705. package/node_modules/zod/v4/locales/tr.js +105 -0
  706. package/node_modules/zod/v4/locales/ua.cjs +12 -0
  707. package/node_modules/zod/v4/locales/ua.d.cts +5 -0
  708. package/node_modules/zod/v4/locales/ua.d.ts +5 -0
  709. package/node_modules/zod/v4/locales/ua.js +5 -0
  710. package/node_modules/zod/v4/locales/uk.cjs +135 -0
  711. package/node_modules/zod/v4/locales/uk.d.cts +5 -0
  712. package/node_modules/zod/v4/locales/uk.d.ts +4 -0
  713. package/node_modules/zod/v4/locales/uk.js +108 -0
  714. package/node_modules/zod/v4/locales/ur.cjs +137 -0
  715. package/node_modules/zod/v4/locales/ur.d.cts +5 -0
  716. package/node_modules/zod/v4/locales/ur.d.ts +4 -0
  717. package/node_modules/zod/v4/locales/ur.js +110 -0
  718. package/node_modules/zod/v4/locales/uz.cjs +136 -0
  719. package/node_modules/zod/v4/locales/uz.d.cts +5 -0
  720. package/node_modules/zod/v4/locales/uz.d.ts +4 -0
  721. package/node_modules/zod/v4/locales/uz.js +109 -0
  722. package/node_modules/zod/v4/locales/vi.cjs +135 -0
  723. package/node_modules/zod/v4/locales/vi.d.cts +5 -0
  724. package/node_modules/zod/v4/locales/vi.d.ts +4 -0
  725. package/node_modules/zod/v4/locales/vi.js +108 -0
  726. package/node_modules/zod/v4/locales/yo.cjs +134 -0
  727. package/node_modules/zod/v4/locales/yo.d.cts +5 -0
  728. package/node_modules/zod/v4/locales/yo.d.ts +4 -0
  729. package/node_modules/zod/v4/locales/yo.js +107 -0
  730. package/node_modules/zod/v4/locales/zh-CN.cjs +136 -0
  731. package/node_modules/zod/v4/locales/zh-CN.d.cts +5 -0
  732. package/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
  733. package/node_modules/zod/v4/locales/zh-CN.js +109 -0
  734. package/node_modules/zod/v4/locales/zh-TW.cjs +134 -0
  735. package/node_modules/zod/v4/locales/zh-TW.d.cts +5 -0
  736. package/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
  737. package/node_modules/zod/v4/locales/zh-TW.js +107 -0
  738. package/node_modules/zod/v4/mini/checks.cjs +34 -0
  739. package/node_modules/zod/v4/mini/checks.d.cts +1 -0
  740. package/node_modules/zod/v4/mini/checks.d.ts +1 -0
  741. package/node_modules/zod/v4/mini/checks.js +1 -0
  742. package/node_modules/zod/v4/mini/coerce.cjs +52 -0
  743. package/node_modules/zod/v4/mini/coerce.d.cts +7 -0
  744. package/node_modules/zod/v4/mini/coerce.d.ts +7 -0
  745. package/node_modules/zod/v4/mini/coerce.js +22 -0
  746. package/node_modules/zod/v4/mini/external.cjs +63 -0
  747. package/node_modules/zod/v4/mini/external.d.cts +12 -0
  748. package/node_modules/zod/v4/mini/external.d.ts +12 -0
  749. package/node_modules/zod/v4/mini/external.js +14 -0
  750. package/node_modules/zod/v4/mini/index.cjs +32 -0
  751. package/node_modules/zod/v4/mini/index.d.cts +3 -0
  752. package/node_modules/zod/v4/mini/index.d.ts +3 -0
  753. package/node_modules/zod/v4/mini/index.js +3 -0
  754. package/node_modules/zod/v4/mini/iso.cjs +64 -0
  755. package/node_modules/zod/v4/mini/iso.d.cts +22 -0
  756. package/node_modules/zod/v4/mini/iso.d.ts +22 -0
  757. package/node_modules/zod/v4/mini/iso.js +34 -0
  758. package/node_modules/zod/v4/mini/package.json +6 -0
  759. package/node_modules/zod/v4/mini/parse.cjs +16 -0
  760. package/node_modules/zod/v4/mini/parse.d.cts +1 -0
  761. package/node_modules/zod/v4/mini/parse.d.ts +1 -0
  762. package/node_modules/zod/v4/mini/parse.js +1 -0
  763. package/node_modules/zod/v4/mini/schemas.cjs +1046 -0
  764. package/node_modules/zod/v4/mini/schemas.d.cts +427 -0
  765. package/node_modules/zod/v4/mini/schemas.d.ts +427 -0
  766. package/node_modules/zod/v4/mini/schemas.js +925 -0
  767. package/node_modules/zod/v4/package.json +6 -0
  768. package/node_modules/zod/v4-mini/index.cjs +32 -0
  769. package/node_modules/zod/v4-mini/index.d.cts +3 -0
  770. package/node_modules/zod/v4-mini/index.d.ts +3 -0
  771. package/node_modules/zod/v4-mini/index.js +3 -0
  772. package/node_modules/zod/v4-mini/package.json +6 -0
  773. package/package.json +56 -46
  774. package/pnpm-workspace.yaml +15 -0
  775. package/scripts/generate-pnpm-workspace-types.ts +33 -0
@@ -0,0 +1,665 @@
1
+ /**
2
+ * TypeScript definitions for pnpm-workspace.yaml (JSON Schema from https://json.schemastore.org/pnpm-workspace.json)
3
+ * DO NOT EDIT BY HAND. Run `pnpm run generate:pnpm-workspace-types` to regenerate.
4
+ */
5
+
6
+ /**
7
+ * Define dependency version ranges as reusable constants,
8
+ * for later reference in package.json files.
9
+ * This (singular) field creates a catalog named default.
10
+ *
11
+ */
12
+ export type Dependency = {
13
+ [k: string]: string;
14
+ } | null;
15
+
16
+ /**
17
+ * JSON schema for pnpm-workspace.yaml files
18
+ */
19
+ export interface PnpmWorkspaceSpecification {
20
+ /**
21
+ * Workspace package paths. Glob patterns are supported
22
+ */
23
+ packages?: string[];
24
+ catalog?: Dependency;
25
+ /**
26
+ * Define arbitrarily named catalogs
27
+ */
28
+ catalogs?: {
29
+ [k: string]: Catalog;
30
+ } | null;
31
+ /**
32
+ * Controlling if and how dependencies are added to the default catalog
33
+ */
34
+ catalogMode?: "strict" | "prefer" | "manual";
35
+ /**
36
+ * When set to `true`, pnpm will remove unused catalog entries during installation.
37
+ */
38
+ cleanupUnusedCatalogs?: boolean;
39
+ /**
40
+ * A list of package names that are allowed to be executed during installation.
41
+ */
42
+ onlyBuiltDependencies?: string[];
43
+ /**
44
+ * Used to override any dependency in the dependency graph.
45
+ */
46
+ overrides?: {};
47
+ /**
48
+ * Used to extend the existing package definitions with additional information.
49
+ */
50
+ packageExtensions?: {
51
+ /**
52
+ * This interface was referenced by `undefined`'s JSON-Schema definition
53
+ * via the `patternProperty` "^.+$".
54
+ */
55
+ [k: string]: {
56
+ dependencies?: Dependency1;
57
+ optionalDependencies?: OptionalDependency;
58
+ peerDependencies?: PeerDependency;
59
+ peerDependenciesMeta?: PeerDependencyMeta;
60
+ };
61
+ };
62
+ peerDependencyRules?: {
63
+ /**
64
+ * pnpm will not print warnings about missing peer dependencies from this list.
65
+ */
66
+ ignoreMissing?: string[];
67
+ /**
68
+ * Unmet peer dependency warnings will not be printed for peer dependencies of the specified range.
69
+ */
70
+ allowedVersions?: {};
71
+ /**
72
+ * Any peer dependency matching the pattern will be resolved from any version, regardless of the range specified in "peerDependencies".
73
+ */
74
+ allowAny?: string[];
75
+ };
76
+ /**
77
+ * A list of dependencies to run builds for.
78
+ */
79
+ neverBuiltDependencies?: string[];
80
+ /**
81
+ * If set to true, all build scripts (e.g. preinstall, install, postinstall) from dependencies will run automatically, without requiring approval.
82
+ */
83
+ dangerouslyAllowAllBuilds?: boolean;
84
+ /**
85
+ * Specifies a JSON file that lists the only packages permitted to run installation scripts during the pnpm install process.
86
+ */
87
+ onlyBuiltDependenciesFile?: string;
88
+ /**
89
+ * A list of package names that should not be built during installation.
90
+ */
91
+ ignoredBuiltDependencies?: string[];
92
+ /**
93
+ * A list of deprecated versions that the warnings are suppressed.
94
+ */
95
+ allowedDeprecatedVersions?: {
96
+ [k: string]: string;
97
+ };
98
+ /**
99
+ * A list of dependencies that are patched.
100
+ */
101
+ patchedDependencies?: {
102
+ [k: string]: string;
103
+ };
104
+ /**
105
+ * When true, installation won't fail if some of the patches from the "patchedDependencies" field were not applied. (Previously named "allowNonAppliedPatches")
106
+ */
107
+ allowUnusedPatches?: boolean;
108
+ /**
109
+ * When true, installation won't fail if some of the patches from the "patchedDependencies" field were not applied.
110
+ */
111
+ allowNonAppliedPatches?: boolean;
112
+ /**
113
+ * Default is undefined. Errors out when a patch with an exact version or version range fails. Ignores failures from name-only patches. When true, prints a warning instead of failing when any patch cannot be applied. When false, errors out for any patch failure.
114
+ */
115
+ ignorePatchFailures?: boolean;
116
+ updateConfig?: {
117
+ /**
118
+ * A list of packages that should be ignored when running "pnpm outdated" or "pnpm update --latest".
119
+ */
120
+ ignoreDependencies?: string[];
121
+ };
122
+ /**
123
+ * Config dependencies allow you to share and centralize configuration files, settings, and hooks across multiple projects. They are installed before all regular dependencies ('dependencies', 'devDependencies', 'optionalDependencies'), making them ideal for setting up custom hooks, patches, and catalog entries.
124
+ */
125
+ configDependencies?: {};
126
+ auditConfig?: {
127
+ /**
128
+ * A list of CVE IDs that will be ignored by "pnpm audit".
129
+ */
130
+ ignoreCves?: string[];
131
+ /**
132
+ * A list of GHSA Codes that will be ignored by "pnpm audit".
133
+ */
134
+ ignoreGhsas?: string[];
135
+ };
136
+ /**
137
+ * A list of scripts that must exist in each project.
138
+ */
139
+ requiredScripts?: string[];
140
+ /**
141
+ * Specifies architectures for which you'd like to install optional dependencies, even if they don't match the architecture of the system running the install.
142
+ */
143
+ supportedArchitectures?: {
144
+ os?: string[];
145
+ cpu?: string[];
146
+ libc?: string[];
147
+ };
148
+ /**
149
+ * A list of optional dependencies that the install should be skipped.
150
+ */
151
+ ignoredOptionalDependencies?: string[];
152
+ executionEnv?: {
153
+ /**
154
+ * Specifies which exact Node.js version should be used for the project's runtime.
155
+ */
156
+ nodeVersion?: string;
157
+ };
158
+ /**
159
+ * When true, all dependencies are hoisted to node_modules/.pnpm/node_modules.
160
+ */
161
+ hoist?: boolean;
162
+ /**
163
+ * When true, packages from the workspaces are symlinked to either <workspace_root>/node_modules/.pnpm/node_modules or to <workspace_root>/node_modules depending on other hoisting settings (hoistPattern and publicHoistPattern).
164
+ */
165
+ hoistWorkspacePackages?: boolean;
166
+ /**
167
+ * Tells pnpm which packages should be hoisted to node_modules/.pnpm/node_modules
168
+ */
169
+ hoistPattern?: string[];
170
+ /**
171
+ * Unlike hoistPattern, which hoists dependencies to a hidden modules directory inside the virtual store, publicHoistPattern hoists dependencies matching the pattern to the root modules directory.
172
+ */
173
+ publicHoistPattern?: string[];
174
+ /**
175
+ * By default, pnpm creates a semistrict node_modules, meaning dependencies have access to undeclared dependencies but modules outside of node_modules do not.
176
+ */
177
+ shamefullyHoist?: boolean;
178
+ /**
179
+ * The directory in which dependencies will be installed (instead of node_modules).
180
+ */
181
+ modulesDir?: string;
182
+ /**
183
+ * Defines what linker should be used for installing Node packages.
184
+ */
185
+ nodeLinker?: "isolated" | "hoisted" | "pnp";
186
+ /**
187
+ * When symlink is set to false, pnpm creates a virtual store directory without any symlinks. It is a useful setting together with nodeLinker=pnp.
188
+ */
189
+ symlink?: boolean;
190
+ /**
191
+ * When false, pnpm will not write any files to the modules directory (node_modules).
192
+ */
193
+ enableModulesDir?: boolean;
194
+ /**
195
+ * The directory with links to the store.
196
+ */
197
+ virtualStoreDir?: string;
198
+ /**
199
+ * Sets the maximum allowed length of directory names inside the virtual store directory (node_modules/.pnpm).
200
+ */
201
+ virtualStoreDirMaxLength?: number;
202
+ /**
203
+ * Controls the way packages are imported from the store (if you want to disable symlinks inside node_modules, then you need to change the nodeLinker setting, not this one).
204
+ */
205
+ packageImportMethod?:
206
+ | "auto"
207
+ | "hardlink"
208
+ | "copy"
209
+ | "clone"
210
+ | "clone-or-copy";
211
+ /**
212
+ * The time in minutes after which orphan packages from the modules directory should be removed.
213
+ */
214
+ modulesCacheMaxAge?: number;
215
+ /**
216
+ * The time in minutes after which dlx cache expires.
217
+ */
218
+ dlxCacheMaxAge?: number;
219
+ /**
220
+ * The location where all the packages are saved on the disk.
221
+ */
222
+ storeDir?: string;
223
+ /**
224
+ * By default, if a file in the store has been modified, the content of this file is checked before linking it to a project's node_modules.
225
+ */
226
+ verifyStoreIntegrity?: boolean;
227
+ /**
228
+ * Some registries allow the exact same content to be published under different package names and/or versions.
229
+ */
230
+ strictStorePkgContentCheck?: boolean;
231
+ /**
232
+ * When enabled, node_modules contains only symlinks to a central virtual store, rather than to node_modules/.pnpm.
233
+ */
234
+ enableGlobalVirtualStore?: boolean;
235
+ /**
236
+ * When set to false, pnpm won't read or generate a pnpm-lock.yaml file.
237
+ */
238
+ lockfile?: boolean;
239
+ /**
240
+ * When set to true and the available pnpm-lock.yaml satisfies the package.json dependencies directive, a headless installation is performed.
241
+ */
242
+ preferFrozenLockfile?: boolean;
243
+ /**
244
+ * Add the full URL to the package's tarball to every entry in pnpm-lock.yaml.
245
+ */
246
+ lockfileIncludeTarballUrl?: boolean;
247
+ /**
248
+ * When set to true, the generated lockfile name after installation will be named based on the current branch name to completely avoid merge conflicts.
249
+ */
250
+ gitBranchLockfile?: boolean;
251
+ /**
252
+ * This configuration matches the current branch name to determine whether to merge all git branch lockfile files.
253
+ */
254
+ mergeGitBranchLockfilesBranchPattern?: unknown[] | null;
255
+ /**
256
+ * Max length of the peer IDs suffix added to dependency keys in the lockfile. If the suffix is longer, it is replaced with a hash.
257
+ */
258
+ peersSuffixMaxLength?: number;
259
+ /**
260
+ * The base URL of the npm package registry (trailing slash included).
261
+ */
262
+ registry?: string;
263
+ /**
264
+ * The Certificate Authority signing certificate that is trusted for SSL connections to the registry.
265
+ */
266
+ ca?: string;
267
+ /**
268
+ * A path to a file containing one or multiple Certificate Authority signing certificates.
269
+ */
270
+ cafile?: string;
271
+ /**
272
+ * A client certificate to pass when accessing the registry.
273
+ */
274
+ cert?: string;
275
+ /**
276
+ * A client key to pass when accessing the registry.
277
+ */
278
+ key?: string;
279
+ /**
280
+ * When fetching dependencies that are Git repositories, if the host is listed in this setting, pnpm will use shallow cloning to fetch only the needed commit, not all the history.
281
+ */
282
+ gitShallowHosts?: string[];
283
+ /**
284
+ * A proxy to use for outgoing HTTPS requests. If the HTTPS_PROXY, https_proxy, HTTP_PROXY or http_proxy environment variables are set, their values will be used instead.
285
+ */
286
+ httpsProxy?: string;
287
+ /**
288
+ * A proxy to use for outgoing http requests. If the HTTP_PROXY or http_proxy environment variables are set, proxy settings will be honored by the underlying request library.
289
+ */
290
+ proxy?: string;
291
+ /**
292
+ * The IP address of the local interface to use when making connections to the npm registry.
293
+ */
294
+ localAddress?: string;
295
+ /**
296
+ * The maximum number of connections to use per origin (protocol/host/port combination).
297
+ */
298
+ maxsockets?: number;
299
+ /**
300
+ * A comma-separated string of domain extensions that a proxy should not be used for.
301
+ */
302
+ noproxy?: string;
303
+ /**
304
+ * Whether or not to do SSL key validation when making requests to the registry via HTTPS.
305
+ */
306
+ strictSsl?: boolean;
307
+ /**
308
+ * Controls the maximum number of HTTP(S) requests to process simultaneously.
309
+ */
310
+ networkConcurrency?: number;
311
+ /**
312
+ * How many times to retry if pnpm fails to fetch from the registry.
313
+ */
314
+ fetchRetries?: number;
315
+ /**
316
+ * The exponential factor for retry backoff.
317
+ */
318
+ fetchRetryFactor?: number;
319
+ /**
320
+ * The minimum (base) timeout for retrying requests.
321
+ */
322
+ fetchRetryMintimeout?: number;
323
+ /**
324
+ * The maximum fallback timeout to ensure the retry factor does not make requests too long.
325
+ */
326
+ fetchRetryMaxtimeout?: number;
327
+ /**
328
+ * The maximum amount of time to wait for HTTP requests to complete.
329
+ */
330
+ fetchTimeout?: number;
331
+ /**
332
+ * When true, any missing non-optional peer dependencies are automatically installed.
333
+ */
334
+ autoInstallPeers?: boolean;
335
+ /**
336
+ * When this setting is set to true, packages with peer dependencies will be deduplicated after peers resolution.
337
+ */
338
+ dedupePeerDependents?: boolean;
339
+ /**
340
+ * If this is enabled, commands will fail if there is a missing or invalid peer dependency in the tree.
341
+ */
342
+ strictPeerDependencies?: boolean;
343
+ /**
344
+ * When enabled, dependencies of the root workspace project are used to resolve peer dependencies of any projects in the workspace.
345
+ */
346
+ resolvePeersFromWorkspaceRoot?: boolean;
347
+ /**
348
+ * Controls colors in the output.
349
+ */
350
+ color?: "always" | "auto" | "never";
351
+ /**
352
+ * Any logs at or higher than the given level will be shown.
353
+ */
354
+ loglevel?: "debug" | "info" | "warn" | "error";
355
+ /**
356
+ * Experimental option that enables beta features of the CLI.
357
+ */
358
+ useBetaCli?: boolean;
359
+ /**
360
+ * If this is enabled, the primary behaviour of pnpm install becomes that of pnpm install -r, meaning the install is performed on all workspace or subdirectory packages.
361
+ */
362
+ recursiveInstall?: boolean;
363
+ /**
364
+ * If this is enabled, pnpm will not install any package that claims to not be compatible with the current Node version.
365
+ */
366
+ engineStrict?: boolean;
367
+ /**
368
+ * The location of the npm binary that pnpm uses for some actions, like publishing.
369
+ */
370
+ npmPath?: string;
371
+ /**
372
+ * If this setting is disabled, pnpm will not fail if a different package manager is specified in the packageManager field of package.json. When enabled, only the package name is checked (since pnpm v9.2.0), so you can still run any version of pnpm regardless of the version specified in the packageManager field.
373
+ */
374
+ packageManagerStrict?: boolean;
375
+ /**
376
+ * When enabled, pnpm will fail if its version doesn't exactly match the version specified in the packageManager field of package.json.
377
+ */
378
+ packageManagerStrictVersion?: boolean;
379
+ /**
380
+ * When enabled, pnpm will automatically download and run the version of pnpm specified in the packageManager field of package.json.
381
+ */
382
+ managePackageManagerVersions?: boolean;
383
+ /**
384
+ * Do not execute any scripts defined in the project package.json and its dependencies.
385
+ */
386
+ ignoreScripts?: boolean;
387
+ /**
388
+ * Do not execute any scripts of the installed packages. Scripts of the projects are executed.
389
+ */
390
+ ignoreDepScripts?: boolean;
391
+ /**
392
+ * The maximum number of child processes to allocate simultaneously to build node_modules.
393
+ */
394
+ childConcurrency?: number;
395
+ /**
396
+ * Use and cache the results of (pre/post)install hooks.
397
+ */
398
+ sideEffectsCache?: boolean;
399
+ /**
400
+ * Only use the side effects cache if present, do not create it for new packages.
401
+ */
402
+ sideEffectsCacheReadonly?: boolean;
403
+ /**
404
+ * Set to true to enable UID/GID switching when running package scripts. If set explicitly to false, then installing as a non-root user will fail.
405
+ */
406
+ unsafePerm?: boolean;
407
+ /**
408
+ * Options to pass through to Node.js via the NODE_OPTIONS environment variable.
409
+ */
410
+ nodeOptions?: string;
411
+ /**
412
+ * This setting allows the checking of the state of dependencies before running scripts.
413
+ */
414
+ verifyDepsBeforeRun?: "install" | "warn" | "error" | "prompt" | false;
415
+ /**
416
+ * When strictDepBuilds is enabled, the installation will exit with a non-zero exit code if any dependencies have unreviewed build scripts (aka postinstall scripts).
417
+ */
418
+ strictDepBuilds?: boolean;
419
+ /**
420
+ * Specifies which exact Node.js version should be used for the project's runtime.
421
+ */
422
+ useNodeVersion?: string;
423
+ /**
424
+ * The Node.js version to use when checking a package's engines setting.
425
+ */
426
+ nodeVersion?: string;
427
+ /**
428
+ * If this is enabled, locally available packages are linked to node_modules instead of being downloaded from the registry.
429
+ */
430
+ linkWorkspacePackages?: boolean | "deep";
431
+ /**
432
+ * Enables hard-linking of all local workspace dependencies instead of symlinking them.
433
+ */
434
+ injectWorkspacePackages?: boolean;
435
+ /**
436
+ * Injected workspace dependencies are collections of hardlinks, which don't add or remove the files when their sources change.
437
+ */
438
+ syncInjectedDepsAfterScripts?: string[];
439
+ /**
440
+ * If this is enabled, local packages from the workspace are preferred over packages from the registry, even if there is a newer version of the package in the registry.
441
+ */
442
+ preferWorkspacePackages?: boolean;
443
+ /**
444
+ * If this is enabled, pnpm creates a single pnpm-lock.yaml file in the root of the workspace.
445
+ */
446
+ sharedWorkspaceLockfile?: boolean;
447
+ /**
448
+ * This setting controls how dependencies that are linked from the workspace are added to package.json.
449
+ */
450
+ saveWorkspaceProtocol?: boolean | "rolling";
451
+ /**
452
+ * When executing commands recursively in a workspace, execute them on the root workspace project as well.
453
+ */
454
+ includeWorkspaceRoot?: boolean;
455
+ /**
456
+ * When set to true, no workspace cycle warnings will be printed.
457
+ */
458
+ ignoreWorkspaceCycles?: boolean;
459
+ /**
460
+ * Adding a new dependency to the root workspace package fails, unless the --ignore-workspace-root-check or -w flag is used.
461
+ */
462
+ ignoreWorkspaceRootCheck?: boolean;
463
+ /**
464
+ * When set to true, installation will fail if the workspace has cycles.
465
+ */
466
+ disallowWorkspaceCycles?: boolean;
467
+ /**
468
+ * Set the maximum number of tasks to run simultaneously. For unlimited concurrency use Infinity. You can set the value to <= 0 and it will use amount of CPU cores of the host minus the absolute value of the provided number as: max(1, (number of cores) - abs(workspaceConcurrency)).
469
+ */
470
+ workspaceConcurrency?: number;
471
+ /**
472
+ * If true, pnpm will fail if no packages match the filter
473
+ */
474
+ failIfNoMatch?: boolean;
475
+ /**
476
+ * By default, pnpm deploy will try creating a dedicated lockfile from a shared lockfile for deployment. If this setting is set to true, the legacy deploy behavior will be used.
477
+ */
478
+ forceLegacyDeploy?: boolean;
479
+ /**
480
+ * Configure how versions of packages installed to a package.json file get prefixed.
481
+ */
482
+ savePrefix?: "^" | "~" | "";
483
+ /**
484
+ * If you pnpm add a package and you don't provide a specific version, then it will install the package at the version registered under the tag from this setting.
485
+ */
486
+ tag?: string;
487
+ /**
488
+ * Specify a custom directory to store global packages.
489
+ */
490
+ globalDir?: string;
491
+ /**
492
+ * Allows to set the target directory for the bin files of globally installed packages.
493
+ */
494
+ globalBinDir?: string;
495
+ /**
496
+ * The location where all the packages are saved on the disk.
497
+ */
498
+ stateDir?: string;
499
+ /**
500
+ * The location of the cache (package metadata and dlx).
501
+ */
502
+ cacheDir?: string;
503
+ /**
504
+ * When true, all the output is written to stderr.
505
+ */
506
+ useStderr?: boolean;
507
+ /**
508
+ * When true, pnpm will check for updates to the installed packages and notify the user.
509
+ */
510
+ updateNotifier?: boolean;
511
+ /**
512
+ * Create symlinks to executables in node_modules/.bin instead of command shims. This setting is ignored on Windows, where only command shims work.
513
+ */
514
+ preferSymlinkedExecutables?: boolean;
515
+ /**
516
+ * During installation the dependencies of some packages are automatically patched. If you want to disable this, set this config to false.
517
+ */
518
+ ignoreCompatibilityDb?: boolean;
519
+ /**
520
+ * Determines how pnpm resolves dependencies, See https://pnpm.io/settings#resolutionmode
521
+ */
522
+ resolutionMode?: "highest" | "time-based" | "lowest-direct";
523
+ /**
524
+ * Set this to true if the registry that you are using returns the "time" field in the abbreviated metadata.
525
+ */
526
+ registrySupportsTimeField?: boolean;
527
+ /**
528
+ * When false, the NODE_PATH environment variable is not set in the command shims.
529
+ */
530
+ extendNodePath?: boolean;
531
+ /**
532
+ * When deploying a package or installing a local package, all files of the package are copied.
533
+ */
534
+ deployAllFiles?: boolean;
535
+ /**
536
+ * When set to true, dependencies that are already symlinked to the root node_modules directory of the workspace will not be symlinked to subproject node_modules directories.
537
+ */
538
+ dedupeDirectDeps?: boolean;
539
+ /**
540
+ * When this setting is enabled, dependencies that are injected will be symlinked from the workspace whenever possible.
541
+ */
542
+ dedupeInjectedDeps?: boolean;
543
+ /**
544
+ * When enabled, a fast check will be performed before proceeding to installation. This way a repeat install or an install on a project with everything up-to-date becomes a lot faster.
545
+ */
546
+ optimisticRepeatInstall?: boolean;
547
+ /**
548
+ * Check if current branch is your publish branch, clean, and up-to-date with remote.
549
+ */
550
+ gitChecks?: boolean;
551
+ /**
552
+ * The primary branch of the repository which is used for publishing the latest changes.
553
+ */
554
+ publishBranch?: string;
555
+ /**
556
+ * The location of the local pnpmfile.
557
+ */
558
+ pnpmfile?: string;
559
+ /**
560
+ * The location of a global pnpmfile. A global pnpmfile is used by all projects during installation.
561
+ */
562
+ globalPnpmfile?: string;
563
+ /**
564
+ * .pnpmfile.cjs will be ignored. Useful together with --ignore-scripts when you want to make sure that no script gets executed during install.
565
+ */
566
+ ignorePnpmfile?: boolean;
567
+ /**
568
+ * The generated patch file will be saved to this directory.
569
+ */
570
+ patchesDir?: string;
571
+ /**
572
+ * When true, pnpm will run any pre/post scripts automatically.
573
+ */
574
+ enablePrePostScripts?: boolean;
575
+ /**
576
+ * The shell to use for scripts run with the pnpm run command.
577
+ */
578
+ scriptShell?: string;
579
+ /**
580
+ * When true, pnpm will use a JavaScript implementation of a bash-like shell to execute scripts.
581
+ */
582
+ shellEmulator?: boolean;
583
+ /**
584
+ * Saved dependencies will be configured with an exact version rather than using pnpm's default semver range operator.
585
+ */
586
+ saveExact?: boolean;
587
+ /**
588
+ * minimumReleaseAge defines the minimum number of minutes that must pass after a version is published before pnpm will install it. This applies to all dependencies, including transitive ones.
589
+ */
590
+ minimumReleaseAge?: number;
591
+ /**
592
+ * If you set `minimumReleaseAge` but need certain dependencies to always install the newest version immediately, you can list them under `minimumReleaseAgeExclude`. The exclusion works by `package name` and applies to all versions of that package.
593
+ */
594
+ minimumReleaseAgeExclude?: string[];
595
+ /**
596
+ * Bypass staleness checks for cached data. Missing data will still be requested from the server.
597
+ */
598
+ preferOffline?: boolean;
599
+ /**
600
+ * When set to no-downgrade, pnpm will fail if a package's trust level has decreased compared to previous releases. For example, if a package was previously published by a trusted publisher but now only has provenance or no trust evidence, installation will fail. This helps prevent installing potentially compromised versions.
601
+ */
602
+ trustPolicy?: "off" | "no-downgrade";
603
+ /**
604
+ * You can now list one or more specific packages or versions that pnpm should allow to install, even if those packages don't satisfy the trust policy requirement.
605
+ */
606
+ trustPolicyExclude?: string[];
607
+ /**
608
+ * A map of package matchers to explicitly allow (`true`) or disallow (`false`) script execution. This field replaces `onlyBuiltDependencies` and `ignoredBuiltDependencies` (which are also deprecated by this new setting), providing a single source of truth.
609
+ */
610
+ allowBuilds?: {};
611
+ /**
612
+ * When set to true, it prevents the resolution of exotic protocols (like git+ssh: or direct https: tarballs) in transitive dependencies. Only direct dependencies are allowed to use exotic sources.
613
+ */
614
+ blockExoticSubdeps?: boolean;
615
+ /**
616
+ * Allows ignoring the trust policy check for packages published more than the specified number of minutes ago. This is useful when enabling strict trust policies, as it allows older versions of packages (which may lack a process for publishing with signatures or provenance) to be installed without manual exclusion, assuming they are safe due to their age.
617
+ */
618
+ trustPolicyIgnoreAfter?: number;
619
+ /**
620
+ * Controls the level of issues reported by `pnpm audit`. When set to 'low', all vulnerabilities are reported. When set to 'moderate', 'high', or 'critical', only vulnerabilities with that severity or higher are reported.
621
+ */
622
+ auditLevel?: "low" | "moderate" | "high" | "critical";
623
+ }
624
+ /**
625
+ * Define dependency version ranges as reusable constants,
626
+ * for later reference in package.json files.
627
+ * This (singular) field creates a catalog named default.
628
+ *
629
+ */
630
+ export interface Catalog {
631
+ [k: string]: string;
632
+ }
633
+ /**
634
+ * Dependencies are specified with a simple hash of package name to version range.
635
+ * The version range is a string which has one or more space-separated descriptors.
636
+ * Dependencies can also be identified with a tarball or git URL.
637
+ *
638
+ */
639
+ export interface Dependency1 {
640
+ [k: string]: string;
641
+ }
642
+ /**
643
+ * Specifies dependencies that are optional for your project. These dependencies are attempted to be installed during the npm install process, but if they fail to install, the installation process will not fail.
644
+ */
645
+ export interface OptionalDependency {
646
+ [k: string]: string;
647
+ }
648
+ /**
649
+ * Specifies dependencies that are required by the package but are expected to be provided by the consumer of the package.
650
+ */
651
+ export interface PeerDependency {
652
+ [k: string]: string;
653
+ }
654
+ /**
655
+ * When a user installs your package, warnings are emitted if packages specified in "peerDependencies" are not already installed. The "peerDependenciesMeta" field serves to provide more information on how your peer dependencies are utilized. Most commonly, it allows peer dependencies to be marked as optional. Metadata for this field is specified with a simple hash of the package name to a metadata object.
656
+ */
657
+ export interface PeerDependencyMeta {
658
+ [k: string]: {
659
+ /**
660
+ * Specifies that this peer dependency is optional and should not be installed automatically.
661
+ */
662
+ optional?: boolean;
663
+ [k: string]: unknown;
664
+ };
665
+ }