@loopstack/loopstack-studio 0.21.0 → 0.21.1

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 (649) hide show
  1. package/dist/components/LoadingCentered.js +2 -2
  2. package/dist/components/ai-elements/code-block.js +96 -0
  3. package/dist/components/ai-elements/message.js +87 -0
  4. package/dist/components/ai-elements/prompt-input.js +321 -0
  5. package/dist/components/ai-elements/reasoning.js +124 -0
  6. package/dist/components/ai-elements/shimmer.js +37 -0
  7. package/dist/components/ai-elements/sources.js +65 -0
  8. package/dist/components/ai-elements/tool.js +158 -0
  9. package/dist/components/content/ErrorAlert.js +17 -0
  10. package/dist/components/data-table/DataTable.js +99 -96
  11. package/dist/components/dynamic-form/CodeContent.js +2 -2
  12. package/dist/components/dynamic-form/FormElement.js +3 -3
  13. package/dist/components/dynamic-form/FormElementHeader.js +2 -2
  14. package/dist/components/dynamic-form/ObjectController.js +2 -2
  15. package/dist/components/layout/MainLayout.js +0 -1
  16. package/dist/components/lists/ListView.js +62 -59
  17. package/dist/components/loopstack-elements/link.js +115 -0
  18. package/dist/components/ui/button-group.js +13 -0
  19. package/dist/components/ui/command.js +7 -0
  20. package/dist/components/ui/context-menu.js +63 -0
  21. package/dist/components/ui/hover-card.js +6 -0
  22. package/dist/components/ui/input-group.js +85 -0
  23. package/dist/components/ui/table.js +2 -2
  24. package/dist/components/ui/tabs.js +54 -0
  25. package/dist/components/ui-widgets/UiActions.js +24 -0
  26. package/dist/components/ui-widgets/UiWidget.js +43 -0
  27. package/dist/components/ui-widgets/widgets/AiPromptInput.js +43 -0
  28. package/dist/components/ui-widgets/widgets/ButtonFullWidth.js +23 -0
  29. package/dist/components/ui-widgets/widgets/SubmitButton.js +23 -0
  30. package/dist/features/code-explorer/CodeExplorer.js +69 -0
  31. package/dist/features/code-explorer/components/CodeExplorerTree.js +43 -0
  32. package/dist/features/code-explorer/components/CodeExplorerTreeNode.js +82 -0
  33. package/dist/features/code-explorer/components/FileContentViewer.js +237 -0
  34. package/dist/features/code-explorer/components/FileTabsBar.js +191 -0
  35. package/dist/features/code-explorer/providers/CodeExplorerProvider.js +165 -0
  36. package/dist/features/code-explorer/utils/fileIcons.js +42 -0
  37. package/dist/features/dashboard/Dashboard.js +125 -0
  38. package/dist/features/dashboard/RunItem.js +76 -0
  39. package/dist/features/dashboard/RunList.js +32 -0
  40. package/dist/features/debug/components/ConfigFlowViewer.js +79 -0
  41. package/dist/features/debug/components/PipelineDebugHeader.js +48 -0
  42. package/dist/features/debug/components/PipelineDebugLegend.js +68 -0
  43. package/dist/features/debug/components/PipelineFlowViewer.js +109 -0
  44. package/dist/features/debug/components/pipeline-flow/StateNode.js +111 -0
  45. package/dist/features/debug/components/pipeline-flow/WorkflowGraph.js +41 -0
  46. package/dist/features/debug/components/pipeline-flow/WorkflowTransitionEdge.js +97 -0
  47. package/dist/features/debug/lib/edge-paths.js +47 -0
  48. package/dist/features/debug/lib/flow-utils.js +247 -0
  49. package/dist/features/health/LocalHealthCheck.js +1 -1
  50. package/dist/features/oauth/OAuthCallbackPage.js +2 -0
  51. package/dist/features/oauth/OAuthPromptRenderer.js +223 -0
  52. package/dist/features/oauth/index.js +3 -0
  53. package/dist/features/oauth/useOAuthPopup.js +83 -0
  54. package/dist/features/workbench/NavigationItems.js +52 -0
  55. package/dist/features/workbench/Workbench.js +101 -0
  56. package/dist/features/workbench/WorkbenchNavigation.js +38 -0
  57. package/dist/features/workbench/WorkflowItem.js +67 -0
  58. package/dist/features/workbench/WorkflowList.js +110 -0
  59. package/dist/features/workbench/components/DocumentItem.js +27 -0
  60. package/dist/features/workbench/components/DocumentList.js +40 -0
  61. package/dist/features/workbench/components/DocumentMetadataPills.js +63 -0
  62. package/dist/features/workbench/components/DocumentRenderer.js +54 -0
  63. package/dist/features/workbench/components/NavigationItem.js +68 -0
  64. package/dist/features/workbench/components/PipelineHistoryList.js +56 -0
  65. package/dist/features/workbench/components/WorkbenchSettingsModal.js +89 -0
  66. package/dist/features/workbench/components/WorkbenchSidebar.js +109 -0
  67. package/dist/features/workbench/components/WorkflowForms.js +22 -0
  68. package/dist/features/workbench/components/WorkflowHistoryItem.js +144 -0
  69. package/dist/features/workbench/components/buttons/WorkflowButtons.js +85 -0
  70. package/dist/features/workbench/components/document-details/DocumentDetails.js +425 -0
  71. package/dist/features/workbench/components/document-details/PromptDetails.js +146 -0
  72. package/dist/features/workbench/components/document-renderer/AiMessage.js +56 -0
  73. package/dist/features/workbench/components/document-renderer/AiMessageContent.js +174 -0
  74. package/dist/features/workbench/components/document-renderer/DocumentDebugRenderer.js +30 -0
  75. package/dist/features/workbench/components/document-renderer/DocumentFormRenderer.js +79 -0
  76. package/dist/features/workbench/components/document-renderer/DocumentMessageRenderer.js +10 -0
  77. package/dist/features/workbench/components/document-renderer/ErrorMessageRenderer.js +13 -0
  78. package/dist/features/workbench/components/document-renderer/LinkMessageRenderer.js +17 -0
  79. package/dist/features/workbench/components/document-renderer/MarkdownMessageRenderer.js +10 -0
  80. package/dist/features/workbench/components/document-renderer/PlainMessageRenderer.js +9 -0
  81. package/dist/features/workbench/hooks/useAutoScrollBottom.js +29 -0
  82. package/dist/features/workbench/hooks/useIntersectionObserver.js +44 -0
  83. package/dist/features/workbench/hooks/useScrollToListItem.js +23 -0
  84. package/dist/features/workbench/providers/ScrollProvider.js +22 -0
  85. package/dist/features/workbench/providers/WorkbenchContextProvider.js +3 -0
  86. package/dist/features/workspaces/Workspaces.js +156 -89
  87. package/dist/features/workspaces/components/CreateWorkspace.js +101 -78
  88. package/dist/features/workspaces/components/ExecutionTimeline.js +1 -1
  89. package/dist/hooks/index.js +1 -0
  90. package/dist/hooks/useDashboard.js +23 -0
  91. package/dist/hooks/useDocuments.js +45 -0
  92. package/dist/hooks/useFiles.js +63 -0
  93. package/dist/hooks/useNamespaceTree.js +27 -0
  94. package/dist/hooks/useNamespaces.js +34 -0
  95. package/dist/hooks/usePipelines.js +83 -6
  96. package/dist/hooks/useWorkflows.js +122 -0
  97. package/dist/hooks/useWorkspaces.js +49 -29
  98. package/dist/index.d.ts +75 -9
  99. package/dist/index.js +9 -1
  100. package/dist/lib/requireParam.js +6 -0
  101. package/dist/loopstack-studio.css +1 -1
  102. package/dist/node_modules/@ai-sdk/provider/dist/index.js +65 -0
  103. package/dist/node_modules/@ai-sdk/provider-utils/dist/index.js +1008 -0
  104. package/dist/node_modules/@dagrejs/dagre/dist/dagre.esm.js +1968 -0
  105. package/dist/node_modules/@shikijs/core/dist/index.js +1420 -0
  106. package/dist/node_modules/@shikijs/engine-oniguruma/dist/index.js +236 -0
  107. package/dist/node_modules/@shikijs/engine-oniguruma/dist/wasm-inlined.js +2 -0
  108. package/dist/node_modules/@shikijs/langs/dist/abap.js +2 -0
  109. package/dist/node_modules/@shikijs/langs/dist/actionscript-3.js +2 -0
  110. package/dist/node_modules/@shikijs/langs/dist/ada.js +2 -0
  111. package/dist/node_modules/@shikijs/langs/dist/angular-expression.js +2 -0
  112. package/dist/node_modules/@shikijs/langs/dist/angular-html.js +14 -0
  113. package/dist/node_modules/@shikijs/langs/dist/angular-inline-style.js +3 -0
  114. package/dist/node_modules/@shikijs/langs/dist/angular-inline-template.js +8 -0
  115. package/dist/node_modules/@shikijs/langs/dist/angular-let-declaration.js +3 -0
  116. package/dist/node_modules/@shikijs/langs/dist/angular-template-blocks.js +8 -0
  117. package/dist/node_modules/@shikijs/langs/dist/angular-template.js +3 -0
  118. package/dist/node_modules/@shikijs/langs/dist/angular-ts.js +16 -0
  119. package/dist/node_modules/@shikijs/langs/dist/apache.js +2 -0
  120. package/dist/node_modules/@shikijs/langs/dist/apex.js +2 -0
  121. package/dist/node_modules/@shikijs/langs/dist/apl.js +14 -0
  122. package/dist/node_modules/@shikijs/langs/dist/applescript.js +2 -0
  123. package/dist/node_modules/@shikijs/langs/dist/ara.js +2 -0
  124. package/dist/node_modules/@shikijs/langs/dist/asciidoc.js +2 -0
  125. package/dist/node_modules/@shikijs/langs/dist/asm.js +2 -0
  126. package/dist/node_modules/@shikijs/langs/dist/astro.js +16 -0
  127. package/dist/node_modules/@shikijs/langs/dist/awk.js +2 -0
  128. package/dist/node_modules/@shikijs/langs/dist/ballerina.js +2 -0
  129. package/dist/node_modules/@shikijs/langs/dist/bat.js +2 -0
  130. package/dist/node_modules/@shikijs/langs/dist/beancount.js +2 -0
  131. package/dist/node_modules/@shikijs/langs/dist/berry.js +2 -0
  132. package/dist/node_modules/@shikijs/langs/dist/bibtex.js +2 -0
  133. package/dist/node_modules/@shikijs/langs/dist/bicep.js +2 -0
  134. package/dist/node_modules/@shikijs/langs/dist/bird2.js +2 -0
  135. package/dist/node_modules/@shikijs/langs/dist/blade.js +18 -0
  136. package/dist/node_modules/@shikijs/langs/dist/bsl.js +3 -0
  137. package/dist/node_modules/@shikijs/langs/dist/c.js +2 -0
  138. package/dist/node_modules/@shikijs/langs/dist/c3.js +2 -0
  139. package/dist/node_modules/@shikijs/langs/dist/cadence.js +2 -0
  140. package/dist/node_modules/@shikijs/langs/dist/cairo.js +3 -0
  141. package/dist/node_modules/@shikijs/langs/dist/clarity.js +2 -0
  142. package/dist/node_modules/@shikijs/langs/dist/clojure.js +2 -0
  143. package/dist/node_modules/@shikijs/langs/dist/cmake.js +2 -0
  144. package/dist/node_modules/@shikijs/langs/dist/cobol.js +8 -0
  145. package/dist/node_modules/@shikijs/langs/dist/codeowners.js +2 -0
  146. package/dist/node_modules/@shikijs/langs/dist/codeql.js +2 -0
  147. package/dist/node_modules/@shikijs/langs/dist/coffee.js +3 -0
  148. package/dist/node_modules/@shikijs/langs/dist/common-lisp.js +2 -0
  149. package/dist/node_modules/@shikijs/langs/dist/coq.js +2 -0
  150. package/dist/node_modules/@shikijs/langs/dist/cpp-macro.js +10 -0
  151. package/dist/node_modules/@shikijs/langs/dist/cpp.js +12 -0
  152. package/dist/node_modules/@shikijs/langs/dist/crystal.js +16 -0
  153. package/dist/node_modules/@shikijs/langs/dist/csharp.js +2 -0
  154. package/dist/node_modules/@shikijs/langs/dist/css.js +2 -0
  155. package/dist/node_modules/@shikijs/langs/dist/csv.js +2 -0
  156. package/dist/node_modules/@shikijs/langs/dist/cue.js +2 -0
  157. package/dist/node_modules/@shikijs/langs/dist/cypher.js +2 -0
  158. package/dist/node_modules/@shikijs/langs/dist/d.js +2 -0
  159. package/dist/node_modules/@shikijs/langs/dist/dart.js +2 -0
  160. package/dist/node_modules/@shikijs/langs/dist/dax.js +2 -0
  161. package/dist/node_modules/@shikijs/langs/dist/desktop.js +2 -0
  162. package/dist/node_modules/@shikijs/langs/dist/diff.js +2 -0
  163. package/dist/node_modules/@shikijs/langs/dist/docker.js +2 -0
  164. package/dist/node_modules/@shikijs/langs/dist/dotenv.js +2 -0
  165. package/dist/node_modules/@shikijs/langs/dist/dream-maker.js +2 -0
  166. package/dist/node_modules/@shikijs/langs/dist/edge.js +10 -0
  167. package/dist/node_modules/@shikijs/langs/dist/elixir.js +3 -0
  168. package/dist/node_modules/@shikijs/langs/dist/elm.js +3 -0
  169. package/dist/node_modules/@shikijs/langs/dist/emacs-lisp.js +2 -0
  170. package/dist/node_modules/@shikijs/langs/dist/erb.js +8 -0
  171. package/dist/node_modules/@shikijs/langs/dist/erlang.js +3 -0
  172. package/dist/node_modules/@shikijs/langs/dist/es-tag-css.js +10 -0
  173. package/dist/node_modules/@shikijs/langs/dist/es-tag-glsl.js +10 -0
  174. package/dist/node_modules/@shikijs/langs/dist/es-tag-html.js +10 -0
  175. package/dist/node_modules/@shikijs/langs/dist/es-tag-sql.js +8 -0
  176. package/dist/node_modules/@shikijs/langs/dist/es-tag-xml.js +3 -0
  177. package/dist/node_modules/@shikijs/langs/dist/fennel.js +2 -0
  178. package/dist/node_modules/@shikijs/langs/dist/fish.js +2 -0
  179. package/dist/node_modules/@shikijs/langs/dist/fluent.js +2 -0
  180. package/dist/node_modules/@shikijs/langs/dist/fortran-fixed-form.js +3 -0
  181. package/dist/node_modules/@shikijs/langs/dist/fortran-free-form.js +2 -0
  182. package/dist/node_modules/@shikijs/langs/dist/fsharp.js +3 -0
  183. package/dist/node_modules/@shikijs/langs/dist/gdresource.js +8 -0
  184. package/dist/node_modules/@shikijs/langs/dist/gdscript.js +2 -0
  185. package/dist/node_modules/@shikijs/langs/dist/gdshader.js +2 -0
  186. package/dist/node_modules/@shikijs/langs/dist/genie.js +2 -0
  187. package/dist/node_modules/@shikijs/langs/dist/gherkin.js +2 -0
  188. package/dist/node_modules/@shikijs/langs/dist/git-commit.js +3 -0
  189. package/dist/node_modules/@shikijs/langs/dist/git-rebase.js +3 -0
  190. package/dist/node_modules/@shikijs/langs/dist/gleam.js +2 -0
  191. package/dist/node_modules/@shikijs/langs/dist/glimmer-js.js +12 -0
  192. package/dist/node_modules/@shikijs/langs/dist/glimmer-ts.js +12 -0
  193. package/dist/node_modules/@shikijs/langs/dist/glsl.js +3 -0
  194. package/dist/node_modules/@shikijs/langs/dist/gn.js +2 -0
  195. package/dist/node_modules/@shikijs/langs/dist/gnuplot.js +2 -0
  196. package/dist/node_modules/@shikijs/langs/dist/go.js +2 -0
  197. package/dist/node_modules/@shikijs/langs/dist/graphql.js +12 -0
  198. package/dist/node_modules/@shikijs/langs/dist/groovy.js +2 -0
  199. package/dist/node_modules/@shikijs/langs/dist/hack.js +8 -0
  200. package/dist/node_modules/@shikijs/langs/dist/haml.js +8 -0
  201. package/dist/node_modules/@shikijs/langs/dist/handlebars.js +12 -0
  202. package/dist/node_modules/@shikijs/langs/dist/haskell.js +2 -0
  203. package/dist/node_modules/@shikijs/langs/dist/haxe.js +2 -0
  204. package/dist/node_modules/@shikijs/langs/dist/hcl.js +2 -0
  205. package/dist/node_modules/@shikijs/langs/dist/hjson.js +2 -0
  206. package/dist/node_modules/@shikijs/langs/dist/hlsl.js +2 -0
  207. package/dist/node_modules/@shikijs/langs/dist/html-derivative.js +3 -0
  208. package/dist/node_modules/@shikijs/langs/dist/html.js +8 -0
  209. package/dist/node_modules/@shikijs/langs/dist/http.js +12 -0
  210. package/dist/node_modules/@shikijs/langs/dist/hurl.js +10 -0
  211. package/dist/node_modules/@shikijs/langs/dist/hxml.js +3 -0
  212. package/dist/node_modules/@shikijs/langs/dist/hy.js +2 -0
  213. package/dist/node_modules/@shikijs/langs/dist/imba.js +2 -0
  214. package/dist/node_modules/@shikijs/langs/dist/ini.js +2 -0
  215. package/dist/node_modules/@shikijs/langs/dist/java.js +2 -0
  216. package/dist/node_modules/@shikijs/langs/dist/javascript.js +2 -0
  217. package/dist/node_modules/@shikijs/langs/dist/jinja-html.js +3 -0
  218. package/dist/node_modules/@shikijs/langs/dist/jinja.js +3 -0
  219. package/dist/node_modules/@shikijs/langs/dist/jison.js +3 -0
  220. package/dist/node_modules/@shikijs/langs/dist/json.js +2 -0
  221. package/dist/node_modules/@shikijs/langs/dist/json5.js +2 -0
  222. package/dist/node_modules/@shikijs/langs/dist/jsonc.js +2 -0
  223. package/dist/node_modules/@shikijs/langs/dist/jsonl.js +2 -0
  224. package/dist/node_modules/@shikijs/langs/dist/jsonnet.js +2 -0
  225. package/dist/node_modules/@shikijs/langs/dist/jssm.js +2 -0
  226. package/dist/node_modules/@shikijs/langs/dist/jsx.js +2 -0
  227. package/dist/node_modules/@shikijs/langs/dist/julia.js +14 -0
  228. package/dist/node_modules/@shikijs/langs/dist/just.js +16 -0
  229. package/dist/node_modules/@shikijs/langs/dist/kdl.js +2 -0
  230. package/dist/node_modules/@shikijs/langs/dist/kotlin.js +2 -0
  231. package/dist/node_modules/@shikijs/langs/dist/kusto.js +2 -0
  232. package/dist/node_modules/@shikijs/langs/dist/latex.js +3 -0
  233. package/dist/node_modules/@shikijs/langs/dist/lean.js +2 -0
  234. package/dist/node_modules/@shikijs/langs/dist/less.js +2 -0
  235. package/dist/node_modules/@shikijs/langs/dist/liquid.js +12 -0
  236. package/dist/node_modules/@shikijs/langs/dist/llvm.js +2 -0
  237. package/dist/node_modules/@shikijs/langs/dist/log.js +2 -0
  238. package/dist/node_modules/@shikijs/langs/dist/logo.js +2 -0
  239. package/dist/node_modules/@shikijs/langs/dist/lua.js +3 -0
  240. package/dist/node_modules/@shikijs/langs/dist/luau.js +2 -0
  241. package/dist/node_modules/@shikijs/langs/dist/make.js +2 -0
  242. package/dist/node_modules/@shikijs/langs/dist/markdown-nix.js +2 -0
  243. package/dist/node_modules/@shikijs/langs/dist/markdown-vue.js +2 -0
  244. package/dist/node_modules/@shikijs/langs/dist/markdown.js +2 -0
  245. package/dist/node_modules/@shikijs/langs/dist/marko.js +12 -0
  246. package/dist/node_modules/@shikijs/langs/dist/matlab.js +2 -0
  247. package/dist/node_modules/@shikijs/langs/dist/mdc.js +10 -0
  248. package/dist/node_modules/@shikijs/langs/dist/mdx.js +2 -0
  249. package/dist/node_modules/@shikijs/langs/dist/mermaid.js +2 -0
  250. package/dist/node_modules/@shikijs/langs/dist/mipsasm.js +2 -0
  251. package/dist/node_modules/@shikijs/langs/dist/mojo.js +2 -0
  252. package/dist/node_modules/@shikijs/langs/dist/moonbit.js +2 -0
  253. package/dist/node_modules/@shikijs/langs/dist/move.js +2 -0
  254. package/dist/node_modules/@shikijs/langs/dist/narrat.js +2 -0
  255. package/dist/node_modules/@shikijs/langs/dist/nextflow-groovy.js +2 -0
  256. package/dist/node_modules/@shikijs/langs/dist/nextflow.js +3 -0
  257. package/dist/node_modules/@shikijs/langs/dist/nginx.js +3 -0
  258. package/dist/node_modules/@shikijs/langs/dist/nim.js +18 -0
  259. package/dist/node_modules/@shikijs/langs/dist/nix.js +3 -0
  260. package/dist/node_modules/@shikijs/langs/dist/nushell.js +2 -0
  261. package/dist/node_modules/@shikijs/langs/dist/objective-c.js +2 -0
  262. package/dist/node_modules/@shikijs/langs/dist/objective-cpp.js +2 -0
  263. package/dist/node_modules/@shikijs/langs/dist/ocaml.js +2 -0
  264. package/dist/node_modules/@shikijs/langs/dist/odin.js +2 -0
  265. package/dist/node_modules/@shikijs/langs/dist/openscad.js +2 -0
  266. package/dist/node_modules/@shikijs/langs/dist/pascal.js +2 -0
  267. package/dist/node_modules/@shikijs/langs/dist/perl.js +14 -0
  268. package/dist/node_modules/@shikijs/langs/dist/php.js +16 -0
  269. package/dist/node_modules/@shikijs/langs/dist/pkl.js +2 -0
  270. package/dist/node_modules/@shikijs/langs/dist/plsql.js +2 -0
  271. package/dist/node_modules/@shikijs/langs/dist/po.js +2 -0
  272. package/dist/node_modules/@shikijs/langs/dist/polar.js +2 -0
  273. package/dist/node_modules/@shikijs/langs/dist/postcss.js +2 -0
  274. package/dist/node_modules/@shikijs/langs/dist/powerquery.js +2 -0
  275. package/dist/node_modules/@shikijs/langs/dist/powershell.js +2 -0
  276. package/dist/node_modules/@shikijs/langs/dist/prisma.js +2 -0
  277. package/dist/node_modules/@shikijs/langs/dist/prolog.js +2 -0
  278. package/dist/node_modules/@shikijs/langs/dist/proto.js +2 -0
  279. package/dist/node_modules/@shikijs/langs/dist/pug.js +10 -0
  280. package/dist/node_modules/@shikijs/langs/dist/puppet.js +2 -0
  281. package/dist/node_modules/@shikijs/langs/dist/purescript.js +2 -0
  282. package/dist/node_modules/@shikijs/langs/dist/python.js +2 -0
  283. package/dist/node_modules/@shikijs/langs/dist/qml.js +3 -0
  284. package/dist/node_modules/@shikijs/langs/dist/qmldir.js +2 -0
  285. package/dist/node_modules/@shikijs/langs/dist/qss.js +2 -0
  286. package/dist/node_modules/@shikijs/langs/dist/r.js +2 -0
  287. package/dist/node_modules/@shikijs/langs/dist/racket.js +2 -0
  288. package/dist/node_modules/@shikijs/langs/dist/raku.js +2 -0
  289. package/dist/node_modules/@shikijs/langs/dist/razor.js +8 -0
  290. package/dist/node_modules/@shikijs/langs/dist/reg.js +2 -0
  291. package/dist/node_modules/@shikijs/langs/dist/regexp.js +2 -0
  292. package/dist/node_modules/@shikijs/langs/dist/rel.js +2 -0
  293. package/dist/node_modules/@shikijs/langs/dist/riscv.js +2 -0
  294. package/dist/node_modules/@shikijs/langs/dist/ron.js +2 -0
  295. package/dist/node_modules/@shikijs/langs/dist/rosmsg.js +2 -0
  296. package/dist/node_modules/@shikijs/langs/dist/rst.js +20 -0
  297. package/dist/node_modules/@shikijs/langs/dist/ruby.js +28 -0
  298. package/dist/node_modules/@shikijs/langs/dist/rust.js +2 -0
  299. package/dist/node_modules/@shikijs/langs/dist/sas.js +3 -0
  300. package/dist/node_modules/@shikijs/langs/dist/sass.js +2 -0
  301. package/dist/node_modules/@shikijs/langs/dist/scala.js +2 -0
  302. package/dist/node_modules/@shikijs/langs/dist/scheme.js +2 -0
  303. package/dist/node_modules/@shikijs/langs/dist/scss.js +3 -0
  304. package/dist/node_modules/@shikijs/langs/dist/sdbl.js +2 -0
  305. package/dist/node_modules/@shikijs/langs/dist/shaderlab.js +3 -0
  306. package/dist/node_modules/@shikijs/langs/dist/shellscript.js +2 -0
  307. package/dist/node_modules/@shikijs/langs/dist/shellsession.js +3 -0
  308. package/dist/node_modules/@shikijs/langs/dist/smalltalk.js +2 -0
  309. package/dist/node_modules/@shikijs/langs/dist/solidity.js +2 -0
  310. package/dist/node_modules/@shikijs/langs/dist/soy.js +3 -0
  311. package/dist/node_modules/@shikijs/langs/dist/sparql.js +3 -0
  312. package/dist/node_modules/@shikijs/langs/dist/splunk.js +2 -0
  313. package/dist/node_modules/@shikijs/langs/dist/sql.js +2 -0
  314. package/dist/node_modules/@shikijs/langs/dist/ssh-config.js +2 -0
  315. package/dist/node_modules/@shikijs/langs/dist/stata.js +3 -0
  316. package/dist/node_modules/@shikijs/langs/dist/stylus.js +2 -0
  317. package/dist/node_modules/@shikijs/langs/dist/surrealql.js +3 -0
  318. package/dist/node_modules/@shikijs/langs/dist/svelte.js +12 -0
  319. package/dist/node_modules/@shikijs/langs/dist/swift.js +2 -0
  320. package/dist/node_modules/@shikijs/langs/dist/system-verilog.js +2 -0
  321. package/dist/node_modules/@shikijs/langs/dist/systemd.js +2 -0
  322. package/dist/node_modules/@shikijs/langs/dist/talonscript.js +2 -0
  323. package/dist/node_modules/@shikijs/langs/dist/tasl.js +2 -0
  324. package/dist/node_modules/@shikijs/langs/dist/tcl.js +2 -0
  325. package/dist/node_modules/@shikijs/langs/dist/templ.js +10 -0
  326. package/dist/node_modules/@shikijs/langs/dist/terraform.js +2 -0
  327. package/dist/node_modules/@shikijs/langs/dist/tex.js +3 -0
  328. package/dist/node_modules/@shikijs/langs/dist/toml.js +2 -0
  329. package/dist/node_modules/@shikijs/langs/dist/ts-tags.js +16 -0
  330. package/dist/node_modules/@shikijs/langs/dist/tsv.js +2 -0
  331. package/dist/node_modules/@shikijs/langs/dist/tsx.js +2 -0
  332. package/dist/node_modules/@shikijs/langs/dist/turtle.js +2 -0
  333. package/dist/node_modules/@shikijs/langs/dist/twig.js +16 -0
  334. package/dist/node_modules/@shikijs/langs/dist/typescript.js +2 -0
  335. package/dist/node_modules/@shikijs/langs/dist/typespec.js +2 -0
  336. package/dist/node_modules/@shikijs/langs/dist/typst.js +2 -0
  337. package/dist/node_modules/@shikijs/langs/dist/v.js +2 -0
  338. package/dist/node_modules/@shikijs/langs/dist/vala.js +2 -0
  339. package/dist/node_modules/@shikijs/langs/dist/vb.js +2 -0
  340. package/dist/node_modules/@shikijs/langs/dist/verilog.js +2 -0
  341. package/dist/node_modules/@shikijs/langs/dist/vhdl.js +2 -0
  342. package/dist/node_modules/@shikijs/langs/dist/viml.js +2 -0
  343. package/dist/node_modules/@shikijs/langs/dist/vue-directives.js +2 -0
  344. package/dist/node_modules/@shikijs/langs/dist/vue-html.js +3 -0
  345. package/dist/node_modules/@shikijs/langs/dist/vue-interpolations.js +2 -0
  346. package/dist/node_modules/@shikijs/langs/dist/vue-sfc-style-variable-injection.js +3 -0
  347. package/dist/node_modules/@shikijs/langs/dist/vue-vine.js +16 -0
  348. package/dist/node_modules/@shikijs/langs/dist/vue.js +24 -0
  349. package/dist/node_modules/@shikijs/langs/dist/vyper.js +2 -0
  350. package/dist/node_modules/@shikijs/langs/dist/wasm.js +2 -0
  351. package/dist/node_modules/@shikijs/langs/dist/wenyan.js +2 -0
  352. package/dist/node_modules/@shikijs/langs/dist/wgsl.js +2 -0
  353. package/dist/node_modules/@shikijs/langs/dist/wikitext.js +2 -0
  354. package/dist/node_modules/@shikijs/langs/dist/wit.js +2 -0
  355. package/dist/node_modules/@shikijs/langs/dist/wolfram.js +2 -0
  356. package/dist/node_modules/@shikijs/langs/dist/xml.js +3 -0
  357. package/dist/node_modules/@shikijs/langs/dist/xsl.js +3 -0
  358. package/dist/node_modules/@shikijs/langs/dist/yaml.js +2 -0
  359. package/dist/node_modules/@shikijs/langs/dist/zenscript.js +2 -0
  360. package/dist/node_modules/@shikijs/langs/dist/zig.js +2 -0
  361. package/dist/node_modules/@shikijs/themes/dist/andromeeda.js +2 -0
  362. package/dist/node_modules/@shikijs/themes/dist/aurora-x.js +2 -0
  363. package/dist/node_modules/@shikijs/themes/dist/ayu-dark.js +2 -0
  364. package/dist/node_modules/@shikijs/themes/dist/ayu-light.js +2 -0
  365. package/dist/node_modules/@shikijs/themes/dist/ayu-mirage.js +2 -0
  366. package/dist/node_modules/@shikijs/themes/dist/catppuccin-frappe.js +2 -0
  367. package/dist/node_modules/@shikijs/themes/dist/catppuccin-latte.js +2 -0
  368. package/dist/node_modules/@shikijs/themes/dist/catppuccin-macchiato.js +2 -0
  369. package/dist/node_modules/@shikijs/themes/dist/catppuccin-mocha.js +2 -0
  370. package/dist/node_modules/@shikijs/themes/dist/dark-plus.js +2 -0
  371. package/dist/node_modules/@shikijs/themes/dist/dracula-soft.js +2 -0
  372. package/dist/node_modules/@shikijs/themes/dist/dracula.js +2 -0
  373. package/dist/node_modules/@shikijs/themes/dist/everforest-dark.js +2 -0
  374. package/dist/node_modules/@shikijs/themes/dist/everforest-light.js +2 -0
  375. package/dist/node_modules/@shikijs/themes/dist/github-dark-default.js +2 -0
  376. package/dist/node_modules/@shikijs/themes/dist/github-dark-dimmed.js +2 -0
  377. package/dist/node_modules/@shikijs/themes/dist/github-dark-high-contrast.js +2 -0
  378. package/dist/node_modules/@shikijs/themes/dist/github-dark.js +2 -0
  379. package/dist/node_modules/@shikijs/themes/dist/github-light-default.js +2 -0
  380. package/dist/node_modules/@shikijs/themes/dist/github-light-high-contrast.js +2 -0
  381. package/dist/node_modules/@shikijs/themes/dist/github-light.js +2 -0
  382. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-hard.js +2 -0
  383. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-medium.js +2 -0
  384. package/dist/node_modules/@shikijs/themes/dist/gruvbox-dark-soft.js +2 -0
  385. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-hard.js +2 -0
  386. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-medium.js +2 -0
  387. package/dist/node_modules/@shikijs/themes/dist/gruvbox-light-soft.js +2 -0
  388. package/dist/node_modules/@shikijs/themes/dist/horizon-bright.js +2 -0
  389. package/dist/node_modules/@shikijs/themes/dist/horizon.js +2 -0
  390. package/dist/node_modules/@shikijs/themes/dist/houston.js +2 -0
  391. package/dist/node_modules/@shikijs/themes/dist/kanagawa-dragon.js +2 -0
  392. package/dist/node_modules/@shikijs/themes/dist/kanagawa-lotus.js +2 -0
  393. package/dist/node_modules/@shikijs/themes/dist/kanagawa-wave.js +2 -0
  394. package/dist/node_modules/@shikijs/themes/dist/laserwave.js +2 -0
  395. package/dist/node_modules/@shikijs/themes/dist/light-plus.js +2 -0
  396. package/dist/node_modules/@shikijs/themes/dist/material-theme-darker.js +2 -0
  397. package/dist/node_modules/@shikijs/themes/dist/material-theme-lighter.js +2 -0
  398. package/dist/node_modules/@shikijs/themes/dist/material-theme-ocean.js +2 -0
  399. package/dist/node_modules/@shikijs/themes/dist/material-theme-palenight.js +2 -0
  400. package/dist/node_modules/@shikijs/themes/dist/material-theme.js +2 -0
  401. package/dist/node_modules/@shikijs/themes/dist/min-dark.js +2 -0
  402. package/dist/node_modules/@shikijs/themes/dist/min-light.js +2 -0
  403. package/dist/node_modules/@shikijs/themes/dist/monokai.js +2 -0
  404. package/dist/node_modules/@shikijs/themes/dist/night-owl-light.js +2 -0
  405. package/dist/node_modules/@shikijs/themes/dist/night-owl.js +2 -0
  406. package/dist/node_modules/@shikijs/themes/dist/nord.js +2 -0
  407. package/dist/node_modules/@shikijs/themes/dist/one-dark-pro.js +2 -0
  408. package/dist/node_modules/@shikijs/themes/dist/one-light.js +2 -0
  409. package/dist/node_modules/@shikijs/themes/dist/plastic.js +2 -0
  410. package/dist/node_modules/@shikijs/themes/dist/poimandres.js +2 -0
  411. package/dist/node_modules/@shikijs/themes/dist/red.js +2 -0
  412. package/dist/node_modules/@shikijs/themes/dist/rose-pine-dawn.js +2 -0
  413. package/dist/node_modules/@shikijs/themes/dist/rose-pine-moon.js +2 -0
  414. package/dist/node_modules/@shikijs/themes/dist/rose-pine.js +2 -0
  415. package/dist/node_modules/@shikijs/themes/dist/slack-dark.js +2 -0
  416. package/dist/node_modules/@shikijs/themes/dist/slack-ochin.js +2 -0
  417. package/dist/node_modules/@shikijs/themes/dist/snazzy-light.js +2 -0
  418. package/dist/node_modules/@shikijs/themes/dist/solarized-dark.js +2 -0
  419. package/dist/node_modules/@shikijs/themes/dist/solarized-light.js +2 -0
  420. package/dist/node_modules/@shikijs/themes/dist/synthwave-84.js +2 -0
  421. package/dist/node_modules/@shikijs/themes/dist/tokyo-night.js +2 -0
  422. package/dist/node_modules/@shikijs/themes/dist/vesper.js +2 -0
  423. package/dist/node_modules/@shikijs/themes/dist/vitesse-black.js +2 -0
  424. package/dist/node_modules/@shikijs/themes/dist/vitesse-dark.js +2 -0
  425. package/dist/node_modules/@shikijs/themes/dist/vitesse-light.js +2 -0
  426. package/dist/node_modules/@shikijs/types/dist/index.js +6 -0
  427. package/dist/node_modules/@shikijs/vscode-textmate/dist/index.js +1580 -0
  428. package/dist/node_modules/@ungap/structured-clone/esm/deserialize.js +51 -0
  429. package/dist/node_modules/@ungap/structured-clone/esm/index.js +4 -0
  430. package/dist/node_modules/@ungap/structured-clone/esm/serialize.js +91 -0
  431. package/dist/node_modules/@ungap/structured-clone/esm/types.js +2 -0
  432. package/dist/node_modules/@xyflow/react/dist/esm/index.js +3280 -0
  433. package/dist/node_modules/@xyflow/system/dist/esm/index.js +1839 -0
  434. package/dist/node_modules/ai/dist/index.js +1083 -0
  435. package/dist/node_modules/bail/index.js +4 -0
  436. package/dist/node_modules/character-entities-html4/index.js +255 -0
  437. package/dist/node_modules/character-entities-legacy/index.js +2 -0
  438. package/dist/node_modules/chevrotain/lib/src/parse/errors_public.js +6 -1
  439. package/dist/node_modules/chevrotain/lib/src/scan/lexer.js +4 -10
  440. package/dist/node_modules/chevrotain/lib/src/scan/lexer_public.js +56 -65
  441. package/dist/node_modules/classcat/index.js +8 -0
  442. package/dist/node_modules/comma-separated-tokens/index.js +5 -1
  443. package/dist/node_modules/d3/src/index.js +5 -0
  444. package/dist/node_modules/d3-drag/src/constant.js +2 -0
  445. package/dist/node_modules/d3-drag/src/drag.js +112 -0
  446. package/dist/node_modules/d3-drag/src/event.js +60 -0
  447. package/dist/node_modules/d3-drag/src/nodrag.js +13 -0
  448. package/dist/node_modules/d3-drag/src/noevent.js +11 -0
  449. package/dist/node_modules/d3-interpolate/src/zoom.js +39 -0
  450. package/dist/node_modules/d3-selection/src/pointer.js +16 -0
  451. package/dist/node_modules/d3-selection/src/sourceEvent.js +6 -0
  452. package/dist/node_modules/d3-zoom/src/constant.js +2 -0
  453. package/dist/node_modules/d3-zoom/src/event.js +26 -0
  454. package/dist/node_modules/d3-zoom/src/index.js +1 -1
  455. package/dist/node_modules/d3-zoom/src/noevent.js +7 -0
  456. package/dist/node_modules/d3-zoom/src/zoom.js +214 -1
  457. package/dist/node_modules/decode-named-character-reference/index.dom.js +8 -0
  458. package/dist/node_modules/entities/dist/esm/decode-codepoint.js +35 -0
  459. package/dist/node_modules/entities/dist/esm/decode.js +129 -0
  460. package/dist/node_modules/entities/dist/esm/generated/decode-data-html.js +2 -0
  461. package/dist/node_modules/estree-util-is-identifier-name/lib/index.js +5 -0
  462. package/dist/node_modules/extend/index.js +37 -0
  463. package/dist/node_modules/hast-util-from-parse5/lib/index.js +121 -0
  464. package/dist/node_modules/hast-util-raw/lib/index.js +204 -0
  465. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/doctype.js +34 -0
  466. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/error-codes.js +5 -0
  467. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/foreign-content.js +150 -0
  468. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/html.js +267 -0
  469. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/token.js +9 -0
  470. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/common/unicode.js +65 -0
  471. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/index.js +8 -0
  472. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/formatting-element-list.js +69 -0
  473. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/index.js +1936 -0
  474. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/parser/open-element-stack.js +239 -0
  475. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/serializer/index.js +22 -0
  476. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/index.js +1451 -0
  477. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tokenizer/preprocessor.js +75 -0
  478. package/dist/node_modules/hast-util-raw/node_modules/parse5/dist/tree-adapters/default.js +155 -0
  479. package/dist/node_modules/hast-util-sanitize/lib/index.js +159 -0
  480. package/dist/node_modules/hast-util-sanitize/lib/schema.js +73 -0
  481. package/dist/node_modules/hast-util-to-html/lib/handle/comment.js +9 -0
  482. package/dist/node_modules/hast-util-to-html/lib/handle/doctype.js +4 -0
  483. package/dist/node_modules/hast-util-to-html/lib/handle/element.js +47 -0
  484. package/dist/node_modules/hast-util-to-html/lib/handle/index.js +27 -0
  485. package/dist/node_modules/hast-util-to-html/lib/handle/raw.js +5 -0
  486. package/dist/node_modules/hast-util-to-html/lib/handle/root.js +4 -0
  487. package/dist/node_modules/hast-util-to-html/lib/handle/text.js +6 -0
  488. package/dist/node_modules/hast-util-to-html/lib/index.js +46 -0
  489. package/dist/node_modules/hast-util-to-html/lib/omission/closing.js +84 -0
  490. package/dist/node_modules/hast-util-to-html/lib/omission/omission.js +8 -0
  491. package/dist/node_modules/hast-util-to-html/lib/omission/opening.js +37 -0
  492. package/dist/node_modules/hast-util-to-html/lib/omission/util/siblings.js +12 -0
  493. package/dist/node_modules/hast-util-to-jsx-runtime/lib/index.js +251 -0
  494. package/dist/node_modules/hast-util-to-parse5/lib/index.js +113 -0
  495. package/dist/node_modules/hast-util-whitespace/lib/index.js +8 -0
  496. package/dist/node_modules/html-url-attributes/lib/index.js +34 -0
  497. package/dist/node_modules/html-void-elements/index.js +23 -0
  498. package/dist/node_modules/inline-style-parser/cjs/index.js +88 -0
  499. package/dist/node_modules/mdast-util-from-markdown/lib/index.js +555 -0
  500. package/dist/node_modules/mdast-util-to-hast/lib/footer.js +101 -0
  501. package/dist/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js +10 -0
  502. package/dist/node_modules/mdast-util-to-hast/lib/handlers/break.js +13 -0
  503. package/dist/node_modules/mdast-util-to-hast/lib/handlers/code.js +20 -0
  504. package/dist/node_modules/mdast-util-to-hast/lib/handlers/delete.js +10 -0
  505. package/dist/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js +10 -0
  506. package/dist/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js +28 -0
  507. package/dist/node_modules/mdast-util-to-hast/lib/handlers/heading.js +10 -0
  508. package/dist/node_modules/mdast-util-to-hast/lib/handlers/html.js +10 -0
  509. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js +19 -0
  510. package/dist/node_modules/mdast-util-to-hast/lib/handlers/image.js +13 -0
  511. package/dist/node_modules/mdast-util-to-hast/lib/handlers/index.js +54 -0
  512. package/dist/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js +15 -0
  513. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js +16 -0
  514. package/dist/node_modules/mdast-util-to-hast/lib/handlers/link.js +13 -0
  515. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list-item.js +57 -0
  516. package/dist/node_modules/mdast-util-to-hast/lib/handlers/list.js +18 -0
  517. package/dist/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js +10 -0
  518. package/dist/node_modules/mdast-util-to-hast/lib/handlers/root.js +8 -0
  519. package/dist/node_modules/mdast-util-to-hast/lib/handlers/strong.js +10 -0
  520. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js +10 -0
  521. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table-row.js +22 -0
  522. package/dist/node_modules/mdast-util-to-hast/lib/handlers/table.js +33 -0
  523. package/dist/node_modules/mdast-util-to-hast/lib/handlers/text.js +9 -0
  524. package/dist/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js +10 -0
  525. package/dist/node_modules/mdast-util-to-hast/lib/index.js +17 -0
  526. package/dist/node_modules/mdast-util-to-hast/lib/revert.js +18 -0
  527. package/dist/node_modules/mdast-util-to-hast/lib/state.js +106 -0
  528. package/dist/node_modules/micromark/lib/constructs.js +79 -0
  529. package/dist/node_modules/micromark/lib/create-tokenizer.js +175 -0
  530. package/dist/node_modules/micromark/lib/initialize/content.js +32 -0
  531. package/dist/node_modules/micromark/lib/initialize/document.js +101 -0
  532. package/dist/node_modules/micromark/lib/initialize/flow.js +23 -0
  533. package/dist/node_modules/micromark/lib/initialize/text.js +84 -0
  534. package/dist/node_modules/micromark/lib/parse.js +27 -0
  535. package/dist/node_modules/micromark/lib/postprocess.js +6 -0
  536. package/dist/node_modules/micromark/lib/preprocess.js +30 -0
  537. package/dist/node_modules/micromark-core-commonmark/lib/attention.js +112 -0
  538. package/dist/node_modules/micromark-core-commonmark/lib/autolink.js +41 -0
  539. package/dist/node_modules/micromark-core-commonmark/lib/block-quote.js +36 -0
  540. package/dist/node_modules/micromark-core-commonmark/lib/character-escape.js +15 -0
  541. package/dist/node_modules/micromark-core-commonmark/lib/character-reference.js +27 -0
  542. package/dist/node_modules/micromark-core-commonmark/lib/code-fenced.js +88 -0
  543. package/dist/node_modules/micromark-core-commonmark/lib/code-indented.js +42 -0
  544. package/dist/node_modules/micromark-core-commonmark/lib/code-text.js +41 -0
  545. package/dist/node_modules/micromark-core-commonmark/lib/content.js +46 -0
  546. package/dist/node_modules/micromark-core-commonmark/lib/definition.js +59 -0
  547. package/dist/node_modules/micromark-core-commonmark/lib/hard-break-escape.js +15 -0
  548. package/dist/node_modules/micromark-core-commonmark/lib/heading-atx.js +65 -0
  549. package/dist/node_modules/micromark-core-commonmark/lib/html-flow.js +140 -0
  550. package/dist/node_modules/micromark-core-commonmark/lib/html-text.js +98 -0
  551. package/dist/node_modules/micromark-core-commonmark/lib/label-end.js +157 -0
  552. package/dist/node_modules/micromark-core-commonmark/lib/label-start-image.js +21 -0
  553. package/dist/node_modules/micromark-core-commonmark/lib/label-start-link.js +18 -0
  554. package/dist/node_modules/micromark-core-commonmark/lib/line-ending.js +12 -0
  555. package/dist/node_modules/micromark-core-commonmark/lib/list.js +77 -0
  556. package/dist/node_modules/micromark-core-commonmark/lib/setext-underline.js +57 -0
  557. package/dist/node_modules/micromark-core-commonmark/lib/thematic-break.js +23 -0
  558. package/dist/node_modules/micromark-factory-destination/index.js +24 -0
  559. package/dist/node_modules/micromark-factory-label/index.js +18 -0
  560. package/dist/node_modules/micromark-factory-title/index.js +22 -0
  561. package/dist/node_modules/micromark-factory-whitespace/index.js +10 -0
  562. package/dist/node_modules/micromark-util-character/index.js +6 -5
  563. package/dist/node_modules/micromark-util-chunked/index.js +4 -1
  564. package/dist/node_modules/micromark-util-decode-numeric-character-reference/index.js +5 -0
  565. package/dist/node_modules/micromark-util-decode-string/index.js +15 -0
  566. package/dist/node_modules/micromark-util-html-tag-name/index.js +7 -0
  567. package/dist/node_modules/micromark-util-sanitize-uri/index.js +16 -0
  568. package/dist/node_modules/micromark-util-subtokenize/index.js +33 -0
  569. package/dist/node_modules/micromark-util-subtokenize/lib/splice-buffer.js +55 -0
  570. package/dist/node_modules/motion/dist/es/react.js +3 -0
  571. package/dist/node_modules/nanoid/index.browser.js +7 -0
  572. package/dist/node_modules/nanoid/url-alphabet/index.js +2 -0
  573. package/dist/node_modules/property-information/index.js +1 -0
  574. package/dist/node_modules/property-information/lib/hast-to-react.js +20 -0
  575. package/dist/node_modules/rehype-harden/dist/index.js +168 -0
  576. package/dist/node_modules/rehype-raw/lib/index.js +10 -0
  577. package/dist/node_modules/rehype-sanitize/lib/index.js +7 -0
  578. package/dist/node_modules/remark-parse/lib/index.js +14 -0
  579. package/dist/node_modules/remark-rehype/lib/index.js +16 -0
  580. package/dist/node_modules/remend/dist/index.js +459 -0
  581. package/dist/node_modules/shiki/dist/bundle-full.js +11 -0
  582. package/dist/node_modules/shiki/dist/langs.js +1278 -0
  583. package/dist/node_modules/shiki/dist/themes.js +393 -0
  584. package/dist/node_modules/shiki/dist/wasm.js +2 -0
  585. package/dist/node_modules/space-separated-tokens/index.js +4 -1
  586. package/dist/node_modules/streamdown/dist/chunk-RLXIAIE6.js +2189 -0
  587. package/dist/node_modules/streamdown/dist/highlighted-body-B3W2YXNL.js +33 -0
  588. package/dist/node_modules/streamdown/dist/index.js +2 -0
  589. package/dist/node_modules/streamdown/dist/mermaid-3ZIDBTTL.js +3 -0
  590. package/dist/node_modules/streamdown/node_modules/marked/lib/marked.esm.js +1421 -0
  591. package/dist/node_modules/stringify-entities/lib/constant/dangerous.js +11 -0
  592. package/dist/node_modules/stringify-entities/lib/core.js +21 -0
  593. package/dist/node_modules/stringify-entities/lib/index.js +6 -0
  594. package/dist/node_modules/stringify-entities/lib/util/format-smart.js +12 -0
  595. package/dist/node_modules/stringify-entities/lib/util/to-decimal.js +6 -0
  596. package/dist/node_modules/stringify-entities/lib/util/to-hexadecimal.js +6 -0
  597. package/dist/node_modules/stringify-entities/lib/util/to-named.js +15 -0
  598. package/dist/node_modules/style-to-js/cjs/index.js +17 -0
  599. package/dist/node_modules/style-to-js/cjs/utilities.js +16 -0
  600. package/dist/node_modules/style-to-object/cjs/index.js +21 -0
  601. package/dist/node_modules/trim-lines/index.js +19 -0
  602. package/dist/node_modules/trough/lib/index.js +48 -0
  603. package/dist/node_modules/unified/lib/callable-instance.js +7 -0
  604. package/dist/node_modules/unified/lib/index.js +160 -0
  605. package/dist/node_modules/unified/node_modules/is-plain-obj/index.js +6 -0
  606. package/dist/node_modules/unist-util-position/lib/index.js +20 -0
  607. package/dist/node_modules/unist-util-stringify-position/lib/index.js +13 -0
  608. package/dist/node_modules/vfile/lib/index.js +87 -0
  609. package/dist/node_modules/vfile/lib/minpath.browser.js +97 -0
  610. package/dist/node_modules/vfile/lib/minproc.browser.js +5 -0
  611. package/dist/node_modules/vfile/lib/minurl.browser.js +29 -0
  612. package/dist/node_modules/vfile/lib/minurl.shared.js +4 -0
  613. package/dist/node_modules/vfile-location/lib/index.js +41 -0
  614. package/dist/node_modules/vfile-message/lib/index.js +22 -0
  615. package/dist/node_modules/zod/v3/ZodError.js +79 -0
  616. package/dist/node_modules/zod/v3/errors.js +6 -0
  617. package/dist/node_modules/zod/v3/helpers/errorUtil.js +5 -0
  618. package/dist/node_modules/zod/v3/helpers/parseUtil.js +90 -0
  619. package/dist/node_modules/zod/v3/helpers/util.js +72 -0
  620. package/dist/node_modules/zod/v3/locales/en.js +58 -0
  621. package/dist/node_modules/zod/v3/types.js +2425 -0
  622. package/dist/node_modules/zod/v4/classic/errors.js +21 -0
  623. package/dist/node_modules/zod/v4/classic/iso.js +29 -0
  624. package/dist/node_modules/zod/v4/classic/parse.js +4 -0
  625. package/dist/node_modules/zod/v4/classic/schemas.js +392 -0
  626. package/dist/node_modules/zod/v4/core/api.js +532 -0
  627. package/dist/node_modules/zod/v4/core/checks.js +283 -0
  628. package/dist/node_modules/zod/v4/core/core.js +44 -0
  629. package/dist/node_modules/zod/v4/core/doc.js +21 -0
  630. package/dist/node_modules/zod/v4/core/errors.js +40 -0
  631. package/dist/node_modules/zod/v4/core/json-schema-processors.js +305 -0
  632. package/dist/node_modules/zod/v4/core/parse.js +66 -0
  633. package/dist/node_modules/zod/v4/core/regexes.js +28 -0
  634. package/dist/node_modules/zod/v4/core/registries.js +38 -0
  635. package/dist/node_modules/zod/v4/core/schemas.js +863 -0
  636. package/dist/node_modules/zod/v4/core/to-json-schema.js +220 -0
  637. package/dist/node_modules/zod/v4/core/util.js +267 -0
  638. package/dist/node_modules/zod/v4/core/versions.js +6 -0
  639. package/dist/node_modules/zwitch/index.js +14 -0
  640. package/dist/pages/DashboardPage.js +58 -0
  641. package/dist/pages/DebugWorkflowDetailsPage.js +121 -0
  642. package/dist/pages/DebugWorkflowsPage.js +130 -0
  643. package/dist/pages/EmbedWorkbenchPage.js +73 -0
  644. package/dist/pages/PipelineDebugPage.js +114 -0
  645. package/dist/pages/WorkbenchPage.js +67 -0
  646. package/dist/pages/WorkspacePage.js +1 -1
  647. package/dist/providers/ComponentOverridesProvider.js +12 -0
  648. package/dist/routing/LocalRouter.js +3 -0
  649. package/package.json +3 -3
