@webskill/sdk 0.3.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/agent.d.ts +2 -0
  2. package/dist/agent.js +867 -0
  3. package/dist/browser.d.ts +137 -4
  4. package/dist/browser.js +458 -22
  5. package/dist/{catalogComponents-C_V39rbF-BOHveMWa.js → catalogComponents-DV7cPpUm-C77AEEx9.js} +477 -157
  6. package/dist/{dist-rorEJsNi.js → dist-6C03DShK.js} +654 -298
  7. package/dist/{dist-ZKaM8j06.js → dist-bewtXYlO.js} +1061 -807
  8. package/dist/governance.d.ts +87 -10
  9. package/dist/governance.js +194 -24
  10. package/dist/{index-wiV5X8Rz.d.ts → index-Bsqg4ftU.d.ts} +151 -143
  11. package/dist/index-D_7ZZjkl.d.ts +411 -0
  12. package/dist/{index-8d-oEDww.d.ts → index-vBz_FC9w.d.ts} +289 -24
  13. package/dist/index.d.ts +3 -3
  14. package/dist/index.js +3 -2
  15. package/dist/mcp.d.ts +2 -2
  16. package/dist/mcp.js +1 -1
  17. package/dist/memoryArtifactStore-BtOeB_hm-tj3fC5ip.js +78 -0
  18. package/dist/node.d.ts +8 -4
  19. package/dist/node.js +1 -1
  20. package/dist/{openUiLibrary-B8-Cvou9-BbpNTXS3.js → openUiLibrary-W3Ce896k-ClFTRZFs.js} +6 -5
  21. package/dist/{skillVersionStore-DOEI9ptb-BxbYL70B.d.ts → skillVersionStore-BzLbzFOL-CxwIewHJ.d.ts} +43 -11
  22. package/dist/{testing-CsrG3XLz.js → testing-DDCJWvgA.js} +7 -5
  23. package/dist/testing.d.ts +1 -1
  24. package/dist/testing.js +2 -2
  25. package/dist/{types-AmKCKJn_-VGabeXK4.d.ts → types-D_hoCri8-BnNPiZCi.d.ts} +111 -72
  26. package/dist/ui-react.d.ts +352 -20
  27. package/dist/ui-react.js +3804 -3478
  28. package/dist/ui-vue.d.ts +1 -1
  29. package/dist/ui-vue.js +25 -6
  30. package/dist/ui.d.ts +4 -3
  31. package/dist/ui.js +3 -3
  32. package/dist/{webskillLitCatalog-CNaUpasU-BslMcxRZ.js → webskillLitCatalog-_mugzRHx-DiuJpCuf.js} +398 -122
  33. package/package.json +6 -1
  34. package/dist/jsonRenderRegistry-9GrWP_hE-U6Do3Kid.js +0 -2468
  35. package/dist/memoryArtifactStore-C9lFVqPF-yFz6yJj0.js +0 -48
package/dist/ui-vue.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { _ as RenderResultRequest, o as InteractionRequest, s as InteractionResponse, v as UiBridge } from "./types-AmKCKJn_-VGabeXK4.js";
1
+ import { b as UiBridge, c as InteractionResponse, s as InteractionRequest, y as RenderResultRequest } from "./types-D_hoCri8-BnNPiZCi.js";
2
2
  import { PropType } from "vue";
3
3
  //#region ../ui-vue/dist/index.d.ts
4
4
  //#region src/bridgeState.d.ts
package/dist/ui-vue.js CHANGED
@@ -1,4 +1,4 @@
1
- import { B as shapeInteractionValue, P as interactionToFormModel, S as collectValues, dt as renderMiniMarkdown, ut as renderMiniChart } from "./dist-ZKaM8j06.js";
1
+ import { I as shapeInteractionValue, O as interactionToFormModel, P as renderMiniChart, g as applySuggestion, tt as renderMiniMarkdown, x as collectValues } from "./dist-bewtXYlO.js";
2
2
  import { defineComponent, h, reactive, ref } from "vue";
