@snowcone-app/canvas 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (370) hide show
  1. package/LICENSE.txt +70 -0
  2. package/README.md +357 -0
  3. package/dist/CanvasStateV1-D5GzvmnY.cjs +65 -0
  4. package/dist/CanvasStateV1-D5GzvmnY.cjs.map +1 -0
  5. package/dist/CanvasStateV1-ejb4d_LM.js +3692 -0
  6. package/dist/CanvasStateV1-ejb4d_LM.js.map +1 -0
  7. package/dist/ElementFactory-B7UOaJSD.cjs +23865 -0
  8. package/dist/ElementFactory-B7UOaJSD.cjs.map +1 -0
  9. package/dist/ElementFactory-uJTXU-nP.js +29615 -0
  10. package/dist/ElementFactory-uJTXU-nP.js.map +1 -0
  11. package/dist/HybridHistoryManager-BV6XV0nD.js +8048 -0
  12. package/dist/HybridHistoryManager-BV6XV0nD.js.map +1 -0
  13. package/dist/HybridHistoryManager-BXD93pp8.cjs +8 -0
  14. package/dist/HybridHistoryManager-BXD93pp8.cjs.map +1 -0
  15. package/dist/ImportManager-BYwuK6n4.cjs +2 -0
  16. package/dist/ImportManager-BYwuK6n4.cjs.map +1 -0
  17. package/dist/ImportManager-CxiaRg1N.js +222 -0
  18. package/dist/ImportManager-CxiaRg1N.js.map +1 -0
  19. package/dist/ThemeContext-4mJ_y0Me.cjs +2 -0
  20. package/dist/ThemeContext-4mJ_y0Me.cjs.map +1 -0
  21. package/dist/ThemeContext-H0Z-MqqR.js +1077 -0
  22. package/dist/ThemeContext-H0Z-MqqR.js.map +1 -0
  23. package/dist/advanced.d.ts +2 -0
  24. package/dist/advanced.js +48 -0
  25. package/dist/advanced.js.map +1 -0
  26. package/dist/advanced.mjs +15679 -0
  27. package/dist/advanced.mjs.map +1 -0
  28. package/dist/api/advanced.d.ts +110 -0
  29. package/dist/api/internals.d.ts +39 -0
  30. package/dist/api/stable.d.ts +44 -0
  31. package/dist/api/testing.d.ts +25 -0
  32. package/dist/browser-module-D0gHY9rY.cjs +9 -0
  33. package/dist/browser-module-D0gHY9rY.cjs.map +1 -0
  34. package/dist/browser-module-DFvKXBUE.js +15474 -0
  35. package/dist/browser-module-DFvKXBUE.js.map +1 -0
  36. package/dist/components/ArtboardDistressPanel.d.ts +7 -0
  37. package/dist/components/ArtboardImageMaskPanel.d.ts +7 -0
  38. package/dist/components/ArtboardPropertiesToolbar.d.ts +19 -0
  39. package/dist/components/ArtboardToolbar.d.ts +10 -0
  40. package/dist/components/BackButton.d.ts +7 -0
  41. package/dist/components/BackgroundPickerDropdown.d.ts +11 -0
  42. package/dist/components/BackgroundSwitcher.d.ts +7 -0
  43. package/dist/components/CanvasA11yFallback.d.ts +62 -0
  44. package/dist/components/CanvasEditor/CanvasRendererComponent.d.ts +51 -0
  45. package/dist/components/CanvasEditor/handlers/cropModeHandlers.d.ts +114 -0
  46. package/dist/components/CanvasEditor/handlers/groupChildHandlers.d.ts +65 -0
  47. package/dist/components/CanvasEditor/handlers/index.d.ts +10 -0
  48. package/dist/components/CanvasEditor/handlers/multiSelectionHandlers.d.ts +86 -0
  49. package/dist/components/CanvasEditor/hooks/buildSpreadClipShape.d.ts +20 -0
  50. package/dist/components/CanvasEditor/hooks/index.d.ts +24 -0
  51. package/dist/components/CanvasEditor/hooks/useActiveChild.d.ts +23 -0
  52. package/dist/components/CanvasEditor/hooks/useAnimatedFocusRect.d.ts +17 -0
  53. package/dist/components/CanvasEditor/hooks/useCanvasInteraction.d.ts +284 -0
  54. package/dist/components/CanvasEditor/hooks/useCanvasLayout.d.ts +50 -0
  55. package/dist/components/CanvasEditor/hooks/useCanvasRenderLoop.d.ts +140 -0
  56. package/dist/components/CanvasEditor/hooks/useCropMode.d.ts +4 -0
  57. package/dist/components/CanvasEditor/hooks/useHoverState.d.ts +9 -0
  58. package/dist/components/CanvasEditor/hooks/useInteractionState.d.ts +23 -0
  59. package/dist/components/CanvasEditor/hooks/useKeyboardHandlers.d.ts +16 -0
  60. package/dist/components/CanvasEditor/hooks/useMarqueeSelection.d.ts +22 -0
  61. package/dist/components/CanvasEditor/hooks/useMultiSelection.d.ts +5 -0
  62. package/dist/components/CanvasEditor/hooks/usePenTool.d.ts +10 -0
  63. package/dist/components/CanvasEditor/hooks/useRenderState.d.ts +31 -0
  64. package/dist/components/CanvasEditor/hooks/useSnapAndSpacing.d.ts +42 -0
  65. package/dist/components/CanvasEditor/hooks/useTextEditing.d.ts +56 -0
  66. package/dist/components/CanvasEditor/hooks/useTextEditingHandlers.d.ts +75 -0
  67. package/dist/components/CanvasEditor/renderers/hoverRenderer.d.ts +12 -0
  68. package/dist/components/CanvasEditor/renderers/index.d.ts +10 -0
  69. package/dist/components/CanvasEditor/renderers/marqueeRenderer.d.ts +21 -0
  70. package/dist/components/CanvasEditor/renderers/multiSelectionRenderer.d.ts +52 -0
  71. package/dist/components/CanvasEditor/renderers/renderingConstants.d.ts +59 -0
  72. package/dist/components/CanvasEditor/types/index.d.ts +11 -0
  73. package/dist/components/CanvasEditor.d.ts +102 -0
  74. package/dist/components/ColorPickerDropdown.d.ts +29 -0
  75. package/dist/components/CompositingPanel.d.ts +8 -0
  76. package/dist/components/ContextualToolbars.d.ts +150 -0
  77. package/dist/components/CropPanel.d.ts +20 -0
  78. package/dist/components/DistressPanel.d.ts +7 -0
  79. package/dist/components/DocsPage.d.ts +6 -0
  80. package/dist/components/Drawer.d.ts +39 -0
  81. package/dist/components/EffectsPanel.d.ts +14 -0
  82. package/dist/components/ExportTestPanel.d.ts +16 -0
  83. package/dist/components/FontBrowserDrawer.d.ts +20 -0
  84. package/dist/components/FontSizeDropdown.d.ts +12 -0
  85. package/dist/components/GlyphBrowserDrawer.d.ts +13 -0
  86. package/dist/components/GlyphPicker.d.ts +14 -0
  87. package/dist/components/IconMatchTest.d.ts +3 -0
  88. package/dist/components/IconSizeTest.d.ts +3 -0
  89. package/dist/components/ImageBrowserDrawer.d.ts +27 -0
  90. package/dist/components/ImageToolbar.d.ts +47 -0
  91. package/dist/components/LayerEffects.d.ts +11 -0
  92. package/dist/components/LayerLeadingChip.d.ts +9 -0
  93. package/dist/components/LayersPanel.d.ts +30 -0
  94. package/dist/components/MaskItem.d.ts +12 -0
  95. package/dist/components/MasksPanel.d.ts +7 -0
  96. package/dist/components/MonotypeDemoPage.d.ts +2 -0
  97. package/dist/components/MoreMenu.d.ts +15 -0
  98. package/dist/components/OpenTypeFeaturesPanel.d.ts +12 -0
  99. package/dist/components/PathToolbar.d.ts +10 -0
  100. package/dist/components/PenToolDemo.d.ts +3 -0
  101. package/dist/components/ProgressiveBlur.d.ts +25 -0
  102. package/dist/components/RotationHandle.d.ts +47 -0
  103. package/dist/components/SaveLoadMenu.d.ts +15 -0
  104. package/dist/components/ShapeToolbar.d.ts +71 -0
  105. package/dist/components/ShapeTypeDrawer.d.ts +10 -0
  106. package/dist/components/StrokePanel.d.ts +7 -0
  107. package/dist/components/TailwindDemo.d.ts +3 -0
  108. package/dist/components/TextEffectsDropdown.d.ts +14 -0
  109. package/dist/components/TextToolbar.d.ts +47 -0
  110. package/dist/components/TextTypeDrawer.d.ts +8 -0
  111. package/dist/components/ThemeToggle.d.ts +2 -0
  112. package/dist/components/TransformControlPanel.d.ts +12 -0
  113. package/dist/components/VisualGuideOverlay.d.ts +156 -0
  114. package/dist/components/embed/ArtboardTabs.d.ts +74 -0
  115. package/dist/components/embed/Canvas.d.ts +72 -0
  116. package/dist/components/embed/EffectsPanel.d.ts +76 -0
  117. package/dist/components/embed/ErrorBoundary.d.ts +34 -0
  118. package/dist/components/embed/ExportPanel.d.ts +51 -0
  119. package/dist/components/embed/GlyphPanel.d.ts +70 -0
  120. package/dist/components/embed/ImagePanel.d.ts +58 -0
  121. package/dist/components/embed/LayersPanel.d.ts +13 -0
  122. package/dist/components/embed/LoadingStates.d.ts +32 -0
  123. package/dist/components/embed/MenuButton.d.ts +47 -0
  124. package/dist/components/embed/SnowconeCanvas.d.ts +844 -0
  125. package/dist/components/embed/ZoomControls.d.ts +16 -0
  126. package/dist/components/embed/index.d.ts +129 -0
  127. package/dist/components/embed/primitives/index.d.ts +42 -0
  128. package/dist/components/embed/ui/index.d.ts +52 -0
  129. package/dist/components/embed/utils/index.d.ts +31 -0
  130. package/dist/components/embedded/ArtboardEmbed.d.ts +70 -0
  131. package/dist/components/embedded/MerchifyThemeWrapper.d.ts +30 -0
  132. package/dist/components/embedded/ProductPreviewCard.d.ts +8 -0
  133. package/dist/components/embedded/index.d.ts +7 -0
  134. package/dist/components/primitives/ButtonGroup.d.ts +27 -0
  135. package/dist/components/primitives/ControlGroup.d.ts +15 -0
  136. package/dist/components/primitives/Dropdown.d.ts +27 -0
  137. package/dist/components/primitives/DropdownMenu.d.ts +9 -0
  138. package/dist/components/primitives/MenuItem.d.ts +13 -0
  139. package/dist/components/primitives/Panel.d.ts +25 -0
  140. package/dist/components/primitives/SecondaryToolbar.d.ts +9 -0
  141. package/dist/components/primitives/Switch.d.ts +10 -0
  142. package/dist/components/primitives/Toggle.d.ts +17 -0
  143. package/dist/components/primitives/index.d.ts +22 -0
  144. package/dist/components/stories/utils/MockEditorProvider.d.ts +32 -0
  145. package/dist/components/stories/utils/QACanvasCard.d.ts +41 -0
  146. package/dist/components/stories/utils/VisualQACard.d.ts +24 -0
  147. package/dist/components/stories/utils/element-factories.d.ts +188 -0
  148. package/dist/components/stories/utils/spec-to-elements.d.ts +74 -0
  149. package/dist/components/stories/utils/themeDecorator.d.ts +45 -0
  150. package/dist/components/stories/utils/unified-test-cases.d.ts +27 -0
  151. package/dist/components/text-toolbar/BoldButton.d.ts +5 -0
  152. package/dist/components/text-toolbar/FontColorButton.d.ts +6 -0
  153. package/dist/components/text-toolbar/FontSizeGroup.d.ts +5 -0
  154. package/dist/components/text-toolbar/ItalicButton.d.ts +5 -0
  155. package/dist/components/text-toolbar/TextAlignButton.d.ts +5 -0
  156. package/dist/components/text-toolbar/TextMoreMenu.d.ts +7 -0
  157. package/dist/components/text-toolbar/UnderlineButton.d.ts +5 -0
  158. package/dist/components/text-toolbar/UppercaseButton.d.ts +5 -0
  159. package/dist/components/text-toolbar/index.d.ts +25 -0
  160. package/dist/components/toolbars/EmbeddedToolbarLayout.d.ts +49 -0
  161. package/dist/components/toolbars/ExpandedPanelIcon.d.ts +13 -0
  162. package/dist/components/toolbars/FloatingPanels.d.ts +23 -0
  163. package/dist/components/toolbars/GroupElementToolbar.d.ts +35 -0
  164. package/dist/components/toolbars/SecondaryPanels.d.ts +125 -0
  165. package/dist/components/toolbars/index.d.ts +18 -0
  166. package/dist/components/toolbars/shared/ColorPanelWrapper.d.ts +9 -0
  167. package/dist/components/toolbars/shared/SecondaryPanelWrapper.d.ts +9 -0
  168. package/dist/components/ui/PresetCarousel.d.ts +21 -0
  169. package/dist/components/ui/SecondaryPanel.d.ts +28 -0
  170. package/dist/components/ui/SliderRow.d.ts +30 -0
  171. package/dist/components/ui/collapsed-toolbar-header.d.ts +14 -0
  172. package/dist/components/ui/custom-icons.d.ts +25 -0
  173. package/dist/components/ui/icons.d.ts +100 -0
  174. package/dist/components/ui/index.d.ts +48 -0
  175. package/dist/components/ui/normalized-icon.d.ts +63 -0
  176. package/dist/components/ui/toolbar-button.d.ts +24 -0
  177. package/dist/compose-Bo108juW.cjs +33 -0
  178. package/dist/compose-Bo108juW.cjs.map +1 -0
  179. package/dist/compose-DQ1FZS3O.js +7690 -0
  180. package/dist/compose-DQ1FZS3O.js.map +1 -0
  181. package/dist/constants.d.ts +121 -0
  182. package/dist/contexts/CommandContext.d.ts +87 -0
  183. package/dist/contexts/EditorContext.d.ts +190 -0
  184. package/dist/contexts/ElementsContext.d.ts +104 -0
  185. package/dist/contexts/HistoryContext.d.ts +60 -0
  186. package/dist/contexts/KitContext.d.ts +50 -0
  187. package/dist/contexts/SelectionContext.d.ts +51 -0
  188. package/dist/contexts/ThemeContext.d.ts +55 -0
  189. package/dist/contexts/ToolStateContext.d.ts +60 -0
  190. package/dist/contexts/ViewportContext.d.ts +87 -0
  191. package/dist/core/AlignmentSnapSystem.d.ts +270 -0
  192. package/dist/core/ArtboardElement.d.ts +106 -0
  193. package/dist/core/ArtboardManager.d.ts +130 -0
  194. package/dist/core/ArtboardRenderer.d.ts +97 -0
  195. package/dist/core/BaseElement.d.ts +94 -0
  196. package/dist/core/CanvasRenderer.d.ts +237 -0
  197. package/dist/core/CommandHistory.d.ts +173 -0
  198. package/dist/core/CoordinateTransform.d.ts +69 -0
  199. package/dist/core/CropModeController.d.ts +90 -0
  200. package/dist/core/EditModeRenderer.d.ts +51 -0
  201. package/dist/core/ElementFactory.d.ts +73 -0
  202. package/dist/core/ElementStore.d.ts +69 -0
  203. package/dist/core/EventBus.d.ts +163 -0
  204. package/dist/core/GeometryUtils.d.ts +247 -0
  205. package/dist/core/GroupElement.d.ts +134 -0
  206. package/dist/core/HoverRenderer.d.ts +103 -0
  207. package/dist/core/HybridHistoryManager.d.ts +137 -0
  208. package/dist/core/ImageCache.d.ts +63 -0
  209. package/dist/core/ImageElement.d.ts +226 -0
  210. package/dist/core/ImageLoadEvents.d.ts +23 -0
  211. package/dist/core/InteractionFeedbackRenderer.d.ts +15 -0
  212. package/dist/core/InteractionStateMachine.d.ts +199 -0
  213. package/dist/core/PathElement.d.ts +84 -0
  214. package/dist/core/PenToolManager.d.ts +112 -0
  215. package/dist/core/PinchHandler.d.ts +32 -0
  216. package/dist/core/ResizeHandler.d.ts +51 -0
  217. package/dist/core/ResizePipeline.d.ts +83 -0
  218. package/dist/core/ResizeUtils.d.ts +17 -0
  219. package/dist/core/RotationAnchorResolver.d.ts +60 -0
  220. package/dist/core/RotationUtils.d.ts +28 -0
  221. package/dist/core/SelectionRenderer.d.ts +24 -0
  222. package/dist/core/ShapeElement.d.ts +121 -0
  223. package/dist/core/SpacingSystem.d.ts +73 -0
  224. package/dist/core/SpatialGrid.d.ts +53 -0
  225. package/dist/core/TextElement.d.ts +80 -0
  226. package/dist/core/TextMetrics.d.ts +117 -0
  227. package/dist/core/Transform.d.ts +158 -0
  228. package/dist/core/TransformConverter.d.ts +16 -0
  229. package/dist/core/TransformHandles.d.ts +55 -0
  230. package/dist/core/artboardReducer.d.ts +46 -0
  231. package/dist/effects/DistressGenerator.d.ts +26 -0
  232. package/dist/effects/DistressTextureCache.d.ts +49 -0
  233. package/dist/effects/distress-presets.d.ts +86 -0
  234. package/dist/effects/distress-textures.d.ts +34 -0
  235. package/dist/effects/distress-utils.d.ts +39 -0
  236. package/dist/effects/mask-presets.d.ts +36 -0
  237. package/dist/fonts/google-fonts.d.ts +48 -0
  238. package/dist/google-fonts.json +1 -0
  239. package/dist/hooks/index.d.ts +42 -0
  240. package/dist/hooks/useArtboards.d.ts +71 -0
  241. package/dist/hooks/useAutoExport.d.ts +66 -0
  242. package/dist/hooks/useBreakpoint.d.ts +53 -0
  243. package/dist/hooks/useCanvasEvents.d.ts +8 -0
  244. package/dist/hooks/useCanvasReady.d.ts +22 -0
  245. package/dist/hooks/useClickOutside.d.ts +3 -0
  246. package/dist/hooks/useCommandHistory.d.ts +39 -0
  247. package/dist/hooks/useCommands.d.ts +47 -0
  248. package/dist/hooks/useContentReady.d.ts +18 -0
  249. package/dist/hooks/useElementById.d.ts +20 -0
  250. package/dist/hooks/useElementByName.d.ts +10 -0
  251. package/dist/hooks/useElementProperties.d.ts +29 -0
  252. package/dist/hooks/useExport.d.ts +89 -0
  253. package/dist/hooks/useImageBinding.d.ts +34 -0
  254. package/dist/hooks/useKeyboardShortcuts.d.ts +13 -0
  255. package/dist/hooks/useLayerDndKit.d.ts +24 -0
  256. package/dist/hooks/useLayerDragDrop.d.ts +58 -0
  257. package/dist/hooks/useLayerPreview.d.ts +31 -0
  258. package/dist/hooks/useLayerSelection.d.ts +76 -0
  259. package/dist/hooks/useLayers.d.ts +91 -0
  260. package/dist/hooks/usePerformance.d.ts +48 -0
  261. package/dist/hooks/useProjectLoader.d.ts +64 -0
  262. package/dist/hooks/useSelectedElement.d.ts +17 -0
  263. package/dist/hooks/useTextBinding.d.ts +26 -0
  264. package/dist/hooks/useTextToolbar.d.ts +61 -0
  265. package/dist/hooks/useViewport.d.ts +46 -0
  266. package/dist/icons/icon-data.d.ts +2 -0
  267. package/dist/icons/registry.d.ts +28 -0
  268. package/dist/index.d.ts +6 -0
  269. package/dist/index.js +2 -0
  270. package/dist/index.js.map +1 -0
  271. package/dist/index.mjs +1138 -0
  272. package/dist/index.mjs.map +1 -0
  273. package/dist/internals.d.ts +2 -0
  274. package/dist/internals.js +2 -0
  275. package/dist/internals.js.map +1 -0
  276. package/dist/internals.mjs +219 -0
  277. package/dist/internals.mjs.map +1 -0
  278. package/dist/kits/compose.d.ts +69 -0
  279. package/dist/kits/index.d.ts +21 -0
  280. package/dist/kits/presets.d.ts +40 -0
  281. package/dist/kits/registry.d.ts +33 -0
  282. package/dist/kits/sections.d.ts +119 -0
  283. package/dist/kits/serialization.d.ts +78 -0
  284. package/dist/kits/types.d.ts +129 -0
  285. package/dist/kits/validation.d.ts +36 -0
  286. package/dist/lib/utils.d.ts +2 -0
  287. package/dist/plugins/ElementTypePlugin.d.ts +90 -0
  288. package/dist/presets/artboard-color-presets.d.ts +22 -0
  289. package/dist/presets/tshirt-presets.d.ts +60 -0
  290. package/dist/rendering/CompositingRenderer.d.ts +33 -0
  291. package/dist/rendering/DistressTextureRenderer.d.ts +39 -0
  292. package/dist/rendering/ElementRenderUtils.d.ts +17 -0
  293. package/dist/rendering/MaskRenderer.d.ts +41 -0
  294. package/dist/rendering/PieceGuideRenderer.d.ts +177 -0
  295. package/dist/rendering/StrokeRenderer.d.ts +24 -0
  296. package/dist/rendering/canvas-renderer.d.ts +18 -0
  297. package/dist/rendering/element-serializer.d.ts +143 -0
  298. package/dist/rendering/image-renderer.d.ts +6 -0
  299. package/dist/rendering/knockout-utils.d.ts +48 -0
  300. package/dist/rendering/mask-utils.d.ts +65 -0
  301. package/dist/rendering/renderer-types.d.ts +79 -0
  302. package/dist/rendering/rich-text-renderer.d.ts +43 -0
  303. package/dist/rendering/serialize-for-server.d.ts +45 -0
  304. package/dist/rendering/shape-renderer.d.ts +6 -0
  305. package/dist/rendering/stroke-utils.d.ts +18 -0
  306. package/dist/rendering/text-renderer.d.ts +71 -0
  307. package/dist/rendering/transform-renderer.d.ts +33 -0
  308. package/dist/services/AutoExportManager.d.ts +107 -0
  309. package/dist/services/falApi.d.ts +63 -0
  310. package/dist/services/nounProjectApi.d.ts +90 -0
  311. package/dist/services/recraftApi.d.ts +65 -0
  312. package/dist/services/runwareApi.d.ts +69 -0
  313. package/dist/state/CanvasStateV1.d.ts +373 -0
  314. package/dist/state/index.d.ts +10 -0
  315. package/dist/style.css +1 -0
  316. package/dist/taco-reference-cropped.jpg +0 -0
  317. package/dist/testing/MockEditorProvider.d.ts +49 -0
  318. package/dist/testing/index.d.ts +25 -0
  319. package/dist/testing/utils.d.ts +128 -0
  320. package/dist/testing.d.ts +2 -0
  321. package/dist/testing.js +2 -0
  322. package/dist/testing.js.map +1 -0
  323. package/dist/testing.mjs +140 -0
  324. package/dist/testing.mjs.map +1 -0
  325. package/dist/textures/glass-frame.svg +32 -0
  326. package/dist/theme.d.ts +99 -0
  327. package/dist/themes/index.d.ts +23 -0
  328. package/dist/transforms/ArchTransform.d.ts +14 -0
  329. package/dist/transforms/AscendTransform.d.ts +14 -0
  330. package/dist/transforms/CircleTransform.d.ts +51 -0
  331. package/dist/transforms/CustomTransform.d.ts +81 -0
  332. package/dist/transforms/FlagTransform.d.ts +14 -0
  333. package/dist/transforms/LeanTransform.d.ts +14 -0
  334. package/dist/transforms/WaveTransform.d.ts +16 -0
  335. package/dist/transforms/defaults.d.ts +33 -0
  336. package/dist/transforms/index.d.ts +10 -0
  337. package/dist/transforms/registry.d.ts +51 -0
  338. package/dist/types/capabilities.d.ts +50 -0
  339. package/dist/types/guards.d.ts +31 -0
  340. package/dist/types/index.d.ts +765 -0
  341. package/dist/types/public.d.ts +31 -0
  342. package/dist/types/react.d.ts +132 -0
  343. package/dist/utils/ArtworkPlacement.d.ts +97 -0
  344. package/dist/utils/ElementPreviewRenderer.d.ts +19 -0
  345. package/dist/utils/ExportManager.d.ts +208 -0
  346. package/dist/utils/FontAnalyzer.d.ts +137 -0
  347. package/dist/utils/GlyphRenderer.d.ts +55 -0
  348. package/dist/utils/GoogleFontsService.d.ts +37 -0
  349. package/dist/utils/ImageLoader.d.ts +124 -0
  350. package/dist/utils/ImportManager.d.ts +72 -0
  351. package/dist/utils/MonotypeCategoryMapping.d.ts +36 -0
  352. package/dist/utils/MonotypeService.d.ts +148 -0
  353. package/dist/utils/PerformanceMonitor.d.ts +54 -0
  354. package/dist/utils/TextureManager.d.ts +60 -0
  355. package/dist/utils/UnifiedFontService.d.ts +117 -0
  356. package/dist/utils/WorkerExportManager.d.ts +185 -0
  357. package/dist/utils/clickProtection.d.ts +39 -0
  358. package/dist/utils/cn.d.ts +4 -0
  359. package/dist/utils/colorConversion.d.ts +101 -0
  360. package/dist/utils/documentColors.d.ts +108 -0
  361. package/dist/utils/featureApplied.d.ts +14 -0
  362. package/dist/utils/google-fonts-loader.d.ts +67 -0
  363. package/dist/utils/logger.d.ts +66 -0
  364. package/dist/utils/selectionPreservation.d.ts +42 -0
  365. package/dist/utils/textCursorUtils.d.ts +39 -0
  366. package/dist/utils/textUtils.d.ts +11 -0
  367. package/dist/workers/export-protocol.d.ts +119 -0
  368. package/dist/workers/export-worker.bundle.string.d.ts +2 -0
  369. package/dist/workers/export-worker.d.ts +5 -0
  370. package/package.json +201 -0