@@ -0,0 +1,863 @@
1
+ import { $ZodAsyncError, $ZodEncodeError, $constructor, config, globalConfig } from "./core.js";
2
+ import { aborted, allowsEval, cached, cleanRegex, clone, defineLazy, esc, escapeRegex, finalizeIssue, getEnumValues, isObject, isPlainObject, issue, optionalKeys, prefixIssues, propertyKeyTypes } from "./util.js";
3
+ import { safeParse, safeParseAsync } from "./parse.js";
4
+ import { _null, base64, base64url, boolean, cidrv4, cidrv6, cuid, cuid2, date, datetime, duration, e164, email, emoji, guid, ipv4, ipv6, ksuid, nanoid, number, string, time, ulid, uuid, xid } from "./regexes.js";
5
+ import { $ZodCheck, $ZodCheckNumberFormat, $ZodCheckStringFormat } from "./checks.js";
6
+ import { Doc } from "./doc.js";
7
+ import { version } from "./versions.js";
8
+ const $ZodType = /* @__PURE__ */ $constructor("$ZodType", (V, H) => {
9
+ var U;
10
+ V ??= {}, V._zod.def = H, V._zod.bag = V._zod.bag || {}, V._zod.version = version;
11
+ let W = [...V._zod.def.checks ?? []];
12
+ V._zod.traits.has("$ZodCheck") && W.unshift(V);
13
+ for (let f of W) for (let H of f._zod.onattach) H(V);
14
+ if (W.length === 0) (U = V._zod).deferred ?? (U.deferred = []), V._zod.deferred?.push(() => {
15
+ V._zod.run = V._zod.parse;
16
+ });
17
+ else {
18
+ let H = (V, H, U) => {
19
+ let W = aborted(V), K;
20
+ for (let q of H) {
21
+ if (q._zod.def.when) {
22
+ if (!q._zod.def.when(V)) continue;
23
+ } else if (W) continue;
24
+ let H = V.issues.length, J = q._zod.check(V);
25
+ if (J instanceof Promise && U?.async === !1) throw new $ZodAsyncError();
26
+ if (K || J instanceof Promise) K = (K ?? Promise.resolve()).then(async () => {
27
+ await J, V.issues.length !== H && (W ||= aborted(V, H));
28
+ });
29
+ else {
30
+ if (V.issues.length === H) continue;
31
+ W ||= aborted(V, H);
32
+ }
33
+ }
34
+ return K ? K.then(() => V) : V;
35
+ }, U = (U, K, q) => {
36
+ if (aborted(U)) return U.aborted = !0, U;
37
+ let J = H(K, W, q);
38
+ if (J instanceof Promise) {
39
+ if (q.async === !1) throw new $ZodAsyncError();
40
+ return J.then((f) => V._zod.parse(f, q));
41
+ }
42
+ return V._zod.parse(J, q);
43
+ };
44
+ V._zod.run = (G, K) => {
45
+ if (K.skipChecks) return V._zod.parse(G, K);
46
+ if (K.direction === "backward") {
47
+ let f = V._zod.parse({
48
+ value: G.value,
49
+ issues: []
50
+ }, {
51
+ ...K,
52
+ skipChecks: !0
53
+ });
54
+ return f instanceof Promise ? f.then((f) => U(f, G, K)) : U(f, G, K);
55
+ }
56
+ let q = V._zod.parse(G, K);
57
+ if (q instanceof Promise) {
58
+ if (K.async === !1) throw new $ZodAsyncError();
59
+ return q.then((f) => H(f, W, K));
60
+ }
61
+ return H(q, W, K);
62
+ };
63
+ }
64
+ defineLazy(V, "~standard", () => ({
65
+ validate: (f) => {
66
+ try {
67
+ let H = safeParse(V, f);
68
+ return H.success ? { value: H.data } : { issues: H.error?.issues };
69
+ } catch {
70
+ return safeParseAsync(V, f).then((f) => f.success ? { value: f.data } : { issues: f.error?.issues });
71
+ }
72
+ },
73
+ vendor: "zod",
74
+ version: 1
75
+ }));
76
+ }), $ZodString = /* @__PURE__ */ $constructor("$ZodString", (f, V) => {
77
+ $ZodType.init(f, V), f._zod.pattern = [...f?._zod.bag?.patterns ?? []].pop() ?? string(f._zod.bag), f._zod.parse = (H, U) => {
78
+ if (V.coerce) try {
79
+ H.value = String(H.value);
80
+ } catch {}
81
+ return typeof H.value == "string" || H.issues.push({
82
+ expected: "string",
83
+ code: "invalid_type",
84
+ input: H.value,
85
+ inst: f
86
+ }), H;
87
+ };
88
+ }), $ZodStringFormat = /* @__PURE__ */ $constructor("$ZodStringFormat", (f, V) => {
89
+ $ZodCheckStringFormat.init(f, V), $ZodString.init(f, V);
90
+ }), $ZodGUID = /* @__PURE__ */ $constructor("$ZodGUID", (f, V) => {
91
+ V.pattern ??= guid, $ZodStringFormat.init(f, V);
92
+ }), $ZodUUID = /* @__PURE__ */ $constructor("$ZodUUID", (f, V) => {
93
+ if (V.version) {
94
+ let f = {
95
+ v1: 1,
96
+ v2: 2,
97
+ v3: 3,
98
+ v4: 4,
99
+ v5: 5,
100
+ v6: 6,
101
+ v7: 7,
102
+ v8: 8
103
+ }[V.version];
104
+ if (f === void 0) throw Error(`Invalid UUID version: "${V.version}"`);
105
+ V.pattern ??= uuid(f);
106
+ } else V.pattern ??= uuid();
107
+ $ZodStringFormat.init(f, V);
108
+ }), $ZodEmail = /* @__PURE__ */ $constructor("$ZodEmail", (f, V) => {
109
+ V.pattern ??= email, $ZodStringFormat.init(f, V);
110
+ }), $ZodURL = /* @__PURE__ */ $constructor("$ZodURL", (f, V) => {
111
+ $ZodStringFormat.init(f, V), f._zod.check = (H) => {
112
+ try {
113
+ let U = H.value.trim(), W = new URL(U);
114
+ V.hostname && (V.hostname.lastIndex = 0, V.hostname.test(W.hostname) || H.issues.push({
115
+ code: "invalid_format",
116
+ format: "url",
117
+ note: "Invalid hostname",
118
+ pattern: V.hostname.source,
119
+ input: H.value,
120
+ inst: f,
121
+ continue: !V.abort
122
+ })), V.protocol && (V.protocol.lastIndex = 0, V.protocol.test(W.protocol.endsWith(":") ? W.protocol.slice(0, -1) : W.protocol) || H.issues.push({
123
+ code: "invalid_format",
124
+ format: "url",
125
+ note: "Invalid protocol",
126
+ pattern: V.protocol.source,
127
+ input: H.value,
128
+ inst: f,
129
+ continue: !V.abort
130
+ })), V.normalize ? H.value = W.href : H.value = U;
131
+ return;
132
+ } catch {
133
+ H.issues.push({
134
+ code: "invalid_format",
135
+ format: "url",
136
+ input: H.value,
137
+ inst: f,
138
+ continue: !V.abort
139
+ });
140
+ }
141
+ };
142
+ }), $ZodEmoji = /* @__PURE__ */ $constructor("$ZodEmoji", (f, V) => {
143
+ V.pattern ??= emoji(), $ZodStringFormat.init(f, V);
144
+ }), $ZodNanoID = /* @__PURE__ */ $constructor("$ZodNanoID", (f, V) => {
145
+ V.pattern ??= nanoid, $ZodStringFormat.init(f, V);
146
+ }), $ZodCUID = /* @__PURE__ */ $constructor("$ZodCUID", (f, V) => {
147
+ V.pattern ??= cuid, $ZodStringFormat.init(f, V);
148
+ }), $ZodCUID2 = /* @__PURE__ */ $constructor("$ZodCUID2", (f, V) => {
149
+ V.pattern ??= cuid2, $ZodStringFormat.init(f, V);
150
+ }), $ZodULID = /* @__PURE__ */ $constructor("$ZodULID", (f, V) => {
151
+ V.pattern ??= ulid, $ZodStringFormat.init(f, V);
152
+ }), $ZodXID = /* @__PURE__ */ $constructor("$ZodXID", (f, V) => {
153
+ V.pattern ??= xid, $ZodStringFormat.init(f, V);
154
+ }), $ZodKSUID = /* @__PURE__ */ $constructor("$ZodKSUID", (f, V) => {
155
+ V.pattern ??= ksuid, $ZodStringFormat.init(f, V);
156
+ }), $ZodISODateTime = /* @__PURE__ */ $constructor("$ZodISODateTime", (f, V) => {
157
+ V.pattern ??= datetime(V), $ZodStringFormat.init(f, V);
158
+ }), $ZodISODate = /* @__PURE__ */ $constructor("$ZodISODate", (f, V) => {
159
+ V.pattern ??= date, $ZodStringFormat.init(f, V);
160
+ }), $ZodISOTime = /* @__PURE__ */ $constructor("$ZodISOTime", (f, V) => {
161
+ V.pattern ??= time(V), $ZodStringFormat.init(f, V);
162
+ }), $ZodISODuration = /* @__PURE__ */ $constructor("$ZodISODuration", (f, V) => {
163
+ V.pattern ??= duration, $ZodStringFormat.init(f, V);
164
+ }), $ZodIPv4 = /* @__PURE__ */ $constructor("$ZodIPv4", (f, V) => {
165
+ V.pattern ??= ipv4, $ZodStringFormat.init(f, V), f._zod.bag.format = "ipv4";
166
+ }), $ZodIPv6 = /* @__PURE__ */ $constructor("$ZodIPv6", (f, V) => {
167
+ V.pattern ??= ipv6, $ZodStringFormat.init(f, V), f._zod.bag.format = "ipv6", f._zod.check = (H) => {
168
+ try {
169
+ new URL(`http://[${H.value}]`);
170
+ } catch {
171
+ H.issues.push({
172
+ code: "invalid_format",
173
+ format: "ipv6",
174
+ input: H.value,
175
+ inst: f,
176
+ continue: !V.abort
177
+ });
178
+ }
179
+ };
180
+ }), $ZodCIDRv4 = /* @__PURE__ */ $constructor("$ZodCIDRv4", (f, V) => {
181
+ V.pattern ??= cidrv4, $ZodStringFormat.init(f, V);
182
+ }), $ZodCIDRv6 = /* @__PURE__ */ $constructor("$ZodCIDRv6", (f, V) => {
183
+ V.pattern ??= cidrv6, $ZodStringFormat.init(f, V), f._zod.check = (H) => {
184
+ let U = H.value.split("/");
185
+ try {
186
+ if (U.length !== 2) throw Error();
187
+ let [f, V] = U;
188
+ if (!V) throw Error();
189
+ let H = Number(V);
190
+ if (`${H}` !== V || H < 0 || H > 128) throw Error();
191
+ new URL(`http://[${f}]`);
192
+ } catch {
193
+ H.issues.push({
194
+ code: "invalid_format",
195
+ format: "cidrv6",
196
+ input: H.value,
197
+ inst: f,
198
+ continue: !V.abort
199
+ });
200
+ }
201
+ };
202
+ });
203
+ function isValidBase64(f) {
204
+ if (f === "") return !0;
205
+ if (f.length % 4 != 0) return !1;
206
+ try {
207
+ return atob(f), !0;
208
+ } catch {
209
+ return !1;
210
+ }
211
+ }
212
+ const $ZodBase64 = /* @__PURE__ */ $constructor("$ZodBase64", (f, V) => {
213
+ V.pattern ??= base64, $ZodStringFormat.init(f, V), f._zod.bag.contentEncoding = "base64", f._zod.check = (H) => {
214
+ isValidBase64(H.value) || H.issues.push({
215
+ code: "invalid_format",
216
+ format: "base64",
217
+ input: H.value,
218
+ inst: f,
219
+ continue: !V.abort
220
+ });
221
+ };
222
+ });
223
+ function isValidBase64URL(f) {
224
+ if (!base64url.test(f)) return !1;
225
+ let V = f.replace(/[-_]/g, (f) => f === "-" ? "+" : "/");
226
+ return isValidBase64(V.padEnd(Math.ceil(V.length / 4) * 4, "="));
227
+ }
228
+ const $ZodBase64URL = /* @__PURE__ */ $constructor("$ZodBase64URL", (f, V) => {
229
+ V.pattern ??= base64url, $ZodStringFormat.init(f, V), f._zod.bag.contentEncoding = "base64url", f._zod.check = (H) => {
230
+ isValidBase64URL(H.value) || H.issues.push({
231
+ code: "invalid_format",
232
+ format: "base64url",
233
+ input: H.value,
234
+ inst: f,
235
+ continue: !V.abort
236
+ });
237
+ };
238
+ }), $ZodE164 = /* @__PURE__ */ $constructor("$ZodE164", (f, V) => {
239
+ V.pattern ??= e164, $ZodStringFormat.init(f, V);
240
+ });
241
+ function isValidJWT(f, V = null) {
242
+ try {
243
+ let H = f.split(".");
244
+ if (H.length !== 3) return !1;
245
+ let [U] = H;
246
+ if (!U) return !1;
247
+ let W = JSON.parse(atob(U));
248
+ return !("typ" in W && W?.typ !== "JWT" || !W.alg || V && (!("alg" in W) || W.alg !== V));
249
+ } catch {
250
+ return !1;
251
+ }
252
+ }
253
+ const $ZodJWT = /* @__PURE__ */ $constructor("$ZodJWT", (f, V) => {
254
+ $ZodStringFormat.init(f, V), f._zod.check = (H) => {
255
+ isValidJWT(H.value, V.alg) || H.issues.push({
256
+ code: "invalid_format",
257
+ format: "jwt",
258
+ input: H.value,
259
+ inst: f,
260
+ continue: !V.abort
261
+ });
262
+ };
263
+ }), $ZodNumber = /* @__PURE__ */ $constructor("$ZodNumber", (f, V) => {
264
+ $ZodType.init(f, V), f._zod.pattern = f._zod.bag.pattern ?? number, f._zod.parse = (H, U) => {
265
+ if (V.coerce) try {
266
+ H.value = Number(H.value);
267
+ } catch {}
268
+ let W = H.value;
269
+ if (typeof W == "number" && !Number.isNaN(W) && Number.isFinite(W)) return H;
270
+ let G = typeof W == "number" ? Number.isNaN(W) ? "NaN" : Number.isFinite(W) ? void 0 : "Infinity" : void 0;
271
+ return H.issues.push({
272
+ expected: "number",
273
+ code: "invalid_type",
274
+ input: W,
275
+ inst: f,
276
+ ...G ? { received: G } : {}
277
+ }), H;
278
+ };
279
+ }), $ZodNumberFormat = /* @__PURE__ */ $constructor("$ZodNumberFormat", (f, V) => {
280
+ $ZodCheckNumberFormat.init(f, V), $ZodNumber.init(f, V);
281
+ }), $ZodBoolean = /* @__PURE__ */ $constructor("$ZodBoolean", (f, V) => {
282
+ $ZodType.init(f, V), f._zod.pattern = boolean, f._zod.parse = (H, U) => {
283
+ if (V.coerce) try {
284
+ H.value = !!H.value;
285
+ } catch {}
286
+ let W = H.value;
287
+ return typeof W == "boolean" || H.issues.push({
288
+ expected: "boolean",
289
+ code: "invalid_type",
290
+ input: W,
291
+ inst: f
292
+ }), H;
293
+ };
294
+ }), $ZodNull = /* @__PURE__ */ $constructor("$ZodNull", (f, V) => {
295
+ $ZodType.init(f, V), f._zod.pattern = _null, f._zod.values = new Set([null]), f._zod.parse = (V, H) => {
296
+ let U = V.value;
297
+ return U === null || V.issues.push({
298
+ expected: "null",
299
+ code: "invalid_type",
300
+ input: U,
301
+ inst: f
302
+ }), V;
303
+ };
304
+ }), $ZodUnknown = /* @__PURE__ */ $constructor("$ZodUnknown", (f, V) => {
305
+ $ZodType.init(f, V), f._zod.parse = (f) => f;
306
+ }), $ZodNever = /* @__PURE__ */ $constructor("$ZodNever", (f, V) => {
307
+ $ZodType.init(f, V), f._zod.parse = (V, H) => (V.issues.push({
308
+ expected: "never",
309
+ code: "invalid_type",
310
+ input: V.value,
311
+ inst: f
312
+ }), V);
313
+ });
314
+ function handleArrayResult(f, V, H) {
315
+ f.issues.length && V.issues.push(...prefixIssues(H, f.issues)), V.value[H] = f.value;
316
+ }
317
+ const $ZodArray = /* @__PURE__ */ $constructor("$ZodArray", (f, V) => {
318
+ $ZodType.init(f, V), f._zod.parse = (H, U) => {
319
+ let W = H.value;
320
+ if (!Array.isArray(W)) return H.issues.push({
321
+ expected: "array",
322
+ code: "invalid_type",
323
+ input: W,
324
+ inst: f
325
+ }), H;
326
+ H.value = Array(W.length);
327
+ let G = [];
328
+ for (let f = 0; f < W.length; f++) {
329
+ let K = W[f], q = V.element._zod.run({
330
+ value: K,
331
+ issues: []
332
+ }, U);
333
+ q instanceof Promise ? G.push(q.then((V) => handleArrayResult(V, H, f))) : handleArrayResult(q, H, f);
334
+ }
335
+ return G.length ? Promise.all(G).then(() => H) : H;
336
+ };
337
+ });
338
+ function handlePropertyResult(f, V, H, U, W) {
339
+ if (f.issues.length) {
340
+ if (W && !(H in U)) return;
341
+ V.issues.push(...prefixIssues(H, f.issues));
342
+ }
343
+ f.value === void 0 ? H in U && (V.value[H] = void 0) : V.value[H] = f.value;
344
+ }
345
+ function normalizeDef(f) {
346
+ let V = Object.keys(f.shape);
347
+ for (let H of V) if (!f.shape?.[H]?._zod?.traits?.has("$ZodType")) throw Error(`Invalid element at key "${H}": expected a Zod schema`);
348
+ let H = optionalKeys(f.shape);
349
+ return {
350
+ ...f,
351
+ keys: V,
352
+ keySet: new Set(V),
353
+ numKeys: V.length,
354
+ optionalKeys: new Set(H)
355
+ };
356
+ }
357
+ function handleCatchall(f, V, H, U, W, G) {
358
+ let K = [], q = W.keySet, J = W.catchall._zod, Y = J.def.type, X = J.optout === "optional";
359
+ for (let W in V) {
360
+ if (q.has(W)) continue;
361
+ if (Y === "never") {
362
+ K.push(W);
363
+ continue;
364
+ }
365
+ let G = J.run({
366
+ value: V[W],
367
+ issues: []
368
+ }, U);
369
+ G instanceof Promise ? f.push(G.then((f) => handlePropertyResult(f, H, W, V, X))) : handlePropertyResult(G, H, W, V, X);
370
+ }
371
+ return K.length && H.issues.push({
372
+ code: "unrecognized_keys",
373
+ keys: K,
374
+ input: V,
375
+ inst: G
376
+ }), f.length ? Promise.all(f).then(() => H) : H;
377
+ }
378
+ const $ZodObject = /* @__PURE__ */ $constructor("$ZodObject", (f, V) => {
379
+ if ($ZodType.init(f, V), !Object.getOwnPropertyDescriptor(V, "shape")?.get) {
380
+ let f = V.shape;
381
+ Object.defineProperty(V, "shape", { get: () => {
382
+ let H = { ...f };
383
+ return Object.defineProperty(V, "shape", { value: H }), H;
384
+ } });
385
+ }
386
+ let H = cached(() => normalizeDef(V));
387
+ defineLazy(f._zod, "propValues", () => {
388
+ let f = V.shape, H = {};
389
+ for (let V in f) {
390
+ let U = f[V]._zod;
391
+ if (U.values) {
392
+ H[V] ?? (H[V] = /* @__PURE__ */ new Set());
393
+ for (let f of U.values) H[V].add(f);
394
+ }
395
+ }
396
+ return H;
397
+ });
398
+ let U = isObject, W = V.catchall, G;
399
+ f._zod.parse = (V, K) => {
400
+ G ??= H.value;
401
+ let q = V.value;
402
+ if (!U(q)) return V.issues.push({
403
+ expected: "object",
404
+ code: "invalid_type",
405
+ input: q,
406
+ inst: f
407
+ }), V;
408
+ V.value = {};
409
+ let J = [], Y = G.shape;
410
+ for (let f of G.keys) {
411
+ let H = Y[f], U = H._zod.optout === "optional", W = H._zod.run({
412
+ value: q[f],
413
+ issues: []
414
+ }, K);
415
+ W instanceof Promise ? J.push(W.then((H) => handlePropertyResult(H, V, f, q, U))) : handlePropertyResult(W, V, f, q, U);
416
+ }
417
+ return W ? handleCatchall(J, q, V, K, H.value, f) : J.length ? Promise.all(J).then(() => V) : V;
418
+ };
419
+ }), $ZodObjectJIT = /* @__PURE__ */ $constructor("$ZodObjectJIT", (f, V) => {
420
+ $ZodObject.init(f, V);
421
+ let H = f._zod.parse, U = cached(() => normalizeDef(V)), G = (f) => {
422
+ let V = new Doc([
423
+ "shape",
424
+ "payload",
425
+ "ctx"
426
+ ]), H = U.value, W = (f) => {
427
+ let V = esc(f);
428
+ return `shape[${V}]._zod.run({ value: input[${V}], issues: [] }, ctx)`;
429
+ };
430
+ V.write("const input = payload.value;");
431
+ let G = Object.create(null), K = 0;
432
+ for (let f of H.keys) G[f] = `key_${K++}`;
433
+ V.write("const newResult = {};");
434
+ for (let U of H.keys) {
435
+ let H = G[U], K = esc(U), q = f[U]?._zod?.optout === "optional";
436
+ V.write(`const ${H} = ${W(U)};`), q ? V.write(`
437
+ if (${H}.issues.length) {
438
+ if (${K} in input) {
439
+ payload.issues = payload.issues.concat(${H}.issues.map(iss => ({
440
+ ...iss,
441
+ path: iss.path ? [${K}, ...iss.path] : [${K}]
442
+ })));
443
+ }
444
+ }
445
+
446
+ if (${H}.value === undefined) {
447
+ if (${K} in input) {
448
+ newResult[${K}] = undefined;
449
+ }
450
+ } else {
451
+ newResult[${K}] = ${H}.value;
452
+ }
453
+
454
+ `) : V.write(`
455
+ if (${H}.issues.length) {
456
+ payload.issues = payload.issues.concat(${H}.issues.map(iss => ({
457
+ ...iss,
458
+ path: iss.path ? [${K}, ...iss.path] : [${K}]
459
+ })));
460
+ }
461
+
462
+ if (${H}.value === undefined) {
463
+ if (${K} in input) {
464
+ newResult[${K}] = undefined;
465
+ }
466
+ } else {
467
+ newResult[${K}] = ${H}.value;
468
+ }
469
+
470
+ `);
471
+ }
472
+ V.write("payload.value = newResult;"), V.write("return payload;");
473
+ let q = V.compile();
474
+ return (V, H) => q(f, V, H);
475
+ }, J, Y = isObject, X = !globalConfig.jitless, Z = X && allowsEval.value, Q = V.catchall, $;
476
+ f._zod.parse = (W, K) => {
477
+ $ ??= U.value;
478
+ let q = W.value;
479
+ return Y(q) ? X && Z && K?.async === !1 && K.jitless !== !0 ? (J ||= G(V.shape), W = J(W, K), Q ? handleCatchall([], q, W, K, $, f) : W) : H(W, K) : (W.issues.push({
480
+ expected: "object",
481
+ code: "invalid_type",
482
+ input: q,
483
+ inst: f
484
+ }), W);
485
+ };
486
+ });
487
+ function handleUnionResults(f, V, H, W) {
488
+ for (let H of f) if (H.issues.length === 0) return V.value = H.value, V;
489
+ let K = f.filter((f) => !aborted(f));
490
+ return K.length === 1 ? (V.value = K[0].value, K[0]) : (V.issues.push({
491
+ code: "invalid_union",
492
+ input: V.value,
493
+ inst: H,
494
+ errors: f.map((f) => f.issues.map((f) => finalizeIssue(f, W, config())))
495
+ }), V);
496
+ }
497
+ const $ZodUnion = /* @__PURE__ */ $constructor("$ZodUnion", (f, V) => {
498
+ $ZodType.init(f, V), defineLazy(f._zod, "optin", () => V.options.some((f) => f._zod.optin === "optional") ? "optional" : void 0), defineLazy(f._zod, "optout", () => V.options.some((f) => f._zod.optout === "optional") ? "optional" : void 0), defineLazy(f._zod, "values", () => {
499
+ if (V.options.every((f) => f._zod.values)) return new Set(V.options.flatMap((f) => Array.from(f._zod.values)));
500
+ }), defineLazy(f._zod, "pattern", () => {
501
+ if (V.options.every((f) => f._zod.pattern)) {
502
+ let f = V.options.map((f) => f._zod.pattern);
503
+ return /* @__PURE__ */ RegExp(`^(${f.map((f) => cleanRegex(f.source)).join("|")})$`);
504
+ }
505
+ });
506
+ let H = V.options.length === 1, U = V.options[0]._zod.run;
507
+ f._zod.parse = (W, G) => {
508
+ if (H) return U(W, G);
509
+ let K = !1, q = [];
510
+ for (let f of V.options) {
511
+ let V = f._zod.run({
512
+ value: W.value,
513
+ issues: []
514
+ }, G);
515
+ if (V instanceof Promise) q.push(V), K = !0;
516
+ else {
517
+ if (V.issues.length === 0) return V;
518
+ q.push(V);
519
+ }
520
+ }
521
+ return K ? Promise.all(q).then((V) => handleUnionResults(V, W, f, G)) : handleUnionResults(q, W, f, G);
522
+ };
523
+ }), $ZodDiscriminatedUnion = /* @__PURE__ */ $constructor("$ZodDiscriminatedUnion", (f, V) => {
524
+ V.inclusive = !1, $ZodUnion.init(f, V);
525
+ let H = f._zod.parse;
526
+ defineLazy(f._zod, "propValues", () => {
527
+ let f = {};
528
+ for (let H of V.options) {
529
+ let U = H._zod.propValues;
530
+ if (!U || Object.keys(U).length === 0) throw Error(`Invalid discriminated union option at index "${V.options.indexOf(H)}"`);
531
+ for (let [V, H] of Object.entries(U)) {
532
+ f[V] || (f[V] = /* @__PURE__ */ new Set());
533
+ for (let U of H) f[V].add(U);
534
+ }
535
+ }
536
+ return f;
537
+ });
538
+ let U = cached(() => {
539
+ let f = V.options, H = /* @__PURE__ */ new Map();
540
+ for (let U of f) {
541
+ let f = U._zod.propValues?.[V.discriminator];
542
+ if (!f || f.size === 0) throw Error(`Invalid discriminated union option at index "${V.options.indexOf(U)}"`);
543
+ for (let V of f) {
544
+ if (H.has(V)) throw Error(`Duplicate discriminator value "${String(V)}"`);
545
+ H.set(V, U);
546
+ }
547
+ }
548
+ return H;
549
+ });
550
+ f._zod.parse = (W, G) => {
551
+ let K = W.value;
552
+ if (!isObject(K)) return W.issues.push({
553
+ code: "invalid_type",
554
+ expected: "object",
555
+ input: K,
556
+ inst: f
557
+ }), W;
558
+ let q = U.value.get(K?.[V.discriminator]);
559
+ return q ? q._zod.run(W, G) : V.unionFallback ? H(W, G) : (W.issues.push({
560
+ code: "invalid_union",
561
+ errors: [],
562
+ note: "No matching discriminator",
563
+ discriminator: V.discriminator,
564
+ input: K,
565
+ path: [V.discriminator],
566
+ inst: f
567
+ }), W);
568
+ };
569
+ }), $ZodIntersection = /* @__PURE__ */ $constructor("$ZodIntersection", (f, V) => {
570
+ $ZodType.init(f, V), f._zod.parse = (f, H) => {
571
+ let U = f.value, W = V.left._zod.run({
572
+ value: U,
573
+ issues: []
574
+ }, H), G = V.right._zod.run({
575
+ value: U,
576
+ issues: []
577
+ }, H);
578
+ return W instanceof Promise || G instanceof Promise ? Promise.all([W, G]).then(([V, H]) => handleIntersectionResults(f, V, H)) : handleIntersectionResults(f, W, G);
579
+ };
580
+ });
581
+ function mergeValues(f, V) {
582
+ if (f === V || f instanceof Date && V instanceof Date && +f == +V) return {
583
+ valid: !0,
584
+ data: f
585
+ };
586
+ if (isPlainObject(f) && isPlainObject(V)) {
587
+ let H = Object.keys(V), U = Object.keys(f).filter((f) => H.indexOf(f) !== -1), W = {
588
+ ...f,
589
+ ...V
590
+ };
591
+ for (let H of U) {
592
+ let U = mergeValues(f[H], V[H]);
593
+ if (!U.valid) return {
594
+ valid: !1,
595
+ mergeErrorPath: [H, ...U.mergeErrorPath]
596
+ };
597
+ W[H] = U.data;
598
+ }
599
+ return {
600
+ valid: !0,
601
+ data: W
602
+ };
603
+ }
604
+ if (Array.isArray(f) && Array.isArray(V)) {
605
+ if (f.length !== V.length) return {
606
+ valid: !1,
607
+ mergeErrorPath: []
608
+ };
609
+ let H = [];
610
+ for (let U = 0; U < f.length; U++) {
611
+ let W = f[U], G = V[U], K = mergeValues(W, G);
612
+ if (!K.valid) return {
613
+ valid: !1,
614
+ mergeErrorPath: [U, ...K.mergeErrorPath]
615
+ };
616
+ H.push(K.data);
617
+ }
618
+ return {
619
+ valid: !0,
620
+ data: H
621
+ };
622
+ }
623
+ return {
624
+ valid: !1,
625
+ mergeErrorPath: []
626
+ };
627
+ }
628
+ function handleIntersectionResults(f, V, H) {
629
+ let U = /* @__PURE__ */ new Map(), W;
630
+ for (let H of V.issues) if (H.code === "unrecognized_keys") {
631
+ W ??= H;
632
+ for (let f of H.keys) U.has(f) || U.set(f, {}), U.get(f).l = !0;
633
+ } else f.issues.push(H);
634
+ for (let V of H.issues) if (V.code === "unrecognized_keys") for (let f of V.keys) U.has(f) || U.set(f, {}), U.get(f).r = !0;
635
+ else f.issues.push(V);
636
+ let K = [...U].filter(([, f]) => f.l && f.r).map(([f]) => f);
637
+ if (K.length && W && f.issues.push({
638
+ ...W,
639
+ keys: K
640
+ }), aborted(f)) return f;
641
+ let q = mergeValues(V.value, H.value);
642
+ if (!q.valid) throw Error(`Unmergable intersection. Error path: ${JSON.stringify(q.mergeErrorPath)}`);
643
+ return f.value = q.data, f;
644
+ }
645
+ const $ZodRecord = /* @__PURE__ */ $constructor("$ZodRecord", (f, V) => {
646
+ $ZodType.init(f, V), f._zod.parse = (H, W) => {
647
+ let G = H.value;
648
+ if (!isPlainObject(G)) return H.issues.push({
649
+ expected: "record",
650
+ code: "invalid_type",
651
+ input: G,
652
+ inst: f
653
+ }), H;
654
+ let K = [], q = V.keyType._zod.values;
655
+ if (q) {
656
+ H.value = {};
657
+ let U = /* @__PURE__ */ new Set();
658
+ for (let f of q) if (typeof f == "string" || typeof f == "number" || typeof f == "symbol") {
659
+ U.add(typeof f == "number" ? f.toString() : f);
660
+ let q = V.valueType._zod.run({
661
+ value: G[f],
662
+ issues: []
663
+ }, W);
664
+ q instanceof Promise ? K.push(q.then((V) => {
665
+ V.issues.length && H.issues.push(...prefixIssues(f, V.issues)), H.value[f] = V.value;
666
+ })) : (q.issues.length && H.issues.push(...prefixIssues(f, q.issues)), H.value[f] = q.value);
667
+ }
668
+ let J;
669
+ for (let f in G) U.has(f) || (J ??= [], J.push(f));
670
+ J && J.length > 0 && H.issues.push({
671
+ code: "unrecognized_keys",
672
+ input: G,
673
+ inst: f,
674
+ keys: J
675
+ });
676
+ } else {
677
+ H.value = {};
678
+ for (let q of Reflect.ownKeys(G)) {
679
+ if (q === "__proto__") continue;
680
+ let J = V.keyType._zod.run({
681
+ value: q,
682
+ issues: []
683
+ }, W);
684
+ if (J instanceof Promise) throw Error("Async schemas not supported in object keys currently");
685
+ if (typeof q == "string" && number.test(q) && J.issues.length) {
686
+ let f = V.keyType._zod.run({
687
+ value: Number(q),
688
+ issues: []
689
+ }, W);
690
+ if (f instanceof Promise) throw Error("Async schemas not supported in object keys currently");
691
+ f.issues.length === 0 && (J = f);
692
+ }
693
+ if (J.issues.length) {
694
+ V.mode === "loose" ? H.value[q] = G[q] : H.issues.push({
695
+ code: "invalid_key",
696
+ origin: "record",
697
+ issues: J.issues.map((f) => finalizeIssue(f, W, config())),
698
+ input: q,
699
+ path: [q],
700
+ inst: f
701
+ });
702
+ continue;
703
+ }
704
+ let Y = V.valueType._zod.run({
705
+ value: G[q],
706
+ issues: []
707
+ }, W);
708
+ Y instanceof Promise ? K.push(Y.then((f) => {
709
+ f.issues.length && H.issues.push(...prefixIssues(q, f.issues)), H.value[J.value] = f.value;
710
+ })) : (Y.issues.length && H.issues.push(...prefixIssues(q, Y.issues)), H.value[J.value] = Y.value);
711
+ }
712
+ }
713
+ return K.length ? Promise.all(K).then(() => H) : H;
714
+ };
715
+ }), $ZodEnum = /* @__PURE__ */ $constructor("$ZodEnum", (f, V) => {
716
+ $ZodType.init(f, V);
717
+ let H = getEnumValues(V.entries), U = new Set(H);
718
+ f._zod.values = U, f._zod.pattern = /* @__PURE__ */ RegExp(`^(${H.filter((f) => propertyKeyTypes.has(typeof f)).map((f) => typeof f == "string" ? escapeRegex(f) : f.toString()).join("|")})$`), f._zod.parse = (V, W) => {
719
+ let G = V.value;
720
+ return U.has(G) || V.issues.push({
721
+ code: "invalid_value",
722
+ values: H,
723
+ input: G,
724
+ inst: f
725
+ }), V;
726
+ };
727
+ }), $ZodLiteral = /* @__PURE__ */ $constructor("$ZodLiteral", (f, V) => {
728
+ if ($ZodType.init(f, V), V.values.length === 0) throw Error("Cannot create literal schema with no valid values");
729
+ let H = new Set(V.values);
730
+ f._zod.values = H, f._zod.pattern = /* @__PURE__ */ RegExp(`^(${V.values.map((f) => typeof f == "string" ? escapeRegex(f) : f ? escapeRegex(f.toString()) : String(f)).join("|")})$`), f._zod.parse = (U, W) => {
731
+ let G = U.value;
732
+ return H.has(G) || U.issues.push({
733
+ code: "invalid_value",
734
+ values: V.values,
735
+ input: G,
736
+ inst: f
737
+ }), U;
738
+ };
739
+ }), $ZodTransform = /* @__PURE__ */ $constructor("$ZodTransform", (H, U) => {
740
+ $ZodType.init(H, U), H._zod.parse = (W, G) => {
741
+ if (G.direction === "backward") throw new $ZodEncodeError(H.constructor.name);
742
+ let K = U.transform(W.value, W);
743
+ if (G.async) return (K instanceof Promise ? K : Promise.resolve(K)).then((f) => (W.value = f, W));
744
+ if (K instanceof Promise) throw new $ZodAsyncError();
745
+ return W.value = K, W;
746
+ };
747
+ });
748
+ function handleOptionalResult(f, V) {
749
+ return f.issues.length && V === void 0 ? {
750
+ issues: [],
751
+ value: void 0
752
+ } : f;
753
+ }
754
+ const $ZodOptional = /* @__PURE__ */ $constructor("$ZodOptional", (f, V) => {
755
+ $ZodType.init(f, V), f._zod.optin = "optional", f._zod.optout = "optional", defineLazy(f._zod, "values", () => V.innerType._zod.values ? new Set([...V.innerType._zod.values, void 0]) : void 0), defineLazy(f._zod, "pattern", () => {
756
+ let f = V.innerType._zod.pattern;
757
+ return f ? /* @__PURE__ */ RegExp(`^(${cleanRegex(f.source)})?$`) : void 0;
758
+ }), f._zod.parse = (f, H) => {
759
+ if (V.innerType._zod.optin === "optional") {
760
+ let U = V.innerType._zod.run(f, H);
761
+ return U instanceof Promise ? U.then((V) => handleOptionalResult(V, f.value)) : handleOptionalResult(U, f.value);
762
+ }
763
+ return f.value === void 0 ? f : V.innerType._zod.run(f, H);
764
+ };
765
+ }), $ZodExactOptional = /* @__PURE__ */ $constructor("$ZodExactOptional", (f, V) => {
766
+ $ZodOptional.init(f, V), defineLazy(f._zod, "values", () => V.innerType._zod.values), defineLazy(f._zod, "pattern", () => V.innerType._zod.pattern), f._zod.parse = (f, H) => V.innerType._zod.run(f, H);
767
+ }), $ZodNullable = /* @__PURE__ */ $constructor("$ZodNullable", (f, V) => {
768
+ $ZodType.init(f, V), defineLazy(f._zod, "optin", () => V.innerType._zod.optin), defineLazy(f._zod, "optout", () => V.innerType._zod.optout), defineLazy(f._zod, "pattern", () => {
769
+ let f = V.innerType._zod.pattern;
770
+ return f ? /* @__PURE__ */ RegExp(`^(${cleanRegex(f.source)}|null)$`) : void 0;
771
+ }), defineLazy(f._zod, "values", () => V.innerType._zod.values ? new Set([...V.innerType._zod.values, null]) : void 0), f._zod.parse = (f, H) => f.value === null ? f : V.innerType._zod.run(f, H);
772
+ }), $ZodDefault = /* @__PURE__ */ $constructor("$ZodDefault", (f, V) => {
773
+ $ZodType.init(f, V), f._zod.optin = "optional", defineLazy(f._zod, "values", () => V.innerType._zod.values), f._zod.parse = (f, H) => {
774
+ if (H.direction === "backward") return V.innerType._zod.run(f, H);
775
+ if (f.value === void 0) return f.value = V.defaultValue, f;
776
+ let U = V.innerType._zod.run(f, H);
777
+ return U instanceof Promise ? U.then((f) => handleDefaultResult(f, V)) : handleDefaultResult(U, V);
778
+ };
779
+ });
780
+ function handleDefaultResult(f, V) {
781
+ return f.value === void 0 && (f.value = V.defaultValue), f;
782
+ }
783
+ const $ZodPrefault = /* @__PURE__ */ $constructor("$ZodPrefault", (f, V) => {
784
+ $ZodType.init(f, V), f._zod.optin = "optional", defineLazy(f._zod, "values", () => V.innerType._zod.values), f._zod.parse = (f, H) => (H.direction === "backward" || f.value === void 0 && (f.value = V.defaultValue), V.innerType._zod.run(f, H));
785
+ }), $ZodNonOptional = /* @__PURE__ */ $constructor("$ZodNonOptional", (f, V) => {
786
+ $ZodType.init(f, V), defineLazy(f._zod, "values", () => {
787
+ let f = V.innerType._zod.values;
788
+ return f ? new Set([...f].filter((f) => f !== void 0)) : void 0;
789
+ }), f._zod.parse = (H, U) => {
790
+ let W = V.innerType._zod.run(H, U);
791
+ return W instanceof Promise ? W.then((V) => handleNonOptionalResult(V, f)) : handleNonOptionalResult(W, f);
792
+ };
793
+ });
794
+ function handleNonOptionalResult(f, V) {
795
+ return !f.issues.length && f.value === void 0 && f.issues.push({
796
+ code: "invalid_type",
797
+ expected: "nonoptional",
798
+ input: f.value,
799
+ inst: V
800
+ }), f;
801
+ }
802
+ const $ZodCatch = /* @__PURE__ */ $constructor("$ZodCatch", (f, V) => {
803
+ $ZodType.init(f, V), defineLazy(f._zod, "optin", () => V.innerType._zod.optin), defineLazy(f._zod, "optout", () => V.innerType._zod.optout), defineLazy(f._zod, "values", () => V.innerType._zod.values), f._zod.parse = (f, H) => {
804
+ if (H.direction === "backward") return V.innerType._zod.run(f, H);
805
+ let W = V.innerType._zod.run(f, H);
806
+ return W instanceof Promise ? W.then((W) => (f.value = W.value, W.issues.length && (f.value = V.catchValue({
807
+ ...f,
808
+ error: { issues: W.issues.map((f) => finalizeIssue(f, H, config())) },
809
+ input: f.value
810
+ }), f.issues = []), f)) : (f.value = W.value, W.issues.length && (f.value = V.catchValue({
811
+ ...f,
812
+ error: { issues: W.issues.map((f) => finalizeIssue(f, H, config())) },
813
+ input: f.value
814
+ }), f.issues = []), f);
815
+ };
816
+ }), $ZodPipe = /* @__PURE__ */ $constructor("$ZodPipe", (f, V) => {
817
+ $ZodType.init(f, V), defineLazy(f._zod, "values", () => V.in._zod.values), defineLazy(f._zod, "optin", () => V.in._zod.optin), defineLazy(f._zod, "optout", () => V.out._zod.optout), defineLazy(f._zod, "propValues", () => V.in._zod.propValues), f._zod.parse = (f, H) => {
818
+ if (H.direction === "backward") {
819
+ let U = V.out._zod.run(f, H);
820
+ return U instanceof Promise ? U.then((f) => handlePipeResult(f, V.in, H)) : handlePipeResult(U, V.in, H);
821
+ }
822
+ let U = V.in._zod.run(f, H);
823
+ return U instanceof Promise ? U.then((f) => handlePipeResult(f, V.out, H)) : handlePipeResult(U, V.out, H);
824
+ };
825
+ });
826
+ function handlePipeResult(f, V, H) {
827
+ return f.issues.length ? (f.aborted = !0, f) : V._zod.run({
828
+ value: f.value,
829
+ issues: f.issues
830
+ }, H);
831
+ }
832
+ const $ZodReadonly = /* @__PURE__ */ $constructor("$ZodReadonly", (f, V) => {
833
+ $ZodType.init(f, V), defineLazy(f._zod, "propValues", () => V.innerType._zod.propValues), defineLazy(f._zod, "values", () => V.innerType._zod.values), defineLazy(f._zod, "optin", () => V.innerType?._zod?.optin), defineLazy(f._zod, "optout", () => V.innerType?._zod?.optout), f._zod.parse = (f, H) => {
834
+ if (H.direction === "backward") return V.innerType._zod.run(f, H);
835
+ let U = V.innerType._zod.run(f, H);
836
+ return U instanceof Promise ? U.then(handleReadonlyResult) : handleReadonlyResult(U);
837
+ };
838
+ });
839
+ function handleReadonlyResult(f) {
840
+ return f.value = Object.freeze(f.value), f;
841
+ }
842
+ const $ZodLazy = /* @__PURE__ */ $constructor("$ZodLazy", (f, V) => {
843
+ $ZodType.init(f, V), defineLazy(f._zod, "innerType", () => V.getter()), defineLazy(f._zod, "pattern", () => f._zod.innerType?._zod?.pattern), defineLazy(f._zod, "propValues", () => f._zod.innerType?._zod?.propValues), defineLazy(f._zod, "optin", () => f._zod.innerType?._zod?.optin ?? void 0), defineLazy(f._zod, "optout", () => f._zod.innerType?._zod?.optout ?? void 0), f._zod.parse = (V, H) => f._zod.innerType._zod.run(V, H);
844
+ }), $ZodCustom = /* @__PURE__ */ $constructor("$ZodCustom", (f, V) => {
845
+ $ZodCheck.init(f, V), $ZodType.init(f, V), f._zod.parse = (f, V) => f, f._zod.check = (H) => {
846
+ let U = H.value, W = V.fn(U);
847
+ if (W instanceof Promise) return W.then((V) => handleRefineResult(V, H, U, f));
848
+ handleRefineResult(W, H, U, f);
849
+ };
850
+ });
851
+ function handleRefineResult(f, V, H, U) {
852
+ if (!f) {
853
+ let f = {
854
+ code: "custom",
855
+ input: H,
856
+ inst: U,
857
+ path: [...U._zod.def.path ?? []],
858
+ continue: !U._zod.def.abort
859
+ };
860
+ U._zod.def.params && (f.params = U._zod.def.params), V.issues.push(issue(f));
861
+ }
862
+ }
863
+ export { $ZodArray, $ZodBase64, $ZodBase64URL, $ZodBoolean, $ZodCIDRv4, $ZodCIDRv6, $ZodCUID, $ZodCUID2, $ZodCatch, $ZodCustom, $ZodDefault, $ZodDiscriminatedUnion, $ZodE164, $ZodEmail, $ZodEmoji, $ZodEnum, $ZodExactOptional, $ZodGUID, $ZodIPv4, $ZodIPv6, $ZodISODate, $ZodISODateTime, $ZodISODuration, $ZodISOTime, $ZodIntersection, $ZodJWT, $ZodKSUID, $ZodLazy, $ZodLiteral, $ZodNanoID, $ZodNever, $ZodNonOptional, $ZodNull, $ZodNullable, $ZodNumber, $ZodNumberFormat, $ZodObjectJIT, $ZodOptional, $ZodPipe, $ZodPrefault, $ZodReadonly, $ZodRecord, $ZodString, $ZodStringFormat, $ZodTransform, $ZodType, $ZodULID, $ZodURL, $ZodUUID, $ZodUnion, $ZodUnknown, $ZodXID };