3
3
 
4
4
  //#region ../ui-vue/dist/index.js
@@ -46,6 +46,19 @@ var VueBridgeState = class {
46
46
  this.state.streamingText += delta;
47
47
  }
48
48
  };
49
+ /** 历史值以**建议**形态出现(FR-5.9):控件初始值仍为空,用户点「使用」才写入 */
50
+ function renderSuggestion(control, onUse) {
51
+ if (control.suggestion === void 0) return null;
52
+ return h("div", {
53
+ class: "webskill-form__suggestion",
54
+ "data-webskill-suggestion": control.name
55
+ }, [h("span", { class: "webskill-form__suggestion-value" }, `Last entered: ${String(control.suggestion.value)}`), h("button", {
56
+ type: "button",
57
+ class: "webskill-form__suggestion-use",
58
+ "data-webskill-suggestion-use": control.name,
59
+ onClick: onUse
60
+ }, "Use")]);
61
+ }
49
62
  function renderControl(control, invalid) {
50
63
  const controlId = `webskill-field-${control.name}`;
51
64
  const label = h("label", {
@@ -137,11 +150,17 @@ const InteractionForm = defineComponent({
137
150
  }, [
138
151
  model.title ? h("div", { class: "webskill-form__title" }, model.title) : null,
139
152
  model.message && (model.kind === "form" || model.kind === "authorize") ? h("p", { class: "webskill-form__message" }, model.message) : null,
140
- ...model.controls.map((control) => h("div", { key: control.name }, [renderControl(control, invalid.value.includes(control.name)), invalid.value.includes(control.name) ? h("div", {
141
- id: `webskill-error-${control.name}`,
142
- role: "alert",
143
- class: "webskill-form__error"
144
- }, "This field is required") : null])),
153
+ ...model.controls.map((control) => h("div", { key: control.name }, [
154
+ renderControl(control, invalid.value.includes(control.name)),
155
+ renderSuggestion(control, () => {
156
+ if (formRef.value) applySuggestion(control, formRef.value);
157
+ }),
158
+ invalid.value.includes(control.name) ? h("div", {
159
+ id: `webskill-error-${control.name}`,
160
+ role: "alert",
161
+ class: "webskill-form__error"
162
+ }, "This field is required") : null
163
+ ])),
145
164
  h("div", { class: "webskill-form__actions" }, [h("button", {
146
165
  type: "submit",
147
166
  class: "webskill-form__button webskill-form__button--primary"
package/dist/ui.d.ts CHANGED
@@ -1,3 +1,4 @@
1
- import { Dt as buildRenderResult } from "./index-8d-oEDww.js";
2
- import { $ as WEBSKILL_SURFACE_ACTION, A as SurfaceRendererProvenance, At as toA2uiSurfaceAction, B as UiSpecNode, Bt as toVercelToolInvocation, C as OPENUI_AUTHORIZE_ACTION, Ct as renderBlocks, D as OpenUiRendererProps, Dt as shapeInteractionValue, E as OPENUI_SURFACE_ACTION, Et as renderRenderResult, F as UiCatalogInput, Ft as toOpenUiSurfaceLang, G as VERCEL_INTERACTION_TOOL_NAME, H as UiSpecValidation, I as UiCatalogPromptOptions, It as toSurface, J as VercelSurfaceDataPart, K as VERCEL_SURFACE_ACTION_DATA_PART_TYPE, L as UiCatalogToolSourceOptions, Lt as toUiSurfaceActionDispatch, M as UI_SPEC_COMPONENT, Mt as toJsonRenderSpec, N as UiActionDef, Nt as toOpenUiLang, O as OpenUiRuntime, Ot as toA2uiMessages, P as UiCatalog, Pt as toOpenUiSpecLang, Q as WEBSKILL_STYLES_CSS, R as UiComponentDef, Rt as toUiSurfaceDescriptor, S as LoadedOpenUiPeers, St as loadWebSkillLitCatalog, T as OPENUI_SUBMIT_ACTION, Tt as renderMiniMarkdown, U as UiSurfaceActionDispatch, V as UiSpecSurfaceProps, Vt as uiCatalog, W as UiSurfaceDescriptor, X as VercelUiBridge, Y as VercelToolInvocation, Z as WEBSKILL_A2UI_CATALOG_ID, _ as CollectedValues, _t as fromVercelSurfaceAction, a as A2UI_SPEC_FORM_PATH, at as chartToTable, b as JsonRenderSpec, bt as isUiSpecSurface, c as A2UI_VERSION, ct as decodeInteractionResponse, d as A2uiCatalogHandle, dt as fromA2uiAction, et as WebFormBridge, f as A2uiComponentShape, ft as fromA2uiSpecAction, g as CHART_PALETTE, gt as fromUiSurfaceActionDispatch, h as A2uiSpecMessageOptions, ht as fromOpenUiSurfaceAction, i as A2UI_SPEC_ACTION, it as buildA2uiCatalogDefinition, j as UI_CATALOG_GROUPS, jt as toA2uiSurfaceMessages, k as RENDER_UI_TOOL, kt as toA2uiSpecMessages, l as A2uiCatalogComponent, lt as defineUiCatalog, m as A2uiSpecActionEvent, mt as fromOpenUiAction, n as A2UI_CANCEL_ACTION, nt as a2uiComponentSchema, o as A2UI_SUBMIT_ACTION, ot as collectValues, p as A2uiMessage, pt as fromA2uiSurfaceAction, q as VERCEL_SURFACE_DATA_PART_TYPE, r as A2UI_COMMON_TYPES, rt as a2uiComponentShapes, s as A2UI_SURFACE_ACTION, st as createUiCatalogToolSource, t as A2UI_BASIC_CATALOG_ID, tt as ZodRuntime, u as A2uiCatalogDefinition, ut as ensureStyles, v as ControlModel, vt as fromVercelToolResult, w as OPENUI_CANCEL_ACTION, wt as renderMiniChart, x as LitRendererBridge, xt as loadOpenUiPeers, y as FormModel, yt as interactionToFormModel, z as UiSpecIssue, zt as toVercelSurfaceDataPart } from "./index-wiV5X8Rz.js";
3
- export { A2UI_BASIC_CATALOG_ID, A2UI_CANCEL_ACTION, A2UI_COMMON_TYPES, A2UI_SPEC_ACTION, A2UI_SPEC_FORM_PATH, A2UI_SUBMIT_ACTION, A2UI_SURFACE_ACTION, A2UI_VERSION, type A2uiCatalogComponent, type A2uiCatalogDefinition, type A2uiCatalogHandle, type A2uiComponentShape, type A2uiMessage, type A2uiSpecActionEvent, type A2uiSpecMessageOptions, CHART_PALETTE, type CollectedValues, type ControlModel, type FormModel, type JsonRenderSpec, LitRendererBridge, type LoadedOpenUiPeers, OPENUI_AUTHORIZE_ACTION, OPENUI_CANCEL_ACTION, OPENUI_SUBMIT_ACTION, OPENUI_SURFACE_ACTION, type OpenUiRendererProps, type OpenUiRuntime, RENDER_UI_TOOL, type SurfaceRendererProvenance, UI_CATALOG_GROUPS, UI_SPEC_COMPONENT, type UiActionDef, type UiCatalog, type UiCatalogInput, type UiCatalogPromptOptions, type UiCatalogToolSourceOptions, type UiComponentDef, type UiSpecIssue, type UiSpecNode, type UiSpecSurfaceProps, type UiSpecValidation, type UiSurfaceActionDispatch, type UiSurfaceDescriptor, VERCEL_INTERACTION_TOOL_NAME, VERCEL_SURFACE_ACTION_DATA_PART_TYPE, VERCEL_SURFACE_DATA_PART_TYPE, type VercelSurfaceDataPart, type VercelToolInvocation, VercelUiBridge, WEBSKILL_A2UI_CATALOG_ID, WEBSKILL_STYLES_CSS, WEBSKILL_SURFACE_ACTION, WebFormBridge, type ZodRuntime, a2uiComponentSchema, a2uiComponentShapes, buildA2uiCatalogDefinition, buildRenderResult, chartToTable, collectValues, createUiCatalogToolSource, decodeInteractionResponse, defineUiCatalog, ensureStyles, fromA2uiAction, fromA2uiSpecAction, fromA2uiSurfaceAction, fromOpenUiAction, fromOpenUiSurfaceAction, fromUiSurfaceActionDispatch, fromVercelSurfaceAction, fromVercelToolResult, interactionToFormModel, isUiSpecSurface, loadOpenUiPeers, loadWebSkillLitCatalog, renderBlocks, renderMiniChart, renderMiniMarkdown, renderRenderResult, shapeInteractionValue, toA2uiMessages, toA2uiSpecMessages, toA2uiSurfaceAction, toA2uiSurfaceMessages, toJsonRenderSpec, toOpenUiLang, toOpenUiSpecLang, toOpenUiSurfaceLang, toSurface, toUiSurfaceActionDispatch, toUiSurfaceDescriptor, toVercelSurfaceDataPart, toVercelToolInvocation, uiCatalog };
1
+ import { mt as UiSpecNode } from "./types-D_hoCri8-BnNPiZCi.js";
2
+ import { Wt as buildRenderResult } from "./index-vBz_FC9w.js";
3
+ import { $ as buildA2uiCatalogDefinition, A as UiActionDef, At as uiCatalog, B as UiSpecValidation, C as OpenUiRendererProps, Ct as shapeInteractionValue, D as UI_CATALOG_PROMPT_BUDGET_BYTES, Dt as toOpenUiSpecLang, E as UI_CATALOG_GROUPS, Et as toJsonRenderSpec, F as UiComponentDef, G as WEBSKILL_A2UI_CATALOG_ID, H as VERCEL_INTERACTION_TOOL_NAME, I as UiFormScope, J as WebFormBridge, K as WEBSKILL_STYLES_CSS, L as UiPreset, M as UiCatalogInput, N as UiCatalogPromptOptions, O as UI_PRESETS, Ot as toUiSurfaceActionDispatch, P as UiCatalogToolSourceOptions, Q as applySuggestion, R as UiPresetName, S as LoadedOpenUiPeers, St as renderRenderResult, T as RENDER_UI_TOOL, Tt as toA2uiSurfaceAction, U as VercelToolInvocation, V as UiSurfaceActionDispatch, W as VercelUiBridge, X as a2uiComponentSchema, Y as ZodRuntime, Z as a2uiComponentShapes, _ as DESCRIBE_UI_PRESET_TOOL, _t as mountEchart, a as A2UI_SURFACE_ACTION, at as collectValues, b as InteractionSpecLabels, bt as renderMiniChart, c as A2uiCatalogDefinition, ct as ensureStyles, d as A2uiMessage, dt as fromUiSurfaceActionDispatch, et as chartSpecFromProps, f as A2uiSpecActionEvent, ft as fromVercelToolResult, g as ControlModel, gt as loadWebSkillLitCatalog, h as CollectedValues, ht as loadOpenUiPeers, i as A2UI_SPEC_FORM_PATH, it as collectSpecActions, j as UiCatalog, jt as uiPreset, k as UI_PRESET_NAMES, kt as toVercelToolInvocation, l as A2uiCatalogHandle, lt as fromA2uiSpecAction, m as CHART_PALETTE, mt as interactionToUiSpec, n as A2UI_COMMON_TYPES, nt as collectFormScopes, o as A2UI_VERSION, ot as createUiCatalogToolSource, p as A2uiSpecMessageOptions, pt as interactionToFormModel, q as WEBSKILL_SURFACE_ACTION, r as A2UI_SPEC_ACTION, rt as collectScopedValues, s as A2uiCatalogComponent, st as defineUiCatalog, t as A2UI_BASIC_CATALOG_ID, tt as chartToTable, u as A2uiComponentShape, ut as fromA2uiSurfaceAction, v as EchartHandle, vt as qualifyFieldName, w as OpenUiRuntime, wt as toA2uiSpecMessages, x as JsonRenderSpec, xt as renderMiniMarkdown, y as FormModel, yt as renderBlocks, z as UiSpecIssue } from "./index-Bsqg4ftU.js";
4
+ export { A2UI_BASIC_CATALOG_ID, A2UI_COMMON_TYPES, A2UI_SPEC_ACTION, A2UI_SPEC_FORM_PATH, A2UI_SURFACE_ACTION, A2UI_VERSION, type A2uiCatalogComponent, type A2uiCatalogDefinition, type A2uiCatalogHandle, type A2uiComponentShape, type A2uiMessage, type A2uiSpecActionEvent, type A2uiSpecMessageOptions, CHART_PALETTE, type CollectedValues, type ControlModel, DESCRIBE_UI_PRESET_TOOL, type EchartHandle, type FormModel, type InteractionSpecLabels, type JsonRenderSpec, type LoadedOpenUiPeers, type OpenUiRendererProps, type OpenUiRuntime, RENDER_UI_TOOL, UI_CATALOG_GROUPS, UI_CATALOG_PROMPT_BUDGET_BYTES, UI_PRESETS, UI_PRESET_NAMES, type UiActionDef, type UiCatalog, type UiCatalogInput, type UiCatalogPromptOptions, type UiCatalogToolSourceOptions, type UiComponentDef, type UiFormScope, type UiPreset, type UiPresetName, type UiSpecIssue, type UiSpecNode, type UiSpecValidation, type UiSurfaceActionDispatch, VERCEL_INTERACTION_TOOL_NAME, type VercelToolInvocation, VercelUiBridge, WEBSKILL_A2UI_CATALOG_ID, WEBSKILL_STYLES_CSS, WEBSKILL_SURFACE_ACTION, WebFormBridge, type ZodRuntime, a2uiComponentSchema, a2uiComponentShapes, applySuggestion, buildA2uiCatalogDefinition, buildRenderResult, chartSpecFromProps, chartToTable, collectFormScopes, collectScopedValues, collectSpecActions, collectValues, createUiCatalogToolSource, defineUiCatalog, ensureStyles, fromA2uiSpecAction, fromA2uiSurfaceAction, fromUiSurfaceActionDispatch, fromVercelToolResult, interactionToFormModel, interactionToUiSpec, loadOpenUiPeers, loadWebSkillLitCatalog, mountEchart, qualifyFieldName, renderBlocks, renderMiniChart, renderMiniMarkdown, renderRenderResult, shapeInteractionValue, toA2uiSpecMessages, toA2uiSurfaceAction, toJsonRenderSpec, toOpenUiSpecLang, toUiSurfaceActionDispatch, toVercelToolInvocation, uiCatalog, uiPreset };
package/dist/ui.js CHANGED
@@ -1,4 +1,4 @@
1
- import { O as buildRenderResult } from "./dist-rorEJsNi.js";
2
- import { $ as toVercelToolInvocation, A as fromOpenUiSurfaceAction, B as shapeInteractionValue, C as createUiCatalogToolSource, D as fromA2uiSpecAction, E as fromA2uiAction, F as isUiSpecSurface, G as toJsonRenderSpec, H as toA2uiSpecMessages, I as loadOpenUiPeers, J as toOpenUiSurfaceLang, K as toOpenUiLang, L as loadWebSkillLitCatalog, M as fromVercelSurfaceAction, N as fromVercelToolResult, O as fromA2uiSurfaceAction, P as interactionToFormModel, Q as toVercelSurfaceDataPart, R as renderBlocks, S as collectValues, T as ensureStyles, U as toA2uiSurfaceAction, V as toA2uiMessages, W as toA2uiSurfaceMessages, X as toUiSurfaceActionDispatch, Y as toSurface, Z as toUiSurfaceDescriptor, _ as VERCEL_SURFACE_DATA_PART_TYPE, a as A2UI_SUBMIT_ACTION, at as a2uiComponentSchema, b as WEBSKILL_SURFACE_ACTION, c as LitRendererBridge, ct as chartToTable, d as OPENUI_SUBMIT_ACTION, dt as renderMiniMarkdown, f as OPENUI_SURFACE_ACTION, ft as uiCatalog, g as VERCEL_SURFACE_ACTION_DATA_PART_TYPE, h as VERCEL_INTERACTION_TOOL_NAME, i as A2UI_SPEC_FORM_PATH, it as WEBSKILL_A2UI_CATALOG_ID, j as fromUiSurfaceActionDispatch, k as fromOpenUiAction, l as OPENUI_AUTHORIZE_ACTION, lt as defineUiCatalog, m as UI_SPEC_COMPONENT, n as A2UI_CANCEL_ACTION, nt as CHART_PALETTE, o as A2UI_SURFACE_ACTION, ot as a2uiComponentShapes, p as RENDER_UI_TOOL, q as toOpenUiSpecLang, r as A2UI_SPEC_ACTION, rt as UI_CATALOG_GROUPS, s as A2UI_VERSION, st as buildA2uiCatalogDefinition, t as A2UI_BASIC_CATALOG_ID, tt as A2UI_COMMON_TYPES, u as OPENUI_CANCEL_ACTION, ut as renderMiniChart, v as VercelUiBridge, w as decodeInteractionResponse, x as WebFormBridge, y as WEBSKILL_STYLES_CSS, z as renderRenderResult } from "./dist-ZKaM8j06.js";
1
+ import { A as buildRenderResult } from "./dist-6C03DShK.js";
2
+ import { $ as defineUiCatalog, A as loadOpenUiPeers, B as toOpenUiSpecLang, C as ensureStyles, D as fromVercelToolResult, E as fromUiSurfaceActionDispatch, F as renderRenderResult, G as A2UI_COMMON_TYPES, H as toVercelToolInvocation, I as shapeInteractionValue, J as WEBSKILL_A2UI_CATALOG_ID, K as UI_CATALOG_GROUPS, L as toA2uiSpecMessages, M as qualifyFieldName, N as renderBlocks, O as interactionToFormModel, P as renderMiniChart, Q as chartSpecFromProps, R as toA2uiSurfaceAction, S as createUiCatalogToolSource, T as fromA2uiSurfaceAction, U as uiPreset, V as toUiSurfaceActionDispatch, X as a2uiComponentShapes, Y as a2uiComponentSchema, Z as buildA2uiCatalogDefinition, _ as chartToTable, a as A2UI_VERSION, b as collectSpecActions, c as RENDER_UI_TOOL, d as VERCEL_INTERACTION_TOOL_NAME, et as mountEchart, f as VercelUiBridge, g as applySuggestion, h as WebFormBridge, i as A2UI_SURFACE_ACTION, j as loadWebSkillLitCatalog, k as interactionToUiSpec, l as UI_PRESETS, m as WEBSKILL_SURFACE_ACTION, n as A2UI_SPEC_ACTION, nt as uiCatalog, o as CHART_PALETTE, p as WEBSKILL_STYLES_CSS, q as UI_CATALOG_PROMPT_BUDGET_BYTES, r as A2UI_SPEC_FORM_PATH, s as DESCRIBE_UI_PRESET_TOOL, t as A2UI_BASIC_CATALOG_ID, tt as renderMiniMarkdown, u as UI_PRESET_NAMES, v as collectFormScopes, w as fromA2uiSpecAction, x as collectValues, y as collectScopedValues, z as toJsonRenderSpec } from "./dist-bewtXYlO.js";
3
3
 
4
- export { A2UI_BASIC_CATALOG_ID, A2UI_CANCEL_ACTION, A2UI_COMMON_TYPES, A2UI_SPEC_ACTION, A2UI_SPEC_FORM_PATH, A2UI_SUBMIT_ACTION, A2UI_SURFACE_ACTION, A2UI_VERSION, CHART_PALETTE, LitRendererBridge, OPENUI_AUTHORIZE_ACTION, OPENUI_CANCEL_ACTION, OPENUI_SUBMIT_ACTION, OPENUI_SURFACE_ACTION, RENDER_UI_TOOL, UI_CATALOG_GROUPS, UI_SPEC_COMPONENT, VERCEL_INTERACTION_TOOL_NAME, VERCEL_SURFACE_ACTION_DATA_PART_TYPE, VERCEL_SURFACE_DATA_PART_TYPE, VercelUiBridge, WEBSKILL_A2UI_CATALOG_ID, WEBSKILL_STYLES_CSS, WEBSKILL_SURFACE_ACTION, WebFormBridge, a2uiComponentSchema, a2uiComponentShapes, buildA2uiCatalogDefinition, buildRenderResult, chartToTable, collectValues, createUiCatalogToolSource, decodeInteractionResponse, defineUiCatalog, ensureStyles, fromA2uiAction, fromA2uiSpecAction, fromA2uiSurfaceAction, fromOpenUiAction, fromOpenUiSurfaceAction, fromUiSurfaceActionDispatch, fromVercelSurfaceAction, fromVercelToolResult, interactionToFormModel, isUiSpecSurface, loadOpenUiPeers, loadWebSkillLitCatalog, renderBlocks, renderMiniChart, renderMiniMarkdown, renderRenderResult, shapeInteractionValue, toA2uiMessages, toA2uiSpecMessages, toA2uiSurfaceAction, toA2uiSurfaceMessages, toJsonRenderSpec, toOpenUiLang, toOpenUiSpecLang, toOpenUiSurfaceLang, toSurface, toUiSurfaceActionDispatch, toUiSurfaceDescriptor, toVercelSurfaceDataPart, toVercelToolInvocation, uiCatalog };
4
+ export { A2UI_BASIC_CATALOG_ID, A2UI_COMMON_TYPES, A2UI_SPEC_ACTION, A2UI_SPEC_FORM_PATH, A2UI_SURFACE_ACTION, A2UI_VERSION, CHART_PALETTE, DESCRIBE_UI_PRESET_TOOL, RENDER_UI_TOOL, UI_CATALOG_GROUPS, UI_CATALOG_PROMPT_BUDGET_BYTES, UI_PRESETS, UI_PRESET_NAMES, VERCEL_INTERACTION_TOOL_NAME, VercelUiBridge, WEBSKILL_A2UI_CATALOG_ID, WEBSKILL_STYLES_CSS, WEBSKILL_SURFACE_ACTION, WebFormBridge, a2uiComponentSchema, a2uiComponentShapes, applySuggestion, buildA2uiCatalogDefinition, buildRenderResult, chartSpecFromProps, chartToTable, collectFormScopes, collectScopedValues, collectSpecActions, collectValues, createUiCatalogToolSource, defineUiCatalog, ensureStyles, fromA2uiSpecAction, fromA2uiSurfaceAction, fromUiSurfaceActionDispatch, fromVercelToolResult, interactionToFormModel, interactionToUiSpec, loadOpenUiPeers, loadWebSkillLitCatalog, mountEchart, qualifyFieldName, renderBlocks, renderMiniChart, renderMiniMarkdown, renderRenderResult, shapeInteractionValue, toA2uiSpecMessages, toA2uiSurfaceAction, toJsonRenderSpec, toOpenUiSpecLang, toUiSurfaceActionDispatch, toVercelToolInvocation, uiCatalog, uiPreset };