@fses/workbench-app 0.2.0 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (803) hide show
  1. package/WORKBENCH-CLOSURE.json +80 -0
  2. package/dist/Workspace-fYH2XNdb.js +22699 -0
  3. package/dist/fses-workbench-app.js +2 -2
  4. package/dist/{index-DbH6tMQy.js → index-CbIJlts1.js} +8 -8
  5. package/dist/internal/personal-workbench/components/workbench/WorkbenchStudio.vue.d.ts +2 -2
  6. package/dist/internal/personal-workbench/lib/deepAgentApi.d.ts +41 -2
  7. package/dist/internal/personal-workbench/lib/deepAgentQueueState.d.ts +111 -0
  8. package/dist/internal/personal-workbench/lib/vueRuntimeAdapters.d.ts +72 -0
  9. package/dist/internal/personal-workbench/lib/workbenchSocketClient.d.ts +1 -1
  10. package/dist/internal/personal-workbench/lib/workbenchStorage.d.ts +2 -0
  11. package/dist/runtime/index.js +1 -1
  12. package/dist/style.css +1 -1
  13. package/dist/{useWorkbenchRuntime-XpOzwm56.js → useWorkbenchRuntime-Ch8lqkjO.js} +6707 -6315
  14. package/node_modules/@byteluck/agentic-protocol/LICENSE +9 -0
  15. package/node_modules/@byteluck/agentic-protocol/README.md +74 -0
  16. package/node_modules/@byteluck/agentic-protocol/dist/index.d.ts +1623 -0
  17. package/node_modules/@byteluck/agentic-protocol/dist/index.mjs +3380 -0
  18. package/node_modules/@byteluck/agentic-protocol/package.json +37 -0
  19. package/node_modules/@byteluck/workbench-skill-contracts/LICENSE +9 -0
  20. package/node_modules/@byteluck/workbench-skill-contracts/dist/index.d.ts +234 -0
  21. package/node_modules/@byteluck/workbench-skill-contracts/dist/index.mjs +394 -0
  22. package/node_modules/@byteluck/workbench-skill-contracts/package.json +37 -0
  23. package/node_modules/@fses/ai-chat/LICENSE +9 -0
  24. package/node_modules/@fses/ai-chat/README.md +320 -0
  25. package/node_modules/@fses/ai-chat/dist/chart-card/data.d.ts +12 -0
  26. package/node_modules/@fses/ai-chat/dist/chart-card/from-markdown.d.ts +11 -0
  27. package/node_modules/@fses/ai-chat/dist/chart-card/from-tool.d.ts +8 -0
  28. package/node_modules/@fses/ai-chat/dist/chart-card/options.d.ts +4 -0
  29. package/node_modules/@fses/ai-chat/dist/chart-card/trace.d.ts +19 -0
  30. package/node_modules/@fses/ai-chat/dist/chart-card/types.d.ts +133 -0
  31. package/node_modules/@fses/ai-chat/dist/components/CardRecommendationDeferredDraft.vue.d.ts +13 -0
  32. package/node_modules/@fses/ai-chat/dist/components/CardRecommendationDraft.vue.d.ts +18 -0
  33. package/node_modules/@fses/ai-chat/dist/components/ChartCardRenderer.vue.d.ts +11 -0
  34. package/node_modules/@fses/ai-chat/dist/components/ChatMessageItem.vue.d.ts +76 -0
  35. package/node_modules/@fses/ai-chat/dist/components/ChatMessageList.vue.d.ts +79 -0
  36. package/node_modules/@fses/ai-chat/dist/components/ChatSender.vue.d.ts +98 -0
  37. package/node_modules/@fses/ai-chat/dist/components/CollapsedToolActivity.vue.d.ts +9 -0
  38. package/node_modules/@fses/ai-chat/dist/components/ContextUsageRing.vue.d.ts +12 -0
  39. package/node_modules/@fses/ai-chat/dist/components/EChartsView.vue.d.ts +6 -0
  40. package/node_modules/@fses/ai-chat/dist/components/FsesAiChat.vue.d.ts +306 -0
  41. package/node_modules/@fses/ai-chat/dist/components/PlanDraftCard.vue.d.ts +19 -0
  42. package/node_modules/@fses/ai-chat/dist/components/ShellExecPanel.vue.d.ts +6 -0
  43. package/node_modules/@fses/ai-chat/dist/components/TaskTodoPlanBar.vue.d.ts +6 -0
  44. package/node_modules/@fses/ai-chat/dist/components/ThinkingShimmer.vue.d.ts +6 -0
  45. package/node_modules/@fses/ai-chat/dist/composables/context-usage.d.ts +11 -0
  46. package/node_modules/@fses/ai-chat/dist/composables/types.d.ts +465 -0
  47. package/node_modules/@fses/ai-chat/dist/composables/useChat.d.ts +2 -0
  48. package/node_modules/@fses/ai-chat/dist/composables/useSystemEChartsIcon.d.ts +11 -0
  49. package/node_modules/@fses/ai-chat/dist/fses-ai-chat.js +11408 -0
  50. package/node_modules/@fses/ai-chat/dist/fses-ai-chat.umd.cjs +25 -0
  51. package/node_modules/@fses/ai-chat/dist/index.d.ts +17 -0
  52. package/node_modules/@fses/ai-chat/dist/plugin.d.ts +8 -0
  53. package/node_modules/@fses/ai-chat/dist/style.css +1 -0
  54. package/node_modules/@fses/ai-chat/dist/utils/assistant-markdown.d.ts +11 -0
  55. package/node_modules/@fses/ai-chat/dist/utils/attachment-upload.d.ts +22 -0
  56. package/node_modules/@fses/ai-chat/dist/utils/card-recommendation-config-summary.d.ts +86 -0
  57. package/node_modules/@fses/ai-chat/dist/utils/card-recommendation-field-label.d.ts +24 -0
  58. package/node_modules/@fses/ai-chat/dist/utils/card-recommendation-source.d.ts +18 -0
  59. package/node_modules/@fses/ai-chat/dist/utils/card-recommendation-title-source.d.ts +12 -0
  60. package/node_modules/@fses/ai-chat/dist/utils/chart-card-visibility.d.ts +24 -0
  61. package/node_modules/@fses/ai-chat/dist/utils/derived-process-labels.d.ts +13 -0
  62. package/node_modules/@fses/ai-chat/dist/utils/echarts-recommendation-icon.d.ts +36 -0
  63. package/node_modules/@fses/ai-chat/dist/utils/group-messages.d.ts +30 -0
  64. package/node_modules/@fses/ai-chat/dist/utils/status-activity.d.ts +48 -0
  65. package/node_modules/@fses/ai-chat/dist/utils/system-echarts-template-icons.generated.d.ts +305 -0
  66. package/node_modules/@fses/ai-chat/dist/utils/system-echarts-template.d.ts +20 -0
  67. package/node_modules/@fses/ai-chat/dist/utils/task-todo-plan.d.ts +40 -0
  68. package/node_modules/@fses/ai-chat/dist/utils/workbench-echarts-theme.d.ts +35 -0
  69. package/node_modules/@fses/ai-chat/package.json +81 -0
  70. package/node_modules/@fses/workbench-card/LICENSE +9 -0
  71. package/node_modules/@fses/workbench-card/README.md +81 -0
  72. package/node_modules/@fses/workbench-card/dist/chart/index.d.ts +8 -0
  73. package/node_modules/@fses/workbench-card/dist/fses-workbench-card-echarts-protocol.js +2230 -0
  74. package/node_modules/@fses/workbench-card/dist/fses-workbench-card-renderers.js +33742 -0
  75. package/node_modules/@fses/workbench-card/dist/fses-workbench-card.js +21238 -0
  76. package/node_modules/@fses/workbench-card/dist/fses-workbench-card.umd.cjs +1 -0
  77. package/node_modules/@fses/workbench-card/dist/index.d.ts +11 -0
  78. package/node_modules/@fses/workbench-card/dist/registry/cardRegistry.d.ts +50 -0
  79. package/node_modules/@fses/workbench-card/dist/registry/compositeCardPatterns.d.ts +39 -0
  80. package/node_modules/@fses/workbench-card/dist/registry/echartsTemplateCategories.d.ts +20 -0
  81. package/node_modules/@fses/workbench-card/dist/registry/echartsTemplateRegistry.d.ts +1158 -0
  82. package/node_modules/@fses/workbench-card/dist/registry/echartsTemplateRegistry.generated.d.ts +1141 -0
  83. package/node_modules/@fses/workbench-card/dist/registry/echartsTemplateTypes.d.ts +76 -0
  84. package/node_modules/@fses/workbench-card/dist/registry/index.d.ts +10 -0
  85. package/node_modules/@fses/workbench-card/dist/renderers/WorkbenchBlockRenderer.vue.d.ts +55 -0
  86. package/node_modules/@fses/workbench-card/dist/renderers/chart/ChartRegistry.vue.d.ts +22 -0
  87. package/node_modules/@fses/workbench-card/dist/renderers/chart/EChartsProtocolRenderer.vue.d.ts +34 -0
  88. package/node_modules/@fses/workbench-card/dist/renderers/chart/chartRendererRegistry.d.ts +219 -0
  89. package/node_modules/@fses/workbench-card/dist/renderers/chart/chartResponsiveLayout.d.ts +47 -0
  90. package/node_modules/@fses/workbench-card/dist/renderers/chart/dynamicEchartOption.d.ts +30 -0
  91. package/node_modules/@fses/workbench-card/dist/renderers/chart/echarts-protocol/adapter.d.ts +73 -0
  92. package/node_modules/@fses/workbench-card/dist/renderers/chart/echarts-protocol/converters/composite.converter.d.ts +11 -0
  93. package/node_modules/@fses/workbench-card/dist/renderers/chart/echarts-protocol/converters/configOnly.converter.d.ts +11 -0
  94. package/node_modules/@fses/workbench-card/dist/renderers/chart/echarts-protocol/converters/geo.converter.d.ts +10 -0
  95. package/node_modules/@fses/workbench-card/dist/renderers/chart/echarts-protocol/converters/graphic.converter.d.ts +10 -0
  96. package/node_modules/@fses/workbench-card/dist/renderers/chart/echarts-protocol/converters/layout.converter.d.ts +11 -0
  97. package/node_modules/@fses/workbench-card/dist/renderers/chart/echarts-protocol/converters/network.converter.d.ts +10 -0
  98. package/node_modules/@fses/workbench-card/dist/renderers/chart/echarts-protocol/converters/scene3D.converter.d.ts +11 -0
  99. package/node_modules/@fses/workbench-card/dist/renderers/chart/echarts-protocol/converters/series.converter.d.ts +10 -0
  100. package/node_modules/@fses/workbench-card/dist/renderers/chart/echarts-protocol/converters/table.converter.d.ts +10 -0
  101. package/node_modules/@fses/workbench-card/dist/renderers/chart/echarts-protocol/converters/timeline.converter.d.ts +11 -0
  102. package/node_modules/@fses/workbench-card/dist/renderers/chart/echarts-protocol/converters/transition.converter.d.ts +11 -0
  103. package/node_modules/@fses/workbench-card/dist/renderers/chart/echarts-protocol/converters/tree.converter.d.ts +10 -0
  104. package/node_modules/@fses/workbench-card/dist/renderers/chart/echarts-protocol/converters/tuple.converter.d.ts +10 -0
  105. package/node_modules/@fses/workbench-card/dist/renderers/chart/echarts-protocol/index.d.ts +9 -0
  106. package/node_modules/@fses/workbench-card/dist/renderers/chart/echarts-protocol/merger.d.ts +16 -0
  107. package/node_modules/@fses/workbench-card/dist/renderers/chart/echarts-protocol/types.d.ts +447 -0
  108. package/node_modules/@fses/workbench-card/dist/renderers/chart/echartsRuntimeInteractions.d.ts +30 -0
  109. package/node_modules/@fses/workbench-card/dist/renderers/chart/echartsTitle.d.ts +13 -0
  110. package/node_modules/@fses/workbench-card/dist/renderers/chart/echartsTooltipPortal.d.ts +12 -0
  111. package/node_modules/@fses/workbench-card/dist/renderers/chart/types.d.ts +47 -0
  112. package/node_modules/@fses/workbench-card/dist/renderers/chart/useEchart.d.ts +29 -0
  113. package/node_modules/@fses/workbench-card/dist/renderers/chart/workbenchChartTheme.d.ts +36 -0
  114. package/node_modules/@fses/workbench-card/dist/renderers/custom-canvas/canvasLayoutBindings.d.ts +86 -0
  115. package/node_modules/@fses/workbench-card/dist/renderers/hostBridge.d.ts +61 -0
  116. package/node_modules/@fses/workbench-card/dist/renderers/index.d.ts +17 -0
  117. package/node_modules/@fses/workbench-card/dist/renderers/native/nativeBindings.d.ts +145 -0
  118. package/node_modules/@fses/workbench-card/dist/renderers/nested/nestedBlockBindings.d.ts +107 -0
  119. package/node_modules/@fses/workbench-card/dist/renderers/quickLinkDisplay.d.ts +24 -0
  120. package/node_modules/@fses/workbench-card/dist/renderers/reference-composite/referenceCompositeBindings.d.ts +171 -0
  121. package/node_modules/@fses/workbench-card/dist/renderers/reference-composite/referenceRiskAndStrategyBindings.d.ts +91 -0
  122. package/node_modules/@fses/workbench-card/dist/renderers/resizableTable.d.ts +51 -0
  123. package/node_modules/@fses/workbench-card/dist/renderers/style.css +1 -0
  124. package/node_modules/@fses/workbench-card/dist/renderers/tableDisplay.d.ts +25 -0
  125. package/node_modules/@fses/workbench-card/dist/renderers/useWorkbenchBlockRendererBindings.d.ts +580 -0
  126. package/node_modules/@fses/workbench-card/dist/shell/workbenchVisualShell.d.ts +48 -0
  127. package/node_modules/@fses/workbench-card/dist/style.css +1 -0
  128. package/node_modules/@fses/workbench-card/dist/types/block.d.ts +2011 -0
  129. package/node_modules/@fses/workbench-card/dist/types/canvas.d.ts +25 -0
  130. package/node_modules/@fses/workbench-card/dist/types/echartsProtocol.d.ts +445 -0
  131. package/node_modules/@fses/workbench-card/dist/types/index.d.ts +10 -0
  132. package/node_modules/@fses/workbench-card/dist/types/registry.d.ts +7 -0
  133. package/node_modules/@fses/workbench-card/dist/types/runtime.d.ts +34 -0
  134. package/node_modules/@fses/workbench-card/package.json +83 -0
  135. package/node_modules/@fses/workbench-card/src/chart/index.ts +8 -0
  136. package/node_modules/@fses/workbench-card/src/index.ts +13 -0
  137. package/node_modules/@fses/workbench-card/src/registry/cardRegistry.ts +476 -0
  138. package/node_modules/@fses/workbench-card/src/registry/compositeCardPatterns.ts +206 -0
  139. package/node_modules/@fses/workbench-card/src/registry/echartsTemplateCategories.ts +74 -0
  140. package/node_modules/@fses/workbench-card/src/registry/echartsTemplateRegistry.generated.js +19950 -0
  141. package/node_modules/@fses/workbench-card/src/registry/echartsTemplateRegistry.generated.ts +19951 -0
  142. package/node_modules/@fses/workbench-card/src/registry/echartsTemplateRegistry.ts +32 -0
  143. package/node_modules/@fses/workbench-card/src/registry/echartsTemplateTypes.ts +83 -0
  144. package/node_modules/@fses/workbench-card/src/registry/index.ts +10 -0
  145. package/node_modules/@fses/workbench-card/src/renderers/WorkbenchBlockRenderer.vue +2728 -0
  146. package/node_modules/@fses/workbench-card/src/renderers/chart/ChartRegistry.vue +221 -0
  147. package/node_modules/@fses/workbench-card/src/renderers/chart/EChartsProtocolRenderer.vue +304 -0
  148. package/node_modules/@fses/workbench-card/src/renderers/chart/chartRendererRegistry.ts +311 -0
  149. package/node_modules/@fses/workbench-card/src/renderers/chart/chartResponsiveLayout.ts +172 -0
  150. package/node_modules/@fses/workbench-card/src/renderers/chart/dynamicEchartOption.ts +127 -0
  151. package/node_modules/@fses/workbench-card/src/renderers/chart/echarts-protocol/adapter.ts +1349 -0
  152. package/node_modules/@fses/workbench-card/src/renderers/chart/echarts-protocol/converters/composite.converter.ts +71 -0
  153. package/node_modules/@fses/workbench-card/src/renderers/chart/echarts-protocol/converters/configOnly.converter.ts +45 -0
  154. package/node_modules/@fses/workbench-card/src/renderers/chart/echarts-protocol/converters/geo.converter.ts +97 -0
  155. package/node_modules/@fses/workbench-card/src/renderers/chart/echarts-protocol/converters/graphic.converter.ts +59 -0
  156. package/node_modules/@fses/workbench-card/src/renderers/chart/echarts-protocol/converters/layout.converter.ts +53 -0
  157. package/node_modules/@fses/workbench-card/src/renderers/chart/echarts-protocol/converters/network.converter.ts +82 -0
  158. package/node_modules/@fses/workbench-card/src/renderers/chart/echarts-protocol/converters/scene3D.converter.ts +73 -0
  159. package/node_modules/@fses/workbench-card/src/renderers/chart/echarts-protocol/converters/series.converter.ts +795 -0
  160. package/node_modules/@fses/workbench-card/src/renderers/chart/echarts-protocol/converters/table.converter.ts +195 -0
  161. package/node_modules/@fses/workbench-card/src/renderers/chart/echarts-protocol/converters/timeline.converter.ts +62 -0
  162. package/node_modules/@fses/workbench-card/src/renderers/chart/echarts-protocol/converters/transition.converter.ts +58 -0
  163. package/node_modules/@fses/workbench-card/src/renderers/chart/echarts-protocol/converters/tree.converter.ts +75 -0
  164. package/node_modules/@fses/workbench-card/src/renderers/chart/echarts-protocol/converters/tuple.converter.ts +112 -0
  165. package/node_modules/@fses/workbench-card/src/renderers/chart/echarts-protocol/index.ts +10 -0
  166. package/node_modules/@fses/workbench-card/src/renderers/chart/echarts-protocol/merger.ts +109 -0
  167. package/node_modules/@fses/workbench-card/src/renderers/chart/echarts-protocol/types.ts +515 -0
  168. package/node_modules/@fses/workbench-card/src/renderers/chart/echartsRuntimeInteractions.ts +450 -0
  169. package/node_modules/@fses/workbench-card/src/renderers/chart/echartsTitle.ts +94 -0
  170. package/node_modules/@fses/workbench-card/src/renderers/chart/echartsTooltipPortal.ts +140 -0
  171. package/node_modules/@fses/workbench-card/src/renderers/chart/types.ts +53 -0
  172. package/node_modules/@fses/workbench-card/src/renderers/chart/useEchart.ts +1820 -0
  173. package/node_modules/@fses/workbench-card/src/renderers/chart/workbenchChartTheme.ts +240 -0
  174. package/node_modules/@fses/workbench-card/src/renderers/custom-canvas/canvasLayoutBindings.ts +660 -0
  175. package/node_modules/@fses/workbench-card/src/renderers/hostBridge.ts +74 -0
  176. package/node_modules/@fses/workbench-card/src/renderers/index.ts +25 -0
  177. package/node_modules/@fses/workbench-card/src/renderers/native/nativeBindings.ts +1096 -0
  178. package/node_modules/@fses/workbench-card/src/renderers/nested/nestedBlockBindings.ts +1349 -0
  179. package/node_modules/@fses/workbench-card/src/renderers/quickLinkDisplay.ts +53 -0
  180. package/node_modules/@fses/workbench-card/src/renderers/reference-composite/referenceCompositeBindings.ts +3209 -0
  181. package/node_modules/@fses/workbench-card/src/renderers/reference-composite/referenceRiskAndStrategyBindings.ts +1004 -0
  182. package/node_modules/@fses/workbench-card/src/renderers/resizableTable.ts +136 -0
  183. package/node_modules/@fses/workbench-card/src/renderers/tableDisplay.ts +140 -0
  184. package/node_modules/@fses/workbench-card/src/renderers/useWorkbenchBlockRendererBindings.ts +3192 -0
  185. package/node_modules/@fses/workbench-card/src/shell/workbenchVisualShell.ts +228 -0
  186. package/node_modules/@fses/workbench-card/src/styles/workbench-card.css +343 -0
  187. package/node_modules/@fses/workbench-card/src/types/block.ts +2496 -0
  188. package/node_modules/@fses/workbench-card/src/types/canvas.ts +30 -0
  189. package/node_modules/@fses/workbench-card/src/types/echartsProtocol.ts +513 -0
  190. package/node_modules/@fses/workbench-card/src/types/index.ts +10 -0
  191. package/node_modules/@fses/workbench-card/src/types/registry.ts +17 -0
  192. package/node_modules/@fses/workbench-card/src/types/runtime.ts +31 -0
  193. package/node_modules/dompurify/LICENSE +568 -0
  194. package/node_modules/dompurify/README.md +523 -0
  195. package/node_modules/dompurify/dist/purify.cjs.d.ts +451 -0
  196. package/node_modules/dompurify/dist/purify.cjs.js +1472 -0
  197. package/node_modules/dompurify/dist/purify.cjs.js.map +1 -0
  198. package/node_modules/dompurify/dist/purify.es.d.mts +448 -0
  199. package/node_modules/dompurify/dist/purify.es.mjs +1470 -0
  200. package/node_modules/dompurify/dist/purify.es.mjs.map +1 -0
  201. package/node_modules/dompurify/dist/purify.js +1478 -0
  202. package/node_modules/dompurify/dist/purify.js.map +1 -0
  203. package/node_modules/dompurify/dist/purify.min.js +3 -0
  204. package/node_modules/dompurify/dist/purify.min.js.map +1 -0
  205. package/node_modules/dompurify/package.json +168 -0
  206. package/node_modules/zod/LICENSE +21 -0
  207. package/node_modules/zod/README.md +208 -0
  208. package/node_modules/zod/index.cjs +33 -0
  209. package/node_modules/zod/index.d.cts +4 -0
  210. package/node_modules/zod/index.d.ts +4 -0
  211. package/node_modules/zod/index.js +4 -0
  212. package/node_modules/zod/package.json +118 -0
  213. package/node_modules/zod/src/index.ts +4 -0
  214. package/node_modules/zod/src/v3/ZodError.ts +330 -0
  215. package/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
  216. package/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
  217. package/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
  218. package/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
  219. package/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
  220. package/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
  221. package/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
  222. package/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
  223. package/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
  224. package/node_modules/zod/src/v3/errors.ts +13 -0
  225. package/node_modules/zod/src/v3/external.ts +6 -0
  226. package/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
  227. package/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
  228. package/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
  229. package/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
  230. package/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
  231. package/node_modules/zod/src/v3/helpers/util.ts +224 -0
  232. package/node_modules/zod/src/v3/index.ts +4 -0
  233. package/node_modules/zod/src/v3/locales/en.ts +124 -0
  234. package/node_modules/zod/src/v3/standard-schema.ts +113 -0
  235. package/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
  236. package/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
  237. package/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
  238. package/node_modules/zod/src/v3/tests/array.test.ts +71 -0
  239. package/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
  240. package/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
  241. package/node_modules/zod/src/v3/tests/base.test.ts +29 -0
  242. package/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
  243. package/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
  244. package/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
  245. package/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
  246. package/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
  247. package/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
  248. package/node_modules/zod/src/v3/tests/date.test.ts +32 -0
  249. package/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
  250. package/node_modules/zod/src/v3/tests/default.test.ts +112 -0
  251. package/node_modules/zod/src/v3/tests/description.test.ts +33 -0
  252. package/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
  253. package/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
  254. package/node_modules/zod/src/v3/tests/error.test.ts +551 -0
  255. package/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
  256. package/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
  257. package/node_modules/zod/src/v3/tests/function.test.ts +257 -0
  258. package/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
  259. package/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
  260. package/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
  261. package/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
  262. package/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
  263. package/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
  264. package/node_modules/zod/src/v3/tests/map.test.ts +110 -0
  265. package/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
  266. package/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
  267. package/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
  268. package/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
  269. package/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
  270. package/node_modules/zod/src/v3/tests/number.test.ts +176 -0
  271. package/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
  272. package/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
  273. package/node_modules/zod/src/v3/tests/object.test.ts +434 -0
  274. package/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
  275. package/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
  276. package/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
  277. package/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
  278. package/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
  279. package/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
  280. package/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
  281. package/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
  282. package/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
  283. package/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
  284. package/node_modules/zod/src/v3/tests/record.test.ts +171 -0
  285. package/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
  286. package/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
  287. package/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
  288. package/node_modules/zod/src/v3/tests/set.test.ts +142 -0
  289. package/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
  290. package/node_modules/zod/src/v3/tests/string.test.ts +916 -0
  291. package/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
  292. package/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
  293. package/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
  294. package/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
  295. package/node_modules/zod/src/v3/tests/void.test.ts +15 -0
  296. package/node_modules/zod/src/v3/types.ts +5136 -0
  297. package/node_modules/zod/src/v4/classic/checks.ts +30 -0
  298. package/node_modules/zod/src/v4/classic/coerce.ts +27 -0
  299. package/node_modules/zod/src/v4/classic/compat.ts +66 -0
  300. package/node_modules/zod/src/v4/classic/errors.ts +75 -0
  301. package/node_modules/zod/src/v4/classic/external.ts +50 -0
  302. package/node_modules/zod/src/v4/classic/index.ts +5 -0
  303. package/node_modules/zod/src/v4/classic/iso.ts +90 -0
  304. package/node_modules/zod/src/v4/classic/parse.ts +33 -0
  305. package/node_modules/zod/src/v4/classic/schemas.ts +2054 -0
  306. package/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
  307. package/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
  308. package/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
  309. package/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
  310. package/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
  311. package/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
  312. package/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
  313. package/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
  314. package/node_modules/zod/src/v4/classic/tests/catch.test.ts +252 -0
  315. package/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
  316. package/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
  317. package/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
  318. package/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
  319. package/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
  320. package/node_modules/zod/src/v4/classic/tests/datetime.test.ts +296 -0
  321. package/node_modules/zod/src/v4/classic/tests/default.test.ts +313 -0
  322. package/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
  323. package/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +619 -0
  324. package/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
  325. package/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +527 -0
  326. package/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
  327. package/node_modules/zod/src/v4/classic/tests/file.test.ts +91 -0
  328. package/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +175 -0
  329. package/node_modules/zod/src/v4/classic/tests/function.test.ts +268 -0
  330. package/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
  331. package/node_modules/zod/src/v4/classic/tests/index.test.ts +829 -0
  332. package/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
  333. package/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
  334. package/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
  335. package/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
  336. package/node_modules/zod/src/v4/classic/tests/literal.test.ts +92 -0
  337. package/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
  338. package/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
  339. package/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
  340. package/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +86 -0
  341. package/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
  342. package/node_modules/zod/src/v4/classic/tests/number.test.ts +247 -0
  343. package/node_modules/zod/src/v4/classic/tests/object.test.ts +563 -0
  344. package/node_modules/zod/src/v4/classic/tests/optional.test.ts +123 -0
  345. package/node_modules/zod/src/v4/classic/tests/partial.test.ts +147 -0
  346. package/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
  347. package/node_modules/zod/src/v4/classic/tests/pipe.test.ts +81 -0
  348. package/node_modules/zod/src/v4/classic/tests/prefault.test.ts +37 -0
  349. package/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +298 -0
  350. package/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
  351. package/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
  352. package/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
  353. package/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
  354. package/node_modules/zod/src/v4/classic/tests/record.test.ts +342 -0
  355. package/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +356 -0
  356. package/node_modules/zod/src/v4/classic/tests/refine.test.ts +532 -0
  357. package/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
  358. package/node_modules/zod/src/v4/classic/tests/set.test.ts +179 -0
  359. package/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
  360. package/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +109 -0
  361. package/node_modules/zod/src/v4/classic/tests/string.test.ts +881 -0
  362. package/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +66 -0
  363. package/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +758 -0
  364. package/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2314 -0
  365. package/node_modules/zod/src/v4/classic/tests/transform.test.ts +250 -0
  366. package/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
  367. package/node_modules/zod/src/v4/classic/tests/union.test.ts +94 -0
  368. package/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
  369. package/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
  370. package/node_modules/zod/src/v4/core/api.ts +1594 -0
  371. package/node_modules/zod/src/v4/core/checks.ts +1283 -0
  372. package/node_modules/zod/src/v4/core/config.ts +15 -0
  373. package/node_modules/zod/src/v4/core/core.ts +134 -0
  374. package/node_modules/zod/src/v4/core/doc.ts +44 -0
  375. package/node_modules/zod/src/v4/core/errors.ts +424 -0
  376. package/node_modules/zod/src/v4/core/function.ts +176 -0
  377. package/node_modules/zod/src/v4/core/index.ts +15 -0
  378. package/node_modules/zod/src/v4/core/json-schema.ts +143 -0
  379. package/node_modules/zod/src/v4/core/parse.ts +94 -0
  380. package/node_modules/zod/src/v4/core/regexes.ts +135 -0
  381. package/node_modules/zod/src/v4/core/registries.ts +96 -0
  382. package/node_modules/zod/src/v4/core/schemas.ts +3842 -0
  383. package/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
  384. package/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
  385. package/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
  386. package/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
  387. package/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
  388. package/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
  389. package/node_modules/zod/src/v4/core/to-json-schema.ts +977 -0
  390. package/node_modules/zod/src/v4/core/util.ts +775 -0
  391. package/node_modules/zod/src/v4/core/versions.ts +5 -0
  392. package/node_modules/zod/src/v4/core/zsf.ts +323 -0
  393. package/node_modules/zod/src/v4/index.ts +4 -0
  394. package/node_modules/zod/src/v4/locales/ar.ts +125 -0
  395. package/node_modules/zod/src/v4/locales/az.ts +121 -0
  396. package/node_modules/zod/src/v4/locales/be.ts +184 -0
  397. package/node_modules/zod/src/v4/locales/ca.ts +127 -0
  398. package/node_modules/zod/src/v4/locales/cs.ts +142 -0
  399. package/node_modules/zod/src/v4/locales/de.ts +124 -0
  400. package/node_modules/zod/src/v4/locales/en.ts +127 -0
  401. package/node_modules/zod/src/v4/locales/eo.ts +125 -0
  402. package/node_modules/zod/src/v4/locales/es.ts +125 -0
  403. package/node_modules/zod/src/v4/locales/fa.ts +134 -0
  404. package/node_modules/zod/src/v4/locales/fi.ts +131 -0
  405. package/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
  406. package/node_modules/zod/src/v4/locales/fr.ts +124 -0
  407. package/node_modules/zod/src/v4/locales/he.ts +125 -0
  408. package/node_modules/zod/src/v4/locales/hu.ts +126 -0
  409. package/node_modules/zod/src/v4/locales/id.ts +125 -0
  410. package/node_modules/zod/src/v4/locales/index.ts +39 -0
  411. package/node_modules/zod/src/v4/locales/it.ts +125 -0
  412. package/node_modules/zod/src/v4/locales/ja.ts +122 -0
  413. package/node_modules/zod/src/v4/locales/kh.ts +126 -0
  414. package/node_modules/zod/src/v4/locales/ko.ts +131 -0
  415. package/node_modules/zod/src/v4/locales/mk.ts +127 -0
  416. package/node_modules/zod/src/v4/locales/ms.ts +124 -0
  417. package/node_modules/zod/src/v4/locales/nl.ts +126 -0
  418. package/node_modules/zod/src/v4/locales/no.ts +124 -0
  419. package/node_modules/zod/src/v4/locales/ota.ts +125 -0
  420. package/node_modules/zod/src/v4/locales/pl.ts +126 -0
  421. package/node_modules/zod/src/v4/locales/ps.ts +133 -0
  422. package/node_modules/zod/src/v4/locales/pt.ts +123 -0
  423. package/node_modules/zod/src/v4/locales/ru.ts +184 -0
  424. package/node_modules/zod/src/v4/locales/sl.ts +126 -0
  425. package/node_modules/zod/src/v4/locales/sv.ts +127 -0
  426. package/node_modules/zod/src/v4/locales/ta.ts +125 -0
  427. package/node_modules/zod/src/v4/locales/th.ts +126 -0
  428. package/node_modules/zod/src/v4/locales/tr.ts +121 -0
  429. package/node_modules/zod/src/v4/locales/ua.ts +126 -0
  430. package/node_modules/zod/src/v4/locales/ur.ts +126 -0
  431. package/node_modules/zod/src/v4/locales/vi.ts +125 -0
  432. package/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
  433. package/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
  434. package/node_modules/zod/src/v4/mini/checks.ts +32 -0
  435. package/node_modules/zod/src/v4/mini/coerce.ts +22 -0
  436. package/node_modules/zod/src/v4/mini/external.ts +40 -0
  437. package/node_modules/zod/src/v4/mini/index.ts +3 -0
  438. package/node_modules/zod/src/v4/mini/iso.ts +62 -0
  439. package/node_modules/zod/src/v4/mini/parse.ts +1 -0
  440. package/node_modules/zod/src/v4/mini/schemas.ts +1579 -0
  441. package/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
  442. package/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
  443. package/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
  444. package/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
  445. package/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
  446. package/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
  447. package/node_modules/zod/src/v4/mini/tests/index.test.ts +871 -0
  448. package/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
  449. package/node_modules/zod/src/v4/mini/tests/object.test.ts +185 -0
  450. package/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
  451. package/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
  452. package/node_modules/zod/src/v4/mini/tests/string.test.ts +299 -0
  453. package/node_modules/zod/src/v4-mini/index.ts +1 -0
  454. package/node_modules/zod/v3/ZodError.cjs +138 -0
  455. package/node_modules/zod/v3/ZodError.d.cts +164 -0
  456. package/node_modules/zod/v3/ZodError.d.ts +164 -0
  457. package/node_modules/zod/v3/ZodError.js +133 -0
  458. package/node_modules/zod/v3/errors.cjs +17 -0
  459. package/node_modules/zod/v3/errors.d.cts +5 -0
  460. package/node_modules/zod/v3/errors.d.ts +5 -0
  461. package/node_modules/zod/v3/errors.js +9 -0
  462. package/node_modules/zod/v3/external.cjs +22 -0
  463. package/node_modules/zod/v3/external.d.cts +6 -0
  464. package/node_modules/zod/v3/external.d.ts +6 -0
  465. package/node_modules/zod/v3/external.js +6 -0
  466. package/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
  467. package/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
  468. package/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
  469. package/node_modules/zod/v3/helpers/enumUtil.js +1 -0
  470. package/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
  471. package/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
  472. package/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
  473. package/node_modules/zod/v3/helpers/errorUtil.js +6 -0
  474. package/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
  475. package/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
  476. package/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
  477. package/node_modules/zod/v3/helpers/parseUtil.js +109 -0
  478. package/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
  479. package/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
  480. package/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
  481. package/node_modules/zod/v3/helpers/partialUtil.js +1 -0
  482. package/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
  483. package/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
  484. package/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
  485. package/node_modules/zod/v3/helpers/typeAliases.js +1 -0
  486. package/node_modules/zod/v3/helpers/util.cjs +137 -0
  487. package/node_modules/zod/v3/helpers/util.d.cts +85 -0
  488. package/node_modules/zod/v3/helpers/util.d.ts +85 -0
  489. package/node_modules/zod/v3/helpers/util.js +133 -0
  490. package/node_modules/zod/v3/index.cjs +33 -0
  491. package/node_modules/zod/v3/index.d.cts +4 -0
  492. package/node_modules/zod/v3/index.d.ts +4 -0
  493. package/node_modules/zod/v3/index.js +4 -0
  494. package/node_modules/zod/v3/locales/en.cjs +111 -0
  495. package/node_modules/zod/v3/locales/en.d.cts +3 -0
  496. package/node_modules/zod/v3/locales/en.d.ts +3 -0
  497. package/node_modules/zod/v3/locales/en.js +109 -0
  498. package/node_modules/zod/v3/standard-schema.cjs +2 -0
  499. package/node_modules/zod/v3/standard-schema.d.cts +102 -0
  500. package/node_modules/zod/v3/standard-schema.d.ts +102 -0
  501. package/node_modules/zod/v3/standard-schema.js +1 -0
  502. package/node_modules/zod/v3/types.cjs +3775 -0
  503. package/node_modules/zod/v3/types.d.cts +1031 -0
  504. package/node_modules/zod/v3/types.d.ts +1031 -0
  505. package/node_modules/zod/v3/types.js +3693 -0
  506. package/node_modules/zod/v4/classic/checks.cjs +32 -0
  507. package/node_modules/zod/v4/classic/checks.d.cts +1 -0
  508. package/node_modules/zod/v4/classic/checks.d.ts +1 -0
  509. package/node_modules/zod/v4/classic/checks.js +1 -0
  510. package/node_modules/zod/v4/classic/coerce.cjs +47 -0
  511. package/node_modules/zod/v4/classic/coerce.d.cts +17 -0
  512. package/node_modules/zod/v4/classic/coerce.d.ts +17 -0
  513. package/node_modules/zod/v4/classic/coerce.js +17 -0
  514. package/node_modules/zod/v4/classic/compat.cjs +57 -0
  515. package/node_modules/zod/v4/classic/compat.d.cts +46 -0
  516. package/node_modules/zod/v4/classic/compat.d.ts +46 -0
  517. package/node_modules/zod/v4/classic/compat.js +27 -0
  518. package/node_modules/zod/v4/classic/errors.cjs +67 -0
  519. package/node_modules/zod/v4/classic/errors.d.cts +30 -0
  520. package/node_modules/zod/v4/classic/errors.d.ts +30 -0
  521. package/node_modules/zod/v4/classic/errors.js +41 -0
  522. package/node_modules/zod/v4/classic/external.cjs +70 -0
  523. package/node_modules/zod/v4/classic/external.d.cts +13 -0
  524. package/node_modules/zod/v4/classic/external.d.ts +13 -0
  525. package/node_modules/zod/v4/classic/external.js +18 -0
  526. package/node_modules/zod/v4/classic/index.cjs +33 -0
  527. package/node_modules/zod/v4/classic/index.d.cts +4 -0
  528. package/node_modules/zod/v4/classic/index.d.ts +4 -0
  529. package/node_modules/zod/v4/classic/index.js +4 -0
  530. package/node_modules/zod/v4/classic/iso.cjs +60 -0
  531. package/node_modules/zod/v4/classic/iso.d.cts +22 -0
  532. package/node_modules/zod/v4/classic/iso.d.ts +22 -0
  533. package/node_modules/zod/v4/classic/iso.js +30 -0
  534. package/node_modules/zod/v4/classic/parse.cjs +32 -0
  535. package/node_modules/zod/v4/classic/parse.d.cts +23 -0
  536. package/node_modules/zod/v4/classic/parse.d.ts +23 -0
  537. package/node_modules/zod/v4/classic/parse.js +6 -0
  538. package/node_modules/zod/v4/classic/schemas.cjs +1109 -0
  539. package/node_modules/zod/v4/classic/schemas.d.cts +630 -0
  540. package/node_modules/zod/v4/classic/schemas.d.ts +630 -0
  541. package/node_modules/zod/v4/classic/schemas.js +1006 -0
  542. package/node_modules/zod/v4/core/api.cjs +1039 -0
  543. package/node_modules/zod/v4/core/api.d.cts +284 -0
  544. package/node_modules/zod/v4/core/api.d.ts +284 -0
  545. package/node_modules/zod/v4/core/api.js +906 -0
  546. package/node_modules/zod/v4/core/checks.cjs +591 -0
  547. package/node_modules/zod/v4/core/checks.d.cts +278 -0
  548. package/node_modules/zod/v4/core/checks.d.ts +278 -0
  549. package/node_modules/zod/v4/core/checks.js +565 -0
  550. package/node_modules/zod/v4/core/core.cjs +67 -0
  551. package/node_modules/zod/v4/core/core.d.cts +49 -0
  552. package/node_modules/zod/v4/core/core.d.ts +49 -0
  553. package/node_modules/zod/v4/core/core.js +61 -0
  554. package/node_modules/zod/v4/core/doc.cjs +39 -0
  555. package/node_modules/zod/v4/core/doc.d.cts +14 -0
  556. package/node_modules/zod/v4/core/doc.d.ts +14 -0
  557. package/node_modules/zod/v4/core/doc.js +35 -0
  558. package/node_modules/zod/v4/core/errors.cjs +226 -0
  559. package/node_modules/zod/v4/core/errors.d.cts +208 -0
  560. package/node_modules/zod/v4/core/errors.d.ts +208 -0
  561. package/node_modules/zod/v4/core/errors.js +195 -0
  562. package/node_modules/zod/v4/core/function.cjs +102 -0
  563. package/node_modules/zod/v4/core/function.d.cts +52 -0
  564. package/node_modules/zod/v4/core/function.d.ts +52 -0
  565. package/node_modules/zod/v4/core/function.js +75 -0
  566. package/node_modules/zod/v4/core/index.cjs +44 -0
  567. package/node_modules/zod/v4/core/index.d.cts +15 -0
  568. package/node_modules/zod/v4/core/index.d.ts +15 -0
  569. package/node_modules/zod/v4/core/index.js +15 -0
  570. package/node_modules/zod/v4/core/json-schema.cjs +2 -0
  571. package/node_modules/zod/v4/core/json-schema.d.cts +87 -0
  572. package/node_modules/zod/v4/core/json-schema.d.ts +87 -0
  573. package/node_modules/zod/v4/core/json-schema.js +1 -0
  574. package/node_modules/zod/v4/core/parse.cjs +87 -0
  575. package/node_modules/zod/v4/core/parse.d.cts +25 -0
  576. package/node_modules/zod/v4/core/parse.d.ts +25 -0
  577. package/node_modules/zod/v4/core/parse.js +57 -0
  578. package/node_modules/zod/v4/core/regexes.cjs +103 -0
  579. package/node_modules/zod/v4/core/regexes.d.cts +62 -0
  580. package/node_modules/zod/v4/core/regexes.d.ts +62 -0
  581. package/node_modules/zod/v4/core/regexes.js +95 -0
  582. package/node_modules/zod/v4/core/registries.cjs +56 -0
  583. package/node_modules/zod/v4/core/registries.d.cts +35 -0
  584. package/node_modules/zod/v4/core/registries.d.ts +35 -0
  585. package/node_modules/zod/v4/core/registries.js +51 -0
  586. package/node_modules/zod/v4/core/schemas.cjs +1748 -0
  587. package/node_modules/zod/v4/core/schemas.d.cts +1041 -0
  588. package/node_modules/zod/v4/core/schemas.d.ts +1041 -0
  589. package/node_modules/zod/v4/core/schemas.js +1717 -0
  590. package/node_modules/zod/v4/core/standard-schema.cjs +2 -0
  591. package/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
  592. package/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
  593. package/node_modules/zod/v4/core/standard-schema.js +1 -0
  594. package/node_modules/zod/v4/core/to-json-schema.cjs +854 -0
  595. package/node_modules/zod/v4/core/to-json-schema.d.cts +88 -0
  596. package/node_modules/zod/v4/core/to-json-schema.d.ts +88 -0
  597. package/node_modules/zod/v4/core/to-json-schema.js +849 -0
  598. package/node_modules/zod/v4/core/util.cjs +539 -0
  599. package/node_modules/zod/v4/core/util.d.cts +183 -0
  600. package/node_modules/zod/v4/core/util.d.ts +183 -0
  601. package/node_modules/zod/v4/core/util.js +493 -0
  602. package/node_modules/zod/v4/core/versions.cjs +8 -0
  603. package/node_modules/zod/v4/core/versions.d.cts +5 -0
  604. package/node_modules/zod/v4/core/versions.d.ts +5 -0
  605. package/node_modules/zod/v4/core/versions.js +5 -0
  606. package/node_modules/zod/v4/index.cjs +22 -0
  607. package/node_modules/zod/v4/index.d.cts +3 -0
  608. package/node_modules/zod/v4/index.d.ts +3 -0
  609. package/node_modules/zod/v4/index.js +3 -0
  610. package/node_modules/zod/v4/locales/ar.cjs +142 -0
  611. package/node_modules/zod/v4/locales/ar.d.cts +4 -0
  612. package/node_modules/zod/v4/locales/ar.d.ts +4 -0
  613. package/node_modules/zod/v4/locales/ar.js +116 -0
  614. package/node_modules/zod/v4/locales/az.cjs +141 -0
  615. package/node_modules/zod/v4/locales/az.d.cts +4 -0
  616. package/node_modules/zod/v4/locales/az.d.ts +4 -0
  617. package/node_modules/zod/v4/locales/az.js +115 -0
  618. package/node_modules/zod/v4/locales/be.cjs +190 -0
  619. package/node_modules/zod/v4/locales/be.d.cts +4 -0
  620. package/node_modules/zod/v4/locales/be.d.ts +4 -0
  621. package/node_modules/zod/v4/locales/be.js +164 -0
  622. package/node_modules/zod/v4/locales/ca.cjs +144 -0
  623. package/node_modules/zod/v4/locales/ca.d.cts +4 -0
  624. package/node_modules/zod/v4/locales/ca.d.ts +4 -0
  625. package/node_modules/zod/v4/locales/ca.js +118 -0
  626. package/node_modules/zod/v4/locales/cs.cjs +161 -0
  627. package/node_modules/zod/v4/locales/cs.d.cts +4 -0
  628. package/node_modules/zod/v4/locales/cs.d.ts +4 -0
  629. package/node_modules/zod/v4/locales/cs.js +135 -0
  630. package/node_modules/zod/v4/locales/de.cjs +142 -0
  631. package/node_modules/zod/v4/locales/de.d.cts +4 -0
  632. package/node_modules/zod/v4/locales/de.d.ts +4 -0
  633. package/node_modules/zod/v4/locales/de.js +116 -0
  634. package/node_modules/zod/v4/locales/en.cjs +145 -0
  635. package/node_modules/zod/v4/locales/en.d.cts +5 -0
  636. package/node_modules/zod/v4/locales/en.d.ts +5 -0
  637. package/node_modules/zod/v4/locales/en.js +117 -0
  638. package/node_modules/zod/v4/locales/eo.cjs +144 -0
  639. package/node_modules/zod/v4/locales/eo.d.cts +5 -0
  640. package/node_modules/zod/v4/locales/eo.d.ts +5 -0
  641. package/node_modules/zod/v4/locales/eo.js +116 -0
  642. package/node_modules/zod/v4/locales/es.cjs +143 -0
  643. package/node_modules/zod/v4/locales/es.d.cts +4 -0
  644. package/node_modules/zod/v4/locales/es.d.ts +4 -0
  645. package/node_modules/zod/v4/locales/es.js +117 -0
  646. package/node_modules/zod/v4/locales/fa.cjs +148 -0
  647. package/node_modules/zod/v4/locales/fa.d.cts +4 -0
  648. package/node_modules/zod/v4/locales/fa.d.ts +4 -0
  649. package/node_modules/zod/v4/locales/fa.js +122 -0
  650. package/node_modules/zod/v4/locales/fi.cjs +148 -0
  651. package/node_modules/zod/v4/locales/fi.d.cts +4 -0
  652. package/node_modules/zod/v4/locales/fi.d.ts +4 -0
  653. package/node_modules/zod/v4/locales/fi.js +122 -0
  654. package/node_modules/zod/v4/locales/fr-CA.cjs +143 -0
  655. package/node_modules/zod/v4/locales/fr-CA.d.cts +4 -0
  656. package/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
  657. package/node_modules/zod/v4/locales/fr-CA.js +117 -0
  658. package/node_modules/zod/v4/locales/fr.cjs +142 -0
  659. package/node_modules/zod/v4/locales/fr.d.cts +4 -0
  660. package/node_modules/zod/v4/locales/fr.d.ts +4 -0
  661. package/node_modules/zod/v4/locales/fr.js +116 -0
  662. package/node_modules/zod/v4/locales/he.cjs +143 -0
  663. package/node_modules/zod/v4/locales/he.d.cts +4 -0
  664. package/node_modules/zod/v4/locales/he.d.ts +4 -0
  665. package/node_modules/zod/v4/locales/he.js +117 -0
  666. package/node_modules/zod/v4/locales/hu.cjs +143 -0
  667. package/node_modules/zod/v4/locales/hu.d.cts +4 -0
  668. package/node_modules/zod/v4/locales/hu.d.ts +4 -0
  669. package/node_modules/zod/v4/locales/hu.js +117 -0
  670. package/node_modules/zod/v4/locales/id.cjs +142 -0
  671. package/node_modules/zod/v4/locales/id.d.cts +4 -0
  672. package/node_modules/zod/v4/locales/id.d.ts +4 -0
  673. package/node_modules/zod/v4/locales/id.js +116 -0
  674. package/node_modules/zod/v4/locales/index.cjs +84 -0
  675. package/node_modules/zod/v4/locales/index.d.cts +39 -0
  676. package/node_modules/zod/v4/locales/index.d.ts +39 -0
  677. package/node_modules/zod/v4/locales/index.js +39 -0
  678. package/node_modules/zod/v4/locales/it.cjs +143 -0
  679. package/node_modules/zod/v4/locales/it.d.cts +4 -0
  680. package/node_modules/zod/v4/locales/it.d.ts +4 -0
  681. package/node_modules/zod/v4/locales/it.js +117 -0
  682. package/node_modules/zod/v4/locales/ja.cjs +141 -0
  683. package/node_modules/zod/v4/locales/ja.d.cts +4 -0
  684. package/node_modules/zod/v4/locales/ja.d.ts +4 -0
  685. package/node_modules/zod/v4/locales/ja.js +115 -0
  686. package/node_modules/zod/v4/locales/kh.cjs +143 -0
  687. package/node_modules/zod/v4/locales/kh.d.cts +4 -0
  688. package/node_modules/zod/v4/locales/kh.d.ts +4 -0
  689. package/node_modules/zod/v4/locales/kh.js +117 -0
  690. package/node_modules/zod/v4/locales/ko.cjs +147 -0
  691. package/node_modules/zod/v4/locales/ko.d.cts +4 -0
  692. package/node_modules/zod/v4/locales/ko.d.ts +4 -0
  693. package/node_modules/zod/v4/locales/ko.js +121 -0
  694. package/node_modules/zod/v4/locales/mk.cjs +144 -0
  695. package/node_modules/zod/v4/locales/mk.d.cts +4 -0
  696. package/node_modules/zod/v4/locales/mk.d.ts +4 -0
  697. package/node_modules/zod/v4/locales/mk.js +118 -0
  698. package/node_modules/zod/v4/locales/ms.cjs +142 -0
  699. package/node_modules/zod/v4/locales/ms.d.cts +4 -0
  700. package/node_modules/zod/v4/locales/ms.d.ts +4 -0
  701. package/node_modules/zod/v4/locales/ms.js +116 -0
  702. package/node_modules/zod/v4/locales/nl.cjs +143 -0
  703. package/node_modules/zod/v4/locales/nl.d.cts +4 -0
  704. package/node_modules/zod/v4/locales/nl.d.ts +4 -0
  705. package/node_modules/zod/v4/locales/nl.js +117 -0
  706. package/node_modules/zod/v4/locales/no.cjs +142 -0
  707. package/node_modules/zod/v4/locales/no.d.cts +4 -0
  708. package/node_modules/zod/v4/locales/no.d.ts +4 -0
  709. package/node_modules/zod/v4/locales/no.js +116 -0
  710. package/node_modules/zod/v4/locales/ota.cjs +143 -0
  711. package/node_modules/zod/v4/locales/ota.d.cts +4 -0
  712. package/node_modules/zod/v4/locales/ota.d.ts +4 -0
  713. package/node_modules/zod/v4/locales/ota.js +117 -0
  714. package/node_modules/zod/v4/locales/pl.cjs +143 -0
  715. package/node_modules/zod/v4/locales/pl.d.cts +4 -0
  716. package/node_modules/zod/v4/locales/pl.d.ts +4 -0
  717. package/node_modules/zod/v4/locales/pl.js +117 -0
  718. package/node_modules/zod/v4/locales/ps.cjs +148 -0
  719. package/node_modules/zod/v4/locales/ps.d.cts +4 -0
  720. package/node_modules/zod/v4/locales/ps.d.ts +4 -0
  721. package/node_modules/zod/v4/locales/ps.js +122 -0
  722. package/node_modules/zod/v4/locales/pt.cjs +142 -0
  723. package/node_modules/zod/v4/locales/pt.d.cts +4 -0
  724. package/node_modules/zod/v4/locales/pt.d.ts +4 -0
  725. package/node_modules/zod/v4/locales/pt.js +116 -0
  726. package/node_modules/zod/v4/locales/ru.cjs +190 -0
  727. package/node_modules/zod/v4/locales/ru.d.cts +4 -0
  728. package/node_modules/zod/v4/locales/ru.d.ts +4 -0
  729. package/node_modules/zod/v4/locales/ru.js +164 -0
  730. package/node_modules/zod/v4/locales/sl.cjs +143 -0
  731. package/node_modules/zod/v4/locales/sl.d.cts +4 -0
  732. package/node_modules/zod/v4/locales/sl.d.ts +4 -0
  733. package/node_modules/zod/v4/locales/sl.js +117 -0
  734. package/node_modules/zod/v4/locales/sv.cjs +144 -0
  735. package/node_modules/zod/v4/locales/sv.d.cts +4 -0
  736. package/node_modules/zod/v4/locales/sv.d.ts +4 -0
  737. package/node_modules/zod/v4/locales/sv.js +118 -0
  738. package/node_modules/zod/v4/locales/ta.cjs +143 -0
  739. package/node_modules/zod/v4/locales/ta.d.cts +4 -0
  740. package/node_modules/zod/v4/locales/ta.d.ts +4 -0
  741. package/node_modules/zod/v4/locales/ta.js +117 -0
  742. package/node_modules/zod/v4/locales/th.cjs +143 -0
  743. package/node_modules/zod/v4/locales/th.d.cts +4 -0
  744. package/node_modules/zod/v4/locales/th.d.ts +4 -0
  745. package/node_modules/zod/v4/locales/th.js +117 -0
  746. package/node_modules/zod/v4/locales/tr.cjs +143 -0
  747. package/node_modules/zod/v4/locales/tr.d.cts +5 -0
  748. package/node_modules/zod/v4/locales/tr.d.ts +5 -0
  749. package/node_modules/zod/v4/locales/tr.js +115 -0
  750. package/node_modules/zod/v4/locales/ua.cjs +143 -0
  751. package/node_modules/zod/v4/locales/ua.d.cts +4 -0
  752. package/node_modules/zod/v4/locales/ua.d.ts +4 -0
  753. package/node_modules/zod/v4/locales/ua.js +117 -0
  754. package/node_modules/zod/v4/locales/ur.cjs +143 -0
  755. package/node_modules/zod/v4/locales/ur.d.cts +4 -0
  756. package/node_modules/zod/v4/locales/ur.d.ts +4 -0
  757. package/node_modules/zod/v4/locales/ur.js +117 -0
  758. package/node_modules/zod/v4/locales/vi.cjs +142 -0
  759. package/node_modules/zod/v4/locales/vi.d.cts +4 -0
  760. package/node_modules/zod/v4/locales/vi.d.ts +4 -0
  761. package/node_modules/zod/v4/locales/vi.js +116 -0
  762. package/node_modules/zod/v4/locales/zh-CN.cjs +142 -0
  763. package/node_modules/zod/v4/locales/zh-CN.d.cts +4 -0
  764. package/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
  765. package/node_modules/zod/v4/locales/zh-CN.js +116 -0
  766. package/node_modules/zod/v4/locales/zh-TW.cjs +143 -0
  767. package/node_modules/zod/v4/locales/zh-TW.d.cts +4 -0
  768. package/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
  769. package/node_modules/zod/v4/locales/zh-TW.js +117 -0
  770. package/node_modules/zod/v4/mini/checks.cjs +34 -0
  771. package/node_modules/zod/v4/mini/checks.d.cts +1 -0
  772. package/node_modules/zod/v4/mini/checks.d.ts +1 -0
  773. package/node_modules/zod/v4/mini/checks.js +1 -0
  774. package/node_modules/zod/v4/mini/coerce.cjs +47 -0
  775. package/node_modules/zod/v4/mini/coerce.d.cts +7 -0
  776. package/node_modules/zod/v4/mini/coerce.d.ts +7 -0
  777. package/node_modules/zod/v4/mini/coerce.js +17 -0
  778. package/node_modules/zod/v4/mini/external.cjs +62 -0
  779. package/node_modules/zod/v4/mini/external.d.cts +11 -0
  780. package/node_modules/zod/v4/mini/external.d.ts +11 -0
  781. package/node_modules/zod/v4/mini/external.js +13 -0
  782. package/node_modules/zod/v4/mini/index.cjs +32 -0
  783. package/node_modules/zod/v4/mini/index.d.cts +3 -0
  784. package/node_modules/zod/v4/mini/index.d.ts +3 -0
  785. package/node_modules/zod/v4/mini/index.js +3 -0
  786. package/node_modules/zod/v4/mini/iso.cjs +60 -0
  787. package/node_modules/zod/v4/mini/iso.d.cts +22 -0
  788. package/node_modules/zod/v4/mini/iso.d.ts +22 -0
  789. package/node_modules/zod/v4/mini/iso.js +30 -0
  790. package/node_modules/zod/v4/mini/parse.cjs +8 -0
  791. package/node_modules/zod/v4/mini/parse.d.cts +1 -0
  792. package/node_modules/zod/v4/mini/parse.d.ts +1 -0
  793. package/node_modules/zod/v4/mini/parse.js +1 -0
  794. package/node_modules/zod/v4/mini/schemas.cjs +839 -0
  795. package/node_modules/zod/v4/mini/schemas.d.cts +356 -0
  796. package/node_modules/zod/v4/mini/schemas.d.ts +356 -0
  797. package/node_modules/zod/v4/mini/schemas.js +732 -0
  798. package/node_modules/zod/v4-mini/index.cjs +17 -0
  799. package/node_modules/zod/v4-mini/index.d.cts +1 -0
  800. package/node_modules/zod/v4-mini/index.d.ts +1 -0
  801. package/node_modules/zod/v4-mini/index.js +1 -0
  802. package/package.json +99 -104
  803. package/dist/Workspace-DMye5DU8.js +0 -43113