@@ -0,0 +1,3692 @@
1
+ import { E as Gt } from "./ElementFactory-uJTXU-nP.js";
2
+ import { i as Kt } from "./HybridHistoryManager-BV6XV0nD.js";
3
+ var Pe;
4
+ function u(e, t, n) {
5
+ function o(c, a) {
6
+ if (c._zod || Object.defineProperty(c, "_zod", {
7
+ value: {
8
+ def: a,
9
+ constr: s,
10
+ traits: /* @__PURE__ */ new Set()
11
+ },
12
+ enumerable: !1
13
+ }), c._zod.traits.has(e))
14
+ return;
15
+ c._zod.traits.add(e), t(c, a);
16
+ const l = s.prototype, f = Object.keys(l);
17
+ for (let p = 0; p < f.length; p++) {
18
+ const g = f[p];
19
+ g in c || (c[g] = l[g].bind(c));
20
+ }
21
+ }
22
+ const r = (n == null ? void 0 : n.Parent) ?? Object;
23
+ class i extends r {
24
+ }
25
+ Object.defineProperty(i, "name", { value: e });
26
+ function s(c) {
27
+ var a;
28
+ const l = n != null && n.Parent ? new i() : this;
29
+ o(l, c), (a = l._zod).deferred ?? (a.deferred = []);
30
+ for (const f of l._zod.deferred)
31
+ f();
32
+ return l;
33
+ }
34
+ return Object.defineProperty(s, "init", { value: o }), Object.defineProperty(s, Symbol.hasInstance, {
35
+ value: (c) => {
36
+ var a, l;
37
+ return n != null && n.Parent && c instanceof n.Parent ? !0 : (l = (a = c == null ? void 0 : c._zod) == null ? void 0 : a.traits) == null ? void 0 : l.has(e);
38
+ }
39
+ }), Object.defineProperty(s, "name", { value: e }), s;
40
+ }
41
+ class Y extends Error {
42
+ constructor() {
43
+ super("Encountered Promise during synchronous parse. Use .parseAsync() instead.");
44
+ }
45
+ }
46
+ class tt extends Error {
47
+ constructor(t) {
48
+ super(`Encountered unidirectional transform during encode: ${t}`), this.name = "ZodEncodeError";
49
+ }
50
+ }
51
+ (Pe = globalThis).__zod_globalConfig ?? (Pe.__zod_globalConfig = {});
52
+ const we = globalThis.__zod_globalConfig;
53
+ function V(e) {
54
+ return we;
55
+ }
56
+ function nt(e) {
57
+ const t = Object.values(e).filter((o) => typeof o == "number");
58
+ return Object.entries(e).filter(([o, r]) => t.indexOf(+o) === -1).map(([o, r]) => r);
59
+ }
60
+ function _e(e, t) {
61
+ return typeof t == "bigint" ? t.toString() : t;
62
+ }
63
+ function fe(e) {
64
+ return {
65
+ get value() {
66
+ {
67
+ const t = e();
68
+ return Object.defineProperty(this, "value", { value: t }), t;
69
+ }
70
+ }
71
+ };
72
+ }
73
+ function ke(e) {
74
+ return e == null;
75
+ }
76
+ function $e(e) {
77
+ const t = e.startsWith("^") ? 1 : 0, n = e.endsWith("$") ? e.length - 1 : e.length;
78
+ return e.slice(t, n);
79
+ }
80
+ function Yt(e, t) {
81
+ const n = e / t, o = Math.round(n), r = Number.EPSILON * Math.max(Math.abs(n), 1);
82
+ return Math.abs(n - o) < r ? 0 : n - o;
83
+ }
84
+ const Ne = /* @__PURE__ */ Symbol("evaluating");
85
+ function y(e, t, n) {
86
+ let o;
87
+ Object.defineProperty(e, t, {
88
+ get() {
89
+ if (o !== Ne)
90
+ return o === void 0 && (o = Ne, o = n()), o;
91
+ },
92
+ set(r) {
93
+ Object.defineProperty(e, t, {
94
+ value: r
95
+ // configurable: true,
96
+ });
97
+ },
98
+ configurable: !0
99
+ });
100
+ }
101
+ function W(e, t, n) {
102
+ Object.defineProperty(e, t, {
103
+ value: n,
104
+ writable: !0,
105
+ enumerable: !0,
106
+ configurable: !0
107
+ });
108
+ }
109
+ function J(...e) {
110
+ const t = {};
111
+ for (const n of e) {
112
+ const o = Object.getOwnPropertyDescriptors(n);
113
+ Object.assign(t, o);
114
+ }
115
+ return Object.defineProperties({}, t);
116
+ }
117
+ function Ae(e) {
118
+ return JSON.stringify(e);
119
+ }
120
+ function qt(e) {
121
+ return e.toLowerCase().trim().replace(/[^\w\s-]/g, "").replace(/[\s_-]+/g, "-").replace(/^-+|-+$/g, "");
122
+ }
123
+ const ot = "captureStackTrace" in Error ? Error.captureStackTrace : (...e) => {
124
+ };
125
+ function ee(e) {
126
+ return typeof e == "object" && e !== null && !Array.isArray(e);
127
+ }
128
+ const Xt = /* @__PURE__ */ fe(() => {
129
+ var e;
130
+ if (we.jitless || typeof navigator < "u" && ((e = navigator == null ? void 0 : navigator.userAgent) != null && e.includes("Cloudflare")))
131
+ return !1;
132
+ try {
133
+ const t = Function;
134
+ return new t(""), !0;
135
+ } catch {
136
+ return !1;
137
+ }
138
+ });
139
+ function te(e) {
140
+ if (ee(e) === !1)
141
+ return !1;
142
+ const t = e.constructor;
143
+ if (t === void 0 || typeof t != "function")
144
+ return !0;
145
+ const n = t.prototype;
146
+ return !(ee(n) === !1 || Object.prototype.hasOwnProperty.call(n, "isPrototypeOf") === !1);
147
+ }
148
+ function rt(e) {
149
+ return te(e) ? { ...e } : Array.isArray(e) ? [...e] : e instanceof Map ? new Map(e) : e instanceof Set ? new Set(e) : e;
150
+ }
151
+ const Ht = /* @__PURE__ */ new Set(["string", "number", "symbol"]);
152
+ function q(e) {
153
+ return e.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
154
+ }
155
+ function M(e, t, n) {
156
+ const o = new e._zod.constr(t ?? e._zod.def);
157
+ return (!t || n != null && n.parent) && (o._zod.parent = e), o;
158
+ }
159
+ function _(e) {
160
+ const t = e;
161
+ if (!t)
162
+ return {};
163
+ if (typeof t == "string")
164
+ return { error: () => t };
165
+ if ((t == null ? void 0 : t.message) !== void 0) {
166
+ if ((t == null ? void 0 : t.error) !== void 0)
167
+ throw new Error("Cannot specify both `message` and `error` params");
168
+ t.error = t.message;
169
+ }
170
+ return delete t.message, typeof t.error == "string" ? { ...t, error: () => t.error } : t;
171
+ }
172
+ function Qt(e) {
173
+ return Object.keys(e).filter((t) => e[t]._zod.optin === "optional" && e[t]._zod.optout === "optional");
174
+ }
175
+ const en = {
176
+ safeint: [Number.MIN_SAFE_INTEGER, Number.MAX_SAFE_INTEGER],
177
+ int32: [-2147483648, 2147483647],
178
+ uint32: [0, 4294967295],
179
+ float32: [-34028234663852886e22, 34028234663852886e22],
180
+ float64: [-Number.MAX_VALUE, Number.MAX_VALUE]
181
+ };
182
+ function tn(e, t) {
183
+ const n = e._zod.def, o = n.checks;
184
+ if (o && o.length > 0)
185
+ throw new Error(".pick() cannot be used on object schemas containing refinements");
186
+ const i = J(e._zod.def, {
187
+ get shape() {
188
+ const s = {};
189
+ for (const c in t) {
190
+ if (!(c in n.shape))
191
+ throw new Error(`Unrecognized key: "${c}"`);
192
+ t[c] && (s[c] = n.shape[c]);
193
+ }
194
+ return W(this, "shape", s), s;
195
+ },
196
+ checks: []
197
+ });
198
+ return M(e, i);
199
+ }
200
+ function nn(e, t) {
201
+ const n = e._zod.def, o = n.checks;
202
+ if (o && o.length > 0)
203
+ throw new Error(".omit() cannot be used on object schemas containing refinements");
204
+ const i = J(e._zod.def, {
205
+ get shape() {
206
+ const s = { ...e._zod.def.shape };
207
+ for (const c in t) {
208
+ if (!(c in n.shape))
209
+ throw new Error(`Unrecognized key: "${c}"`);
210
+ t[c] && delete s[c];
211
+ }
212
+ return W(this, "shape", s), s;
213
+ },
214
+ checks: []
215
+ });
216
+ return M(e, i);
217
+ }
218
+ function on(e, t) {
219
+ if (!te(t))
220
+ throw new Error("Invalid input to extend: expected a plain object");
221
+ const n = e._zod.def.checks;
222
+ if (n && n.length > 0) {
223
+ const i = e._zod.def.shape;
224
+ for (const s in t)
225
+ if (Object.getOwnPropertyDescriptor(i, s) !== void 0)
226
+ throw new Error("Cannot overwrite keys on object schemas containing refinements. Use `.safeExtend()` instead.");
227
+ }
228
+ const r = J(e._zod.def, {
229
+ get shape() {
230
+ const i = { ...e._zod.def.shape, ...t };
231
+ return W(this, "shape", i), i;
232
+ }
233
+ });
234
+ return M(e, r);
235
+ }
236
+ function rn(e, t) {
237
+ if (!te(t))
238
+ throw new Error("Invalid input to safeExtend: expected a plain object");
239
+ const n = J(e._zod.def, {
240
+ get shape() {
241
+ const o = { ...e._zod.def.shape, ...t };
242
+ return W(this, "shape", o), o;
243
+ }
244
+ });
245
+ return M(e, n);
246
+ }
247
+ function sn(e, t) {
248
+ var o;
249
+ if ((o = e._zod.def.checks) != null && o.length)
250
+ throw new Error(".merge() cannot be used on object schemas containing refinements. Use .safeExtend() instead.");
251
+ const n = J(e._zod.def, {
252
+ get shape() {
253
+ const r = { ...e._zod.def.shape, ...t._zod.def.shape };
254
+ return W(this, "shape", r), r;
255
+ },
256
+ get catchall() {
257
+ return t._zod.def.catchall;
258
+ },
259
+ checks: t._zod.def.checks ?? []
260
+ });
261
+ return M(e, n);
262
+ }
263
+ function cn(e, t, n) {
264
+ const r = t._zod.def.checks;
265
+ if (r && r.length > 0)
266
+ throw new Error(".partial() cannot be used on object schemas containing refinements");
267
+ const s = J(t._zod.def, {
268
+ get shape() {
269
+ const c = t._zod.def.shape, a = { ...c };
270
+ if (n)
271
+ for (const l in n) {
272
+ if (!(l in c))
273
+ throw new Error(`Unrecognized key: "${l}"`);
274
+ n[l] && (a[l] = e ? new e({
275
+ type: "optional",
276
+ innerType: c[l]
277
+ }) : c[l]);
278
+ }
279
+ else
280
+ for (const l in c)
281
+ a[l] = e ? new e({
282
+ type: "optional",
283
+ innerType: c[l]
284
+ }) : c[l];
285
+ return W(this, "shape", a), a;
286
+ },
287
+ checks: []
288
+ });
289
+ return M(t, s);
290
+ }
291
+ function an(e, t, n) {
292
+ const o = J(t._zod.def, {
293
+ get shape() {
294
+ const r = t._zod.def.shape, i = { ...r };
295
+ if (n)
296
+ for (const s in n) {
297
+ if (!(s in i))
298
+ throw new Error(`Unrecognized key: "${s}"`);
299
+ n[s] && (i[s] = new e({
300
+ type: "nonoptional",
301
+ innerType: r[s]
302
+ }));
303
+ }
304
+ else
305
+ for (const s in r)
306
+ i[s] = new e({
307
+ type: "nonoptional",
308
+ innerType: r[s]
309
+ });
310
+ return W(this, "shape", i), i;
311
+ }
312
+ });
313
+ return M(t, o);
314
+ }
315
+ function K(e, t = 0) {
316
+ var n;
317
+ if (e.aborted === !0)
318
+ return !0;
319
+ for (let o = t; o < e.issues.length; o++)
320
+ if (((n = e.issues[o]) == null ? void 0 : n.continue) !== !0)
321
+ return !0;
322
+ return !1;
323
+ }
324
+ function un(e, t = 0) {
325
+ var n;
326
+ if (e.aborted === !0)
327
+ return !0;
328
+ for (let o = t; o < e.issues.length; o++)
329
+ if (((n = e.issues[o]) == null ? void 0 : n.continue) === !1)
330
+ return !0;
331
+ return !1;
332
+ }
333
+ function it(e, t) {
334
+ return t.map((n) => {
335
+ var o;
336
+ return (o = n).path ?? (o.path = []), n.path.unshift(e), n;
337
+ });
338
+ }
339
+ function ie(e) {
340
+ return typeof e == "string" ? e : e == null ? void 0 : e.message;
341
+ }
342
+ function B(e, t, n) {
343
+ var a, l, f, p, g, h;
344
+ const o = e.message ? e.message : ie((f = (l = (a = e.inst) == null ? void 0 : a._zod.def) == null ? void 0 : l.error) == null ? void 0 : f.call(l, e)) ?? ie((p = t == null ? void 0 : t.error) == null ? void 0 : p.call(t, e)) ?? ie((g = n.customError) == null ? void 0 : g.call(n, e)) ?? ie((h = n.localeError) == null ? void 0 : h.call(n, e)) ?? "Invalid input", { inst: r, continue: i, input: s, ...c } = e;
345
+ return c.path ?? (c.path = []), c.message = o, t != null && t.reportInput && (c.input = s), c;
346
+ }
347
+ function Se(e) {
348
+ return Array.isArray(e) ? "array" : typeof e == "string" ? "string" : "unknown";
349
+ }
350
+ function ne(...e) {
351
+ const [t, n, o] = e;
352
+ return typeof t == "string" ? {
353
+ message: t,
354
+ code: "custom",
355
+ input: n,
356
+ inst: o
357
+ } : { ...t };
358
+ }
359
+ const st = (e, t) => {
360
+ e.name = "$ZodError", Object.defineProperty(e, "_zod", {
361
+ value: e._zod,
362
+ enumerable: !1
363
+ }), Object.defineProperty(e, "issues", {
364
+ value: t,
365
+ enumerable: !1
366
+ }), e.message = JSON.stringify(t, _e, 2), Object.defineProperty(e, "toString", {
367
+ value: () => e.message,
368
+ enumerable: !1
369
+ });
370
+ }, ct = u("$ZodError", st), at = u("$ZodError", st, { Parent: Error });
371
+ function ln(e, t = (n) => n.message) {
372
+ const n = {}, o = [];
373
+ for (const r of e.issues)
374
+ r.path.length > 0 ? (n[r.path[0]] = n[r.path[0]] || [], n[r.path[0]].push(t(r))) : o.push(t(r));
375
+ return { formErrors: o, fieldErrors: n };
376
+ }
377
+ function fn(e, t = (n) => n.message) {
378
+ const n = { _errors: [] }, o = (r, i = []) => {
379
+ for (const s of r.issues)
380
+ if (s.code === "invalid_union" && s.errors.length)
381
+ s.errors.map((c) => o({ issues: c }, [...i, ...s.path]));
382
+ else if (s.code === "invalid_key")
383
+ o({ issues: s.issues }, [...i, ...s.path]);
384
+ else if (s.code === "invalid_element")
385
+ o({ issues: s.issues }, [...i, ...s.path]);
386
+ else {
387
+ const c = [...i, ...s.path];
388
+ if (c.length === 0)
389
+ n._errors.push(t(s));
390
+ else {
391
+ let a = n, l = 0;
392
+ for (; l < c.length; ) {
393
+ const f = c[l];
394
+ l === c.length - 1 ? (a[f] = a[f] || { _errors: [] }, a[f]._errors.push(t(s))) : a[f] = a[f] || { _errors: [] }, a = a[f], l++;
395
+ }
396
+ }
397
+ }
398
+ };
399
+ return o(e), n;
400
+ }
401
+ const Ze = (e) => (t, n, o, r) => {
402
+ const i = o ? { ...o, async: !1 } : { async: !1 }, s = t._zod.run({ value: n, issues: [] }, i);
403
+ if (s instanceof Promise)
404
+ throw new Y();
405
+ if (s.issues.length) {
406
+ const c = new ((r == null ? void 0 : r.Err) ?? e)(s.issues.map((a) => B(a, i, V())));
407
+ throw ot(c, r == null ? void 0 : r.callee), c;
408
+ }
409
+ return s.value;
410
+ }, Oe = (e) => async (t, n, o, r) => {
411
+ const i = o ? { ...o, async: !0 } : { async: !0 };
412
+ let s = t._zod.run({ value: n, issues: [] }, i);
413
+ if (s instanceof Promise && (s = await s), s.issues.length) {
414
+ const c = new ((r == null ? void 0 : r.Err) ?? e)(s.issues.map((a) => B(a, i, V())));
415
+ throw ot(c, r == null ? void 0 : r.callee), c;
416
+ }
417
+ return s.value;
418
+ }, pe = (e) => (t, n, o) => {
419
+ const r = o ? { ...o, async: !1 } : { async: !1 }, i = t._zod.run({ value: n, issues: [] }, r);
420
+ if (i instanceof Promise)
421
+ throw new Y();
422
+ return i.issues.length ? {
423
+ success: !1,
424
+ error: new (e ?? ct)(i.issues.map((s) => B(s, r, V())))
425
+ } : { success: !0, data: i.value };
426
+ }, pn = /* @__PURE__ */ pe(at), de = (e) => async (t, n, o) => {
427
+ const r = o ? { ...o, async: !0 } : { async: !0 };
428
+ let i = t._zod.run({ value: n, issues: [] }, r);
429
+ return i instanceof Promise && (i = await i), i.issues.length ? {
430
+ success: !1,
431
+ error: new e(i.issues.map((s) => B(s, r, V())))
432
+ } : { success: !0, data: i.value };
433
+ }, dn = /* @__PURE__ */ de(at), hn = (e) => (t, n, o) => {
434
+ const r = o ? { ...o, direction: "backward" } : { direction: "backward" };
435
+ return Ze(e)(t, n, r);
436
+ }, mn = (e) => (t, n, o) => Ze(e)(t, n, o), gn = (e) => async (t, n, o) => {
437
+ const r = o ? { ...o, direction: "backward" } : { direction: "backward" };
438
+ return Oe(e)(t, n, r);
439
+ }, _n = (e) => async (t, n, o) => Oe(e)(t, n, o), vn = (e) => (t, n, o) => {
440
+ const r = o ? { ...o, direction: "backward" } : { direction: "backward" };
441
+ return pe(e)(t, n, r);
442
+ }, yn = (e) => (t, n, o) => pe(e)(t, n, o), bn = (e) => async (t, n, o) => {
443
+ const r = o ? { ...o, direction: "backward" } : { direction: "backward" };
444
+ return de(e)(t, n, r);
445
+ }, zn = (e) => async (t, n, o) => de(e)(t, n, o), wn = /^[cC][0-9a-z]{6,}$/, kn = /^[0-9a-z]+$/, $n = /^[0-9A-HJKMNP-TV-Za-hjkmnp-tv-z]{26}$/, Sn = /^[0-9a-vA-V]{20}$/, Zn = /^[A-Za-z0-9]{27}$/, On = /^[a-zA-Z0-9_-]{21}$/, En = /^P(?:(\d+W)|(?!.*W)(?=\d|T\d)(\d+Y)?(\d+M)?(\d+D)?(T(?=\d)(\d+H)?(\d+M)?(\d+([.,]\d+)?S)?)?)$/, Tn = /^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12})$/, Ce = (e) => e ? new RegExp(`^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-${e}[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$`) : /^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[1-8][0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12}|00000000-0000-0000-0000-000000000000|ffffffff-ffff-ffff-ffff-ffffffffffff)$/, In = /^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$/, Pn = "^(\\p{Extended_Pictographic}|\\p{Emoji_Component})+$";
446
+ function Nn() {
447
+ return new RegExp(Pn, "u");
448
+ }
449
+ const An = /^(?:(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(?:25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])$/, Cn = /^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:))$/, jn = /^((25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\.){3}(25[0-5]|2[0-4][0-9]|1[0-9][0-9]|[1-9][0-9]|[0-9])\/([0-9]|[1-2][0-9]|3[0-2])$/, xn = /^(([0-9a-fA-F]{1,4}:){7}[0-9a-fA-F]{1,4}|::|([0-9a-fA-F]{1,4})?::([0-9a-fA-F]{1,4}:?){0,6})\/(12[0-8]|1[01][0-9]|[1-9]?[0-9])$/, Dn = /^$|^(?:[0-9a-zA-Z+/]{4})*(?:(?:[0-9a-zA-Z+/]{2}==)|(?:[0-9a-zA-Z+/]{3}=))?$/, ut = /^[A-Za-z0-9_-]*$/, Rn = /^https?$/, Un = /^\+[1-9]\d{6,14}$/, lt = "(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))", Fn = /* @__PURE__ */ new RegExp(`^${lt}$`);
450
+ function ft(e) {
451
+ const t = "(?:[01]\\d|2[0-3]):[0-5]\\d";
452
+ return typeof e.precision == "number" ? e.precision === -1 ? `${t}` : e.precision === 0 ? `${t}:[0-5]\\d` : `${t}:[0-5]\\d\\.\\d{${e.precision}}` : `${t}(?::[0-5]\\d(?:\\.\\d+)?)?`;
453
+ }
454
+ function Jn(e) {
455
+ return new RegExp(`^${ft(e)}$`);
456
+ }
457
+ function Mn(e) {
458
+ const t = ft({ precision: e.precision }), n = ["Z"];
459
+ e.local && n.push(""), e.offset && n.push("([+-](?:[01]\\d|2[0-3]):[0-5]\\d)");
460
+ const o = `${t}(?:${n.join("|")})`;
461
+ return new RegExp(`^${lt}T(?:${o})$`);
462
+ }
463
+ const Ln = (e) => {
464
+ const t = e ? `[\\s\\S]{${(e == null ? void 0 : e.minimum) ?? 0},${(e == null ? void 0 : e.maximum) ?? ""}}` : "[\\s\\S]*";
465
+ return new RegExp(`^${t}$`);
466
+ }, Vn = /^-?\d+$/, Bn = /^-?\d+(?:\.\d+)?$/, Wn = /^(?:true|false)$/i, Gn = /^[^A-Z]*$/, Kn = /^[^a-z]*$/, x = /* @__PURE__ */ u("$ZodCheck", (e, t) => {
467
+ var n;
468
+ e._zod ?? (e._zod = {}), e._zod.def = t, (n = e._zod).onattach ?? (n.onattach = []);
469
+ }), pt = {
470
+ number: "number",
471
+ bigint: "bigint",
472
+ object: "date"
473
+ }, dt = /* @__PURE__ */ u("$ZodCheckLessThan", (e, t) => {
474
+ x.init(e, t);
475
+ const n = pt[typeof t.value];
476
+ e._zod.onattach.push((o) => {
477
+ const r = o._zod.bag, i = (t.inclusive ? r.maximum : r.exclusiveMaximum) ?? Number.POSITIVE_INFINITY;
478
+ t.value < i && (t.inclusive ? r.maximum = t.value : r.exclusiveMaximum = t.value);
479
+ }), e._zod.check = (o) => {
480
+ (t.inclusive ? o.value <= t.value : o.value < t.value) || o.issues.push({
481
+ origin: n,
482
+ code: "too_big",
483
+ maximum: typeof t.value == "object" ? t.value.getTime() : t.value,
484
+ input: o.value,
485
+ inclusive: t.inclusive,
486
+ inst: e,
487
+ continue: !t.abort
488
+ });
489
+ };
490
+ }), ht = /* @__PURE__ */ u("$ZodCheckGreaterThan", (e, t) => {
491
+ x.init(e, t);
492
+ const n = pt[typeof t.value];
493
+ e._zod.onattach.push((o) => {
494
+ const r = o._zod.bag, i = (t.inclusive ? r.minimum : r.exclusiveMinimum) ?? Number.NEGATIVE_INFINITY;
495
+ t.value > i && (t.inclusive ? r.minimum = t.value : r.exclusiveMinimum = t.value);
496
+ }), e._zod.check = (o) => {
497
+ (t.inclusive ? o.value >= t.value : o.value > t.value) || o.issues.push({
498
+ origin: n,
499
+ code: "too_small",
500
+ minimum: typeof t.value == "object" ? t.value.getTime() : t.value,
501
+ input: o.value,
502
+ inclusive: t.inclusive,
503
+ inst: e,
504
+ continue: !t.abort
505
+ });
506
+ };
507
+ }), Yn = /* @__PURE__ */ u("$ZodCheckMultipleOf", (e, t) => {
508
+ x.init(e, t), e._zod.onattach.push((n) => {
509
+ var o;
510
+ (o = n._zod.bag).multipleOf ?? (o.multipleOf = t.value);
511
+ }), e._zod.check = (n) => {
512
+ if (typeof n.value != typeof t.value)
513
+ throw new Error("Cannot mix number and bigint in multiple_of check.");
514
+ (typeof n.value == "bigint" ? n.value % t.value === BigInt(0) : Yt(n.value, t.value) === 0) || n.issues.push({
515
+ origin: typeof n.value,
516
+ code: "not_multiple_of",
517
+ divisor: t.value,
518
+ input: n.value,
519
+ inst: e,
520
+ continue: !t.abort
521
+ });
522
+ };
523
+ }), qn = /* @__PURE__ */ u("$ZodCheckNumberFormat", (e, t) => {
524
+ var s;
525
+ x.init(e, t), t.format = t.format || "float64";
526
+ const n = (s = t.format) == null ? void 0 : s.includes("int"), o = n ? "int" : "number", [r, i] = en[t.format];
527
+ e._zod.onattach.push((c) => {
528
+ const a = c._zod.bag;
529
+ a.format = t.format, a.minimum = r, a.maximum = i, n && (a.pattern = Vn);
530
+ }), e._zod.check = (c) => {
531
+ const a = c.value;
532
+ if (n) {
533
+ if (!Number.isInteger(a)) {
534
+ c.issues.push({
535
+ expected: o,
536
+ format: t.format,
537
+ code: "invalid_type",
538
+ continue: !1,
539
+ input: a,
540
+ inst: e
541
+ });
542
+ return;
543
+ }
544
+ if (!Number.isSafeInteger(a)) {
545
+ a > 0 ? c.issues.push({
546
+ input: a,
547
+ code: "too_big",
548
+ maximum: Number.MAX_SAFE_INTEGER,
549
+ note: "Integers must be within the safe integer range.",
550
+ inst: e,
551
+ origin: o,
552
+ inclusive: !0,
553
+ continue: !t.abort
554
+ }) : c.issues.push({
555
+ input: a,
556
+ code: "too_small",
557
+ minimum: Number.MIN_SAFE_INTEGER,
558
+ note: "Integers must be within the safe integer range.",
559
+ inst: e,
560
+ origin: o,
561
+ inclusive: !0,
562
+ continue: !t.abort
563
+ });
564
+ return;
565
+ }
566
+ }
567
+ a < r && c.issues.push({
568
+ origin: "number",
569
+ input: a,
570
+ code: "too_small",
571
+ minimum: r,
572
+ inclusive: !0,
573
+ inst: e,
574
+ continue: !t.abort
575
+ }), a > i && c.issues.push({
576
+ origin: "number",
577
+ input: a,
578
+ code: "too_big",
579
+ maximum: i,
580
+ inclusive: !0,
581
+ inst: e,
582
+ continue: !t.abort
583
+ });
584
+ };
585
+ }), Xn = /* @__PURE__ */ u("$ZodCheckMaxLength", (e, t) => {
586
+ var n;
587
+ x.init(e, t), (n = e._zod.def).when ?? (n.when = (o) => {
588
+ const r = o.value;
589
+ return !ke(r) && r.length !== void 0;
590
+ }), e._zod.onattach.push((o) => {
591
+ const r = o._zod.bag.maximum ?? Number.POSITIVE_INFINITY;
592
+ t.maximum < r && (o._zod.bag.maximum = t.maximum);
593
+ }), e._zod.check = (o) => {
594
+ const r = o.value;
595
+ if (r.length <= t.maximum)
596
+ return;
597
+ const s = Se(r);
598
+ o.issues.push({
599
+ origin: s,
600
+ code: "too_big",
601
+ maximum: t.maximum,
602
+ inclusive: !0,
603
+ input: r,
604
+ inst: e,
605
+ continue: !t.abort
606
+ });
607
+ };
608
+ }), Hn = /* @__PURE__ */ u("$ZodCheckMinLength", (e, t) => {
609
+ var n;
610
+ x.init(e, t), (n = e._zod.def).when ?? (n.when = (o) => {
611
+ const r = o.value;
612
+ return !ke(r) && r.length !== void 0;
613
+ }), e._zod.onattach.push((o) => {
614
+ const r = o._zod.bag.minimum ?? Number.NEGATIVE_INFINITY;
615
+ t.minimum > r && (o._zod.bag.minimum = t.minimum);
616
+ }), e._zod.check = (o) => {
617
+ const r = o.value;
618
+ if (r.length >= t.minimum)
619
+ return;
620
+ const s = Se(r);
621
+ o.issues.push({
622
+ origin: s,
623
+ code: "too_small",
624
+ minimum: t.minimum,
625
+ inclusive: !0,
626
+ input: r,
627
+ inst: e,
628
+ continue: !t.abort
629
+ });
630
+ };
631
+ }), Qn = /* @__PURE__ */ u("$ZodCheckLengthEquals", (e, t) => {
632
+ var n;
633
+ x.init(e, t), (n = e._zod.def).when ?? (n.when = (o) => {
634
+ const r = o.value;
635
+ return !ke(r) && r.length !== void 0;
636
+ }), e._zod.onattach.push((o) => {
637
+ const r = o._zod.bag;
638
+ r.minimum = t.length, r.maximum = t.length, r.length = t.length;
639
+ }), e._zod.check = (o) => {
640
+ const r = o.value, i = r.length;
641
+ if (i === t.length)
642
+ return;
643
+ const s = Se(r), c = i > t.length;
644
+ o.issues.push({
645
+ origin: s,
646
+ ...c ? { code: "too_big", maximum: t.length } : { code: "too_small", minimum: t.length },
647
+ inclusive: !0,
648
+ exact: !0,
649
+ input: o.value,
650
+ inst: e,
651
+ continue: !t.abort
652
+ });
653
+ };
654
+ }), he = /* @__PURE__ */ u("$ZodCheckStringFormat", (e, t) => {
655
+ var n, o;
656
+ x.init(e, t), e._zod.onattach.push((r) => {
657
+ const i = r._zod.bag;
658
+ i.format = t.format, t.pattern && (i.patterns ?? (i.patterns = /* @__PURE__ */ new Set()), i.patterns.add(t.pattern));
659
+ }), t.pattern ? (n = e._zod).check ?? (n.check = (r) => {
660
+ t.pattern.lastIndex = 0, !t.pattern.test(r.value) && r.issues.push({
661
+ origin: "string",
662
+ code: "invalid_format",
663
+ format: t.format,
664
+ input: r.value,
665
+ ...t.pattern ? { pattern: t.pattern.toString() } : {},
666
+ inst: e,
667
+ continue: !t.abort
668
+ });
669
+ }) : (o = e._zod).check ?? (o.check = () => {
670
+ });
671
+ }), eo = /* @__PURE__ */ u("$ZodCheckRegex", (e, t) => {
672
+ he.init(e, t), e._zod.check = (n) => {
673
+ t.pattern.lastIndex = 0, !t.pattern.test(n.value) && n.issues.push({
674
+ origin: "string",
675
+ code: "invalid_format",
676
+ format: "regex",
677
+ input: n.value,
678
+ pattern: t.pattern.toString(),
679
+ inst: e,
680
+ continue: !t.abort
681
+ });
682
+ };
683
+ }), to = /* @__PURE__ */ u("$ZodCheckLowerCase", (e, t) => {
684
+ t.pattern ?? (t.pattern = Gn), he.init(e, t);
685
+ }), no = /* @__PURE__ */ u("$ZodCheckUpperCase", (e, t) => {
686
+ t.pattern ?? (t.pattern = Kn), he.init(e, t);
687
+ }), oo = /* @__PURE__ */ u("$ZodCheckIncludes", (e, t) => {
688
+ x.init(e, t);
689
+ const n = q(t.includes), o = new RegExp(typeof t.position == "number" ? `^.{${t.position}}${n}` : n);
690
+ t.pattern = o, e._zod.onattach.push((r) => {
691
+ const i = r._zod.bag;
692
+ i.patterns ?? (i.patterns = /* @__PURE__ */ new Set()), i.patterns.add(o);
693
+ }), e._zod.check = (r) => {
694
+ r.value.includes(t.includes, t.position) || r.issues.push({
695
+ origin: "string",
696
+ code: "invalid_format",
697
+ format: "includes",
698
+ includes: t.includes,
699
+ input: r.value,
700
+ inst: e,
701
+ continue: !t.abort
702
+ });
703
+ };
704
+ }), ro = /* @__PURE__ */ u("$ZodCheckStartsWith", (e, t) => {
705
+ x.init(e, t);
706
+ const n = new RegExp(`^${q(t.prefix)}.*`);
707
+ t.pattern ?? (t.pattern = n), e._zod.onattach.push((o) => {
708
+ const r = o._zod.bag;
709
+ r.patterns ?? (r.patterns = /* @__PURE__ */ new Set()), r.patterns.add(n);
710
+ }), e._zod.check = (o) => {
711
+ o.value.startsWith(t.prefix) || o.issues.push({
712
+ origin: "string",
713
+ code: "invalid_format",
714
+ format: "starts_with",
715
+ prefix: t.prefix,
716
+ input: o.value,
717
+ inst: e,
718
+ continue: !t.abort
719
+ });
720
+ };
721
+ }), io = /* @__PURE__ */ u("$ZodCheckEndsWith", (e, t) => {
722
+ x.init(e, t);
723
+ const n = new RegExp(`.*${q(t.suffix)}$`);
724
+ t.pattern ?? (t.pattern = n), e._zod.onattach.push((o) => {
725
+ const r = o._zod.bag;
726
+ r.patterns ?? (r.patterns = /* @__PURE__ */ new Set()), r.patterns.add(n);
727
+ }), e._zod.check = (o) => {
728
+ o.value.endsWith(t.suffix) || o.issues.push({
729
+ origin: "string",
730
+ code: "invalid_format",
731
+ format: "ends_with",
732
+ suffix: t.suffix,
733
+ input: o.value,
734
+ inst: e,
735
+ continue: !t.abort
736
+ });
737
+ };
738
+ }), so = /* @__PURE__ */ u("$ZodCheckOverwrite", (e, t) => {
739
+ x.init(e, t), e._zod.check = (n) => {
740
+ n.value = t.tx(n.value);
741
+ };
742
+ });
743
+ class co {
744
+ constructor(t = []) {
745
+ this.content = [], this.indent = 0, this && (this.args = t);
746
+ }
747
+ indented(t) {
748
+ this.indent += 1, t(this), this.indent -= 1;
749
+ }
750
+ write(t) {
751
+ if (typeof t == "function") {
752
+ t(this, { execution: "sync" }), t(this, { execution: "async" });
753
+ return;
754
+ }
755
+ const o = t.split(`
756
+ `).filter((s) => s), r = Math.min(...o.map((s) => s.length - s.trimStart().length)), i = o.map((s) => s.slice(r)).map((s) => " ".repeat(this.indent * 2) + s);
757
+ for (const s of i)
758
+ this.content.push(s);
759
+ }
760
+ compile() {
761
+ const t = Function, n = this == null ? void 0 : this.args, r = [...((this == null ? void 0 : this.content) ?? [""]).map((i) => ` ${i}`)];
762
+ return new t(...n, r.join(`
763
+ `));
764
+ }
765
+ }
766
+ const ao = {
767
+ major: 4,
768
+ minor: 4,
769
+ patch: 3
770
+ }, $ = /* @__PURE__ */ u("$ZodType", (e, t) => {
771
+ var r;
772
+ var n;
773
+ e ?? (e = {}), e._zod.def = t, e._zod.bag = e._zod.bag || {}, e._zod.version = ao;
774
+ const o = [...e._zod.def.checks ?? []];
775
+ e._zod.traits.has("$ZodCheck") && o.unshift(e);
776
+ for (const i of o)
777
+ for (const s of i._zod.onattach)
778
+ s(e);
779
+ if (o.length === 0)
780
+ (n = e._zod).deferred ?? (n.deferred = []), (r = e._zod.deferred) == null || r.push(() => {
781
+ e._zod.run = e._zod.parse;
782
+ });
783
+ else {
784
+ const i = (c, a, l) => {
785
+ let f = K(c), p;
786
+ for (const g of a) {
787
+ if (g._zod.def.when) {
788
+ if (un(c) || !g._zod.def.when(c))
789
+ continue;
790
+ } else if (f)
791
+ continue;
792
+ const h = c.issues.length, w = g._zod.check(c);
793
+ if (w instanceof Promise && (l == null ? void 0 : l.async) === !1)
794
+ throw new Y();
795
+ if (p || w instanceof Promise)
796
+ p = (p ?? Promise.resolve()).then(async () => {
797
+ await w, c.issues.length !== h && (f || (f = K(c, h)));
798
+ });
799
+ else {
800
+ if (c.issues.length === h)
801
+ continue;
802
+ f || (f = K(c, h));
803
+ }
804
+ }
805
+ return p ? p.then(() => c) : c;
806
+ }, s = (c, a, l) => {
807
+ if (K(c))
808
+ return c.aborted = !0, c;
809
+ const f = i(a, o, l);
810
+ if (f instanceof Promise) {
811
+ if (l.async === !1)
812
+ throw new Y();
813
+ return f.then((p) => e._zod.parse(p, l));
814
+ }
815
+ return e._zod.parse(f, l);
816
+ };
817
+ e._zod.run = (c, a) => {
818
+ if (a.skipChecks)
819
+ return e._zod.parse(c, a);
820
+ if (a.direction === "backward") {
821
+ const f = e._zod.parse({ value: c.value, issues: [] }, { ...a, skipChecks: !0 });
822
+ return f instanceof Promise ? f.then((p) => s(p, c, a)) : s(f, c, a);
823
+ }
824
+ const l = e._zod.parse(c, a);
825
+ if (l instanceof Promise) {
826
+ if (a.async === !1)
827
+ throw new Y();
828
+ return l.then((f) => i(f, o, a));
829
+ }
830
+ return i(l, o, a);
831
+ };
832
+ }
833
+ y(e, "~standard", () => ({
834
+ validate: (i) => {
835
+ var s;
836
+ try {
837
+ const c = pn(e, i);
838
+ return c.success ? { value: c.data } : { issues: (s = c.error) == null ? void 0 : s.issues };
839
+ } catch {
840
+ return dn(e, i).then((a) => {
841
+ var l;
842
+ return a.success ? { value: a.data } : { issues: (l = a.error) == null ? void 0 : l.issues };
843
+ });
844
+ }
845
+ },
846
+ vendor: "zod",
847
+ version: 1
848
+ }));
849
+ }), Ee = /* @__PURE__ */ u("$ZodString", (e, t) => {
850
+ var n;
851
+ $.init(e, t), e._zod.pattern = [...((n = e == null ? void 0 : e._zod.bag) == null ? void 0 : n.patterns) ?? []].pop() ?? Ln(e._zod.bag), e._zod.parse = (o, r) => {
852
+ if (t.coerce)
853
+ try {
854
+ o.value = String(o.value);
855
+ } catch {
856
+ }
857
+ return typeof o.value == "string" || o.issues.push({
858
+ expected: "string",
859
+ code: "invalid_type",
860
+ input: o.value,
861
+ inst: e
862
+ }), o;
863
+ };
864
+ }), k = /* @__PURE__ */ u("$ZodStringFormat", (e, t) => {
865
+ he.init(e, t), Ee.init(e, t);
866
+ }), uo = /* @__PURE__ */ u("$ZodGUID", (e, t) => {
867
+ t.pattern ?? (t.pattern = Tn), k.init(e, t);
868
+ }), lo = /* @__PURE__ */ u("$ZodUUID", (e, t) => {
869
+ if (t.version) {
870
+ const o = {
871
+ v1: 1,
872
+ v2: 2,
873
+ v3: 3,
874
+ v4: 4,
875
+ v5: 5,
876
+ v6: 6,
877
+ v7: 7,
878
+ v8: 8
879
+ }[t.version];
880
+ if (o === void 0)
881
+ throw new Error(`Invalid UUID version: "${t.version}"`);
882
+ t.pattern ?? (t.pattern = Ce(o));
883
+ } else
884
+ t.pattern ?? (t.pattern = Ce());
885
+ k.init(e, t);
886
+ }), fo = /* @__PURE__ */ u("$ZodEmail", (e, t) => {
887
+ t.pattern ?? (t.pattern = In), k.init(e, t);
888
+ }), po = /* @__PURE__ */ u("$ZodURL", (e, t) => {
889
+ k.init(e, t), e._zod.check = (n) => {
890
+ var o;
891
+ try {
892
+ const r = n.value.trim();
893
+ if (!t.normalize && ((o = t.protocol) == null ? void 0 : o.source) === Rn.source && !/^https?:\/\//i.test(r)) {
894
+ n.issues.push({
895
+ code: "invalid_format",
896
+ format: "url",
897
+ note: "Invalid URL format",
898
+ input: n.value,
899
+ inst: e,
900
+ continue: !t.abort
901
+ });
902
+ return;
903
+ }
904
+ const i = new URL(r);
905
+ t.hostname && (t.hostname.lastIndex = 0, t.hostname.test(i.hostname) || n.issues.push({
906
+ code: "invalid_format",
907
+ format: "url",
908
+ note: "Invalid hostname",
909
+ pattern: t.hostname.source,
910
+ input: n.value,
911
+ inst: e,
912
+ continue: !t.abort
913
+ })), t.protocol && (t.protocol.lastIndex = 0, t.protocol.test(i.protocol.endsWith(":") ? i.protocol.slice(0, -1) : i.protocol) || n.issues.push({
914
+ code: "invalid_format",
915
+ format: "url",
916
+ note: "Invalid protocol",
917
+ pattern: t.protocol.source,
918
+ input: n.value,
919
+ inst: e,
920
+ continue: !t.abort
921
+ })), t.normalize ? n.value = i.href : n.value = r;
922
+ return;
923
+ } catch {
924
+ n.issues.push({
925
+ code: "invalid_format",
926
+ format: "url",
927
+ input: n.value,
928
+ inst: e,
929
+ continue: !t.abort
930
+ });
931
+ }
932
+ };
933
+ }), ho = /* @__PURE__ */ u("$ZodEmoji", (e, t) => {
934
+ t.pattern ?? (t.pattern = Nn()), k.init(e, t);
935
+ }), mo = /* @__PURE__ */ u("$ZodNanoID", (e, t) => {
936
+ t.pattern ?? (t.pattern = On), k.init(e, t);
937
+ }), go = /* @__PURE__ */ u("$ZodCUID", (e, t) => {
938
+ t.pattern ?? (t.pattern = wn), k.init(e, t);
939
+ }), _o = /* @__PURE__ */ u("$ZodCUID2", (e, t) => {
940
+ t.pattern ?? (t.pattern = kn), k.init(e, t);
941
+ }), vo = /* @__PURE__ */ u("$ZodULID", (e, t) => {
942
+ t.pattern ?? (t.pattern = $n), k.init(e, t);
943
+ }), yo = /* @__PURE__ */ u("$ZodXID", (e, t) => {
944
+ t.pattern ?? (t.pattern = Sn), k.init(e, t);
945
+ }), bo = /* @__PURE__ */ u("$ZodKSUID", (e, t) => {
946
+ t.pattern ?? (t.pattern = Zn), k.init(e, t);
947
+ }), zo = /* @__PURE__ */ u("$ZodISODateTime", (e, t) => {
948
+ t.pattern ?? (t.pattern = Mn(t)), k.init(e, t);
949
+ }), wo = /* @__PURE__ */ u("$ZodISODate", (e, t) => {
950
+ t.pattern ?? (t.pattern = Fn), k.init(e, t);
951
+ }), ko = /* @__PURE__ */ u("$ZodISOTime", (e, t) => {
952
+ t.pattern ?? (t.pattern = Jn(t)), k.init(e, t);
953
+ }), $o = /* @__PURE__ */ u("$ZodISODuration", (e, t) => {
954
+ t.pattern ?? (t.pattern = En), k.init(e, t);
955
+ }), So = /* @__PURE__ */ u("$ZodIPv4", (e, t) => {
956
+ t.pattern ?? (t.pattern = An), k.init(e, t), e._zod.bag.format = "ipv4";
957
+ }), Zo = /* @__PURE__ */ u("$ZodIPv6", (e, t) => {
958
+ t.pattern ?? (t.pattern = Cn), k.init(e, t), e._zod.bag.format = "ipv6", e._zod.check = (n) => {
959
+ try {
960
+ new URL(`http://[${n.value}]`);
961
+ } catch {
962
+ n.issues.push({
963
+ code: "invalid_format",
964
+ format: "ipv6",
965
+ input: n.value,
966
+ inst: e,
967
+ continue: !t.abort
968
+ });
969
+ }
970
+ };
971
+ }), Oo = /* @__PURE__ */ u("$ZodCIDRv4", (e, t) => {
972
+ t.pattern ?? (t.pattern = jn), k.init(e, t);
973
+ }), Eo = /* @__PURE__ */ u("$ZodCIDRv6", (e, t) => {
974
+ t.pattern ?? (t.pattern = xn), k.init(e, t), e._zod.check = (n) => {
975
+ const o = n.value.split("/");
976
+ try {
977
+ if (o.length !== 2)
978
+ throw new Error();
979
+ const [r, i] = o;
980
+ if (!i)
981
+ throw new Error();
982
+ const s = Number(i);
983
+ if (`${s}` !== i)
984
+ throw new Error();
985
+ if (s < 0 || s > 128)
986
+ throw new Error();
987
+ new URL(`http://[${r}]`);
988
+ } catch {
989
+ n.issues.push({
990
+ code: "invalid_format",
991
+ format: "cidrv6",
992
+ input: n.value,
993
+ inst: e,
994
+ continue: !t.abort
995
+ });
996
+ }
997
+ };
998
+ });
999
+ function mt(e) {
1000
+ if (e === "")
1001
+ return !0;
1002
+ if (/\s/.test(e) || e.length % 4 !== 0)
1003
+ return !1;
1004
+ try {
1005
+ return atob(e), !0;
1006
+ } catch {
1007
+ return !1;
1008
+ }
1009
+ }
1010
+ const To = /* @__PURE__ */ u("$ZodBase64", (e, t) => {
1011
+ t.pattern ?? (t.pattern = Dn), k.init(e, t), e._zod.bag.contentEncoding = "base64", e._zod.check = (n) => {
1012
+ mt(n.value) || n.issues.push({
1013
+ code: "invalid_format",
1014
+ format: "base64",
1015
+ input: n.value,
1016
+ inst: e,
1017
+ continue: !t.abort
1018
+ });
1019
+ };
1020
+ });
1021
+ function Io(e) {
1022
+ if (!ut.test(e))
1023
+ return !1;
1024
+ const t = e.replace(/[-_]/g, (o) => o === "-" ? "+" : "/"), n = t.padEnd(Math.ceil(t.length / 4) * 4, "=");
1025
+ return mt(n);
1026
+ }
1027
+ const Po = /* @__PURE__ */ u("$ZodBase64URL", (e, t) => {
1028
+ t.pattern ?? (t.pattern = ut), k.init(e, t), e._zod.bag.contentEncoding = "base64url", e._zod.check = (n) => {
1029
+ Io(n.value) || n.issues.push({
1030
+ code: "invalid_format",
1031
+ format: "base64url",
1032
+ input: n.value,
1033
+ inst: e,
1034
+ continue: !t.abort
1035
+ });
1036
+ };
1037
+ }), No = /* @__PURE__ */ u("$ZodE164", (e, t) => {
1038
+ t.pattern ?? (t.pattern = Un), k.init(e, t);
1039
+ });
1040
+ function Ao(e, t = null) {
1041
+ try {
1042
+ const n = e.split(".");
1043
+ if (n.length !== 3)
1044
+ return !1;
1045
+ const [o] = n;
1046
+ if (!o)
1047
+ return !1;
1048
+ const r = JSON.parse(atob(o));
1049
+ return !("typ" in r && (r == null ? void 0 : r.typ) !== "JWT" || !r.alg || t && (!("alg" in r) || r.alg !== t));
1050
+ } catch {
1051
+ return !1;
1052
+ }
1053
+ }
1054
+ const Co = /* @__PURE__ */ u("$ZodJWT", (e, t) => {
1055
+ k.init(e, t), e._zod.check = (n) => {
1056
+ Ao(n.value, t.alg) || n.issues.push({
1057
+ code: "invalid_format",
1058
+ format: "jwt",
1059
+ input: n.value,
1060
+ inst: e,
1061
+ continue: !t.abort
1062
+ });
1063
+ };
1064
+ }), gt = /* @__PURE__ */ u("$ZodNumber", (e, t) => {
1065
+ $.init(e, t), e._zod.pattern = e._zod.bag.pattern ?? Bn, e._zod.parse = (n, o) => {
1066
+ if (t.coerce)
1067
+ try {
1068
+ n.value = Number(n.value);
1069
+ } catch {
1070
+ }
1071
+ const r = n.value;
1072
+ if (typeof r == "number" && !Number.isNaN(r) && Number.isFinite(r))
1073
+ return n;
1074
+ const i = typeof r == "number" ? Number.isNaN(r) ? "NaN" : Number.isFinite(r) ? void 0 : "Infinity" : void 0;
1075
+ return n.issues.push({
1076
+ expected: "number",
1077
+ code: "invalid_type",
1078
+ input: r,
1079
+ inst: e,
1080
+ ...i ? { received: i } : {}
1081
+ }), n;
1082
+ };
1083
+ }), jo = /* @__PURE__ */ u("$ZodNumberFormat", (e, t) => {
1084
+ qn.init(e, t), gt.init(e, t);
1085
+ }), xo = /* @__PURE__ */ u("$ZodBoolean", (e, t) => {
1086
+ $.init(e, t), e._zod.pattern = Wn, e._zod.parse = (n, o) => {
1087
+ if (t.coerce)
1088
+ try {
1089
+ n.value = !!n.value;
1090
+ } catch {
1091
+ }
1092
+ const r = n.value;
1093
+ return typeof r == "boolean" || n.issues.push({
1094
+ expected: "boolean",
1095
+ code: "invalid_type",
1096
+ input: r,
1097
+ inst: e
1098
+ }), n;
1099
+ };
1100
+ }), Do = /* @__PURE__ */ u("$ZodUnknown", (e, t) => {
1101
+ $.init(e, t), e._zod.parse = (n) => n;
1102
+ }), Ro = /* @__PURE__ */ u("$ZodNever", (e, t) => {
1103
+ $.init(e, t), e._zod.parse = (n, o) => (n.issues.push({
1104
+ expected: "never",
1105
+ code: "invalid_type",
1106
+ input: n.value,
1107
+ inst: e
1108
+ }), n);
1109
+ });
1110
+ function je(e, t, n) {
1111
+ e.issues.length && t.issues.push(...it(n, e.issues)), t.value[n] = e.value;
1112
+ }
1113
+ const Uo = /* @__PURE__ */ u("$ZodArray", (e, t) => {
1114
+ $.init(e, t), e._zod.parse = (n, o) => {
1115
+ const r = n.value;
1116
+ if (!Array.isArray(r))
1117
+ return n.issues.push({
1118
+ expected: "array",
1119
+ code: "invalid_type",
1120
+ input: r,
1121
+ inst: e
1122
+ }), n;
1123
+ n.value = Array(r.length);
1124
+ const i = [];
1125
+ for (let s = 0; s < r.length; s++) {
1126
+ const c = r[s], a = t.element._zod.run({
1127
+ value: c,
1128
+ issues: []
1129
+ }, o);
1130
+ a instanceof Promise ? i.push(a.then((l) => je(l, n, s))) : je(a, n, s);
1131
+ }
1132
+ return i.length ? Promise.all(i).then(() => n) : n;
1133
+ };
1134
+ });
1135
+ function ae(e, t, n, o, r, i) {
1136
+ const s = n in o;
1137
+ if (e.issues.length) {
1138
+ if (r && i && !s)
1139
+ return;
1140
+ t.issues.push(...it(n, e.issues));
1141
+ }
1142
+ if (!s && !r) {
1143
+ e.issues.length || t.issues.push({
1144
+ code: "invalid_type",
1145
+ expected: "nonoptional",
1146
+ input: void 0,
1147
+ path: [n]
1148
+ });
1149
+ return;
1150
+ }
1151
+ e.value === void 0 ? s && (t.value[n] = void 0) : t.value[n] = e.value;
1152
+ }
1153
+ function _t(e) {
1154
+ var o, r, i, s;
1155
+ const t = Object.keys(e.shape);
1156
+ for (const c of t)
1157
+ if (!((s = (i = (r = (o = e.shape) == null ? void 0 : o[c]) == null ? void 0 : r._zod) == null ? void 0 : i.traits) != null && s.has("$ZodType")))
1158
+ throw new Error(`Invalid element at key "${c}": expected a Zod schema`);
1159
+ const n = Qt(e.shape);
1160
+ return {
1161
+ ...e,
1162
+ keys: t,
1163
+ keySet: new Set(t),
1164
+ numKeys: t.length,
1165
+ optionalKeys: new Set(n)
1166
+ };
1167
+ }
1168
+ function vt(e, t, n, o, r, i) {
1169
+ const s = [], c = r.keySet, a = r.catchall._zod, l = a.def.type, f = a.optin === "optional", p = a.optout === "optional";
1170
+ for (const g in t) {
1171
+ if (g === "__proto__" || c.has(g))
1172
+ continue;
1173
+ if (l === "never") {
1174
+ s.push(g);
1175
+ continue;
1176
+ }
1177
+ const h = a.run({ value: t[g], issues: [] }, o);
1178
+ h instanceof Promise ? e.push(h.then((w) => ae(w, n, g, t, f, p))) : ae(h, n, g, t, f, p);
1179
+ }
1180
+ return s.length && n.issues.push({
1181
+ code: "unrecognized_keys",
1182
+ keys: s,
1183
+ input: t,
1184
+ inst: i
1185
+ }), e.length ? Promise.all(e).then(() => n) : n;
1186
+ }
1187
+ const Fo = /* @__PURE__ */ u("$ZodObject", (e, t) => {
1188
+ $.init(e, t);
1189
+ const n = Object.getOwnPropertyDescriptor(t, "shape");
1190
+ if (!(n != null && n.get)) {
1191
+ const c = t.shape;
1192
+ Object.defineProperty(t, "shape", {
1193
+ get: () => {
1194
+ const a = { ...c };
1195
+ return Object.defineProperty(t, "shape", {
1196
+ value: a
1197
+ }), a;
1198
+ }
1199
+ });
1200
+ }
1201
+ const o = fe(() => _t(t));
1202
+ y(e._zod, "propValues", () => {
1203
+ const c = t.shape, a = {};
1204
+ for (const l in c) {
1205
+ const f = c[l]._zod;
1206
+ if (f.values) {
1207
+ a[l] ?? (a[l] = /* @__PURE__ */ new Set());
1208
+ for (const p of f.values)
1209
+ a[l].add(p);
1210
+ }
1211
+ }
1212
+ return a;
1213
+ });
1214
+ const r = ee, i = t.catchall;
1215
+ let s;
1216
+ e._zod.parse = (c, a) => {
1217
+ s ?? (s = o.value);
1218
+ const l = c.value;
1219
+ if (!r(l))
1220
+ return c.issues.push({
1221
+ expected: "object",
1222
+ code: "invalid_type",
1223
+ input: l,
1224
+ inst: e
1225
+ }), c;
1226
+ c.value = {};
1227
+ const f = [], p = s.shape;
1228
+ for (const g of s.keys) {
1229
+ const h = p[g], w = h._zod.optin === "optional", E = h._zod.optout === "optional", C = h._zod.run({ value: l[g], issues: [] }, a);
1230
+ C instanceof Promise ? f.push(C.then((T) => ae(T, c, g, l, w, E))) : ae(C, c, g, l, w, E);
1231
+ }
1232
+ return i ? vt(f, l, c, a, o.value, e) : f.length ? Promise.all(f).then(() => c) : c;
1233
+ };
1234
+ }), Jo = /* @__PURE__ */ u("$ZodObjectJIT", (e, t) => {
1235
+ Fo.init(e, t);
1236
+ const n = e._zod.parse, o = fe(() => _t(t)), r = (g) => {
1237
+ var H, j;
1238
+ const h = new co(["shape", "payload", "ctx"]), w = o.value, E = (F) => {
1239
+ const O = Ae(F);
1240
+ return `shape[${O}]._zod.run({ value: input[${O}], issues: [] }, ctx)`;
1241
+ };
1242
+ h.write("const input = payload.value;");
1243
+ const C = /* @__PURE__ */ Object.create(null);
1244
+ let T = 0;
1245
+ for (const F of w.keys)
1246
+ C[F] = `key_${T++}`;
1247
+ h.write("const newResult = {};");
1248
+ for (const F of w.keys) {
1249
+ const O = C[F], N = Ae(F), G = g[F], Ie = ((H = G == null ? void 0 : G._zod) == null ? void 0 : H.optin) === "optional", Wt = ((j = G == null ? void 0 : G._zod) == null ? void 0 : j.optout) === "optional";
1250
+ h.write(`const ${O} = ${E(F)};`), Ie && Wt ? h.write(`
1251
+ if (${O}.issues.length) {
1252
+ if (${N} in input) {
1253
+ payload.issues = payload.issues.concat(${O}.issues.map(iss => ({
1254
+ ...iss,
1255
+ path: iss.path ? [${N}, ...iss.path] : [${N}]
1256
+ })));
1257
+ }
1258
+ }
1259
+
1260
+ if (${O}.value === undefined) {
1261
+ if (${N} in input) {
1262
+ newResult[${N}] = undefined;
1263
+ }
1264
+ } else {
1265
+ newResult[${N}] = ${O}.value;
1266
+ }
1267
+
1268
+ `) : Ie ? h.write(`
1269
+ if (${O}.issues.length) {
1270
+ payload.issues = payload.issues.concat(${O}.issues.map(iss => ({
1271
+ ...iss,
1272
+ path: iss.path ? [${N}, ...iss.path] : [${N}]
1273
+ })));
1274
+ }
1275
+
1276
+ if (${O}.value === undefined) {
1277
+ if (${N} in input) {
1278
+ newResult[${N}] = undefined;
1279
+ }
1280
+ } else {
1281
+ newResult[${N}] = ${O}.value;
1282
+ }
1283
+
1284
+ `) : h.write(`
1285
+ const ${O}_present = ${N} in input;
1286
+ if (${O}.issues.length) {
1287
+ payload.issues = payload.issues.concat(${O}.issues.map(iss => ({
1288
+ ...iss,
1289
+ path: iss.path ? [${N}, ...iss.path] : [${N}]
1290
+ })));
1291
+ }
1292
+ if (!${O}_present && !${O}.issues.length) {
1293
+ payload.issues.push({
1294
+ code: "invalid_type",
1295
+ expected: "nonoptional",
1296
+ input: undefined,
1297
+ path: [${N}]
1298
+ });
1299
+ }
1300
+
1301
+ if (${O}_present) {
1302
+ if (${O}.value === undefined) {
1303
+ newResult[${N}] = undefined;
1304
+ } else {
1305
+ newResult[${N}] = ${O}.value;
1306
+ }
1307
+ }
1308
+
1309
+ `);
1310
+ }
1311
+ h.write("payload.value = newResult;"), h.write("return payload;");
1312
+ const P = h.compile();
1313
+ return (F, O) => P(g, F, O);
1314
+ };
1315
+ let i;
1316
+ const s = ee, c = !we.jitless, l = c && Xt.value, f = t.catchall;
1317
+ let p;
1318
+ e._zod.parse = (g, h) => {
1319
+ p ?? (p = o.value);
1320
+ const w = g.value;
1321
+ return s(w) ? c && l && (h == null ? void 0 : h.async) === !1 && h.jitless !== !0 ? (i || (i = r(t.shape)), g = i(g, h), f ? vt([], w, g, h, p, e) : g) : n(g, h) : (g.issues.push({
1322
+ expected: "object",
1323
+ code: "invalid_type",
1324
+ input: w,
1325
+ inst: e
1326
+ }), g);
1327
+ };
1328
+ });
1329
+ function xe(e, t, n, o) {
1330
+ for (const i of e)
1331
+ if (i.issues.length === 0)
1332
+ return t.value = i.value, t;
1333
+ const r = e.filter((i) => !K(i));
1334
+ return r.length === 1 ? (t.value = r[0].value, r[0]) : (t.issues.push({
1335
+ code: "invalid_union",
1336
+ input: t.value,
1337
+ inst: n,
1338
+ errors: e.map((i) => i.issues.map((s) => B(s, o, V())))
1339
+ }), t);
1340
+ }
1341
+ const yt = /* @__PURE__ */ u("$ZodUnion", (e, t) => {
1342
+ $.init(e, t), y(e._zod, "optin", () => t.options.some((o) => o._zod.optin === "optional") ? "optional" : void 0), y(e._zod, "optout", () => t.options.some((o) => o._zod.optout === "optional") ? "optional" : void 0), y(e._zod, "values", () => {
1343
+ if (t.options.every((o) => o._zod.values))
1344
+ return new Set(t.options.flatMap((o) => Array.from(o._zod.values)));
1345
+ }), y(e._zod, "pattern", () => {
1346
+ if (t.options.every((o) => o._zod.pattern)) {
1347
+ const o = t.options.map((r) => r._zod.pattern);
1348
+ return new RegExp(`^(${o.map((r) => $e(r.source)).join("|")})$`);
1349
+ }
1350
+ });
1351
+ const n = t.options.length === 1 ? t.options[0]._zod.run : null;
1352
+ e._zod.parse = (o, r) => {
1353
+ if (n)
1354
+ return n(o, r);
1355
+ let i = !1;
1356
+ const s = [];
1357
+ for (const c of t.options) {
1358
+ const a = c._zod.run({
1359
+ value: o.value,
1360
+ issues: []
1361
+ }, r);
1362
+ if (a instanceof Promise)
1363
+ s.push(a), i = !0;
1364
+ else {
1365
+ if (a.issues.length === 0)
1366
+ return a;
1367
+ s.push(a);
1368
+ }
1369
+ }
1370
+ return i ? Promise.all(s).then((c) => xe(c, o, e, r)) : xe(s, o, e, r);
1371
+ };
1372
+ }), Mo = /* @__PURE__ */ u("$ZodDiscriminatedUnion", (e, t) => {
1373
+ t.inclusive = !1, yt.init(e, t);
1374
+ const n = e._zod.parse;
1375
+ y(e._zod, "propValues", () => {
1376
+ const r = {};
1377
+ for (const i of t.options) {
1378
+ const s = i._zod.propValues;
1379
+ if (!s || Object.keys(s).length === 0)
1380
+ throw new Error(`Invalid discriminated union option at index "${t.options.indexOf(i)}"`);
1381
+ for (const [c, a] of Object.entries(s)) {
1382
+ r[c] || (r[c] = /* @__PURE__ */ new Set());
1383
+ for (const l of a)
1384
+ r[c].add(l);
1385
+ }
1386
+ }
1387
+ return r;
1388
+ });
1389
+ const o = fe(() => {
1390
+ var s;
1391
+ const r = t.options, i = /* @__PURE__ */ new Map();
1392
+ for (const c of r) {
1393
+ const a = (s = c._zod.propValues) == null ? void 0 : s[t.discriminator];
1394
+ if (!a || a.size === 0)
1395
+ throw new Error(`Invalid discriminated union option at index "${t.options.indexOf(c)}"`);
1396
+ for (const l of a) {
1397
+ if (i.has(l))
1398
+ throw new Error(`Duplicate discriminator value "${String(l)}"`);
1399
+ i.set(l, c);
1400
+ }
1401
+ }
1402
+ return i;
1403
+ });
1404
+ e._zod.parse = (r, i) => {
1405
+ const s = r.value;
1406
+ if (!ee(s))
1407
+ return r.issues.push({
1408
+ code: "invalid_type",
1409
+ expected: "object",
1410
+ input: s,
1411
+ inst: e
1412
+ }), r;
1413
+ const c = o.value.get(s == null ? void 0 : s[t.discriminator]);
1414
+ return c ? c._zod.run(r, i) : t.unionFallback || i.direction === "backward" ? n(r, i) : (r.issues.push({
1415
+ code: "invalid_union",
1416
+ errors: [],
1417
+ note: "No matching discriminator",
1418
+ discriminator: t.discriminator,
1419
+ options: Array.from(o.value.keys()),
1420
+ input: s,
1421
+ path: [t.discriminator],
1422
+ inst: e
1423
+ }), r);
1424
+ };
1425
+ }), Lo = /* @__PURE__ */ u("$ZodIntersection", (e, t) => {
1426
+ $.init(e, t), e._zod.parse = (n, o) => {
1427
+ const r = n.value, i = t.left._zod.run({ value: r, issues: [] }, o), s = t.right._zod.run({ value: r, issues: [] }, o);
1428
+ return i instanceof Promise || s instanceof Promise ? Promise.all([i, s]).then(([a, l]) => De(n, a, l)) : De(n, i, s);
1429
+ };
1430
+ });
1431
+ function ve(e, t) {
1432
+ if (e === t)
1433
+ return { valid: !0, data: e };
1434
+ if (e instanceof Date && t instanceof Date && +e == +t)
1435
+ return { valid: !0, data: e };
1436
+ if (te(e) && te(t)) {
1437
+ const n = Object.keys(t), o = Object.keys(e).filter((i) => n.indexOf(i) !== -1), r = { ...e, ...t };
1438
+ for (const i of o) {
1439
+ const s = ve(e[i], t[i]);
1440
+ if (!s.valid)
1441
+ return {
1442
+ valid: !1,
1443
+ mergeErrorPath: [i, ...s.mergeErrorPath]
1444
+ };
1445
+ r[i] = s.data;
1446
+ }
1447
+ return { valid: !0, data: r };
1448
+ }
1449
+ if (Array.isArray(e) && Array.isArray(t)) {
1450
+ if (e.length !== t.length)
1451
+ return { valid: !1, mergeErrorPath: [] };
1452
+ const n = [];
1453
+ for (let o = 0; o < e.length; o++) {
1454
+ const r = e[o], i = t[o], s = ve(r, i);
1455
+ if (!s.valid)
1456
+ return {
1457
+ valid: !1,
1458
+ mergeErrorPath: [o, ...s.mergeErrorPath]
1459
+ };
1460
+ n.push(s.data);
1461
+ }
1462
+ return { valid: !0, data: n };
1463
+ }
1464
+ return { valid: !1, mergeErrorPath: [] };
1465
+ }
1466
+ function De(e, t, n) {
1467
+ const o = /* @__PURE__ */ new Map();
1468
+ let r;
1469
+ for (const c of t.issues)
1470
+ if (c.code === "unrecognized_keys") {
1471
+ r ?? (r = c);
1472
+ for (const a of c.keys)
1473
+ o.has(a) || o.set(a, {}), o.get(a).l = !0;
1474
+ } else
1475
+ e.issues.push(c);
1476
+ for (const c of n.issues)
1477
+ if (c.code === "unrecognized_keys")
1478
+ for (const a of c.keys)
1479
+ o.has(a) || o.set(a, {}), o.get(a).r = !0;
1480
+ else
1481
+ e.issues.push(c);
1482
+ const i = [...o].filter(([, c]) => c.l && c.r).map(([c]) => c);
1483
+ if (i.length && r && e.issues.push({ ...r, keys: i }), K(e))
1484
+ return e;
1485
+ const s = ve(t.value, n.value);
1486
+ if (!s.valid)
1487
+ throw new Error(`Unmergable intersection. Error path: ${JSON.stringify(s.mergeErrorPath)}`);
1488
+ return e.value = s.data, e;
1489
+ }
1490
+ const Vo = /* @__PURE__ */ u("$ZodEnum", (e, t) => {
1491
+ $.init(e, t);
1492
+ const n = nt(t.entries), o = new Set(n);
1493
+ e._zod.values = o, e._zod.pattern = new RegExp(`^(${n.filter((r) => Ht.has(typeof r)).map((r) => typeof r == "string" ? q(r) : r.toString()).join("|")})$`), e._zod.parse = (r, i) => {
1494
+ const s = r.value;
1495
+ return o.has(s) || r.issues.push({
1496
+ code: "invalid_value",
1497
+ values: n,
1498
+ input: s,
1499
+ inst: e
1500
+ }), r;
1501
+ };
1502
+ }), Bo = /* @__PURE__ */ u("$ZodLiteral", (e, t) => {
1503
+ if ($.init(e, t), t.values.length === 0)
1504
+ throw new Error("Cannot create literal schema with no valid values");
1505
+ const n = new Set(t.values);
1506
+ e._zod.values = n, e._zod.pattern = new RegExp(`^(${t.values.map((o) => typeof o == "string" ? q(o) : o ? q(o.toString()) : String(o)).join("|")})$`), e._zod.parse = (o, r) => {
1507
+ const i = o.value;
1508
+ return n.has(i) || o.issues.push({
1509
+ code: "invalid_value",
1510
+ values: t.values,
1511
+ input: i,
1512
+ inst: e
1513
+ }), o;
1514
+ };
1515
+ }), Wo = /* @__PURE__ */ u("$ZodTransform", (e, t) => {
1516
+ $.init(e, t), e._zod.optin = "optional", e._zod.parse = (n, o) => {
1517
+ if (o.direction === "backward")
1518
+ throw new tt(e.constructor.name);
1519
+ const r = t.transform(n.value, n);
1520
+ if (o.async)
1521
+ return (r instanceof Promise ? r : Promise.resolve(r)).then((s) => (n.value = s, n.fallback = !0, n));
1522
+ if (r instanceof Promise)
1523
+ throw new Y();
1524
+ return n.value = r, n.fallback = !0, n;
1525
+ };
1526
+ });
1527
+ function Re(e, t) {
1528
+ return t === void 0 && (e.issues.length || e.fallback) ? { issues: [], value: void 0 } : e;
1529
+ }
1530
+ const bt = /* @__PURE__ */ u("$ZodOptional", (e, t) => {
1531
+ $.init(e, t), e._zod.optin = "optional", e._zod.optout = "optional", y(e._zod, "values", () => t.innerType._zod.values ? /* @__PURE__ */ new Set([...t.innerType._zod.values, void 0]) : void 0), y(e._zod, "pattern", () => {
1532
+ const n = t.innerType._zod.pattern;
1533
+ return n ? new RegExp(`^(${$e(n.source)})?$`) : void 0;
1534
+ }), e._zod.parse = (n, o) => {
1535
+ if (t.innerType._zod.optin === "optional") {
1536
+ const r = n.value, i = t.innerType._zod.run(n, o);
1537
+ return i instanceof Promise ? i.then((s) => Re(s, r)) : Re(i, r);
1538
+ }
1539
+ return n.value === void 0 ? n : t.innerType._zod.run(n, o);
1540
+ };
1541
+ }), Go = /* @__PURE__ */ u("$ZodExactOptional", (e, t) => {
1542
+ bt.init(e, t), y(e._zod, "values", () => t.innerType._zod.values), y(e._zod, "pattern", () => t.innerType._zod.pattern), e._zod.parse = (n, o) => t.innerType._zod.run(n, o);
1543
+ }), Ko = /* @__PURE__ */ u("$ZodNullable", (e, t) => {
1544
+ $.init(e, t), y(e._zod, "optin", () => t.innerType._zod.optin), y(e._zod, "optout", () => t.innerType._zod.optout), y(e._zod, "pattern", () => {
1545
+ const n = t.innerType._zod.pattern;
1546
+ return n ? new RegExp(`^(${$e(n.source)}|null)$`) : void 0;
1547
+ }), y(e._zod, "values", () => t.innerType._zod.values ? /* @__PURE__ */ new Set([...t.innerType._zod.values, null]) : void 0), e._zod.parse = (n, o) => n.value === null ? n : t.innerType._zod.run(n, o);
1548
+ }), Yo = /* @__PURE__ */ u("$ZodDefault", (e, t) => {
1549
+ $.init(e, t), e._zod.optin = "optional", y(e._zod, "values", () => t.innerType._zod.values), e._zod.parse = (n, o) => {
1550
+ if (o.direction === "backward")
1551
+ return t.innerType._zod.run(n, o);
1552
+ if (n.value === void 0)
1553
+ return n.value = t.defaultValue, n;
1554
+ const r = t.innerType._zod.run(n, o);
1555
+ return r instanceof Promise ? r.then((i) => Ue(i, t)) : Ue(r, t);
1556
+ };
1557
+ });
1558
+ function Ue(e, t) {
1559
+ return e.value === void 0 && (e.value = t.defaultValue), e;
1560
+ }
1561
+ const qo = /* @__PURE__ */ u("$ZodPrefault", (e, t) => {
1562
+ $.init(e, t), e._zod.optin = "optional", y(e._zod, "values", () => t.innerType._zod.values), e._zod.parse = (n, o) => (o.direction === "backward" || n.value === void 0 && (n.value = t.defaultValue), t.innerType._zod.run(n, o));
1563
+ }), Xo = /* @__PURE__ */ u("$ZodNonOptional", (e, t) => {
1564
+ $.init(e, t), y(e._zod, "values", () => {
1565
+ const n = t.innerType._zod.values;
1566
+ return n ? new Set([...n].filter((o) => o !== void 0)) : void 0;
1567
+ }), e._zod.parse = (n, o) => {
1568
+ const r = t.innerType._zod.run(n, o);
1569
+ return r instanceof Promise ? r.then((i) => Fe(i, e)) : Fe(r, e);
1570
+ };
1571
+ });
1572
+ function Fe(e, t) {
1573
+ return !e.issues.length && e.value === void 0 && e.issues.push({
1574
+ code: "invalid_type",
1575
+ expected: "nonoptional",
1576
+ input: e.value,
1577
+ inst: t
1578
+ }), e;
1579
+ }
1580
+ const Ho = /* @__PURE__ */ u("$ZodCatch", (e, t) => {
1581
+ $.init(e, t), e._zod.optin = "optional", y(e._zod, "optout", () => t.innerType._zod.optout), y(e._zod, "values", () => t.innerType._zod.values), e._zod.parse = (n, o) => {
1582
+ if (o.direction === "backward")
1583
+ return t.innerType._zod.run(n, o);
1584
+ const r = t.innerType._zod.run(n, o);
1585
+ return r instanceof Promise ? r.then((i) => (n.value = i.value, i.issues.length && (n.value = t.catchValue({
1586
+ ...n,
1587
+ error: {
1588
+ issues: i.issues.map((s) => B(s, o, V()))
1589
+ },
1590
+ input: n.value
1591
+ }), n.issues = [], n.fallback = !0), n)) : (n.value = r.value, r.issues.length && (n.value = t.catchValue({
1592
+ ...n,
1593
+ error: {
1594
+ issues: r.issues.map((i) => B(i, o, V()))
1595
+ },
1596
+ input: n.value
1597
+ }), n.issues = [], n.fallback = !0), n);
1598
+ };
1599
+ }), Qo = /* @__PURE__ */ u("$ZodPipe", (e, t) => {
1600
+ $.init(e, t), y(e._zod, "values", () => t.in._zod.values), y(e._zod, "optin", () => t.in._zod.optin), y(e._zod, "optout", () => t.out._zod.optout), y(e._zod, "propValues", () => t.in._zod.propValues), e._zod.parse = (n, o) => {
1601
+ if (o.direction === "backward") {
1602
+ const i = t.out._zod.run(n, o);
1603
+ return i instanceof Promise ? i.then((s) => se(s, t.in, o)) : se(i, t.in, o);
1604
+ }
1605
+ const r = t.in._zod.run(n, o);
1606
+ return r instanceof Promise ? r.then((i) => se(i, t.out, o)) : se(r, t.out, o);
1607
+ };
1608
+ });
1609
+ function se(e, t, n) {
1610
+ return e.issues.length ? (e.aborted = !0, e) : t._zod.run({ value: e.value, issues: e.issues, fallback: e.fallback }, n);
1611
+ }
1612
+ const er = /* @__PURE__ */ u("$ZodReadonly", (e, t) => {
1613
+ $.init(e, t), y(e._zod, "propValues", () => t.innerType._zod.propValues), y(e._zod, "values", () => t.innerType._zod.values), y(e._zod, "optin", () => {
1614
+ var n, o;
1615
+ return (o = (n = t.innerType) == null ? void 0 : n._zod) == null ? void 0 : o.optin;
1616
+ }), y(e._zod, "optout", () => {
1617
+ var n, o;
1618
+ return (o = (n = t.innerType) == null ? void 0 : n._zod) == null ? void 0 : o.optout;
1619
+ }), e._zod.parse = (n, o) => {
1620
+ if (o.direction === "backward")
1621
+ return t.innerType._zod.run(n, o);
1622
+ const r = t.innerType._zod.run(n, o);
1623
+ return r instanceof Promise ? r.then(Je) : Je(r);
1624
+ };
1625
+ });
1626
+ function Je(e) {
1627
+ return e.value = Object.freeze(e.value), e;
1628
+ }
1629
+ const tr = /* @__PURE__ */ u("$ZodLazy", (e, t) => {
1630
+ $.init(e, t), y(e._zod, "innerType", () => {
1631
+ const n = t;
1632
+ return n._cachedInner || (n._cachedInner = t.getter()), n._cachedInner;
1633
+ }), y(e._zod, "pattern", () => {
1634
+ var n, o;
1635
+ return (o = (n = e._zod.innerType) == null ? void 0 : n._zod) == null ? void 0 : o.pattern;
1636
+ }), y(e._zod, "propValues", () => {
1637
+ var n, o;
1638
+ return (o = (n = e._zod.innerType) == null ? void 0 : n._zod) == null ? void 0 : o.propValues;
1639
+ }), y(e._zod, "optin", () => {
1640
+ var n, o;
1641
+ return ((o = (n = e._zod.innerType) == null ? void 0 : n._zod) == null ? void 0 : o.optin) ?? void 0;
1642
+ }), y(e._zod, "optout", () => {
1643
+ var n, o;
1644
+ return ((o = (n = e._zod.innerType) == null ? void 0 : n._zod) == null ? void 0 : o.optout) ?? void 0;
1645
+ }), e._zod.parse = (n, o) => e._zod.innerType._zod.run(n, o);
1646
+ }), nr = /* @__PURE__ */ u("$ZodCustom", (e, t) => {
1647
+ x.init(e, t), $.init(e, t), e._zod.parse = (n, o) => n, e._zod.check = (n) => {
1648
+ const o = n.value, r = t.fn(o);
1649
+ if (r instanceof Promise)
1650
+ return r.then((i) => Me(i, n, o, e));
1651
+ Me(r, n, o, e);
1652
+ };
1653
+ });
1654
+ function Me(e, t, n, o) {
1655
+ if (!e) {
1656
+ const r = {
1657
+ code: "custom",
1658
+ input: n,
1659
+ inst: o,
1660
+ // incorporates params.error into issue reporting
1661
+ path: [...o._zod.def.path ?? []],
1662
+ // incorporates params.error into issue reporting
1663
+ continue: !o._zod.def.abort
1664
+ // params: inst._zod.def.params,
1665
+ };
1666
+ o._zod.def.params && (r.params = o._zod.def.params), t.issues.push(ne(r));
1667
+ }
1668
+ }
1669
+ var Le;
1670
+ class or {
1671
+ constructor() {
1672
+ this._map = /* @__PURE__ */ new WeakMap(), this._idmap = /* @__PURE__ */ new Map();
1673
+ }
1674
+ add(t, ...n) {
1675
+ const o = n[0];
1676
+ return this._map.set(t, o), o && typeof o == "object" && "id" in o && this._idmap.set(o.id, t), this;
1677
+ }
1678
+ clear() {
1679
+ return this._map = /* @__PURE__ */ new WeakMap(), this._idmap = /* @__PURE__ */ new Map(), this;
1680
+ }
1681
+ remove(t) {
1682
+ const n = this._map.get(t);
1683
+ return n && typeof n == "object" && "id" in n && this._idmap.delete(n.id), this._map.delete(t), this;
1684
+ }
1685
+ get(t) {
1686
+ const n = t._zod.parent;
1687
+ if (n) {
1688
+ const o = { ...this.get(n) ?? {} };
1689
+ delete o.id;
1690
+ const r = { ...o, ...this._map.get(t) };
1691
+ return Object.keys(r).length ? r : void 0;
1692
+ }
1693
+ return this._map.get(t);
1694
+ }
1695
+ has(t) {
1696
+ return this._map.has(t);
1697
+ }
1698
+ }
1699
+ function rr() {
1700
+ return new or();
1701
+ }
1702
+ (Le = globalThis).__zod_globalRegistry ?? (Le.__zod_globalRegistry = rr());
1703
+ const Q = globalThis.__zod_globalRegistry;
1704
+ // @__NO_SIDE_EFFECTS__
1705
+ function ir(e, t) {
1706
+ return new e({
1707
+ type: "string",
1708
+ ..._(t)
1709
+ });
1710
+ }
1711
+ // @__NO_SIDE_EFFECTS__
1712
+ function sr(e, t) {
1713
+ return new e({
1714
+ type: "string",
1715
+ format: "email",
1716
+ check: "string_format",
1717
+ abort: !1,
1718
+ ..._(t)
1719
+ });
1720
+ }
1721
+ // @__NO_SIDE_EFFECTS__
1722
+ function Ve(e, t) {
1723
+ return new e({
1724
+ type: "string",
1725
+ format: "guid",
1726
+ check: "string_format",
1727
+ abort: !1,
1728
+ ..._(t)
1729
+ });
1730
+ }
1731
+ // @__NO_SIDE_EFFECTS__
1732
+ function cr(e, t) {
1733
+ return new e({
1734
+ type: "string",
1735
+ format: "uuid",
1736
+ check: "string_format",
1737
+ abort: !1,
1738
+ ..._(t)
1739
+ });
1740
+ }
1741
+ // @__NO_SIDE_EFFECTS__
1742
+ function ar(e, t) {
1743
+ return new e({
1744
+ type: "string",
1745
+ format: "uuid",
1746
+ check: "string_format",
1747
+ abort: !1,
1748
+ version: "v4",
1749
+ ..._(t)
1750
+ });
1751
+ }
1752
+ // @__NO_SIDE_EFFECTS__
1753
+ function ur(e, t) {
1754
+ return new e({
1755
+ type: "string",
1756
+ format: "uuid",
1757
+ check: "string_format",
1758
+ abort: !1,
1759
+ version: "v6",
1760
+ ..._(t)
1761
+ });
1762
+ }
1763
+ // @__NO_SIDE_EFFECTS__
1764
+ function lr(e, t) {
1765
+ return new e({
1766
+ type: "string",
1767
+ format: "uuid",
1768
+ check: "string_format",
1769
+ abort: !1,
1770
+ version: "v7",
1771
+ ..._(t)
1772
+ });
1773
+ }
1774
+ // @__NO_SIDE_EFFECTS__
1775
+ function fr(e, t) {
1776
+ return new e({
1777
+ type: "string",
1778
+ format: "url",
1779
+ check: "string_format",
1780
+ abort: !1,
1781
+ ..._(t)
1782
+ });
1783
+ }
1784
+ // @__NO_SIDE_EFFECTS__
1785
+ function pr(e, t) {
1786
+ return new e({
1787
+ type: "string",
1788
+ format: "emoji",
1789
+ check: "string_format",
1790
+ abort: !1,
1791
+ ..._(t)
1792
+ });
1793
+ }
1794
+ // @__NO_SIDE_EFFECTS__
1795
+ function dr(e, t) {
1796
+ return new e({
1797
+ type: "string",
1798
+ format: "nanoid",
1799
+ check: "string_format",
1800
+ abort: !1,
1801
+ ..._(t)
1802
+ });
1803
+ }
1804
+ // @__NO_SIDE_EFFECTS__
1805
+ function hr(e, t) {
1806
+ return new e({
1807
+ type: "string",
1808
+ format: "cuid",
1809
+ check: "string_format",
1810
+ abort: !1,
1811
+ ..._(t)
1812
+ });
1813
+ }
1814
+ // @__NO_SIDE_EFFECTS__
1815
+ function mr(e, t) {
1816
+ return new e({
1817
+ type: "string",
1818
+ format: "cuid2",
1819
+ check: "string_format",
1820
+ abort: !1,
1821
+ ..._(t)
1822
+ });
1823
+ }
1824
+ // @__NO_SIDE_EFFECTS__
1825
+ function gr(e, t) {
1826
+ return new e({
1827
+ type: "string",
1828
+ format: "ulid",
1829
+ check: "string_format",
1830
+ abort: !1,
1831
+ ..._(t)
1832
+ });
1833
+ }
1834
+ // @__NO_SIDE_EFFECTS__
1835
+ function _r(e, t) {
1836
+ return new e({
1837
+ type: "string",
1838
+ format: "xid",
1839
+ check: "string_format",
1840
+ abort: !1,
1841
+ ..._(t)
1842
+ });
1843
+ }
1844
+ // @__NO_SIDE_EFFECTS__
1845
+ function vr(e, t) {
1846
+ return new e({
1847
+ type: "string",
1848
+ format: "ksuid",
1849
+ check: "string_format",
1850
+ abort: !1,
1851
+ ..._(t)
1852
+ });
1853
+ }
1854
+ // @__NO_SIDE_EFFECTS__
1855
+ function yr(e, t) {
1856
+ return new e({
1857
+ type: "string",
1858
+ format: "ipv4",
1859
+ check: "string_format",
1860
+ abort: !1,
1861
+ ..._(t)
1862
+ });
1863
+ }
1864
+ // @__NO_SIDE_EFFECTS__
1865
+ function br(e, t) {
1866
+ return new e({
1867
+ type: "string",
1868
+ format: "ipv6",
1869
+ check: "string_format",
1870
+ abort: !1,
1871
+ ..._(t)
1872
+ });
1873
+ }
1874
+ // @__NO_SIDE_EFFECTS__
1875
+ function zr(e, t) {
1876
+ return new e({
1877
+ type: "string",
1878
+ format: "cidrv4",
1879
+ check: "string_format",
1880
+ abort: !1,
1881
+ ..._(t)
1882
+ });
1883
+ }
1884
+ // @__NO_SIDE_EFFECTS__
1885
+ function wr(e, t) {
1886
+ return new e({
1887
+ type: "string",
1888
+ format: "cidrv6",
1889
+ check: "string_format",
1890
+ abort: !1,
1891
+ ..._(t)
1892
+ });
1893
+ }
1894
+ // @__NO_SIDE_EFFECTS__
1895
+ function kr(e, t) {
1896
+ return new e({
1897
+ type: "string",
1898
+ format: "base64",
1899
+ check: "string_format",
1900
+ abort: !1,
1901
+ ..._(t)
1902
+ });
1903
+ }
1904
+ // @__NO_SIDE_EFFECTS__
1905
+ function $r(e, t) {
1906
+ return new e({
1907
+ type: "string",
1908
+ format: "base64url",
1909
+ check: "string_format",
1910
+ abort: !1,
1911
+ ..._(t)
1912
+ });
1913
+ }
1914
+ // @__NO_SIDE_EFFECTS__
1915
+ function Sr(e, t) {
1916
+ return new e({
1917
+ type: "string",
1918
+ format: "e164",
1919
+ check: "string_format",
1920
+ abort: !1,
1921
+ ..._(t)
1922
+ });
1923
+ }
1924
+ // @__NO_SIDE_EFFECTS__
1925
+ function Zr(e, t) {
1926
+ return new e({
1927
+ type: "string",
1928
+ format: "jwt",
1929
+ check: "string_format",
1930
+ abort: !1,
1931
+ ..._(t)
1932
+ });
1933
+ }
1934
+ // @__NO_SIDE_EFFECTS__
1935
+ function Or(e, t) {
1936
+ return new e({
1937
+ type: "string",
1938
+ format: "datetime",
1939
+ check: "string_format",
1940
+ offset: !1,
1941
+ local: !1,
1942
+ precision: null,
1943
+ ..._(t)
1944
+ });
1945
+ }
1946
+ // @__NO_SIDE_EFFECTS__
1947
+ function Er(e, t) {
1948
+ return new e({
1949
+ type: "string",
1950
+ format: "date",
1951
+ check: "string_format",
1952
+ ..._(t)
1953
+ });
1954
+ }
1955
+ // @__NO_SIDE_EFFECTS__
1956
+ function Tr(e, t) {
1957
+ return new e({
1958
+ type: "string",
1959
+ format: "time",
1960
+ check: "string_format",
1961
+ precision: null,
1962
+ ..._(t)
1963
+ });
1964
+ }
1965
+ // @__NO_SIDE_EFFECTS__
1966
+ function Ir(e, t) {
1967
+ return new e({
1968
+ type: "string",
1969
+ format: "duration",
1970
+ check: "string_format",
1971
+ ..._(t)
1972
+ });
1973
+ }
1974
+ // @__NO_SIDE_EFFECTS__
1975
+ function Pr(e, t) {
1976
+ return new e({
1977
+ type: "number",
1978
+ checks: [],
1979
+ ..._(t)
1980
+ });
1981
+ }
1982
+ // @__NO_SIDE_EFFECTS__
1983
+ function Nr(e, t) {
1984
+ return new e({
1985
+ type: "number",
1986
+ check: "number_format",
1987
+ abort: !1,
1988
+ format: "safeint",
1989
+ ..._(t)
1990
+ });
1991
+ }
1992
+ // @__NO_SIDE_EFFECTS__
1993
+ function Ar(e, t) {
1994
+ return new e({
1995
+ type: "boolean",
1996
+ ..._(t)
1997
+ });
1998
+ }
1999
+ // @__NO_SIDE_EFFECTS__
2000
+ function Cr(e) {
2001
+ return new e({
2002
+ type: "unknown"
2003
+ });
2004
+ }
2005
+ // @__NO_SIDE_EFFECTS__
2006
+ function jr(e, t) {
2007
+ return new e({
2008
+ type: "never",
2009
+ ..._(t)
2010
+ });
2011
+ }
2012
+ // @__NO_SIDE_EFFECTS__
2013
+ function Be(e, t) {
2014
+ return new dt({
2015
+ check: "less_than",
2016
+ ..._(t),
2017
+ value: e,
2018
+ inclusive: !1
2019
+ });
2020
+ }
2021
+ // @__NO_SIDE_EFFECTS__
2022
+ function me(e, t) {
2023
+ return new dt({
2024
+ check: "less_than",
2025
+ ..._(t),
2026
+ value: e,
2027
+ inclusive: !0
2028
+ });
2029
+ }
2030
+ // @__NO_SIDE_EFFECTS__
2031
+ function We(e, t) {
2032
+ return new ht({
2033
+ check: "greater_than",
2034
+ ..._(t),
2035
+ value: e,
2036
+ inclusive: !1
2037
+ });
2038
+ }
2039
+ // @__NO_SIDE_EFFECTS__
2040
+ function ge(e, t) {
2041
+ return new ht({
2042
+ check: "greater_than",
2043
+ ..._(t),
2044
+ value: e,
2045
+ inclusive: !0
2046
+ });
2047
+ }
2048
+ // @__NO_SIDE_EFFECTS__
2049
+ function Ge(e, t) {
2050
+ return new Yn({
2051
+ check: "multiple_of",
2052
+ ..._(t),
2053
+ value: e
2054
+ });
2055
+ }
2056
+ // @__NO_SIDE_EFFECTS__
2057
+ function zt(e, t) {
2058
+ return new Xn({
2059
+ check: "max_length",
2060
+ ..._(t),
2061
+ maximum: e
2062
+ });
2063
+ }
2064
+ // @__NO_SIDE_EFFECTS__
2065
+ function ue(e, t) {
2066
+ return new Hn({
2067
+ check: "min_length",
2068
+ ..._(t),
2069
+ minimum: e
2070
+ });
2071
+ }
2072
+ // @__NO_SIDE_EFFECTS__
2073
+ function wt(e, t) {
2074
+ return new Qn({
2075
+ check: "length_equals",
2076
+ ..._(t),
2077
+ length: e
2078
+ });
2079
+ }
2080
+ // @__NO_SIDE_EFFECTS__
2081
+ function xr(e, t) {
2082
+ return new eo({
2083
+ check: "string_format",
2084
+ format: "regex",
2085
+ ..._(t),
2086
+ pattern: e
2087
+ });
2088
+ }
2089
+ // @__NO_SIDE_EFFECTS__
2090
+ function Dr(e) {
2091
+ return new to({
2092
+ check: "string_format",
2093
+ format: "lowercase",
2094
+ ..._(e)
2095
+ });
2096
+ }
2097
+ // @__NO_SIDE_EFFECTS__
2098
+ function Rr(e) {
2099
+ return new no({
2100
+ check: "string_format",
2101
+ format: "uppercase",
2102
+ ..._(e)
2103
+ });
2104
+ }
2105
+ // @__NO_SIDE_EFFECTS__
2106
+ function Ur(e, t) {
2107
+ return new oo({
2108
+ check: "string_format",
2109
+ format: "includes",
2110
+ ..._(t),
2111
+ includes: e
2112
+ });
2113
+ }
2114
+ // @__NO_SIDE_EFFECTS__
2115
+ function Fr(e, t) {
2116
+ return new ro({
2117
+ check: "string_format",
2118
+ format: "starts_with",
2119
+ ..._(t),
2120
+ prefix: e
2121
+ });
2122
+ }
2123
+ // @__NO_SIDE_EFFECTS__
2124
+ function Jr(e, t) {
2125
+ return new io({
2126
+ check: "string_format",
2127
+ format: "ends_with",
2128
+ ..._(t),
2129
+ suffix: e
2130
+ });
2131
+ }
2132
+ // @__NO_SIDE_EFFECTS__
2133
+ function X(e) {
2134
+ return new so({
2135
+ check: "overwrite",
2136
+ tx: e
2137
+ });
2138
+ }
2139
+ // @__NO_SIDE_EFFECTS__
2140
+ function Mr(e) {
2141
+ return /* @__PURE__ */ X((t) => t.normalize(e));
2142
+ }
2143
+ // @__NO_SIDE_EFFECTS__
2144
+ function Lr() {
2145
+ return /* @__PURE__ */ X((e) => e.trim());
2146
+ }
2147
+ // @__NO_SIDE_EFFECTS__
2148
+ function Vr() {
2149
+ return /* @__PURE__ */ X((e) => e.toLowerCase());
2150
+ }
2151
+ // @__NO_SIDE_EFFECTS__
2152
+ function Br() {
2153
+ return /* @__PURE__ */ X((e) => e.toUpperCase());
2154
+ }
2155
+ // @__NO_SIDE_EFFECTS__
2156
+ function Wr() {
2157
+ return /* @__PURE__ */ X((e) => qt(e));
2158
+ }
2159
+ // @__NO_SIDE_EFFECTS__
2160
+ function Gr(e, t, n) {
2161
+ return new e({
2162
+ type: "array",
2163
+ element: t,
2164
+ // get element() {
2165
+ // return element;
2166
+ // },
2167
+ ..._(n)
2168
+ });
2169
+ }
2170
+ // @__NO_SIDE_EFFECTS__
2171
+ function Kr(e, t, n) {
2172
+ return new e({
2173
+ type: "custom",
2174
+ check: "custom",
2175
+ fn: t,
2176
+ ..._(n)
2177
+ });
2178
+ }
2179
+ // @__NO_SIDE_EFFECTS__
2180
+ function Yr(e, t) {
2181
+ const n = /* @__PURE__ */ qr((o) => (o.addIssue = (r) => {
2182
+ if (typeof r == "string")
2183
+ o.issues.push(ne(r, o.value, n._zod.def));
2184
+ else {
2185
+ const i = r;
2186
+ i.fatal && (i.continue = !1), i.code ?? (i.code = "custom"), i.input ?? (i.input = o.value), i.inst ?? (i.inst = n), i.continue ?? (i.continue = !n._zod.def.abort), o.issues.push(ne(i));
2187
+ }
2188
+ }, e(o.value, o)), t);
2189
+ return n;
2190
+ }
2191
+ // @__NO_SIDE_EFFECTS__
2192
+ function qr(e, t) {
2193
+ const n = new x({
2194
+ check: "custom",
2195
+ ..._(t)
2196
+ });
2197
+ return n._zod.check = e, n;
2198
+ }
2199
+ function kt(e) {
2200
+ let t = (e == null ? void 0 : e.target) ?? "draft-2020-12";
2201
+ return t === "draft-4" && (t = "draft-04"), t === "draft-7" && (t = "draft-07"), {
2202
+ processors: e.processors ?? {},
2203
+ metadataRegistry: (e == null ? void 0 : e.metadata) ?? Q,
2204
+ target: t,
2205
+ unrepresentable: (e == null ? void 0 : e.unrepresentable) ?? "throw",
2206
+ override: (e == null ? void 0 : e.override) ?? (() => {
2207
+ }),
2208
+ io: (e == null ? void 0 : e.io) ?? "output",
2209
+ counter: 0,
2210
+ seen: /* @__PURE__ */ new Map(),
2211
+ cycles: (e == null ? void 0 : e.cycles) ?? "ref",
2212
+ reused: (e == null ? void 0 : e.reused) ?? "inline",
2213
+ external: (e == null ? void 0 : e.external) ?? void 0
2214
+ };
2215
+ }
2216
+ function I(e, t, n = { path: [], schemaPath: [] }) {
2217
+ var f, p;
2218
+ var o;
2219
+ const r = e._zod.def, i = t.seen.get(e);
2220
+ if (i)
2221
+ return i.count++, n.schemaPath.includes(e) && (i.cycle = n.path), i.schema;
2222
+ const s = { schema: {}, count: 1, cycle: void 0, path: n.path };
2223
+ t.seen.set(e, s);
2224
+ const c = (p = (f = e._zod).toJSONSchema) == null ? void 0 : p.call(f);
2225
+ if (c)
2226
+ s.schema = c;
2227
+ else {
2228
+ const g = {
2229
+ ...n,
2230
+ schemaPath: [...n.schemaPath, e],
2231
+ path: n.path
2232
+ };
2233
+ if (e._zod.processJSONSchema)
2234
+ e._zod.processJSONSchema(t, s.schema, g);
2235
+ else {
2236
+ const w = s.schema, E = t.processors[r.type];
2237
+ if (!E)
2238
+ throw new Error(`[toJSONSchema]: Non-representable type encountered: ${r.type}`);
2239
+ E(e, t, w, g);
2240
+ }
2241
+ const h = e._zod.parent;
2242
+ h && (s.ref || (s.ref = h), I(h, t, g), t.seen.get(h).isParent = !0);
2243
+ }
2244
+ const a = t.metadataRegistry.get(e);
2245
+ return a && Object.assign(s.schema, a), t.io === "input" && A(e) && (delete s.schema.examples, delete s.schema.default), t.io === "input" && "_prefault" in s.schema && ((o = s.schema).default ?? (o.default = s.schema._prefault)), delete s.schema._prefault, t.seen.get(e).schema;
2246
+ }
2247
+ function $t(e, t) {
2248
+ var s, c, a, l;
2249
+ const n = e.seen.get(t);
2250
+ if (!n)
2251
+ throw new Error("Unprocessed schema. This is a bug in Zod.");
2252
+ const o = /* @__PURE__ */ new Map();
2253
+ for (const f of e.seen.entries()) {
2254
+ const p = (s = e.metadataRegistry.get(f[0])) == null ? void 0 : s.id;
2255
+ if (p) {
2256
+ const g = o.get(p);
2257
+ if (g && g !== f[0])
2258
+ throw new Error(`Duplicate schema id "${p}" detected during JSON Schema conversion. Two different schemas cannot share the same id when converted together.`);
2259
+ o.set(p, f[0]);
2260
+ }
2261
+ }
2262
+ const r = (f) => {
2263
+ var E;
2264
+ const p = e.target === "draft-2020-12" ? "$defs" : "definitions";
2265
+ if (e.external) {
2266
+ const C = (E = e.external.registry.get(f[0])) == null ? void 0 : E.id, T = e.external.uri ?? ((H) => H);
2267
+ if (C)
2268
+ return { ref: T(C) };
2269
+ const P = f[1].defId ?? f[1].schema.id ?? `schema${e.counter++}`;
2270
+ return f[1].defId = P, { defId: P, ref: `${T("__shared")}#/${p}/${P}` };
2271
+ }
2272
+ if (f[1] === n)
2273
+ return { ref: "#" };
2274
+ const h = `#/${p}/`, w = f[1].schema.id ?? `__schema${e.counter++}`;
2275
+ return { defId: w, ref: h + w };
2276
+ }, i = (f) => {
2277
+ if (f[1].schema.$ref)
2278
+ return;
2279
+ const p = f[1], { ref: g, defId: h } = r(f);
2280
+ p.def = { ...p.schema }, h && (p.defId = h);
2281
+ const w = p.schema;
2282
+ for (const E in w)
2283
+ delete w[E];
2284
+ w.$ref = g;
2285
+ };
2286
+ if (e.cycles === "throw")
2287
+ for (const f of e.seen.entries()) {
2288
+ const p = f[1];
2289
+ if (p.cycle)
2290
+ throw new Error(`Cycle detected: #/${(c = p.cycle) == null ? void 0 : c.join("/")}/<root>
2291
+
2292
+ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.`);
2293
+ }
2294
+ for (const f of e.seen.entries()) {
2295
+ const p = f[1];
2296
+ if (t === f[0]) {
2297
+ i(f);
2298
+ continue;
2299
+ }
2300
+ if (e.external) {
2301
+ const h = (a = e.external.registry.get(f[0])) == null ? void 0 : a.id;
2302
+ if (t !== f[0] && h) {
2303
+ i(f);
2304
+ continue;
2305
+ }
2306
+ }
2307
+ if ((l = e.metadataRegistry.get(f[0])) == null ? void 0 : l.id) {
2308
+ i(f);
2309
+ continue;
2310
+ }
2311
+ if (p.cycle) {
2312
+ i(f);
2313
+ continue;
2314
+ }
2315
+ if (p.count > 1 && e.reused === "ref") {
2316
+ i(f);
2317
+ continue;
2318
+ }
2319
+ }
2320
+ }
2321
+ function St(e, t) {
2322
+ var c, a, l, f;
2323
+ const n = e.seen.get(t);
2324
+ if (!n)
2325
+ throw new Error("Unprocessed schema. This is a bug in Zod.");
2326
+ const o = (p) => {
2327
+ const g = e.seen.get(p);
2328
+ if (g.ref === null)
2329
+ return;
2330
+ const h = g.def ?? g.schema, w = { ...h }, E = g.ref;
2331
+ if (g.ref = null, E) {
2332
+ o(E);
2333
+ const T = e.seen.get(E), P = T.schema;
2334
+ if (P.$ref && (e.target === "draft-07" || e.target === "draft-04" || e.target === "openapi-3.0") ? (h.allOf = h.allOf ?? [], h.allOf.push(P)) : Object.assign(h, P), Object.assign(h, w), p._zod.parent === E)
2335
+ for (const j in h)
2336
+ j === "$ref" || j === "allOf" || j in w || delete h[j];
2337
+ if (P.$ref && T.def)
2338
+ for (const j in h)
2339
+ j === "$ref" || j === "allOf" || j in T.def && JSON.stringify(h[j]) === JSON.stringify(T.def[j]) && delete h[j];
2340
+ }
2341
+ const C = p._zod.parent;
2342
+ if (C && C !== E) {
2343
+ o(C);
2344
+ const T = e.seen.get(C);
2345
+ if (T != null && T.schema.$ref && (h.$ref = T.schema.$ref, T.def))
2346
+ for (const P in h)
2347
+ P === "$ref" || P === "allOf" || P in T.def && JSON.stringify(h[P]) === JSON.stringify(T.def[P]) && delete h[P];
2348
+ }
2349
+ e.override({
2350
+ zodSchema: p,
2351
+ jsonSchema: h,
2352
+ path: g.path ?? []
2353
+ });
2354
+ };
2355
+ for (const p of [...e.seen.entries()].reverse())
2356
+ o(p[0]);
2357
+ const r = {};
2358
+ if (e.target === "draft-2020-12" ? r.$schema = "https://json-schema.org/draft/2020-12/schema" : e.target === "draft-07" ? r.$schema = "http://json-schema.org/draft-07/schema#" : e.target === "draft-04" ? r.$schema = "http://json-schema.org/draft-04/schema#" : e.target, (c = e.external) != null && c.uri) {
2359
+ const p = (a = e.external.registry.get(t)) == null ? void 0 : a.id;
2360
+ if (!p)
2361
+ throw new Error("Schema is missing an `id` property");
2362
+ r.$id = e.external.uri(p);
2363
+ }
2364
+ Object.assign(r, n.def ?? n.schema);
2365
+ const i = (l = e.metadataRegistry.get(t)) == null ? void 0 : l.id;
2366
+ i !== void 0 && r.id === i && delete r.id;
2367
+ const s = ((f = e.external) == null ? void 0 : f.defs) ?? {};
2368
+ for (const p of e.seen.entries()) {
2369
+ const g = p[1];
2370
+ g.def && g.defId && (g.def.id === g.defId && delete g.def.id, s[g.defId] = g.def);
2371
+ }
2372
+ e.external || Object.keys(s).length > 0 && (e.target === "draft-2020-12" ? r.$defs = s : r.definitions = s);
2373
+ try {
2374
+ const p = JSON.parse(JSON.stringify(r));
2375
+ return Object.defineProperty(p, "~standard", {
2376
+ value: {
2377
+ ...t["~standard"],
2378
+ jsonSchema: {
2379
+ input: le(t, "input", e.processors),
2380
+ output: le(t, "output", e.processors)
2381
+ }
2382
+ },
2383
+ enumerable: !1,
2384
+ writable: !1
2385
+ }), p;
2386
+ } catch {
2387
+ throw new Error("Error converting schema to JSON.");
2388
+ }
2389
+ }
2390
+ function A(e, t) {
2391
+ const n = t ?? { seen: /* @__PURE__ */ new Set() };
2392
+ if (n.seen.has(e))
2393
+ return !1;
2394
+ n.seen.add(e);
2395
+ const o = e._zod.def;
2396
+ if (o.type === "transform")
2397
+ return !0;
2398
+ if (o.type === "array")
2399
+ return A(o.element, n);
2400
+ if (o.type === "set")
2401
+ return A(o.valueType, n);
2402
+ if (o.type === "lazy")
2403
+ return A(o.getter(), n);
2404
+ if (o.type === "promise" || o.type === "optional" || o.type === "nonoptional" || o.type === "nullable" || o.type === "readonly" || o.type === "default" || o.type === "prefault")
2405
+ return A(o.innerType, n);
2406
+ if (o.type === "intersection")
2407
+ return A(o.left, n) || A(o.right, n);
2408
+ if (o.type === "record" || o.type === "map")
2409
+ return A(o.keyType, n) || A(o.valueType, n);
2410
+ if (o.type === "pipe")
2411
+ return e._zod.traits.has("$ZodCodec") ? !0 : A(o.in, n) || A(o.out, n);
2412
+ if (o.type === "object") {
2413
+ for (const r in o.shape)
2414
+ if (A(o.shape[r], n))
2415
+ return !0;
2416
+ return !1;
2417
+ }
2418
+ if (o.type === "union") {
2419
+ for (const r of o.options)
2420
+ if (A(r, n))
2421
+ return !0;
2422
+ return !1;
2423
+ }
2424
+ if (o.type === "tuple") {
2425
+ for (const r of o.items)
2426
+ if (A(r, n))
2427
+ return !0;
2428
+ return !!(o.rest && A(o.rest, n));
2429
+ }
2430
+ return !1;
2431
+ }
2432
+ const Xr = (e, t = {}) => (n) => {
2433
+ const o = kt({ ...n, processors: t });
2434
+ return I(e, o), $t(o, e), St(o, e);
2435
+ }, le = (e, t, n = {}) => (o) => {
2436
+ const { libraryOptions: r, target: i } = o ?? {}, s = kt({ ...r ?? {}, target: i, io: t, processors: n });
2437
+ return I(e, s), $t(s, e), St(s, e);
2438
+ }, Hr = {
2439
+ guid: "uuid",
2440
+ url: "uri",
2441
+ datetime: "date-time",
2442
+ json_string: "json-string",
2443
+ regex: ""
2444
+ // do not set
2445
+ }, Qr = (e, t, n, o) => {
2446
+ const r = n;
2447
+ r.type = "string";
2448
+ const { minimum: i, maximum: s, format: c, patterns: a, contentEncoding: l } = e._zod.bag;
2449
+ if (typeof i == "number" && (r.minLength = i), typeof s == "number" && (r.maxLength = s), c && (r.format = Hr[c] ?? c, r.format === "" && delete r.format, c === "time" && delete r.format), l && (r.contentEncoding = l), a && a.size > 0) {
2450
+ const f = [...a];
2451
+ f.length === 1 ? r.pattern = f[0].source : f.length > 1 && (r.allOf = [
2452
+ ...f.map((p) => ({
2453
+ ...t.target === "draft-07" || t.target === "draft-04" || t.target === "openapi-3.0" ? { type: "string" } : {},
2454
+ pattern: p.source
2455
+ }))
2456
+ ]);
2457
+ }
2458
+ }, ei = (e, t, n, o) => {
2459
+ const r = n, { minimum: i, maximum: s, format: c, multipleOf: a, exclusiveMaximum: l, exclusiveMinimum: f } = e._zod.bag;
2460
+ typeof c == "string" && c.includes("int") ? r.type = "integer" : r.type = "number";
2461
+ const p = typeof f == "number" && f >= (i ?? Number.NEGATIVE_INFINITY), g = typeof l == "number" && l <= (s ?? Number.POSITIVE_INFINITY), h = t.target === "draft-04" || t.target === "openapi-3.0";
2462
+ p ? h ? (r.minimum = f, r.exclusiveMinimum = !0) : r.exclusiveMinimum = f : typeof i == "number" && (r.minimum = i), g ? h ? (r.maximum = l, r.exclusiveMaximum = !0) : r.exclusiveMaximum = l : typeof s == "number" && (r.maximum = s), typeof a == "number" && (r.multipleOf = a);
2463
+ }, ti = (e, t, n, o) => {
2464
+ n.type = "boolean";
2465
+ }, ni = (e, t, n, o) => {
2466
+ n.not = {};
2467
+ }, oi = (e, t, n, o) => {
2468
+ }, ri = (e, t, n, o) => {
2469
+ const r = e._zod.def, i = nt(r.entries);
2470
+ i.every((s) => typeof s == "number") && (n.type = "number"), i.every((s) => typeof s == "string") && (n.type = "string"), n.enum = i;
2471
+ }, ii = (e, t, n, o) => {
2472
+ const r = e._zod.def, i = [];
2473
+ for (const s of r.values)
2474
+ if (s === void 0) {
2475
+ if (t.unrepresentable === "throw")
2476
+ throw new Error("Literal `undefined` cannot be represented in JSON Schema");
2477
+ } else if (typeof s == "bigint") {
2478
+ if (t.unrepresentable === "throw")
2479
+ throw new Error("BigInt literals cannot be represented in JSON Schema");
2480
+ i.push(Number(s));
2481
+ } else
2482
+ i.push(s);
2483
+ if (i.length !== 0) if (i.length === 1) {
2484
+ const s = i[0];
2485
+ n.type = s === null ? "null" : typeof s, t.target === "draft-04" || t.target === "openapi-3.0" ? n.enum = [s] : n.const = s;
2486
+ } else
2487
+ i.every((s) => typeof s == "number") && (n.type = "number"), i.every((s) => typeof s == "string") && (n.type = "string"), i.every((s) => typeof s == "boolean") && (n.type = "boolean"), i.every((s) => s === null) && (n.type = "null"), n.enum = i;
2488
+ }, si = (e, t, n, o) => {
2489
+ if (t.unrepresentable === "throw")
2490
+ throw new Error("Custom types cannot be represented in JSON Schema");
2491
+ }, ci = (e, t, n, o) => {
2492
+ if (t.unrepresentable === "throw")
2493
+ throw new Error("Transforms cannot be represented in JSON Schema");
2494
+ }, ai = (e, t, n, o) => {
2495
+ const r = n, i = e._zod.def, { minimum: s, maximum: c } = e._zod.bag;
2496
+ typeof s == "number" && (r.minItems = s), typeof c == "number" && (r.maxItems = c), r.type = "array", r.items = I(i.element, t, {
2497
+ ...o,
2498
+ path: [...o.path, "items"]
2499
+ });
2500
+ }, ui = (e, t, n, o) => {
2501
+ var l;
2502
+ const r = n, i = e._zod.def;
2503
+ r.type = "object", r.properties = {};
2504
+ const s = i.shape;
2505
+ for (const f in s)
2506
+ r.properties[f] = I(s[f], t, {
2507
+ ...o,
2508
+ path: [...o.path, "properties", f]
2509
+ });
2510
+ const c = new Set(Object.keys(s)), a = new Set([...c].filter((f) => {
2511
+ const p = i.shape[f]._zod;
2512
+ return t.io === "input" ? p.optin === void 0 : p.optout === void 0;
2513
+ }));
2514
+ a.size > 0 && (r.required = Array.from(a)), ((l = i.catchall) == null ? void 0 : l._zod.def.type) === "never" ? r.additionalProperties = !1 : i.catchall ? i.catchall && (r.additionalProperties = I(i.catchall, t, {
2515
+ ...o,
2516
+ path: [...o.path, "additionalProperties"]
2517
+ })) : t.io === "output" && (r.additionalProperties = !1);
2518
+ }, li = (e, t, n, o) => {
2519
+ const r = e._zod.def, i = r.inclusive === !1, s = r.options.map((c, a) => I(c, t, {
2520
+ ...o,
2521
+ path: [...o.path, i ? "oneOf" : "anyOf", a]
2522
+ }));
2523
+ i ? n.oneOf = s : n.anyOf = s;
2524
+ }, fi = (e, t, n, o) => {
2525
+ const r = e._zod.def, i = I(r.left, t, {
2526
+ ...o,
2527
+ path: [...o.path, "allOf", 0]
2528
+ }), s = I(r.right, t, {
2529
+ ...o,
2530
+ path: [...o.path, "allOf", 1]
2531
+ }), c = (l) => "allOf" in l && Object.keys(l).length === 1, a = [
2532
+ ...c(i) ? i.allOf : [i],
2533
+ ...c(s) ? s.allOf : [s]
2534
+ ];
2535
+ n.allOf = a;
2536
+ }, pi = (e, t, n, o) => {
2537
+ const r = e._zod.def, i = I(r.innerType, t, o), s = t.seen.get(e);
2538
+ t.target === "openapi-3.0" ? (s.ref = r.innerType, n.nullable = !0) : n.anyOf = [i, { type: "null" }];
2539
+ }, di = (e, t, n, o) => {
2540
+ const r = e._zod.def;
2541
+ I(r.innerType, t, o);
2542
+ const i = t.seen.get(e);
2543
+ i.ref = r.innerType;
2544
+ }, hi = (e, t, n, o) => {
2545
+ const r = e._zod.def;
2546
+ I(r.innerType, t, o);
2547
+ const i = t.seen.get(e);
2548
+ i.ref = r.innerType, n.default = JSON.parse(JSON.stringify(r.defaultValue));
2549
+ }, mi = (e, t, n, o) => {
2550
+ const r = e._zod.def;
2551
+ I(r.innerType, t, o);
2552
+ const i = t.seen.get(e);
2553
+ i.ref = r.innerType, t.io === "input" && (n._prefault = JSON.parse(JSON.stringify(r.defaultValue)));
2554
+ }, gi = (e, t, n, o) => {
2555
+ const r = e._zod.def;
2556
+ I(r.innerType, t, o);
2557
+ const i = t.seen.get(e);
2558
+ i.ref = r.innerType;
2559
+ let s;
2560
+ try {
2561
+ s = r.catchValue(void 0);
2562
+ } catch {
2563
+ throw new Error("Dynamic catch values are not supported in JSON Schema");
2564
+ }
2565
+ n.default = s;
2566
+ }, _i = (e, t, n, o) => {
2567
+ const r = e._zod.def, i = r.in._zod.traits.has("$ZodTransform"), s = t.io === "input" ? i ? r.out : r.in : r.out;
2568
+ I(s, t, o);
2569
+ const c = t.seen.get(e);
2570
+ c.ref = s;
2571
+ }, vi = (e, t, n, o) => {
2572
+ const r = e._zod.def;
2573
+ I(r.innerType, t, o);
2574
+ const i = t.seen.get(e);
2575
+ i.ref = r.innerType, n.readOnly = !0;
2576
+ }, Zt = (e, t, n, o) => {
2577
+ const r = e._zod.def;
2578
+ I(r.innerType, t, o);
2579
+ const i = t.seen.get(e);
2580
+ i.ref = r.innerType;
2581
+ }, yi = (e, t, n, o) => {
2582
+ const r = e._zod.innerType;
2583
+ I(r, t, o);
2584
+ const i = t.seen.get(e);
2585
+ i.ref = r;
2586
+ }, bi = /* @__PURE__ */ u("ZodISODateTime", (e, t) => {
2587
+ zo.init(e, t), Z.init(e, t);
2588
+ });
2589
+ function zi(e) {
2590
+ return /* @__PURE__ */ Or(bi, e);
2591
+ }
2592
+ const wi = /* @__PURE__ */ u("ZodISODate", (e, t) => {
2593
+ wo.init(e, t), Z.init(e, t);
2594
+ });
2595
+ function ki(e) {
2596
+ return /* @__PURE__ */ Er(wi, e);
2597
+ }
2598
+ const $i = /* @__PURE__ */ u("ZodISOTime", (e, t) => {
2599
+ ko.init(e, t), Z.init(e, t);
2600
+ });
2601
+ function Si(e) {
2602
+ return /* @__PURE__ */ Tr($i, e);
2603
+ }
2604
+ const Zi = /* @__PURE__ */ u("ZodISODuration", (e, t) => {
2605
+ $o.init(e, t), Z.init(e, t);
2606
+ });
2607
+ function Oi(e) {
2608
+ return /* @__PURE__ */ Ir(Zi, e);
2609
+ }
2610
+ const Ei = (e, t) => {
2611
+ ct.init(e, t), e.name = "ZodError", Object.defineProperties(e, {
2612
+ format: {
2613
+ value: (n) => fn(e, n)
2614
+ // enumerable: false,
2615
+ },
2616
+ flatten: {
2617
+ value: (n) => ln(e, n)
2618
+ // enumerable: false,
2619
+ },
2620
+ addIssue: {
2621
+ value: (n) => {
2622
+ e.issues.push(n), e.message = JSON.stringify(e.issues, _e, 2);
2623
+ }
2624
+ // enumerable: false,
2625
+ },
2626
+ addIssues: {
2627
+ value: (n) => {
2628
+ e.issues.push(...n), e.message = JSON.stringify(e.issues, _e, 2);
2629
+ }
2630
+ // enumerable: false,
2631
+ },
2632
+ isEmpty: {
2633
+ get() {
2634
+ return e.issues.length === 0;
2635
+ }
2636
+ // enumerable: false,
2637
+ }
2638
+ });
2639
+ }, U = /* @__PURE__ */ u("ZodError", Ei, {
2640
+ Parent: Error
2641
+ }), Ti = /* @__PURE__ */ Ze(U), Ii = /* @__PURE__ */ Oe(U), Pi = /* @__PURE__ */ pe(U), Ni = /* @__PURE__ */ de(U), Ai = /* @__PURE__ */ hn(U), Ci = /* @__PURE__ */ mn(U), ji = /* @__PURE__ */ gn(U), xi = /* @__PURE__ */ _n(U), Di = /* @__PURE__ */ vn(U), Ri = /* @__PURE__ */ yn(U), Ui = /* @__PURE__ */ bn(U), Fi = /* @__PURE__ */ zn(U), Ke = /* @__PURE__ */ new WeakMap();
2642
+ function oe(e, t, n) {
2643
+ const o = Object.getPrototypeOf(e);
2644
+ let r = Ke.get(o);
2645
+ if (r || (r = /* @__PURE__ */ new Set(), Ke.set(o, r)), !r.has(t)) {
2646
+ r.add(t);
2647
+ for (const i in n) {
2648
+ const s = n[i];
2649
+ Object.defineProperty(o, i, {
2650
+ configurable: !0,
2651
+ enumerable: !1,
2652
+ get() {
2653
+ const c = s.bind(this);
2654
+ return Object.defineProperty(this, i, {
2655
+ configurable: !0,
2656
+ writable: !0,
2657
+ enumerable: !0,
2658
+ value: c
2659
+ }), c;
2660
+ },
2661
+ set(c) {
2662
+ Object.defineProperty(this, i, {
2663
+ configurable: !0,
2664
+ writable: !0,
2665
+ enumerable: !0,
2666
+ value: c
2667
+ });
2668
+ }
2669
+ });
2670
+ }
2671
+ }
2672
+ }
2673
+ const S = /* @__PURE__ */ u("ZodType", (e, t) => ($.init(e, t), Object.assign(e["~standard"], {
2674
+ jsonSchema: {
2675
+ input: le(e, "input"),
2676
+ output: le(e, "output")
2677
+ }
2678
+ }), e.toJSONSchema = Xr(e, {}), e.def = t, e.type = t.type, Object.defineProperty(e, "_def", { value: t }), e.parse = (n, o) => Ti(e, n, o, { callee: e.parse }), e.safeParse = (n, o) => Pi(e, n, o), e.parseAsync = async (n, o) => Ii(e, n, o, { callee: e.parseAsync }), e.safeParseAsync = async (n, o) => Ni(e, n, o), e.spa = e.safeParseAsync, e.encode = (n, o) => Ai(e, n, o), e.decode = (n, o) => Ci(e, n, o), e.encodeAsync = async (n, o) => ji(e, n, o), e.decodeAsync = async (n, o) => xi(e, n, o), e.safeEncode = (n, o) => Di(e, n, o), e.safeDecode = (n, o) => Ri(e, n, o), e.safeEncodeAsync = async (n, o) => Ui(e, n, o), e.safeDecodeAsync = async (n, o) => Fi(e, n, o), oe(e, "ZodType", {
2679
+ check(...n) {
2680
+ const o = this.def;
2681
+ return this.clone(J(o, {
2682
+ checks: [
2683
+ ...o.checks ?? [],
2684
+ ...n.map((r) => typeof r == "function" ? { _zod: { check: r, def: { check: "custom" }, onattach: [] } } : r)
2685
+ ]
2686
+ }), { parent: !0 });
2687
+ },
2688
+ with(...n) {
2689
+ return this.check(...n);
2690
+ },
2691
+ clone(n, o) {
2692
+ return M(this, n, o);
2693
+ },
2694
+ brand() {
2695
+ return this;
2696
+ },
2697
+ register(n, o) {
2698
+ return n.add(this, o), this;
2699
+ },
2700
+ refine(n, o) {
2701
+ return this.check(As(n, o));
2702
+ },
2703
+ superRefine(n, o) {
2704
+ return this.check(Cs(n, o));
2705
+ },
2706
+ overwrite(n) {
2707
+ return this.check(/* @__PURE__ */ X(n));
2708
+ },
2709
+ optional() {
2710
+ return He(this);
2711
+ },
2712
+ exactOptional() {
2713
+ return ys(this);
2714
+ },
2715
+ nullable() {
2716
+ return Qe(this);
2717
+ },
2718
+ nullish() {
2719
+ return He(Qe(this));
2720
+ },
2721
+ nonoptional(n) {
2722
+ return Ss(this, n);
2723
+ },
2724
+ array() {
2725
+ return D(this);
2726
+ },
2727
+ or(n) {
2728
+ return ye([this, n]);
2729
+ },
2730
+ and(n) {
2731
+ return hs(this, n);
2732
+ },
2733
+ transform(n) {
2734
+ return et(this, _s(n));
2735
+ },
2736
+ default(n) {
2737
+ return ws(this, n);
2738
+ },
2739
+ prefault(n) {
2740
+ return $s(this, n);
2741
+ },
2742
+ catch(n) {
2743
+ return Os(this, n);
2744
+ },
2745
+ pipe(n) {
2746
+ return et(this, n);
2747
+ },
2748
+ readonly() {
2749
+ return Is(this);
2750
+ },
2751
+ describe(n) {
2752
+ const o = this.clone();
2753
+ return Q.add(o, { description: n }), o;
2754
+ },
2755
+ meta(...n) {
2756
+ if (n.length === 0)
2757
+ return Q.get(this);
2758
+ const o = this.clone();
2759
+ return Q.add(o, n[0]), o;
2760
+ },
2761
+ isOptional() {
2762
+ return this.safeParse(void 0).success;
2763
+ },
2764
+ isNullable() {
2765
+ return this.safeParse(null).success;
2766
+ },
2767
+ apply(n) {
2768
+ return n(this);
2769
+ }
2770
+ }), Object.defineProperty(e, "description", {
2771
+ get() {
2772
+ var n;
2773
+ return (n = Q.get(e)) == null ? void 0 : n.description;
2774
+ },
2775
+ configurable: !0
2776
+ }), e)), Ot = /* @__PURE__ */ u("_ZodString", (e, t) => {
2777
+ Ee.init(e, t), S.init(e, t), e._zod.processJSONSchema = (o, r, i) => Qr(e, o, r);
2778
+ const n = e._zod.bag;
2779
+ e.format = n.format ?? null, e.minLength = n.minimum ?? null, e.maxLength = n.maximum ?? null, oe(e, "_ZodString", {
2780
+ regex(...o) {
2781
+ return this.check(/* @__PURE__ */ xr(...o));
2782
+ },
2783
+ includes(...o) {
2784
+ return this.check(/* @__PURE__ */ Ur(...o));
2785
+ },
2786
+ startsWith(...o) {
2787
+ return this.check(/* @__PURE__ */ Fr(...o));
2788
+ },
2789
+ endsWith(...o) {
2790
+ return this.check(/* @__PURE__ */ Jr(...o));
2791
+ },
2792
+ min(...o) {
2793
+ return this.check(/* @__PURE__ */ ue(...o));
2794
+ },
2795
+ max(...o) {
2796
+ return this.check(/* @__PURE__ */ zt(...o));
2797
+ },
2798
+ length(...o) {
2799
+ return this.check(/* @__PURE__ */ wt(...o));
2800
+ },
2801
+ nonempty(...o) {
2802
+ return this.check(/* @__PURE__ */ ue(1, ...o));
2803
+ },
2804
+ lowercase(o) {
2805
+ return this.check(/* @__PURE__ */ Dr(o));
2806
+ },
2807
+ uppercase(o) {
2808
+ return this.check(/* @__PURE__ */ Rr(o));
2809
+ },
2810
+ trim() {
2811
+ return this.check(/* @__PURE__ */ Lr());
2812
+ },
2813
+ normalize(...o) {
2814
+ return this.check(/* @__PURE__ */ Mr(...o));
2815
+ },
2816
+ toLowerCase() {
2817
+ return this.check(/* @__PURE__ */ Vr());
2818
+ },
2819
+ toUpperCase() {
2820
+ return this.check(/* @__PURE__ */ Br());
2821
+ },
2822
+ slugify() {
2823
+ return this.check(/* @__PURE__ */ Wr());
2824
+ }
2825
+ });
2826
+ }), Ji = /* @__PURE__ */ u("ZodString", (e, t) => {
2827
+ Ee.init(e, t), Ot.init(e, t), e.email = (n) => e.check(/* @__PURE__ */ sr(Mi, n)), e.url = (n) => e.check(/* @__PURE__ */ fr(Li, n)), e.jwt = (n) => e.check(/* @__PURE__ */ Zr(rs, n)), e.emoji = (n) => e.check(/* @__PURE__ */ pr(Vi, n)), e.guid = (n) => e.check(/* @__PURE__ */ Ve(Ye, n)), e.uuid = (n) => e.check(/* @__PURE__ */ cr(ce, n)), e.uuidv4 = (n) => e.check(/* @__PURE__ */ ar(ce, n)), e.uuidv6 = (n) => e.check(/* @__PURE__ */ ur(ce, n)), e.uuidv7 = (n) => e.check(/* @__PURE__ */ lr(ce, n)), e.nanoid = (n) => e.check(/* @__PURE__ */ dr(Bi, n)), e.guid = (n) => e.check(/* @__PURE__ */ Ve(Ye, n)), e.cuid = (n) => e.check(/* @__PURE__ */ hr(Wi, n)), e.cuid2 = (n) => e.check(/* @__PURE__ */ mr(Gi, n)), e.ulid = (n) => e.check(/* @__PURE__ */ gr(Ki, n)), e.base64 = (n) => e.check(/* @__PURE__ */ kr(ts, n)), e.base64url = (n) => e.check(/* @__PURE__ */ $r(ns, n)), e.xid = (n) => e.check(/* @__PURE__ */ _r(Yi, n)), e.ksuid = (n) => e.check(/* @__PURE__ */ vr(qi, n)), e.ipv4 = (n) => e.check(/* @__PURE__ */ yr(Xi, n)), e.ipv6 = (n) => e.check(/* @__PURE__ */ br(Hi, n)), e.cidrv4 = (n) => e.check(/* @__PURE__ */ zr(Qi, n)), e.cidrv6 = (n) => e.check(/* @__PURE__ */ wr(es, n)), e.e164 = (n) => e.check(/* @__PURE__ */ Sr(os, n)), e.datetime = (n) => e.check(zi(n)), e.date = (n) => e.check(ki(n)), e.time = (n) => e.check(Si(n)), e.duration = (n) => e.check(Oi(n));
2828
+ });
2829
+ function z(e) {
2830
+ return /* @__PURE__ */ ir(Ji, e);
2831
+ }
2832
+ const Z = /* @__PURE__ */ u("ZodStringFormat", (e, t) => {
2833
+ k.init(e, t), Ot.init(e, t);
2834
+ }), Mi = /* @__PURE__ */ u("ZodEmail", (e, t) => {
2835
+ fo.init(e, t), Z.init(e, t);
2836
+ }), Ye = /* @__PURE__ */ u("ZodGUID", (e, t) => {
2837
+ uo.init(e, t), Z.init(e, t);
2838
+ }), ce = /* @__PURE__ */ u("ZodUUID", (e, t) => {
2839
+ lo.init(e, t), Z.init(e, t);
2840
+ }), Li = /* @__PURE__ */ u("ZodURL", (e, t) => {
2841
+ po.init(e, t), Z.init(e, t);
2842
+ }), Vi = /* @__PURE__ */ u("ZodEmoji", (e, t) => {
2843
+ ho.init(e, t), Z.init(e, t);
2844
+ }), Bi = /* @__PURE__ */ u("ZodNanoID", (e, t) => {
2845
+ mo.init(e, t), Z.init(e, t);
2846
+ }), Wi = /* @__PURE__ */ u("ZodCUID", (e, t) => {
2847
+ go.init(e, t), Z.init(e, t);
2848
+ }), Gi = /* @__PURE__ */ u("ZodCUID2", (e, t) => {
2849
+ _o.init(e, t), Z.init(e, t);
2850
+ }), Ki = /* @__PURE__ */ u("ZodULID", (e, t) => {
2851
+ vo.init(e, t), Z.init(e, t);
2852
+ }), Yi = /* @__PURE__ */ u("ZodXID", (e, t) => {
2853
+ yo.init(e, t), Z.init(e, t);
2854
+ }), qi = /* @__PURE__ */ u("ZodKSUID", (e, t) => {
2855
+ bo.init(e, t), Z.init(e, t);
2856
+ }), Xi = /* @__PURE__ */ u("ZodIPv4", (e, t) => {
2857
+ So.init(e, t), Z.init(e, t);
2858
+ }), Hi = /* @__PURE__ */ u("ZodIPv6", (e, t) => {
2859
+ Zo.init(e, t), Z.init(e, t);
2860
+ }), Qi = /* @__PURE__ */ u("ZodCIDRv4", (e, t) => {
2861
+ Oo.init(e, t), Z.init(e, t);
2862
+ }), es = /* @__PURE__ */ u("ZodCIDRv6", (e, t) => {
2863
+ Eo.init(e, t), Z.init(e, t);
2864
+ }), ts = /* @__PURE__ */ u("ZodBase64", (e, t) => {
2865
+ To.init(e, t), Z.init(e, t);
2866
+ }), ns = /* @__PURE__ */ u("ZodBase64URL", (e, t) => {
2867
+ Po.init(e, t), Z.init(e, t);
2868
+ }), os = /* @__PURE__ */ u("ZodE164", (e, t) => {
2869
+ No.init(e, t), Z.init(e, t);
2870
+ }), rs = /* @__PURE__ */ u("ZodJWT", (e, t) => {
2871
+ Co.init(e, t), Z.init(e, t);
2872
+ }), Et = /* @__PURE__ */ u("ZodNumber", (e, t) => {
2873
+ gt.init(e, t), S.init(e, t), e._zod.processJSONSchema = (o, r, i) => ei(e, o, r), oe(e, "ZodNumber", {
2874
+ gt(o, r) {
2875
+ return this.check(/* @__PURE__ */ We(o, r));
2876
+ },
2877
+ gte(o, r) {
2878
+ return this.check(/* @__PURE__ */ ge(o, r));
2879
+ },
2880
+ min(o, r) {
2881
+ return this.check(/* @__PURE__ */ ge(o, r));
2882
+ },
2883
+ lt(o, r) {
2884
+ return this.check(/* @__PURE__ */ Be(o, r));
2885
+ },
2886
+ lte(o, r) {
2887
+ return this.check(/* @__PURE__ */ me(o, r));
2888
+ },
2889
+ max(o, r) {
2890
+ return this.check(/* @__PURE__ */ me(o, r));
2891
+ },
2892
+ int(o) {
2893
+ return this.check(qe(o));
2894
+ },
2895
+ safe(o) {
2896
+ return this.check(qe(o));
2897
+ },
2898
+ positive(o) {
2899
+ return this.check(/* @__PURE__ */ We(0, o));
2900
+ },
2901
+ nonnegative(o) {
2902
+ return this.check(/* @__PURE__ */ ge(0, o));
2903
+ },
2904
+ negative(o) {
2905
+ return this.check(/* @__PURE__ */ Be(0, o));
2906
+ },
2907
+ nonpositive(o) {
2908
+ return this.check(/* @__PURE__ */ me(0, o));
2909
+ },
2910
+ multipleOf(o, r) {
2911
+ return this.check(/* @__PURE__ */ Ge(o, r));
2912
+ },
2913
+ step(o, r) {
2914
+ return this.check(/* @__PURE__ */ Ge(o, r));
2915
+ },
2916
+ finite() {
2917
+ return this;
2918
+ }
2919
+ });
2920
+ const n = e._zod.bag;
2921
+ e.minValue = Math.max(n.minimum ?? Number.NEGATIVE_INFINITY, n.exclusiveMinimum ?? Number.NEGATIVE_INFINITY) ?? null, e.maxValue = Math.min(n.maximum ?? Number.POSITIVE_INFINITY, n.exclusiveMaximum ?? Number.POSITIVE_INFINITY) ?? null, e.isInt = (n.format ?? "").includes("int") || Number.isSafeInteger(n.multipleOf ?? 0.5), e.isFinite = !0, e.format = n.format ?? null;
2922
+ });
2923
+ function d(e) {
2924
+ return /* @__PURE__ */ Pr(Et, e);
2925
+ }
2926
+ const is = /* @__PURE__ */ u("ZodNumberFormat", (e, t) => {
2927
+ jo.init(e, t), Et.init(e, t);
2928
+ });
2929
+ function qe(e) {
2930
+ return /* @__PURE__ */ Nr(is, e);
2931
+ }
2932
+ const ss = /* @__PURE__ */ u("ZodBoolean", (e, t) => {
2933
+ xo.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => ti(e, n, o);
2934
+ });
2935
+ function m(e) {
2936
+ return /* @__PURE__ */ Ar(ss, e);
2937
+ }
2938
+ const cs = /* @__PURE__ */ u("ZodUnknown", (e, t) => {
2939
+ Do.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => oi();
2940
+ });
2941
+ function Xe() {
2942
+ return /* @__PURE__ */ Cr(cs);
2943
+ }
2944
+ const as = /* @__PURE__ */ u("ZodNever", (e, t) => {
2945
+ Ro.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => ni(e, n, o);
2946
+ });
2947
+ function us(e) {
2948
+ return /* @__PURE__ */ jr(as, e);
2949
+ }
2950
+ const ls = /* @__PURE__ */ u("ZodArray", (e, t) => {
2951
+ Uo.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => ai(e, n, o, r), e.element = t.element, oe(e, "ZodArray", {
2952
+ min(n, o) {
2953
+ return this.check(/* @__PURE__ */ ue(n, o));
2954
+ },
2955
+ nonempty(n) {
2956
+ return this.check(/* @__PURE__ */ ue(1, n));
2957
+ },
2958
+ max(n, o) {
2959
+ return this.check(/* @__PURE__ */ zt(n, o));
2960
+ },
2961
+ length(n, o) {
2962
+ return this.check(/* @__PURE__ */ wt(n, o));
2963
+ },
2964
+ unwrap() {
2965
+ return this.element;
2966
+ }
2967
+ });
2968
+ });
2969
+ function D(e, t) {
2970
+ return /* @__PURE__ */ Gr(ls, e, t);
2971
+ }
2972
+ const fs = /* @__PURE__ */ u("ZodObject", (e, t) => {
2973
+ Jo.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => ui(e, n, o, r), y(e, "shape", () => t.shape), oe(e, "ZodObject", {
2974
+ keyof() {
2975
+ return R(Object.keys(this._zod.def.shape));
2976
+ },
2977
+ catchall(n) {
2978
+ return this.clone({ ...this._zod.def, catchall: n });
2979
+ },
2980
+ passthrough() {
2981
+ return this.clone({ ...this._zod.def, catchall: Xe() });
2982
+ },
2983
+ loose() {
2984
+ return this.clone({ ...this._zod.def, catchall: Xe() });
2985
+ },
2986
+ strict() {
2987
+ return this.clone({ ...this._zod.def, catchall: us() });
2988
+ },
2989
+ strip() {
2990
+ return this.clone({ ...this._zod.def, catchall: void 0 });
2991
+ },
2992
+ extend(n) {
2993
+ return on(this, n);
2994
+ },
2995
+ safeExtend(n) {
2996
+ return rn(this, n);
2997
+ },
2998
+ merge(n) {
2999
+ return sn(this, n);
3000
+ },
3001
+ pick(n) {
3002
+ return tn(this, n);
3003
+ },
3004
+ omit(n) {
3005
+ return nn(this, n);
3006
+ },
3007
+ partial(...n) {
3008
+ return cn(Pt, this, n[0]);
3009
+ },
3010
+ required(...n) {
3011
+ return an(Nt, this, n[0]);
3012
+ }
3013
+ });
3014
+ });
3015
+ function b(e, t) {
3016
+ const n = {
3017
+ type: "object",
3018
+ shape: e ?? {},
3019
+ ..._(t)
3020
+ };
3021
+ return new fs(n);
3022
+ }
3023
+ const Tt = /* @__PURE__ */ u("ZodUnion", (e, t) => {
3024
+ yt.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => li(e, n, o, r), e.options = t.options;
3025
+ });
3026
+ function ye(e, t) {
3027
+ return new Tt({
3028
+ type: "union",
3029
+ options: e,
3030
+ ..._(t)
3031
+ });
3032
+ }
3033
+ const ps = /* @__PURE__ */ u("ZodDiscriminatedUnion", (e, t) => {
3034
+ Tt.init(e, t), Mo.init(e, t);
3035
+ });
3036
+ function It(e, t, n) {
3037
+ return new ps({
3038
+ type: "union",
3039
+ options: t,
3040
+ discriminator: e,
3041
+ ..._(n)
3042
+ });
3043
+ }
3044
+ const ds = /* @__PURE__ */ u("ZodIntersection", (e, t) => {
3045
+ Lo.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => fi(e, n, o, r);
3046
+ });
3047
+ function hs(e, t) {
3048
+ return new ds({
3049
+ type: "intersection",
3050
+ left: e,
3051
+ right: t
3052
+ });
3053
+ }
3054
+ const be = /* @__PURE__ */ u("ZodEnum", (e, t) => {
3055
+ Vo.init(e, t), S.init(e, t), e._zod.processJSONSchema = (o, r, i) => ri(e, o, r), e.enum = t.entries, e.options = Object.values(t.entries);
3056
+ const n = new Set(Object.keys(t.entries));
3057
+ e.extract = (o, r) => {
3058
+ const i = {};
3059
+ for (const s of o)
3060
+ if (n.has(s))
3061
+ i[s] = t.entries[s];
3062
+ else
3063
+ throw new Error(`Key ${s} not found in enum`);
3064
+ return new be({
3065
+ ...t,
3066
+ checks: [],
3067
+ ..._(r),
3068
+ entries: i
3069
+ });
3070
+ }, e.exclude = (o, r) => {
3071
+ const i = { ...t.entries };
3072
+ for (const s of o)
3073
+ if (n.has(s))
3074
+ delete i[s];
3075
+ else
3076
+ throw new Error(`Key ${s} not found in enum`);
3077
+ return new be({
3078
+ ...t,
3079
+ checks: [],
3080
+ ..._(r),
3081
+ entries: i
3082
+ });
3083
+ };
3084
+ });
3085
+ function R(e, t) {
3086
+ const n = Array.isArray(e) ? Object.fromEntries(e.map((o) => [o, o])) : e;
3087
+ return new be({
3088
+ type: "enum",
3089
+ entries: n,
3090
+ ..._(t)
3091
+ });
3092
+ }
3093
+ const ms = /* @__PURE__ */ u("ZodLiteral", (e, t) => {
3094
+ Bo.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => ii(e, n, o), e.values = new Set(t.values), Object.defineProperty(e, "value", {
3095
+ get() {
3096
+ if (t.values.length > 1)
3097
+ throw new Error("This schema contains multiple valid literal values. Use `.values` instead.");
3098
+ return t.values[0];
3099
+ }
3100
+ });
3101
+ });
3102
+ function v(e, t) {
3103
+ return new ms({
3104
+ type: "literal",
3105
+ values: Array.isArray(e) ? e : [e],
3106
+ ..._(t)
3107
+ });
3108
+ }
3109
+ const gs = /* @__PURE__ */ u("ZodTransform", (e, t) => {
3110
+ Wo.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => ci(e, n), e._zod.parse = (n, o) => {
3111
+ if (o.direction === "backward")
3112
+ throw new tt(e.constructor.name);
3113
+ n.addIssue = (i) => {
3114
+ if (typeof i == "string")
3115
+ n.issues.push(ne(i, n.value, t));
3116
+ else {
3117
+ const s = i;
3118
+ s.fatal && (s.continue = !1), s.code ?? (s.code = "custom"), s.input ?? (s.input = n.value), s.inst ?? (s.inst = e), n.issues.push(ne(s));
3119
+ }
3120
+ };
3121
+ const r = t.transform(n.value, n);
3122
+ return r instanceof Promise ? r.then((i) => (n.value = i, n.fallback = !0, n)) : (n.value = r, n.fallback = !0, n);
3123
+ };
3124
+ });
3125
+ function _s(e) {
3126
+ return new gs({
3127
+ type: "transform",
3128
+ transform: e
3129
+ });
3130
+ }
3131
+ const Pt = /* @__PURE__ */ u("ZodOptional", (e, t) => {
3132
+ bt.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => Zt(e, n, o, r), e.unwrap = () => e._zod.def.innerType;
3133
+ });
3134
+ function He(e) {
3135
+ return new Pt({
3136
+ type: "optional",
3137
+ innerType: e
3138
+ });
3139
+ }
3140
+ const vs = /* @__PURE__ */ u("ZodExactOptional", (e, t) => {
3141
+ Go.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => Zt(e, n, o, r), e.unwrap = () => e._zod.def.innerType;
3142
+ });
3143
+ function ys(e) {
3144
+ return new vs({
3145
+ type: "optional",
3146
+ innerType: e
3147
+ });
3148
+ }
3149
+ const bs = /* @__PURE__ */ u("ZodNullable", (e, t) => {
3150
+ Ko.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => pi(e, n, o, r), e.unwrap = () => e._zod.def.innerType;
3151
+ });
3152
+ function Qe(e) {
3153
+ return new bs({
3154
+ type: "nullable",
3155
+ innerType: e
3156
+ });
3157
+ }
3158
+ const zs = /* @__PURE__ */ u("ZodDefault", (e, t) => {
3159
+ Yo.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => hi(e, n, o, r), e.unwrap = () => e._zod.def.innerType, e.removeDefault = e.unwrap;
3160
+ });
3161
+ function ws(e, t) {
3162
+ return new zs({
3163
+ type: "default",
3164
+ innerType: e,
3165
+ get defaultValue() {
3166
+ return typeof t == "function" ? t() : rt(t);
3167
+ }
3168
+ });
3169
+ }
3170
+ const ks = /* @__PURE__ */ u("ZodPrefault", (e, t) => {
3171
+ qo.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => mi(e, n, o, r), e.unwrap = () => e._zod.def.innerType;
3172
+ });
3173
+ function $s(e, t) {
3174
+ return new ks({
3175
+ type: "prefault",
3176
+ innerType: e,
3177
+ get defaultValue() {
3178
+ return typeof t == "function" ? t() : rt(t);
3179
+ }
3180
+ });
3181
+ }
3182
+ const Nt = /* @__PURE__ */ u("ZodNonOptional", (e, t) => {
3183
+ Xo.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => di(e, n, o, r), e.unwrap = () => e._zod.def.innerType;
3184
+ });
3185
+ function Ss(e, t) {
3186
+ return new Nt({
3187
+ type: "nonoptional",
3188
+ innerType: e,
3189
+ ..._(t)
3190
+ });
3191
+ }
3192
+ const Zs = /* @__PURE__ */ u("ZodCatch", (e, t) => {
3193
+ Ho.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => gi(e, n, o, r), e.unwrap = () => e._zod.def.innerType, e.removeCatch = e.unwrap;
3194
+ });
3195
+ function Os(e, t) {
3196
+ return new Zs({
3197
+ type: "catch",
3198
+ innerType: e,
3199
+ catchValue: typeof t == "function" ? t : () => t
3200
+ });
3201
+ }
3202
+ const Es = /* @__PURE__ */ u("ZodPipe", (e, t) => {
3203
+ Qo.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => _i(e, n, o, r), e.in = t.in, e.out = t.out;
3204
+ });
3205
+ function et(e, t) {
3206
+ return new Es({
3207
+ type: "pipe",
3208
+ in: e,
3209
+ out: t
3210
+ // ...util.normalizeParams(params),
3211
+ });
3212
+ }
3213
+ const Ts = /* @__PURE__ */ u("ZodReadonly", (e, t) => {
3214
+ er.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => vi(e, n, o, r), e.unwrap = () => e._zod.def.innerType;
3215
+ });
3216
+ function Is(e) {
3217
+ return new Ts({
3218
+ type: "readonly",
3219
+ innerType: e
3220
+ });
3221
+ }
3222
+ const Ps = /* @__PURE__ */ u("ZodLazy", (e, t) => {
3223
+ tr.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => yi(e, n, o, r), e.unwrap = () => e._zod.def.getter();
3224
+ });
3225
+ function At(e) {
3226
+ return new Ps({
3227
+ type: "lazy",
3228
+ getter: e
3229
+ });
3230
+ }
3231
+ const Ns = /* @__PURE__ */ u("ZodCustom", (e, t) => {
3232
+ nr.init(e, t), S.init(e, t), e._zod.processJSONSchema = (n, o, r) => si(e, n);
3233
+ });
3234
+ function As(e, t = {}) {
3235
+ return /* @__PURE__ */ Kr(Ns, e, t);
3236
+ }
3237
+ function Cs(e, t) {
3238
+ return /* @__PURE__ */ Yr(e, t);
3239
+ }
3240
+ const ze = b({
3241
+ x: d(),
3242
+ y: d()
3243
+ }), js = b({
3244
+ enabled: m(),
3245
+ color: z(),
3246
+ width: d(),
3247
+ dashArray: D(d()).optional(),
3248
+ lineCap: R(["butt", "round", "square"]).optional(),
3249
+ lineJoin: R(["miter", "round", "bevel"]).optional(),
3250
+ miterLimit: d().optional(),
3251
+ opacity: d().optional(),
3252
+ feather: d().optional()
3253
+ }), xs = b({
3254
+ fill: m().optional(),
3255
+ stroke: m().optional(),
3256
+ scope: R(["group", "artboard"]).optional()
3257
+ }), Ds = b({
3258
+ enabled: m(),
3259
+ style: R(["worn", "cracked", "grunge", "retro", "custom"]),
3260
+ intensity: d(),
3261
+ fadeAmount: d().optional(),
3262
+ grainAmount: d().optional(),
3263
+ scratchAmount: d().optional(),
3264
+ edgeWear: d().optional(),
3265
+ textureUrl: z().optional(),
3266
+ textureOpacity: d().optional(),
3267
+ textureBlendMode: R(["multiply", "screen", "overlay"]).optional(),
3268
+ seed: d().optional()
3269
+ }), Rs = b({
3270
+ id: z(),
3271
+ type: R(["clip", "alpha", "luma", "distress"]),
3272
+ // maskElement is a nested element config -- use lazy to break the cycle
3273
+ maskElement: At(() => Te),
3274
+ inverted: m().optional(),
3275
+ feather: d().optional(),
3276
+ opacity: d().optional(),
3277
+ blendMode: z().optional()
3278
+ }), Us = b({
3279
+ color: z().optional(),
3280
+ fontFamily: z().optional(),
3281
+ fontSize: d().optional(),
3282
+ bold: m().optional(),
3283
+ italic: m().optional(),
3284
+ underline: m().optional(),
3285
+ strikethrough: m().optional()
3286
+ }), Fs = b({
3287
+ text: z(),
3288
+ style: Us
3289
+ }), Js = b({
3290
+ spans: D(Fs)
3291
+ }), Ms = b({
3292
+ charIndex: d(),
3293
+ glyphIndex: d(),
3294
+ unicode: z(),
3295
+ alternateName: z().optional()
3296
+ }), Ls = b({
3297
+ liga: m().optional(),
3298
+ dlig: m().optional(),
3299
+ calt: m().optional(),
3300
+ swsh: m().optional(),
3301
+ smcp: m().optional(),
3302
+ c2sc: m().optional(),
3303
+ onum: m().optional(),
3304
+ lnum: m().optional(),
3305
+ tnum: m().optional(),
3306
+ pnum: m().optional(),
3307
+ ss01: m().optional(),
3308
+ ss02: m().optional(),
3309
+ ss03: m().optional(),
3310
+ ss04: m().optional(),
3311
+ ss05: m().optional(),
3312
+ ss06: m().optional(),
3313
+ ss07: m().optional(),
3314
+ ss08: m().optional(),
3315
+ ss09: m().optional(),
3316
+ ss10: m().optional(),
3317
+ ss11: m().optional(),
3318
+ ss12: m().optional(),
3319
+ ss13: m().optional(),
3320
+ ss14: m().optional(),
3321
+ ss15: m().optional(),
3322
+ ss16: m().optional(),
3323
+ ss17: m().optional(),
3324
+ ss18: m().optional(),
3325
+ ss19: m().optional(),
3326
+ ss20: m().optional(),
3327
+ cv01: m().optional(),
3328
+ cv02: m().optional(),
3329
+ cv03: m().optional(),
3330
+ cv04: m().optional(),
3331
+ cv05: m().optional(),
3332
+ ccmp: m().optional(),
3333
+ locl: m().optional(),
3334
+ kern: m().optional(),
3335
+ mark: m().optional(),
3336
+ mkmk: m().optional()
3337
+ }), Ct = b({
3338
+ type: v("custom"),
3339
+ controlPoints: D(ze)
3340
+ }).passthrough(), jt = b({
3341
+ type: v("distort")
3342
+ }).passthrough(), xt = b({
3343
+ type: v("circle"),
3344
+ radius: d(),
3345
+ scale: d(),
3346
+ reverse: m()
3347
+ }), Dt = b({
3348
+ type: v("lean"),
3349
+ leanAmount: d()
3350
+ }).passthrough(), Rt = b({
3351
+ type: v("arch"),
3352
+ archHeight: d()
3353
+ }).passthrough(), Ut = b({
3354
+ type: v("ascend"),
3355
+ ascendAngle: d()
3356
+ }).passthrough(), Ft = b({
3357
+ type: v("wave"),
3358
+ amplitude: d(),
3359
+ frequency: d()
3360
+ }).passthrough(), Jt = b({
3361
+ type: v("flag"),
3362
+ amplitude: d(),
3363
+ frequency: d()
3364
+ }).passthrough(), Mt = b({
3365
+ type: v("image"),
3366
+ width: d(),
3367
+ height: d(),
3368
+ cropX: d(),
3369
+ cropY: d(),
3370
+ cropWidth: d(),
3371
+ cropHeight: d(),
3372
+ flipHorizontal: m(),
3373
+ flipVertical: m(),
3374
+ borderRadius: d()
3375
+ }), Lt = b({
3376
+ type: v("group")
3377
+ }), Vt = b({
3378
+ type: v("shape"),
3379
+ shapeType: R(["rectangle", "circle", "ellipse", "triangle", "polygon", "star", "line"]),
3380
+ width: d(),
3381
+ height: d(),
3382
+ borderRadius: d().optional(),
3383
+ radiusX: d().optional(),
3384
+ radiusY: d().optional(),
3385
+ sides: d().optional(),
3386
+ points: d().optional(),
3387
+ innerRadius: d().optional(),
3388
+ fillColor: z().optional(),
3389
+ fillOpacity: d().optional()
3390
+ }), Vs = b({
3391
+ id: z(),
3392
+ x: d(),
3393
+ y: d(),
3394
+ type: R(["corner", "smooth", "bezier"]),
3395
+ handleIn: ze.optional(),
3396
+ handleOut: ze.optional()
3397
+ }), Bt = b({
3398
+ type: v("path"),
3399
+ points: D(Vs),
3400
+ closed: m(),
3401
+ width: d(),
3402
+ height: d(),
3403
+ fillEnabled: m().optional(),
3404
+ fillColor: z().optional(),
3405
+ fillOpacity: d().optional(),
3406
+ strokeEnabled: m().optional(),
3407
+ strokeColor: z().optional(),
3408
+ strokeWidth: d().optional()
3409
+ }), fc = It("type", [
3410
+ Ct,
3411
+ jt,
3412
+ xt,
3413
+ Dt,
3414
+ Rt,
3415
+ Ut,
3416
+ Ft,
3417
+ Jt,
3418
+ Mt,
3419
+ Lt,
3420
+ Vt,
3421
+ Bt
3422
+ ]), re = b({
3423
+ id: z(),
3424
+ x: d(),
3425
+ y: d(),
3426
+ rotation: d(),
3427
+ opacity: d(),
3428
+ // Layer properties
3429
+ name: z().optional(),
3430
+ visible: m().optional(),
3431
+ locked: m().optional(),
3432
+ isClipping: m().optional(),
3433
+ // Effects
3434
+ blendMode: R(["normal", "knockout", "clip"]).optional(),
3435
+ knockoutParts: xs.optional(),
3436
+ stroke: js.optional(),
3437
+ masks: D(Rs).optional(),
3438
+ distressEffect: Ds.optional()
3439
+ }), L = re.extend({
3440
+ // Rich text
3441
+ richText: Js.optional(),
3442
+ // Legacy plain text
3443
+ text: z().optional(),
3444
+ // Element-level style defaults
3445
+ fontSize: d().optional(),
3446
+ fontFamily: z().optional(),
3447
+ color: z().optional(),
3448
+ textAlign: R(["left", "center", "right"]).optional(),
3449
+ bold: m().optional(),
3450
+ italic: m().optional(),
3451
+ underline: m().optional(),
3452
+ strikethrough: m().optional(),
3453
+ // Typography
3454
+ glyphOverrides: D(Ms).optional(),
3455
+ openTypeFeatures: Ls.optional()
3456
+ }), Bs = L.extend({
3457
+ transformType: v("custom"),
3458
+ transformData: Ct.optional()
3459
+ }), Ws = L.extend({
3460
+ transformType: v("distort"),
3461
+ transformData: jt.optional()
3462
+ }), Gs = L.extend({
3463
+ transformType: v("circle"),
3464
+ transformData: xt.optional()
3465
+ }), Ks = L.extend({
3466
+ transformType: v("lean"),
3467
+ transformData: Dt.optional()
3468
+ }), Ys = L.extend({
3469
+ transformType: v("arch"),
3470
+ transformData: Rt.optional()
3471
+ }), qs = L.extend({
3472
+ transformType: v("ascend"),
3473
+ transformData: Ut.optional()
3474
+ }), Xs = L.extend({
3475
+ transformType: v("wave"),
3476
+ transformData: Ft.optional()
3477
+ }), Hs = L.extend({
3478
+ transformType: v("flag"),
3479
+ transformData: Jt.optional()
3480
+ }), Qs = re.extend({
3481
+ transformType: v("image"),
3482
+ transformData: Mt.optional(),
3483
+ imageUrl: z().optional(),
3484
+ imageAspectRatio: d().optional()
3485
+ }), ec = re.extend({
3486
+ transformType: v("group"),
3487
+ transformData: Lt.optional(),
3488
+ children: At(() => D(Te)).optional()
3489
+ }), tc = re.extend({
3490
+ transformType: v("shape"),
3491
+ transformData: Vt.optional()
3492
+ }), nc = re.extend({
3493
+ transformType: v("path"),
3494
+ transformData: Bt.optional()
3495
+ }), Te = It("transformType", [
3496
+ Bs,
3497
+ Ws,
3498
+ Gs,
3499
+ Ks,
3500
+ Ys,
3501
+ qs,
3502
+ Xs,
3503
+ Hs,
3504
+ Qs,
3505
+ ec,
3506
+ tc,
3507
+ nc
3508
+ ]), oc = ye([
3509
+ v("rectangle"),
3510
+ v("circle"),
3511
+ b({ type: v("rounded"), radius: d() }),
3512
+ b({ type: v("path"), d: z() }),
3513
+ b({
3514
+ type: v("composite-path"),
3515
+ pieces: D(
3516
+ b({
3517
+ d: z(),
3518
+ x: d(),
3519
+ y: d(),
3520
+ rotation: ye([v(0), v(90), v(180), v(270)]).optional(),
3521
+ baseWidth: d().optional(),
3522
+ baseHeight: d().optional()
3523
+ })
3524
+ )
3525
+ })
3526
+ ]), rc = b({
3527
+ enabled: m(),
3528
+ textureUrl: z(),
3529
+ intensity: d()
3530
+ }), ic = b({
3531
+ id: z(),
3532
+ name: z(),
3533
+ x: d(),
3534
+ y: d(),
3535
+ width: d(),
3536
+ height: d(),
3537
+ backgroundColor: z(),
3538
+ backgroundType: R(["color", "transparent", "texture"]).optional(),
3539
+ backgroundTexture: z().optional(),
3540
+ exportBackground: m().optional(),
3541
+ clipShape: oc.optional(),
3542
+ previewBackgroundColor: z().optional(),
3543
+ distressTexture: rc.optional(),
3544
+ elementIds: D(z())
3545
+ }), sc = b({
3546
+ version: v(1),
3547
+ artboards: D(ic),
3548
+ elements: D(Te),
3549
+ activeArtboardId: z()
3550
+ });
3551
+ function pc(e, t) {
3552
+ var s;
3553
+ const n = e.getAllArtboards(), o = e.getActiveArtboardId(), r = n.map(
3554
+ (c) => {
3555
+ const a = c.toJSON();
3556
+ return {
3557
+ id: a.id ?? c.id,
3558
+ name: a.name ?? c.name,
3559
+ x: a.x ?? c.x,
3560
+ y: a.y ?? c.y,
3561
+ width: a.width ?? c.width,
3562
+ height: a.height ?? c.height,
3563
+ backgroundColor: a.backgroundColor ?? c.backgroundColor,
3564
+ ...a.backgroundType && { backgroundType: a.backgroundType },
3565
+ ...a.backgroundTexture && { backgroundTexture: a.backgroundTexture },
3566
+ ...a.exportBackground !== void 0 && { exportBackground: a.exportBackground },
3567
+ ...a.clipShape && { clipShape: a.clipShape },
3568
+ ...a.previewBackgroundColor && { previewBackgroundColor: a.previewBackgroundColor },
3569
+ elementIds: a.elementIds ?? c.getElementIds()
3570
+ };
3571
+ }
3572
+ ), i = t.map(
3573
+ (c) => c.toJSON()
3574
+ );
3575
+ return {
3576
+ version: 1,
3577
+ artboards: r,
3578
+ elements: i,
3579
+ activeArtboardId: o ?? ((s = r[0]) == null ? void 0 : s.id) ?? ""
3580
+ };
3581
+ }
3582
+ function dc(e) {
3583
+ const t = e.artboards.map(
3584
+ (o) => Kt.fromJSON({
3585
+ id: o.id,
3586
+ name: o.name,
3587
+ x: o.x,
3588
+ y: o.y,
3589
+ width: o.width,
3590
+ height: o.height,
3591
+ backgroundColor: o.backgroundColor,
3592
+ backgroundType: o.backgroundType,
3593
+ backgroundTexture: o.backgroundTexture,
3594
+ exportBackground: o.exportBackground,
3595
+ clipShape: o.clipShape,
3596
+ previewBackgroundColor: o.previewBackgroundColor,
3597
+ elementIds: o.elementIds
3598
+ })
3599
+ ), n = e.elements.map(
3600
+ (o) => Gt.createFromJSON(o)
3601
+ );
3602
+ return {
3603
+ artboards: t,
3604
+ elements: n,
3605
+ activeArtboardId: e.activeArtboardId
3606
+ };
3607
+ }
3608
+ function cc(e) {
3609
+ const t = sc.safeParse(e);
3610
+ return t.success ? { success: !0, data: t.data } : { success: !1, errors: t.error.issues.map((o) => ({
3611
+ path: o.path.join("."),
3612
+ message: o.message
3613
+ })) };
3614
+ }
3615
+ function hc(e) {
3616
+ if (typeof e != "object" || e === null)
3617
+ throw new Error("migrateState: input must be a non-null object");
3618
+ const t = e;
3619
+ if (t.version === 1) {
3620
+ const n = cc(e);
3621
+ if (n.success)
3622
+ return n.data;
3623
+ const o = n.errors.map((r) => `${r.path}: ${r.message}`).join("; ");
3624
+ throw new Error(`migrateState: invalid v1 state: ${o}`);
3625
+ }
3626
+ if (typeof t.metadata == "object" && t.metadata !== null && "version" in t.metadata)
3627
+ return ac(t);
3628
+ throw new Error(
3629
+ `migrateState: unknown state format (version=${String(t.version ?? "undefined")})`
3630
+ );
3631
+ }
3632
+ function ac(e) {
3633
+ var o;
3634
+ const n = e.metadata.version;
3635
+ if (n === "1.0.0") {
3636
+ const r = e.canvas ?? {}, i = e.elements ?? [], s = "artboard-migrated";
3637
+ return {
3638
+ version: 1,
3639
+ artboards: [
3640
+ {
3641
+ id: s,
3642
+ name: "Artboard 1",
3643
+ x: 0,
3644
+ y: 0,
3645
+ width: r.width ?? 1920,
3646
+ height: r.height ?? 1080,
3647
+ backgroundColor: r.backgroundColor ?? "#ffffff",
3648
+ elementIds: i.map((c) => c.id).filter(Boolean)
3649
+ }
3650
+ ],
3651
+ elements: i,
3652
+ activeArtboardId: s
3653
+ };
3654
+ }
3655
+ if (n === "2.0.0") {
3656
+ const r = e.artboards ?? [], i = [], s = r.map(
3657
+ (c) => {
3658
+ const a = c.elements ?? [], l = a.map((f) => f.id).filter(Boolean);
3659
+ return i.push(...a), {
3660
+ id: c.id,
3661
+ name: c.name,
3662
+ x: c.x,
3663
+ y: c.y,
3664
+ width: c.width,
3665
+ height: c.height,
3666
+ backgroundColor: c.backgroundColor,
3667
+ elementIds: l
3668
+ };
3669
+ }
3670
+ );
3671
+ return {
3672
+ version: 1,
3673
+ artboards: s,
3674
+ elements: i,
3675
+ activeArtboardId: e.activeArtboardId ?? ((o = s[0]) == null ? void 0 : o.id) ?? ""
3676
+ };
3677
+ }
3678
+ throw new Error(
3679
+ `migrateFromCanvasDocument: unsupported CanvasDocument version "${n}"`
3680
+ );
3681
+ }
3682
+ export {
3683
+ Te as A,
3684
+ sc as C,
3685
+ ic as S,
3686
+ fc as a,
3687
+ dc as d,
3688
+ hc as m,
3689
+ pc as s,
3690
+ cc as v
3691
+ };
3692
+ //# sourceMappingURL=CanvasStateV1-ejb4d_LM.js.map