@@ -0,0 +1,1141 @@
1
+ export declare const ECHARTS_TEMPLATE_REGISTRY: ({
2
+ capabilityId: string;
3
+ category: string;
4
+ type: string;
5
+ title: string;
6
+ description: string;
7
+ blockType: "display";
8
+ subType: string;
9
+ rendererKey: string;
10
+ dataShape: string;
11
+ shell: "card";
12
+ styleVariants: string[];
13
+ defaultSize: "medium";
14
+ handlerClassName: "EChartsExampleTemplateCardAbility";
15
+ status: "implemented";
16
+ echarts: {
17
+ exampleId: string;
18
+ mainCategory: string;
19
+ tags: string[];
20
+ protocolType: "table";
21
+ seriesTypes: string[];
22
+ requires: {
23
+ echartsGl: false;
24
+ bmap: false;
25
+ externalAssets: false;
26
+ timer: false;
27
+ event: false;
28
+ };
29
+ configPath: string;
30
+ dataPath: string;
31
+ availability: {
32
+ insertable: true;
33
+ source: "staticData";
34
+ dataPointCount: number;
35
+ reason?: undefined;
36
+ };
37
+ iconPath: string;
38
+ };
39
+ } | {
40
+ capabilityId: string;
41
+ category: string;
42
+ type: string;
43
+ title: string;
44
+ description: string;
45
+ blockType: "display";
46
+ subType: string;
47
+ rendererKey: string;
48
+ dataShape: string;
49
+ shell: "card";
50
+ styleVariants: string[];
51
+ defaultSize: "medium";
52
+ handlerClassName: "EChartsExampleTemplateCardAbility";
53
+ status: "implemented";
54
+ echarts: {
55
+ exampleId: string;
56
+ mainCategory: string;
57
+ tags: string[];
58
+ protocolType: "series";
59
+ seriesTypes: string[];
60
+ requires: {
61
+ echartsGl: false;
62
+ bmap: false;
63
+ externalAssets: false;
64
+ timer: false;
65
+ event: false;
66
+ };
67
+ configPath: string;
68
+ dataPath: string;
69
+ availability: {
70
+ insertable: true;
71
+ source: "staticData";
72
+ dataPointCount: number;
73
+ reason?: undefined;
74
+ };
75
+ iconPath: string;
76
+ };
77
+ } | {
78
+ capabilityId: string;
79
+ category: string;
80
+ type: string;
81
+ title: string;
82
+ description: string;
83
+ blockType: "display";
84
+ subType: string;
85
+ rendererKey: string;
86
+ dataShape: string;
87
+ shell: "card";
88
+ styleVariants: string[];
89
+ defaultSize: "medium";
90
+ handlerClassName: "EChartsExampleTemplateCardAbility";
91
+ status: "implemented";
92
+ echarts: {
93
+ exampleId: string;
94
+ mainCategory: string;
95
+ tags: string[];
96
+ protocolType: "tuple";
97
+ seriesTypes: string[];
98
+ requires: {
99
+ echartsGl: false;
100
+ bmap: false;
101
+ externalAssets: false;
102
+ timer: false;
103
+ event: false;
104
+ };
105
+ configPath: string;
106
+ dataPath: string;
107
+ availability: {
108
+ insertable: true;
109
+ source: "staticData";
110
+ dataPointCount: number;
111
+ reason?: undefined;
112
+ };
113
+ iconPath: string;
114
+ };
115
+ } | {
116
+ capabilityId: string;
117
+ category: string;
118
+ type: string;
119
+ title: string;
120
+ description: string;
121
+ blockType: "display";
122
+ subType: string;
123
+ rendererKey: string;
124
+ dataShape: string;
125
+ shell: "card";
126
+ styleVariants: string[];
127
+ defaultSize: "medium";
128
+ handlerClassName: "EChartsExampleTemplateCardAbility";
129
+ status: "implemented";
130
+ echarts: {
131
+ exampleId: string;
132
+ mainCategory: string;
133
+ tags: string[];
134
+ protocolType: "network";
135
+ seriesTypes: string[];
136
+ requires: {
137
+ echartsGl: false;
138
+ bmap: false;
139
+ externalAssets: false;
140
+ timer: false;
141
+ event: false;
142
+ };
143
+ configPath: string;
144
+ dataPath: string;
145
+ availability: {
146
+ insertable: true;
147
+ source: "staticData";
148
+ dataPointCount: number;
149
+ reason?: undefined;
150
+ };
151
+ iconPath: string;
152
+ };
153
+ } | {
154
+ capabilityId: string;
155
+ category: string;
156
+ type: string;
157
+ title: string;
158
+ description: string;
159
+ blockType: "display";
160
+ subType: string;
161
+ rendererKey: string;
162
+ dataShape: string;
163
+ shell: "card";
164
+ styleVariants: string[];
165
+ defaultSize: "medium";
166
+ handlerClassName: "EChartsExampleTemplateCardAbility";
167
+ status: "implemented";
168
+ echarts: {
169
+ exampleId: string;
170
+ mainCategory: string;
171
+ tags: string[];
172
+ protocolType: "series";
173
+ seriesTypes: string[];
174
+ requires: {
175
+ echartsGl: false;
176
+ bmap: false;
177
+ externalAssets: false;
178
+ timer: false;
179
+ event: false;
180
+ };
181
+ configPath: string;
182
+ dataPath: string;
183
+ availability: {
184
+ insertable: true;
185
+ source: "staticData";
186
+ dataPointCount: number;
187
+ reason?: undefined;
188
+ };
189
+ iconPath?: undefined;
190
+ };
191
+ } | {
192
+ capabilityId: string;
193
+ category: string;
194
+ type: string;
195
+ title: string;
196
+ description: string;
197
+ blockType: "display";
198
+ subType: string;
199
+ rendererKey: string;
200
+ dataShape: string;
201
+ shell: "card";
202
+ styleVariants: string[];
203
+ defaultSize: "medium";
204
+ handlerClassName: "EChartsExampleTemplateCardAbility";
205
+ status: "implemented";
206
+ echarts: {
207
+ exampleId: string;
208
+ mainCategory: string;
209
+ tags: string[];
210
+ protocolType: "timeline";
211
+ seriesTypes: any[];
212
+ requires: {
213
+ echartsGl: false;
214
+ bmap: false;
215
+ externalAssets: false;
216
+ timer: false;
217
+ event: false;
218
+ };
219
+ configPath: string;
220
+ dataPath: string;
221
+ availability: {
222
+ insertable: true;
223
+ source: "staticData";
224
+ dataPointCount: number;
225
+ reason?: undefined;
226
+ };
227
+ iconPath: string;
228
+ };
229
+ } | {
230
+ capabilityId: string;
231
+ category: string;
232
+ type: string;
233
+ title: string;
234
+ description: string;
235
+ blockType: "display";
236
+ subType: string;
237
+ rendererKey: string;
238
+ dataShape: string;
239
+ shell: "card";
240
+ styleVariants: string[];
241
+ defaultSize: "medium";
242
+ handlerClassName: "EChartsExampleTemplateCardAbility";
243
+ status: "implemented";
244
+ echarts: {
245
+ exampleId: string;
246
+ mainCategory: string;
247
+ tags: string[];
248
+ protocolType: "tree";
249
+ seriesTypes: string[];
250
+ requires: {
251
+ echartsGl: false;
252
+ bmap: false;
253
+ externalAssets: false;
254
+ timer: false;
255
+ event: false;
256
+ };
257
+ configPath: string;
258
+ dataPath: string;
259
+ availability: {
260
+ insertable: true;
261
+ source: "staticData";
262
+ dataPointCount: number;
263
+ reason?: undefined;
264
+ };
265
+ iconPath: string;
266
+ };
267
+ } | {
268
+ capabilityId: string;
269
+ category: string;
270
+ type: string;
271
+ title: string;
272
+ description: string;
273
+ blockType: "display";
274
+ subType: string;
275
+ rendererKey: string;
276
+ dataShape: string;
277
+ shell: "card";
278
+ styleVariants: string[];
279
+ defaultSize: "medium";
280
+ handlerClassName: "EChartsExampleTemplateCardAbility";
281
+ status: "implemented";
282
+ echarts: {
283
+ exampleId: string;
284
+ mainCategory: string;
285
+ tags: string[];
286
+ protocolType: "network";
287
+ seriesTypes: string[];
288
+ requires: {
289
+ echartsGl: false;
290
+ bmap: false;
291
+ externalAssets: false;
292
+ timer: false;
293
+ event: false;
294
+ };
295
+ configPath: string;
296
+ dataPath: string;
297
+ availability: {
298
+ insertable: true;
299
+ source: "staticData";
300
+ dataPointCount: number;
301
+ reason?: undefined;
302
+ };
303
+ iconPath?: undefined;
304
+ };
305
+ } | {
306
+ capabilityId: string;
307
+ category: string;
308
+ type: string;
309
+ title: string;
310
+ description: string;
311
+ blockType: "display";
312
+ subType: string;
313
+ rendererKey: string;
314
+ dataShape: string;
315
+ shell: "card";
316
+ styleVariants: string[];
317
+ defaultSize: "large";
318
+ handlerClassName: "EChartsExampleTemplateCardAbility";
319
+ status: "implemented";
320
+ echarts: {
321
+ exampleId: string;
322
+ mainCategory: string;
323
+ tags: string[];
324
+ protocolType: "geo";
325
+ seriesTypes: string[];
326
+ requires: {
327
+ echartsGl: false;
328
+ bmap: false;
329
+ externalAssets: true;
330
+ timer: false;
331
+ event: false;
332
+ };
333
+ configPath: string;
334
+ dataPath: string;
335
+ availability: {
336
+ insertable: true;
337
+ source: "staticData";
338
+ dataPointCount: number;
339
+ reason?: undefined;
340
+ };
341
+ iconPath?: undefined;
342
+ };
343
+ } | {
344
+ capabilityId: string;
345
+ category: string;
346
+ type: string;
347
+ title: string;
348
+ description: string;
349
+ blockType: "display";
350
+ subType: string;
351
+ rendererKey: string;
352
+ dataShape: string;
353
+ shell: "card";
354
+ styleVariants: string[];
355
+ defaultSize: "medium";
356
+ handlerClassName: "EChartsExampleTemplateCardAbility";
357
+ status: "implemented";
358
+ echarts: {
359
+ exampleId: string;
360
+ mainCategory: string;
361
+ tags: string[];
362
+ protocolType: "layout";
363
+ seriesTypes: any[];
364
+ requires: {
365
+ echartsGl: false;
366
+ bmap: false;
367
+ externalAssets: false;
368
+ timer: false;
369
+ event: false;
370
+ };
371
+ configPath: string;
372
+ dataPath: string;
373
+ availability: {
374
+ insertable: true;
375
+ source: "staticData";
376
+ dataPointCount: number;
377
+ reason?: undefined;
378
+ };
379
+ iconPath?: undefined;
380
+ };
381
+ } | {
382
+ capabilityId: string;
383
+ category: string;
384
+ type: string;
385
+ title: string;
386
+ description: string;
387
+ blockType: "display";
388
+ subType: string;
389
+ rendererKey: string;
390
+ dataShape: string;
391
+ shell: "card";
392
+ styleVariants: string[];
393
+ defaultSize: "medium";
394
+ handlerClassName: "EChartsExampleTemplateCardAbility";
395
+ status: "implemented";
396
+ echarts: {
397
+ exampleId: string;
398
+ mainCategory: string;
399
+ tags: string[];
400
+ protocolType: "composite";
401
+ seriesTypes: any[];
402
+ requires: {
403
+ echartsGl: false;
404
+ bmap: false;
405
+ externalAssets: false;
406
+ timer: false;
407
+ event: false;
408
+ };
409
+ configPath: string;
410
+ dataPath: string;
411
+ availability: {
412
+ insertable: true;
413
+ source: "staticData";
414
+ dataPointCount: number;
415
+ reason?: undefined;
416
+ };
417
+ iconPath?: undefined;
418
+ };
419
+ } | {
420
+ capabilityId: string;
421
+ category: string;
422
+ type: string;
423
+ title: string;
424
+ description: string;
425
+ blockType: "display";
426
+ subType: string;
427
+ rendererKey: string;
428
+ dataShape: string;
429
+ shell: "card";
430
+ styleVariants: string[];
431
+ defaultSize: "medium";
432
+ handlerClassName: "EChartsExampleTemplateCardAbility";
433
+ status: "implemented";
434
+ echarts: {
435
+ exampleId: string;
436
+ mainCategory: string;
437
+ tags: string[];
438
+ protocolType: "transition";
439
+ seriesTypes: any[];
440
+ requires: {
441
+ echartsGl: false;
442
+ bmap: false;
443
+ externalAssets: false;
444
+ timer: true;
445
+ event: true;
446
+ };
447
+ configPath: string;
448
+ dataPath: string;
449
+ availability: {
450
+ insertable: true;
451
+ source: "staticData";
452
+ dataPointCount: number;
453
+ reason?: undefined;
454
+ };
455
+ iconPath: string;
456
+ };
457
+ } | {
458
+ capabilityId: string;
459
+ category: string;
460
+ type: string;
461
+ title: string;
462
+ description: string;
463
+ blockType: "display";
464
+ subType: string;
465
+ rendererKey: string;
466
+ dataShape: string;
467
+ shell: "card";
468
+ styleVariants: string[];
469
+ defaultSize: "medium";
470
+ handlerClassName: "EChartsExampleTemplateCardAbility";
471
+ status: "implemented";
472
+ echarts: {
473
+ exampleId: string;
474
+ mainCategory: string;
475
+ tags: string[];
476
+ protocolType: "series";
477
+ seriesTypes: string[];
478
+ requires: {
479
+ echartsGl: false;
480
+ bmap: false;
481
+ externalAssets: false;
482
+ timer: true;
483
+ event: false;
484
+ };
485
+ configPath: string;
486
+ dataPath: string;
487
+ availability: {
488
+ insertable: true;
489
+ source: "staticData";
490
+ dataPointCount: number;
491
+ reason?: undefined;
492
+ };
493
+ iconPath: string;
494
+ };
495
+ } | {
496
+ capabilityId: string;
497
+ category: string;
498
+ type: string;
499
+ title: string;
500
+ description: string;
501
+ blockType: "display";
502
+ subType: string;
503
+ rendererKey: string;
504
+ dataShape: string;
505
+ shell: "card";
506
+ styleVariants: string[];
507
+ defaultSize: "medium";
508
+ handlerClassName: "EChartsExampleTemplateCardAbility";
509
+ status: "implemented";
510
+ echarts: {
511
+ exampleId: string;
512
+ mainCategory: string;
513
+ tags: string[];
514
+ protocolType: "transition";
515
+ seriesTypes: any[];
516
+ requires: {
517
+ echartsGl: false;
518
+ bmap: false;
519
+ externalAssets: false;
520
+ timer: false;
521
+ event: true;
522
+ };
523
+ configPath: string;
524
+ dataPath: string;
525
+ availability: {
526
+ insertable: true;
527
+ source: "staticData";
528
+ dataPointCount: number;
529
+ reason?: undefined;
530
+ };
531
+ iconPath: string;
532
+ };
533
+ } | {
534
+ capabilityId: string;
535
+ category: string;
536
+ type: string;
537
+ title: string;
538
+ description: string;
539
+ blockType: "display";
540
+ subType: string;
541
+ rendererKey: string;
542
+ dataShape: string;
543
+ shell: "card";
544
+ styleVariants: string[];
545
+ defaultSize: "medium";
546
+ handlerClassName: "EChartsExampleTemplateCardAbility";
547
+ status: "implemented";
548
+ echarts: {
549
+ exampleId: string;
550
+ mainCategory: string;
551
+ tags: string[];
552
+ protocolType: "graphic";
553
+ seriesTypes: any[];
554
+ requires: {
555
+ echartsGl: false;
556
+ bmap: false;
557
+ externalAssets: false;
558
+ timer: false;
559
+ event: false;
560
+ };
561
+ configPath: string;
562
+ dataPath: string;
563
+ availability: {
564
+ insertable: true;
565
+ source: "staticData";
566
+ dataPointCount: number;
567
+ reason?: undefined;
568
+ };
569
+ iconPath?: undefined;
570
+ };
571
+ } | {
572
+ capabilityId: string;
573
+ category: string;
574
+ type: string;
575
+ title: string;
576
+ description: string;
577
+ blockType: "display";
578
+ subType: string;
579
+ rendererKey: string;
580
+ dataShape: string;
581
+ shell: "card";
582
+ styleVariants: string[];
583
+ defaultSize: "medium";
584
+ handlerClassName: "EChartsExampleTemplateCardAbility";
585
+ status: "implemented";
586
+ echarts: {
587
+ exampleId: string;
588
+ mainCategory: string;
589
+ tags: string[];
590
+ protocolType: "series";
591
+ seriesTypes: string[];
592
+ requires: {
593
+ echartsGl: false;
594
+ bmap: false;
595
+ externalAssets: false;
596
+ timer: false;
597
+ event: false;
598
+ };
599
+ configPath: string;
600
+ dataPath: string;
601
+ availability: {
602
+ insertable: true;
603
+ source: "sourceReplay";
604
+ dataPointCount: number;
605
+ reason?: undefined;
606
+ };
607
+ iconPath: string;
608
+ };
609
+ } | {
610
+ capabilityId: string;
611
+ category: string;
612
+ type: string;
613
+ title: string;
614
+ description: string;
615
+ blockType: "display";
616
+ subType: string;
617
+ rendererKey: string;
618
+ dataShape: string;
619
+ shell: "card";
620
+ styleVariants: string[];
621
+ defaultSize: "medium";
622
+ handlerClassName: "EChartsExampleTemplateCardAbility";
623
+ status: "implemented";
624
+ echarts: {
625
+ exampleId: string;
626
+ mainCategory: string;
627
+ tags: string[];
628
+ protocolType: "tuple";
629
+ seriesTypes: string[];
630
+ requires: {
631
+ echartsGl: false;
632
+ bmap: false;
633
+ externalAssets: false;
634
+ timer: false;
635
+ event: false;
636
+ };
637
+ configPath: string;
638
+ dataPath: string;
639
+ availability: {
640
+ insertable: true;
641
+ source: "staticData";
642
+ dataPointCount: number;
643
+ reason?: undefined;
644
+ };
645
+ iconPath?: undefined;
646
+ };
647
+ } | {
648
+ capabilityId: string;
649
+ category: string;
650
+ type: string;
651
+ title: string;
652
+ description: string;
653
+ blockType: "display";
654
+ subType: string;
655
+ rendererKey: string;
656
+ dataShape: string;
657
+ shell: "card";
658
+ styleVariants: string[];
659
+ defaultSize: "large";
660
+ handlerClassName: "EChartsExampleTemplateCardAbility";
661
+ status: "implemented";
662
+ echarts: {
663
+ exampleId: string;
664
+ mainCategory: string;
665
+ tags: string[];
666
+ protocolType: "geo";
667
+ seriesTypes: any[];
668
+ requires: {
669
+ echartsGl: false;
670
+ bmap: false;
671
+ externalAssets: true;
672
+ timer: false;
673
+ event: false;
674
+ };
675
+ configPath: string;
676
+ dataPath: string;
677
+ availability: {
678
+ insertable: true;
679
+ source: "sourceReplay";
680
+ dataPointCount: number;
681
+ reason?: undefined;
682
+ };
683
+ iconPath?: undefined;
684
+ };
685
+ } | {
686
+ capabilityId: string;
687
+ category: string;
688
+ type: string;
689
+ title: string;
690
+ description: string;
691
+ blockType: "display";
692
+ subType: string;
693
+ rendererKey: string;
694
+ dataShape: string;
695
+ shell: "card";
696
+ styleVariants: string[];
697
+ defaultSize: "medium";
698
+ handlerClassName: "EChartsExampleTemplateCardAbility";
699
+ status: "implemented";
700
+ echarts: {
701
+ exampleId: string;
702
+ mainCategory: string;
703
+ tags: string[];
704
+ protocolType: "transition";
705
+ seriesTypes: any[];
706
+ requires: {
707
+ echartsGl: false;
708
+ bmap: false;
709
+ externalAssets: false;
710
+ timer: true;
711
+ event: true;
712
+ };
713
+ configPath: string;
714
+ dataPath: string;
715
+ availability: {
716
+ insertable: true;
717
+ source: "staticData";
718
+ dataPointCount: number;
719
+ reason?: undefined;
720
+ };
721
+ iconPath?: undefined;
722
+ };
723
+ } | {
724
+ capabilityId: string;
725
+ category: string;
726
+ type: string;
727
+ title: string;
728
+ description: string;
729
+ blockType: "display";
730
+ subType: string;
731
+ rendererKey: string;
732
+ dataShape: string;
733
+ shell: "card";
734
+ styleVariants: string[];
735
+ defaultSize: "medium";
736
+ handlerClassName: "EChartsExampleTemplateCardAbility";
737
+ status: "implemented";
738
+ echarts: {
739
+ exampleId: string;
740
+ mainCategory: string;
741
+ tags: string[];
742
+ protocolType: "transition";
743
+ seriesTypes: any[];
744
+ requires: {
745
+ echartsGl: false;
746
+ bmap: false;
747
+ externalAssets: false;
748
+ timer: false;
749
+ event: true;
750
+ };
751
+ configPath: string;
752
+ dataPath: string;
753
+ availability: {
754
+ insertable: true;
755
+ source: "staticData";
756
+ dataPointCount: number;
757
+ reason?: undefined;
758
+ };
759
+ iconPath?: undefined;
760
+ };
761
+ } | {
762
+ capabilityId: string;
763
+ category: string;
764
+ type: string;
765
+ title: string;
766
+ description: string;
767
+ blockType: "display";
768
+ subType: string;
769
+ rendererKey: string;
770
+ dataShape: string;
771
+ shell: "card";
772
+ styleVariants: string[];
773
+ defaultSize: "medium";
774
+ handlerClassName: "EChartsExampleTemplateCardAbility";
775
+ status: "implemented";
776
+ echarts: {
777
+ exampleId: string;
778
+ mainCategory: string;
779
+ tags: string[];
780
+ protocolType: "table";
781
+ seriesTypes: string[];
782
+ requires: {
783
+ echartsGl: false;
784
+ bmap: false;
785
+ externalAssets: false;
786
+ timer: false;
787
+ event: false;
788
+ };
789
+ configPath: string;
790
+ dataPath: string;
791
+ availability: {
792
+ insertable: true;
793
+ source: "staticData";
794
+ dataPointCount: number;
795
+ reason?: undefined;
796
+ };
797
+ iconPath?: undefined;
798
+ };
799
+ } | {
800
+ capabilityId: string;
801
+ category: string;
802
+ type: string;
803
+ title: string;
804
+ description: string;
805
+ blockType: "display";
806
+ subType: string;
807
+ rendererKey: string;
808
+ dataShape: string;
809
+ shell: "card";
810
+ styleVariants: string[];
811
+ defaultSize: "medium";
812
+ handlerClassName: "EChartsExampleTemplateCardAbility";
813
+ status: "implemented";
814
+ echarts: {
815
+ exampleId: string;
816
+ mainCategory: string;
817
+ tags: any[];
818
+ protocolType: "configOnly";
819
+ seriesTypes: any[];
820
+ requires: {
821
+ echartsGl: false;
822
+ bmap: false;
823
+ externalAssets: false;
824
+ timer: false;
825
+ event: false;
826
+ };
827
+ configPath: string;
828
+ dataPath: string;
829
+ availability: {
830
+ insertable: true;
831
+ source: "sourceReplay";
832
+ dataPointCount: number;
833
+ reason?: undefined;
834
+ };
835
+ iconPath: string;
836
+ };
837
+ } | {
838
+ capabilityId: string;
839
+ category: string;
840
+ type: string;
841
+ title: string;
842
+ description: string;
843
+ blockType: "display";
844
+ subType: string;
845
+ rendererKey: string;
846
+ dataShape: string;
847
+ shell: "card";
848
+ styleVariants: string[];
849
+ defaultSize: "medium";
850
+ handlerClassName: "EChartsExampleTemplateCardAbility";
851
+ status: "implemented";
852
+ echarts: {
853
+ exampleId: string;
854
+ mainCategory: string;
855
+ tags: any[];
856
+ protocolType: "timeline";
857
+ seriesTypes: any[];
858
+ requires: {
859
+ echartsGl: false;
860
+ bmap: false;
861
+ externalAssets: false;
862
+ timer: false;
863
+ event: false;
864
+ };
865
+ configPath: string;
866
+ dataPath: string;
867
+ availability: {
868
+ insertable: true;
869
+ source: "sourceReplay";
870
+ dataPointCount: number;
871
+ reason?: undefined;
872
+ };
873
+ iconPath: string;
874
+ };
875
+ } | {
876
+ capabilityId: string;
877
+ category: string;
878
+ type: string;
879
+ title: string;
880
+ description: string;
881
+ blockType: "display";
882
+ subType: string;
883
+ rendererKey: string;
884
+ dataShape: string;
885
+ shell: "card";
886
+ styleVariants: string[];
887
+ defaultSize: "medium";
888
+ handlerClassName: "EChartsExampleTemplateCardAbility";
889
+ status: "implemented";
890
+ echarts: {
891
+ exampleId: string;
892
+ mainCategory: string;
893
+ tags: any[];
894
+ protocolType: "series";
895
+ seriesTypes: any[];
896
+ requires: {
897
+ echartsGl: false;
898
+ bmap: false;
899
+ externalAssets: false;
900
+ timer: false;
901
+ event: false;
902
+ };
903
+ configPath: string;
904
+ dataPath: string;
905
+ availability: {
906
+ insertable: true;
907
+ source: "sourceReplay";
908
+ dataPointCount: number;
909
+ reason?: undefined;
910
+ };
911
+ iconPath?: undefined;
912
+ };
913
+ } | {
914
+ capabilityId: string;
915
+ category: string;
916
+ type: string;
917
+ title: string;
918
+ description: string;
919
+ blockType: "display";
920
+ subType: string;
921
+ rendererKey: string;
922
+ dataShape: string;
923
+ shell: "card";
924
+ styleVariants: string[];
925
+ defaultSize: "medium";
926
+ handlerClassName: "EChartsExampleTemplateCardAbility";
927
+ status: "implemented";
928
+ echarts: {
929
+ exampleId: string;
930
+ mainCategory: string;
931
+ tags: string[];
932
+ protocolType: "table";
933
+ seriesTypes: string[];
934
+ requires: {
935
+ echartsGl: true;
936
+ bmap: false;
937
+ externalAssets: false;
938
+ timer: false;
939
+ event: false;
940
+ };
941
+ configPath: string;
942
+ dataPath: string;
943
+ availability: {
944
+ insertable: true;
945
+ source: "staticData";
946
+ dataPointCount: number;
947
+ reason?: undefined;
948
+ };
949
+ iconPath?: undefined;
950
+ };
951
+ } | {
952
+ capabilityId: string;
953
+ category: string;
954
+ type: string;
955
+ title: string;
956
+ description: string;
957
+ blockType: "display";
958
+ subType: string;
959
+ rendererKey: string;
960
+ dataShape: string;
961
+ shell: "card";
962
+ styleVariants: string[];
963
+ defaultSize: "medium";
964
+ handlerClassName: "EChartsExampleTemplateCardAbility";
965
+ status: "implemented";
966
+ echarts: {
967
+ exampleId: string;
968
+ mainCategory: string;
969
+ tags: string[];
970
+ protocolType: "series";
971
+ seriesTypes: string[];
972
+ requires: {
973
+ echartsGl: true;
974
+ bmap: false;
975
+ externalAssets: false;
976
+ timer: false;
977
+ event: false;
978
+ };
979
+ configPath: string;
980
+ dataPath: string;
981
+ availability: {
982
+ insertable: true;
983
+ source: "staticData";
984
+ dataPointCount: number;
985
+ reason?: undefined;
986
+ };
987
+ iconPath?: undefined;
988
+ };
989
+ } | {
990
+ capabilityId: string;
991
+ category: string;
992
+ type: string;
993
+ title: string;
994
+ description: string;
995
+ blockType: "display";
996
+ subType: string;
997
+ rendererKey: string;
998
+ dataShape: string;
999
+ shell: "card";
1000
+ styleVariants: string[];
1001
+ defaultSize: "medium";
1002
+ handlerClassName: "EChartsExampleTemplateCardAbility";
1003
+ status: "placeholder";
1004
+ echarts: {
1005
+ exampleId: string;
1006
+ mainCategory: string;
1007
+ tags: string[];
1008
+ protocolType: "series";
1009
+ seriesTypes: string[];
1010
+ requires: {
1011
+ echartsGl: true;
1012
+ bmap: false;
1013
+ externalAssets: false;
1014
+ timer: false;
1015
+ event: false;
1016
+ };
1017
+ configPath: string;
1018
+ dataPath: string;
1019
+ availability: {
1020
+ insertable: false;
1021
+ source: "sourceReplay";
1022
+ dataPointCount: number;
1023
+ reason: string;
1024
+ };
1025
+ iconPath?: undefined;
1026
+ };
1027
+ } | {
1028
+ capabilityId: string;
1029
+ category: string;
1030
+ type: string;
1031
+ title: string;
1032
+ description: string;
1033
+ blockType: "display";
1034
+ subType: string;
1035
+ rendererKey: string;
1036
+ dataShape: string;
1037
+ shell: "card";
1038
+ styleVariants: string[];
1039
+ defaultSize: "large";
1040
+ handlerClassName: "EChartsExampleTemplateCardAbility";
1041
+ status: "placeholder";
1042
+ echarts: {
1043
+ exampleId: string;
1044
+ mainCategory: string;
1045
+ tags: string[];
1046
+ protocolType: "geo";
1047
+ seriesTypes: string[];
1048
+ requires: {
1049
+ echartsGl: true;
1050
+ bmap: false;
1051
+ externalAssets: true;
1052
+ timer: false;
1053
+ event: false;
1054
+ };
1055
+ configPath: string;
1056
+ dataPath: string;
1057
+ availability: {
1058
+ insertable: false;
1059
+ source: "sourceReplay";
1060
+ dataPointCount: number;
1061
+ reason: string;
1062
+ };
1063
+ iconPath?: undefined;
1064
+ };
1065
+ } | {
1066
+ capabilityId: string;
1067
+ category: string;
1068
+ type: string;
1069
+ title: string;
1070
+ description: string;
1071
+ blockType: "display";
1072
+ subType: string;
1073
+ rendererKey: string;
1074
+ dataShape: string;
1075
+ shell: "card";
1076
+ styleVariants: string[];
1077
+ defaultSize: "large";
1078
+ handlerClassName: "EChartsExampleTemplateCardAbility";
1079
+ status: "placeholder";
1080
+ echarts: {
1081
+ exampleId: string;
1082
+ mainCategory: string;
1083
+ tags: string[];
1084
+ protocolType: "scene3D";
1085
+ seriesTypes: string[];
1086
+ requires: {
1087
+ echartsGl: true;
1088
+ bmap: false;
1089
+ externalAssets: true;
1090
+ timer: false;
1091
+ event: false;
1092
+ };
1093
+ configPath: string;
1094
+ dataPath: string;
1095
+ availability: {
1096
+ insertable: false;
1097
+ source: "staticData";
1098
+ dataPointCount: number;
1099
+ reason: string;
1100
+ };
1101
+ iconPath?: undefined;
1102
+ };
1103
+ } | {
1104
+ capabilityId: string;
1105
+ category: string;
1106
+ type: string;
1107
+ title: string;
1108
+ description: string;
1109
+ blockType: "display";
1110
+ subType: string;
1111
+ rendererKey: string;
1112
+ dataShape: string;
1113
+ shell: "card";
1114
+ styleVariants: string[];
1115
+ defaultSize: "large";
1116
+ handlerClassName: "EChartsExampleTemplateCardAbility";
1117
+ status: "placeholder";
1118
+ echarts: {
1119
+ exampleId: string;
1120
+ mainCategory: string;
1121
+ tags: string[];
1122
+ protocolType: "scene3D";
1123
+ seriesTypes: string[];
1124
+ requires: {
1125
+ echartsGl: true;
1126
+ bmap: false;
1127
+ externalAssets: true;
1128
+ timer: false;
1129
+ event: false;
1130
+ };
1131
+ configPath: string;
1132
+ dataPath: string;
1133
+ availability: {
1134
+ insertable: false;
1135
+ source: "sourceReplay";
1136
+ dataPointCount: number;
1137
+ reason: string;
1138
+ };
1139
+ iconPath?: undefined;
1140
+ };
1141
+ })[];