skybridge 0.0.0-dev.eb4d79a → 0.0.0-dev.eb5abb2

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 (278) hide show
  1. package/LICENSE +21 -674
  2. package/README.md +116 -23
  3. package/bin/run.js +5 -0
  4. package/dist/cli/header.d.ts +4 -0
  5. package/dist/cli/header.js +6 -0
  6. package/dist/cli/header.js.map +1 -0
  7. package/dist/cli/run-command.d.ts +2 -0
  8. package/dist/cli/run-command.js +43 -0
  9. package/dist/cli/run-command.js.map +1 -0
  10. package/dist/cli/telemetry.d.ts +7 -0
  11. package/dist/cli/telemetry.js +123 -0
  12. package/dist/cli/telemetry.js.map +1 -0
  13. package/dist/cli/use-execute-steps.d.ts +11 -0
  14. package/dist/cli/use-execute-steps.js +36 -0
  15. package/dist/cli/use-execute-steps.js.map +1 -0
  16. package/dist/cli/use-nodemon.d.ts +6 -0
  17. package/dist/cli/use-nodemon.js +61 -0
  18. package/dist/cli/use-nodemon.js.map +1 -0
  19. package/dist/cli/use-typescript-check.d.ts +8 -0
  20. package/dist/cli/use-typescript-check.js +59 -0
  21. package/dist/cli/use-typescript-check.js.map +1 -0
  22. package/dist/commands/build.d.ts +9 -0
  23. package/dist/commands/build.js +46 -0
  24. package/dist/commands/build.js.map +1 -0
  25. package/dist/commands/dev.d.ts +9 -0
  26. package/dist/commands/dev.js +31 -0
  27. package/dist/commands/dev.js.map +1 -0
  28. package/dist/commands/start.d.ts +7 -0
  29. package/dist/commands/start.js +28 -0
  30. package/dist/commands/start.js.map +1 -0
  31. package/dist/commands/telemetry/disable.d.ts +5 -0
  32. package/dist/commands/telemetry/disable.js +14 -0
  33. package/dist/commands/telemetry/disable.js.map +1 -0
  34. package/dist/commands/telemetry/enable.d.ts +5 -0
  35. package/dist/commands/telemetry/enable.js +14 -0
  36. package/dist/commands/telemetry/enable.js.map +1 -0
  37. package/dist/commands/telemetry/status.d.ts +5 -0
  38. package/dist/commands/telemetry/status.js +14 -0
  39. package/dist/commands/telemetry/status.js.map +1 -0
  40. package/dist/server/asset-base-url-transform-plugin.d.ts +11 -0
  41. package/dist/server/asset-base-url-transform-plugin.js +34 -0
  42. package/dist/server/asset-base-url-transform-plugin.js.map +1 -0
  43. package/dist/server/asset-base-url-transform-plugin.test.js +56 -0
  44. package/dist/server/asset-base-url-transform-plugin.test.js.map +1 -0
  45. package/dist/server/express.d.ts +5 -0
  46. package/dist/server/express.js +63 -0
  47. package/dist/server/express.js.map +1 -0
  48. package/dist/server/index.d.ts +4 -0
  49. package/dist/server/index.js.map +1 -0
  50. package/dist/server/inferUtilityTypes.d.ts +64 -0
  51. package/dist/server/inferUtilityTypes.js +2 -0
  52. package/dist/server/inferUtilityTypes.js.map +1 -0
  53. package/dist/server/server.d.ts +109 -0
  54. package/dist/server/server.js +201 -0
  55. package/dist/server/server.js.map +1 -0
  56. package/dist/server/templateHelper.d.ts +19 -0
  57. package/dist/{src/server → server}/templateHelper.js +5 -12
  58. package/dist/server/templateHelper.js.map +1 -0
  59. package/dist/server/templates/development.hbs +67 -0
  60. package/dist/server/templates/production.hbs +6 -0
  61. package/dist/{src/server → server}/widgetsDevServer.d.ts +2 -2
  62. package/dist/server/widgetsDevServer.js +57 -0
  63. package/dist/server/widgetsDevServer.js.map +1 -0
  64. package/dist/test/utils.d.ts +355 -0
  65. package/dist/test/utils.js +242 -0
  66. package/dist/test/utils.js.map +1 -0
  67. package/dist/test/widget.test.js +261 -0
  68. package/dist/test/widget.test.js.map +1 -0
  69. package/dist/web/bridges/apps-sdk/adaptor.d.ts +22 -0
  70. package/dist/web/bridges/apps-sdk/adaptor.js +70 -0
  71. package/dist/web/bridges/apps-sdk/adaptor.js.map +1 -0
  72. package/dist/web/bridges/apps-sdk/bridge.d.ts +14 -0
  73. package/dist/web/bridges/apps-sdk/bridge.js +46 -0
  74. package/dist/web/bridges/apps-sdk/bridge.js.map +1 -0
  75. package/dist/web/bridges/apps-sdk/index.d.ts +5 -0
  76. package/dist/web/bridges/apps-sdk/index.js +5 -0
  77. package/dist/web/bridges/apps-sdk/index.js.map +1 -0
  78. package/dist/web/bridges/apps-sdk/types.d.ts +117 -0
  79. package/dist/web/bridges/apps-sdk/types.js.map +1 -0
  80. package/dist/web/bridges/apps-sdk/use-apps-sdk-context.d.ts +2 -0
  81. package/dist/web/bridges/apps-sdk/use-apps-sdk-context.js +7 -0
  82. package/dist/web/bridges/apps-sdk/use-apps-sdk-context.js.map +1 -0
  83. package/dist/web/bridges/get-adaptor.d.ts +2 -0
  84. package/dist/web/bridges/get-adaptor.js +8 -0
  85. package/dist/web/bridges/get-adaptor.js.map +1 -0
  86. package/dist/web/bridges/index.d.ts +5 -0
  87. package/dist/web/bridges/index.js +6 -0
  88. package/dist/web/bridges/index.js.map +1 -0
  89. package/dist/web/bridges/mcp-app/adaptor.d.ts +36 -0
  90. package/dist/web/bridges/mcp-app/adaptor.js +188 -0
  91. package/dist/web/bridges/mcp-app/adaptor.js.map +1 -0
  92. package/dist/web/bridges/mcp-app/bridge.d.ts +43 -0
  93. package/dist/web/bridges/mcp-app/bridge.js +255 -0
  94. package/dist/web/bridges/mcp-app/bridge.js.map +1 -0
  95. package/dist/web/bridges/mcp-app/index.d.ts +4 -0
  96. package/dist/web/bridges/mcp-app/index.js +4 -0
  97. package/dist/web/bridges/mcp-app/index.js.map +1 -0
  98. package/dist/web/bridges/mcp-app/types.d.ts +8 -0
  99. package/dist/web/bridges/mcp-app/types.js +2 -0
  100. package/dist/web/bridges/mcp-app/types.js.map +1 -0
  101. package/dist/web/bridges/mcp-app/use-mcp-app-context.d.ts +5 -0
  102. package/dist/web/bridges/mcp-app/use-mcp-app-context.js +7 -0
  103. package/dist/web/bridges/mcp-app/use-mcp-app-context.js.map +1 -0
  104. package/dist/web/bridges/mcp-app/use-mcp-app-context.test.d.ts +1 -0
  105. package/dist/web/bridges/mcp-app/use-mcp-app-context.test.js +66 -0
  106. package/dist/web/bridges/mcp-app/use-mcp-app-context.test.js.map +1 -0
  107. package/dist/web/bridges/types.d.ts +98 -0
  108. package/dist/web/bridges/types.js +2 -0
  109. package/dist/web/bridges/types.js.map +1 -0
  110. package/dist/web/bridges/use-host-context.d.ts +2 -0
  111. package/dist/web/bridges/use-host-context.js +8 -0
  112. package/dist/web/bridges/use-host-context.js.map +1 -0
  113. package/dist/web/components/modal-provider.d.ts +4 -0
  114. package/dist/web/components/modal-provider.js +47 -0
  115. package/dist/web/components/modal-provider.js.map +1 -0
  116. package/dist/web/create-store.d.ts +3 -0
  117. package/dist/web/create-store.js +24 -0
  118. package/dist/web/create-store.js.map +1 -0
  119. package/dist/web/create-store.test.d.ts +1 -0
  120. package/dist/web/create-store.test.js +126 -0
  121. package/dist/web/create-store.test.js.map +1 -0
  122. package/dist/web/data-llm.d.ts +14 -0
  123. package/dist/web/data-llm.js +72 -0
  124. package/dist/web/data-llm.js.map +1 -0
  125. package/dist/web/data-llm.test.d.ts +1 -0
  126. package/dist/web/data-llm.test.js +141 -0
  127. package/dist/web/data-llm.test.js.map +1 -0
  128. package/dist/web/generate-helpers.d.ts +116 -0
  129. package/dist/web/generate-helpers.js +111 -0
  130. package/dist/web/generate-helpers.js.map +1 -0
  131. package/dist/web/generate-helpers.test-d.d.ts +1 -0
  132. package/dist/web/generate-helpers.test-d.js +209 -0
  133. package/dist/web/generate-helpers.test-d.js.map +1 -0
  134. package/dist/web/generate-helpers.test.d.ts +1 -0
  135. package/dist/web/generate-helpers.test.js +17 -0
  136. package/dist/web/generate-helpers.test.js.map +1 -0
  137. package/dist/web/helpers/state.d.ts +7 -0
  138. package/dist/web/helpers/state.js +45 -0
  139. package/dist/web/helpers/state.js.map +1 -0
  140. package/dist/web/helpers/state.test.d.ts +1 -0
  141. package/dist/web/helpers/state.test.js +53 -0
  142. package/dist/web/helpers/state.test.js.map +1 -0
  143. package/dist/web/hooks/index.d.ts +11 -0
  144. package/dist/web/hooks/index.js +12 -0
  145. package/dist/web/hooks/index.js.map +1 -0
  146. package/dist/web/hooks/test/utils.d.ts +16 -0
  147. package/dist/web/hooks/test/utils.js +60 -0
  148. package/dist/web/hooks/test/utils.js.map +1 -0
  149. package/dist/web/hooks/use-call-tool.d.ts +101 -0
  150. package/dist/web/hooks/use-call-tool.js +68 -0
  151. package/dist/web/hooks/use-call-tool.js.map +1 -0
  152. package/dist/web/hooks/use-call-tool.test-d.d.ts +1 -0
  153. package/dist/web/hooks/use-call-tool.test-d.js +104 -0
  154. package/dist/web/hooks/use-call-tool.test-d.js.map +1 -0
  155. package/dist/web/hooks/use-call-tool.test.d.ts +1 -0
  156. package/dist/web/hooks/use-call-tool.test.js +190 -0
  157. package/dist/web/hooks/use-call-tool.test.js.map +1 -0
  158. package/dist/web/hooks/use-display-mode.d.ts +4 -0
  159. package/dist/web/hooks/use-display-mode.js +9 -0
  160. package/dist/web/hooks/use-display-mode.js.map +1 -0
  161. package/dist/web/hooks/use-display-mode.test.d.ts +1 -0
  162. package/dist/web/hooks/use-display-mode.test.js +41 -0
  163. package/dist/web/hooks/use-display-mode.test.js.map +1 -0
  164. package/dist/web/hooks/use-files.d.ts +6 -0
  165. package/dist/web/hooks/use-files.js +9 -0
  166. package/dist/web/hooks/use-files.js.map +1 -0
  167. package/dist/web/hooks/use-files.test.d.ts +1 -0
  168. package/dist/web/hooks/use-files.test.js +30 -0
  169. package/dist/web/hooks/use-files.test.js.map +1 -0
  170. package/dist/web/hooks/use-layout.d.ts +22 -0
  171. package/dist/web/hooks/use-layout.js +23 -0
  172. package/dist/web/hooks/use-layout.js.map +1 -0
  173. package/dist/web/hooks/use-layout.test.d.ts +1 -0
  174. package/dist/web/hooks/use-layout.test.js +96 -0
  175. package/dist/web/hooks/use-layout.test.js.map +1 -0
  176. package/dist/web/hooks/use-open-external.d.ts +1 -0
  177. package/dist/web/hooks/use-open-external.js +8 -0
  178. package/dist/web/hooks/use-open-external.js.map +1 -0
  179. package/dist/web/hooks/use-open-external.test.d.ts +1 -0
  180. package/dist/web/hooks/use-open-external.test.js +50 -0
  181. package/dist/web/hooks/use-open-external.test.js.map +1 -0
  182. package/dist/web/hooks/use-request-modal.d.ts +9 -0
  183. package/dist/web/hooks/use-request-modal.js +16 -0
  184. package/dist/web/hooks/use-request-modal.js.map +1 -0
  185. package/dist/web/hooks/use-request-modal.test.d.ts +1 -0
  186. package/dist/web/hooks/use-request-modal.test.js +57 -0
  187. package/dist/web/hooks/use-request-modal.test.js.map +1 -0
  188. package/dist/web/hooks/use-send-follow-up-message.d.ts +1 -0
  189. package/dist/web/hooks/use-send-follow-up-message.js +8 -0
  190. package/dist/web/hooks/use-send-follow-up-message.js.map +1 -0
  191. package/dist/web/hooks/use-set-open-in-app-url.d.ts +1 -0
  192. package/dist/web/hooks/use-set-open-in-app-url.js +8 -0
  193. package/dist/web/hooks/use-set-open-in-app-url.js.map +1 -0
  194. package/dist/web/hooks/use-set-open-in-app-url.test.d.ts +1 -0
  195. package/dist/web/hooks/use-set-open-in-app-url.test.js +49 -0
  196. package/dist/web/hooks/use-set-open-in-app-url.test.js.map +1 -0
  197. package/dist/web/hooks/use-tool-info.d.ts +36 -0
  198. package/dist/web/hooks/use-tool-info.js +26 -0
  199. package/dist/web/hooks/use-tool-info.js.map +1 -0
  200. package/dist/web/hooks/use-tool-info.test-d.d.ts +1 -0
  201. package/dist/web/hooks/use-tool-info.test-d.js +109 -0
  202. package/dist/web/hooks/use-tool-info.test-d.js.map +1 -0
  203. package/dist/web/hooks/use-tool-info.test.d.ts +1 -0
  204. package/dist/web/hooks/use-tool-info.test.js +130 -0
  205. package/dist/web/hooks/use-tool-info.test.js.map +1 -0
  206. package/dist/web/hooks/use-user.d.ts +18 -0
  207. package/dist/web/hooks/use-user.js +19 -0
  208. package/dist/web/hooks/use-user.js.map +1 -0
  209. package/dist/web/hooks/use-user.test.d.ts +1 -0
  210. package/dist/web/hooks/use-user.test.js +94 -0
  211. package/dist/web/hooks/use-user.test.js.map +1 -0
  212. package/dist/web/hooks/use-widget-state.d.ts +4 -0
  213. package/dist/web/hooks/use-widget-state.js +32 -0
  214. package/dist/web/hooks/use-widget-state.js.map +1 -0
  215. package/dist/web/hooks/use-widget-state.test.d.ts +1 -0
  216. package/dist/web/hooks/use-widget-state.test.js +62 -0
  217. package/dist/web/hooks/use-widget-state.test.js.map +1 -0
  218. package/dist/web/index.d.ts +8 -0
  219. package/dist/web/index.js +9 -0
  220. package/dist/web/index.js.map +1 -0
  221. package/dist/web/mount-widget.js +27 -0
  222. package/dist/web/mount-widget.js.map +1 -0
  223. package/dist/web/plugin/data-llm.test.d.ts +1 -0
  224. package/dist/web/plugin/data-llm.test.js +81 -0
  225. package/dist/web/plugin/data-llm.test.js.map +1 -0
  226. package/dist/web/plugin/plugin.d.ts +2 -0
  227. package/dist/web/plugin/plugin.js +46 -0
  228. package/dist/web/plugin/plugin.js.map +1 -0
  229. package/dist/web/plugin/transform-data-llm.d.ts +12 -0
  230. package/dist/web/plugin/transform-data-llm.js +96 -0
  231. package/dist/web/plugin/transform-data-llm.js.map +1 -0
  232. package/dist/web/plugin/transform-data-llm.test.d.ts +1 -0
  233. package/dist/web/plugin/transform-data-llm.test.js +81 -0
  234. package/dist/web/plugin/transform-data-llm.test.js.map +1 -0
  235. package/dist/web/proxy.d.ts +1 -0
  236. package/dist/web/proxy.js +52 -0
  237. package/dist/web/proxy.js.map +1 -0
  238. package/dist/web/types.d.ts +16 -0
  239. package/dist/web/types.js +2 -0
  240. package/dist/web/types.js.map +1 -0
  241. package/package.json +66 -26
  242. package/dist/src/server/index.d.ts +0 -2
  243. package/dist/src/server/index.js.map +0 -1
  244. package/dist/src/server/server.d.ts +0 -12
  245. package/dist/src/server/server.js +0 -45
  246. package/dist/src/server/server.js.map +0 -1
  247. package/dist/src/server/templateHelper.d.ts +0 -14
  248. package/dist/src/server/templateHelper.js.map +0 -1
  249. package/dist/src/server/widgetsDevServer.js +0 -39
  250. package/dist/src/server/widgetsDevServer.js.map +0 -1
  251. package/dist/src/test/setup.js +0 -9
  252. package/dist/src/test/setup.js.map +0 -1
  253. package/dist/src/test/utils.d.ts +0 -28
  254. package/dist/src/test/utils.js +0 -43
  255. package/dist/src/test/utils.js.map +0 -1
  256. package/dist/src/test/widget.test.js +0 -69
  257. package/dist/src/test/widget.test.js.map +0 -1
  258. package/dist/src/web/index.d.ts +0 -4
  259. package/dist/src/web/index.js +0 -5
  260. package/dist/src/web/index.js.map +0 -1
  261. package/dist/src/web/mount-widget.js +0 -14
  262. package/dist/src/web/mount-widget.js.map +0 -1
  263. package/dist/src/web/types.d.ts +0 -95
  264. package/dist/src/web/types.js.map +0 -1
  265. package/dist/src/web/use-openai-global.d.ts +0 -2
  266. package/dist/src/web/use-openai-global.js +0 -21
  267. package/dist/src/web/use-openai-global.js.map +0 -1
  268. package/dist/src/web/use-tool-output.d.ts +0 -3
  269. package/dist/src/web/use-tool-output.js +0 -5
  270. package/dist/src/web/use-tool-output.js.map +0 -1
  271. package/dist/vitest.config.d.ts +0 -2
  272. package/dist/vitest.config.js +0 -9
  273. package/dist/vitest.config.js.map +0 -1
  274. /package/dist/{src/test/setup.d.ts → server/asset-base-url-transform-plugin.test.d.ts} +0 -0
  275. /package/dist/{src/server → server}/index.js +0 -0
  276. /package/dist/{src/test → test}/widget.test.d.ts +0 -0
  277. /package/dist/{src/web → web/bridges/apps-sdk}/types.js +0 -0
  278. /package/dist/{src/web → web}/mount-widget.d.ts +0 -0
@@ -0,0 +1,141 @@
1
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
+ import { cleanup, render } from "@testing-library/react";
3
+ import { afterEach, beforeEach, describe, expect, it, vi, } from "vitest";
4
+ import { McpAppAdaptor, McpAppBridge } from "./bridges/mcp-app/index.js";
5
+ import { DataLLM } from "./data-llm.js";
6
+ import { getMcpAppHostPostMessageMock, MockResizeObserver, } from "./hooks/test/utils.js";
7
+ describe("DataLLM", () => {
8
+ afterEach(() => {
9
+ // Clean up React components BEFORE unstubbing globals
10
+ cleanup();
11
+ vi.unstubAllGlobals();
12
+ vi.resetAllMocks();
13
+ });
14
+ describe("apps-sdk mode", () => {
15
+ let OpenaiMock;
16
+ beforeEach(() => {
17
+ OpenaiMock = {
18
+ widgetState: { modelContent: {} },
19
+ setWidgetState: vi.fn(),
20
+ };
21
+ // Use Object.defineProperty to ensure it persists
22
+ Object.defineProperty(globalThis, "openai", {
23
+ value: OpenaiMock,
24
+ writable: true,
25
+ configurable: true,
26
+ });
27
+ // Also set on window for browser-like environment
28
+ if (typeof window !== "undefined") {
29
+ Object.defineProperty(window, "openai", {
30
+ value: OpenaiMock,
31
+ writable: true,
32
+ configurable: true,
33
+ });
34
+ }
35
+ vi.stubGlobal("openai", OpenaiMock);
36
+ vi.stubGlobal("skybridge", { hostType: "apps-sdk" });
37
+ });
38
+ afterEach(() => {
39
+ // Keep the mock available for React cleanup, but reset it
40
+ if (typeof window !== "undefined" && window.openai) {
41
+ window.openai.setWidgetState = vi.fn();
42
+ window.openai.widgetState = { modelContent: {} };
43
+ }
44
+ });
45
+ it("should register a node with content and call setWidgetState", () => {
46
+ render(_jsx(DataLLM, { content: "Test content", children: _jsx("div", { children: "Child" }) }));
47
+ expect(OpenaiMock.setWidgetState).toHaveBeenCalled();
48
+ const callArgs = OpenaiMock.setWidgetState.mock.calls[0]?.[0]?.modelContent;
49
+ expect(callArgs).toHaveProperty("__widget_context");
50
+ expect(callArgs?.__widget_context).toContain("- Test content");
51
+ });
52
+ it("should preserve existing widgetState when updating context", () => {
53
+ OpenaiMock.widgetState = {
54
+ modelContent: { existingKey: "existingValue" },
55
+ };
56
+ render(_jsx(DataLLM, { content: "Test content", children: _jsx("div", { children: "Child" }) }));
57
+ const callArgs = OpenaiMock.setWidgetState.mock.calls[0]?.[0]?.modelContent;
58
+ expect(callArgs).toHaveProperty("existingKey", "existingValue");
59
+ expect(callArgs).toHaveProperty("__widget_context");
60
+ });
61
+ it("should handle deeply nested DataLLM components", () => {
62
+ render(_jsxs(DataLLM, { content: "Level 1", children: [_jsx(DataLLM, { content: "Level 2A" }), _jsx(DataLLM, { content: "Level 2B", children: _jsx(DataLLM, { content: "Level 3", children: _jsx("div", { children: "Content" }) }) })] }));
63
+ const callArgs = OpenaiMock.setWidgetState.mock.calls[OpenaiMock.setWidgetState.mock.calls.length - 1]?.[0]?.modelContent;
64
+ const context = callArgs?.__widget_context;
65
+ expect(context).toContain("- Level 1");
66
+ expect(context).toContain(" - Level 2A");
67
+ expect(context).toContain(" - Level 2B");
68
+ expect(context).toContain(" - Level 3");
69
+ });
70
+ it("should update context when content changes", () => {
71
+ const { rerender } = render(_jsx(DataLLM, { content: "Initial content", children: _jsx("div", { children: "Child" }) }));
72
+ const initialCalls = OpenaiMock.setWidgetState.mock.calls.length;
73
+ rerender(_jsx(DataLLM, { content: "Updated content", children: _jsx("div", { children: "Child" }) }));
74
+ expect(OpenaiMock.setWidgetState.mock.calls.length).toBeGreaterThan(initialCalls);
75
+ const lastCallArgs = OpenaiMock.setWidgetState.mock.calls[OpenaiMock.setWidgetState.mock.calls.length - 1]?.[0]?.modelContent;
76
+ expect(lastCallArgs?.__widget_context).toContain("- Updated content");
77
+ });
78
+ it("should remove node and update context when component unmounts", () => {
79
+ const { unmount } = render(_jsx(DataLLM, { content: "Content to remove", children: _jsx("div", { children: "Child" }) }));
80
+ const callsBeforeUnmount = OpenaiMock.setWidgetState.mock.calls.length;
81
+ unmount();
82
+ expect(OpenaiMock.setWidgetState.mock.calls.length).toBeGreaterThan(callsBeforeUnmount);
83
+ const lastCallArgs = OpenaiMock.setWidgetState.mock.calls[OpenaiMock.setWidgetState.mock.calls.length - 1]?.[0]?.modelContent;
84
+ expect(lastCallArgs?.__widget_context).not.toContain("Content to remove");
85
+ });
86
+ });
87
+ describe("mcp-app mode", () => {
88
+ let postMessageMock;
89
+ beforeEach(() => {
90
+ vi.stubGlobal("skybridge", { hostType: "mcp-app" });
91
+ vi.stubGlobal("ResizeObserver", MockResizeObserver);
92
+ postMessageMock = getMcpAppHostPostMessageMock();
93
+ vi.stubGlobal("parent", { postMessage: postMessageMock });
94
+ });
95
+ afterEach(() => {
96
+ McpAppBridge.resetInstance();
97
+ McpAppAdaptor.resetInstance();
98
+ });
99
+ it("should register a node and update widget state via adaptor", async () => {
100
+ const adaptor = McpAppAdaptor.getInstance();
101
+ render(_jsx(DataLLM, { content: "Test content", children: _jsx("div", { children: "Child" }) }));
102
+ await vi.waitFor(() => {
103
+ const widgetState = adaptor
104
+ .getHostContextStore("widgetState")
105
+ .getSnapshot();
106
+ expect(widgetState?.__widget_context).toContain("- Test content");
107
+ });
108
+ });
109
+ it("should preserve existing widget state when updating context", async () => {
110
+ const adaptor = McpAppAdaptor.getInstance();
111
+ await adaptor.setWidgetState({ existingKey: "existingValue" });
112
+ render(_jsx(DataLLM, { content: "Test content", children: _jsx("div", { children: "Child" }) }));
113
+ await vi.waitFor(() => {
114
+ const widgetState = adaptor
115
+ .getHostContextStore("widgetState")
116
+ .getSnapshot();
117
+ expect(widgetState?.existingKey).toBe("existingValue");
118
+ expect(widgetState?.__widget_context).toContain("- Test content");
119
+ });
120
+ });
121
+ it("should handle multiple DataLLM components sharing state through adaptor", async () => {
122
+ const adaptor = McpAppAdaptor.getInstance();
123
+ render(_jsxs(_Fragment, { children: [_jsx(DataLLM, { content: "First component", children: _jsx("div", { children: "First" }) }), _jsx(DataLLM, { content: "Second component", children: _jsx("div", { children: "Second" }) })] }));
124
+ await vi.waitFor(() => {
125
+ const widgetState = adaptor
126
+ .getHostContextStore("widgetState")
127
+ .getSnapshot();
128
+ const context = widgetState?.__widget_context;
129
+ expect(context).toContain("- First component");
130
+ expect(context).toContain("- Second component");
131
+ });
132
+ });
133
+ it("should call ui/update-model-context when widget state changes", async () => {
134
+ render(_jsx(DataLLM, { content: "Test content", children: _jsx("div", { children: "Child" }) }));
135
+ await vi.waitFor(() => {
136
+ expect(postMessageMock).toHaveBeenCalledWith(expect.objectContaining({ method: "ui/update-model-context" }), "*");
137
+ });
138
+ });
139
+ });
140
+ });
141
+ //# sourceMappingURL=data-llm.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"data-llm.test.js","sourceRoot":"","sources":["../../src/web/data-llm.test.tsx"],"names":[],"mappings":"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"}
@@ -0,0 +1,116 @@
1
+ import type { InferTools, ToolInput, ToolOutput, ToolResponseMetadata } from "../server/index.js";
2
+ import type { CallToolResponse } from "./bridges/types.js";
3
+ import { type CallToolAsyncFn, type CallToolFn, type CallToolState } from "./hooks/use-call-tool.js";
4
+ import { type ToolState } from "./hooks/use-tool-info.js";
5
+ import type { Objectify, Prettify } from "./types.js";
6
+ type TypedCallToolResponse<TOutput> = CallToolResponse & {
7
+ structuredContent: TOutput;
8
+ };
9
+ type TypedCallToolReturn<TInput, TOutput> = Prettify<CallToolState<TypedCallToolResponse<TOutput>> & {
10
+ callTool: CallToolFn<TInput, TypedCallToolResponse<TOutput>>;
11
+ callToolAsync: CallToolAsyncFn<TInput, TypedCallToolResponse<TOutput>>;
12
+ }>;
13
+ type TypedToolInfoReturn<TInput, TOutput, TResponseMetadata> = ToolState<Objectify<TInput>, Objectify<TOutput>, Objectify<TResponseMetadata>>;
14
+ /**
15
+ * Creates typed versions of skybridge hooks with full type inference
16
+ * for tool names, inputs, and outputs.
17
+ *
18
+ * This is the recommended way to use skybridge hooks in your widgets.
19
+ * Set this up once in a dedicated file and export the typed hooks for use across your app.
20
+ *
21
+ * @typeParam ServerType - The type of your McpServer instance (use `typeof server`).
22
+ * Must be a server instance created with method chaining.
23
+ * TypeScript will validate that tools can be inferred from this type.
24
+ *
25
+ * @example
26
+ * ```typescript
27
+ * // server/src/index.ts
28
+ * const server = new McpServer({ name: "my-app", version: "1.0" }, {})
29
+ * .widget("search-voyage", {}, {
30
+ * inputSchema: { destination: z.string() },
31
+ * outputSchema: { results: z.array(z.string()) },
32
+ * }, async ({ destination }) => {
33
+ * return { content: [{ type: "text", text: `Found trips to ${destination}` }] };
34
+ * });
35
+ *
36
+ * export type AppType = typeof server;
37
+ * ```
38
+ *
39
+ * @example
40
+ * ```typescript
41
+ * // web/src/helpers.ts (one-time setup)
42
+ * import type { AppType } from "../server";
43
+ * import { generateHelpers } from "skybridge/web";
44
+ *
45
+ * export const { useCallTool, useToolInfo } = generateHelpers<AppType>();
46
+ * ```
47
+ *
48
+ * @example
49
+ * ```typescript
50
+ * // web/src/widgets/search.tsx (usage)
51
+ * import { useCallTool, useToolInfo } from "../skybridge";
52
+ *
53
+ * export function SearchWidget() {
54
+ * const { callTool, data } = useCallTool("search-voyage");
55
+ * // ^ autocomplete for tool names
56
+ * callTool({ destination: "Spain" });
57
+ * // ^ autocomplete for input fields
58
+ *
59
+ * const toolInfo = useToolInfo<"search-voyage">();
60
+ * // ^ autocomplete for widget names
61
+ * // toolInfo.input is typed based on widget input schema
62
+ * // toolInfo.output.structuredContent is typed based on widget output schema
63
+ * }
64
+ * ```
65
+ */
66
+ export declare function generateHelpers<ServerType = never>(): {
67
+ /**
68
+ * Typed version of `useCallTool` that provides autocomplete for tool names
69
+ * and type inference for inputs and outputs.
70
+ *
71
+ * @param name - The name of the widget to call. Autocompletes based on your server's widget registry.
72
+ * @returns A hook with typed `callTool` function and `data` property.
73
+ *
74
+ * @example
75
+ * ```typescript
76
+ * const { callTool, data, isPending } = useCallTool("search-voyage");
77
+ * // TypeScript knows callTool expects { destination: string }
78
+ * callTool({ destination: "Spain" });
79
+ *
80
+ * // data.structuredContent is typed based on your outputSchema
81
+ * if (data) {
82
+ * console.log(data.structuredContent.results);
83
+ * }
84
+ * ```
85
+ */
86
+ useCallTool: <ToolName extends keyof InferTools<ServerType> & string>(name: ToolName) => TypedCallToolReturn<ToolInput<ServerType, ToolName>, ToolOutput<ServerType, ToolName>>;
87
+ /**
88
+ * Typed version of `useToolInfo` that provides autocomplete for widget names
89
+ * and type inference for inputs, outputs, and responseMetadata.
90
+ *
91
+ * @typeParam K - The name of the widget. Autocompletes based on your server's widget registry.
92
+ * @returns A discriminated union with `status: "pending" | "success"` that narrows correctly.
93
+ *
94
+ * @example
95
+ * ```typescript
96
+ * const toolInfo = useToolInfo<"search-voyage">();
97
+ * // toolInfo.input is typed as { destination: string; ... }
98
+ * // toolInfo.output is typed as { results: Array<...>; ... }
99
+ * // toolInfo.responseMetadata is typed based on _meta in callback return
100
+ * // toolInfo.status narrows correctly: "pending" | "success"
101
+ *
102
+ * if (toolInfo.isPending) {
103
+ * // TypeScript knows output and responseMetadata are undefined here
104
+ * console.log(toolInfo.input.destination);
105
+ * }
106
+ *
107
+ * if (toolInfo.isSuccess) {
108
+ * // TypeScript knows output and responseMetadata are defined here
109
+ * console.log(toolInfo.output.results);
110
+ * console.log(toolInfo.responseMetadata);
111
+ * }
112
+ * ```
113
+ */
114
+ useToolInfo: <ToolName extends keyof InferTools<ServerType> & string>() => TypedToolInfoReturn<ToolInput<ServerType, ToolName>, ToolOutput<ServerType, ToolName>, ToolResponseMetadata<ServerType, ToolName>>;
115
+ };
116
+ export {};
@@ -0,0 +1,111 @@
1
+ import { useCallTool, } from "./hooks/use-call-tool.js";
2
+ import { useToolInfo } from "./hooks/use-tool-info.js";
3
+ /**
4
+ * Creates typed versions of skybridge hooks with full type inference
5
+ * for tool names, inputs, and outputs.
6
+ *
7
+ * This is the recommended way to use skybridge hooks in your widgets.
8
+ * Set this up once in a dedicated file and export the typed hooks for use across your app.
9
+ *
10
+ * @typeParam ServerType - The type of your McpServer instance (use `typeof server`).
11
+ * Must be a server instance created with method chaining.
12
+ * TypeScript will validate that tools can be inferred from this type.
13
+ *
14
+ * @example
15
+ * ```typescript
16
+ * // server/src/index.ts
17
+ * const server = new McpServer({ name: "my-app", version: "1.0" }, {})
18
+ * .widget("search-voyage", {}, {
19
+ * inputSchema: { destination: z.string() },
20
+ * outputSchema: { results: z.array(z.string()) },
21
+ * }, async ({ destination }) => {
22
+ * return { content: [{ type: "text", text: `Found trips to ${destination}` }] };
23
+ * });
24
+ *
25
+ * export type AppType = typeof server;
26
+ * ```
27
+ *
28
+ * @example
29
+ * ```typescript
30
+ * // web/src/helpers.ts (one-time setup)
31
+ * import type { AppType } from "../server";
32
+ * import { generateHelpers } from "skybridge/web";
33
+ *
34
+ * export const { useCallTool, useToolInfo } = generateHelpers<AppType>();
35
+ * ```
36
+ *
37
+ * @example
38
+ * ```typescript
39
+ * // web/src/widgets/search.tsx (usage)
40
+ * import { useCallTool, useToolInfo } from "../skybridge";
41
+ *
42
+ * export function SearchWidget() {
43
+ * const { callTool, data } = useCallTool("search-voyage");
44
+ * // ^ autocomplete for tool names
45
+ * callTool({ destination: "Spain" });
46
+ * // ^ autocomplete for input fields
47
+ *
48
+ * const toolInfo = useToolInfo<"search-voyage">();
49
+ * // ^ autocomplete for widget names
50
+ * // toolInfo.input is typed based on widget input schema
51
+ * // toolInfo.output.structuredContent is typed based on widget output schema
52
+ * }
53
+ * ```
54
+ */
55
+ export function generateHelpers() {
56
+ return {
57
+ /**
58
+ * Typed version of `useCallTool` that provides autocomplete for tool names
59
+ * and type inference for inputs and outputs.
60
+ *
61
+ * @param name - The name of the widget to call. Autocompletes based on your server's widget registry.
62
+ * @returns A hook with typed `callTool` function and `data` property.
63
+ *
64
+ * @example
65
+ * ```typescript
66
+ * const { callTool, data, isPending } = useCallTool("search-voyage");
67
+ * // TypeScript knows callTool expects { destination: string }
68
+ * callTool({ destination: "Spain" });
69
+ *
70
+ * // data.structuredContent is typed based on your outputSchema
71
+ * if (data) {
72
+ * console.log(data.structuredContent.results);
73
+ * }
74
+ * ```
75
+ */
76
+ useCallTool: (name) => {
77
+ return useCallTool(name);
78
+ },
79
+ /**
80
+ * Typed version of `useToolInfo` that provides autocomplete for widget names
81
+ * and type inference for inputs, outputs, and responseMetadata.
82
+ *
83
+ * @typeParam K - The name of the widget. Autocompletes based on your server's widget registry.
84
+ * @returns A discriminated union with `status: "pending" | "success"` that narrows correctly.
85
+ *
86
+ * @example
87
+ * ```typescript
88
+ * const toolInfo = useToolInfo<"search-voyage">();
89
+ * // toolInfo.input is typed as { destination: string; ... }
90
+ * // toolInfo.output is typed as { results: Array<...>; ... }
91
+ * // toolInfo.responseMetadata is typed based on _meta in callback return
92
+ * // toolInfo.status narrows correctly: "pending" | "success"
93
+ *
94
+ * if (toolInfo.isPending) {
95
+ * // TypeScript knows output and responseMetadata are undefined here
96
+ * console.log(toolInfo.input.destination);
97
+ * }
98
+ *
99
+ * if (toolInfo.isSuccess) {
100
+ * // TypeScript knows output and responseMetadata are defined here
101
+ * console.log(toolInfo.output.results);
102
+ * console.log(toolInfo.responseMetadata);
103
+ * }
104
+ * ```
105
+ */
106
+ useToolInfo: () => {
107
+ return useToolInfo();
108
+ },
109
+ };
110
+ }
111
+ //# sourceMappingURL=generate-helpers.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generate-helpers.js","sourceRoot":"","sources":["../../src/web/generate-helpers.ts"],"names":[],"mappings":"AAOA,OAAO,EAIL,WAAW,GACZ,MAAM,0BAA0B,CAAC;AAClC,OAAO,EAAkB,WAAW,EAAE,MAAM,0BAA0B,CAAC;AAoBvE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAmDG;AACH,MAAM,UAAU,eAAe;IAI7B,OAAO;QACL;;;;;;;;;;;;;;;;;;WAkBG;QACH,WAAW,EAAE,CACX,IAAc,EAId,EAAE;YACF,OAAO,WAAW,CAAC,IAAI,CAGtB,CAAC;QACJ,CAAC;QAED;;;;;;;;;;;;;;;;;;;;;;;;;;WA0BG;QACH,WAAW,EAAE,GAIX,EAAE;YACF,OAAO,WAAW,EAIjB,CAAC;QACJ,CAAC;KACF,CAAC;AACJ,CAAC"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,209 @@
1
+ import { expectTypeOf, test } from "vitest";
2
+ import { createInterfaceTestServer, createTestServer } from "../test/utils.js";
3
+ import { generateHelpers } from "./generate-helpers.js";
4
+ const server = createTestServer();
5
+ const interfaceServer = createInterfaceTestServer();
6
+ test("InferTools extracts the tool registry type (widgets + registerTool)", () => {
7
+ expectTypeOf().toHaveProperty("search-voyage");
8
+ expectTypeOf().toHaveProperty("get-trip-details");
9
+ expectTypeOf().toHaveProperty("no-input-widget");
10
+ expectTypeOf().toHaveProperty("calculate-price");
11
+ expectTypeOf().toHaveProperty("inferred-output-widget");
12
+ expectTypeOf().toHaveProperty("inferred-tool");
13
+ expectTypeOf().toHaveProperty("widget-with-metadata");
14
+ expectTypeOf().toHaveProperty("tool-with-metadata");
15
+ expectTypeOf().toHaveProperty("widget-with-mixed-returns");
16
+ });
17
+ test("ToolNames returns a union of tool name literals (widgets + registerTool)", () => {
18
+ expectTypeOf().toEqualTypeOf();
19
+ });
20
+ test("ToolInput extracts the correct input type from Zod schema", () => {
21
+ expectTypeOf().toEqualTypeOf();
22
+ expectTypeOf().toEqualTypeOf();
23
+ expectTypeOf().toEqualTypeOf();
24
+ });
25
+ test("ToolOutput extracts the correct output type from callback's structuredContent", () => {
26
+ expectTypeOf().toEqualTypeOf();
27
+ expectTypeOf().toEqualTypeOf();
28
+ expectTypeOf().toEqualTypeOf();
29
+ expectTypeOf().toEqualTypeOf();
30
+ });
31
+ test("ToolOutput extracts the correct output type from callback (inferred)", () => {
32
+ expectTypeOf().toEqualTypeOf();
33
+ expectTypeOf().toEqualTypeOf();
34
+ });
35
+ test("generateHelpers provides autocomplete for tool names (widgets + registerTool)", () => {
36
+ const { useCallTool } = generateHelpers();
37
+ useCallTool("search-voyage");
38
+ useCallTool("get-trip-details");
39
+ useCallTool("no-input-widget");
40
+ useCallTool("calculate-price");
41
+ useCallTool("inferred-output-widget");
42
+ useCallTool("inferred-tool");
43
+ useCallTool("widget-with-metadata");
44
+ useCallTool("tool-with-metadata");
45
+ useCallTool("widget-with-mixed-returns");
46
+ // @ts-expect-error - "invalid-name" is not a valid tool name
47
+ useCallTool("invalid-name");
48
+ });
49
+ test("useCallTool returns correctly typed callTool function", () => {
50
+ const { useCallTool } = generateHelpers();
51
+ const { callTool } = useCallTool("search-voyage");
52
+ callTool({ destination: "Spain" });
53
+ callTool({ destination: "France", departureDate: "2024-06-01" });
54
+ callTool({ destination: "Italy", maxPrice: 1000 });
55
+ const { callTool: calculateTool } = useCallTool("calculate-price");
56
+ calculateTool({ tripId: "123", passengers: 2 });
57
+ });
58
+ test("callTool can be called without args for tools with no required inputs", () => {
59
+ const { useCallTool } = generateHelpers();
60
+ const { callTool, callToolAsync } = useCallTool("no-input-widget");
61
+ callTool();
62
+ callTool({});
63
+ callToolAsync();
64
+ callToolAsync({});
65
+ });
66
+ test("callTool requires args for tools with required inputs", () => {
67
+ const { useCallTool } = generateHelpers();
68
+ const { callTool } = useCallTool("search-voyage");
69
+ // @ts-expect-error - "destination" is required
70
+ callTool();
71
+ // @ts-expect-error - "destination" is required
72
+ callTool({});
73
+ // This should work
74
+ callTool({ destination: "Spain" });
75
+ });
76
+ test("callTool supports sideEffects for tools with required inputs", () => {
77
+ const { useCallTool } = generateHelpers();
78
+ const { callTool } = useCallTool("search-voyage");
79
+ callTool({ destination: "Spain" }, {
80
+ onSuccess: (response, args) => {
81
+ expectTypeOf(response.structuredContent.results).toBeArray();
82
+ expectTypeOf(args.destination).toBeString();
83
+ },
84
+ onError: (error, args) => {
85
+ expectTypeOf(error).toBeUnknown();
86
+ expectTypeOf(args.destination).toBeString();
87
+ },
88
+ onSettled: (response, error, args) => {
89
+ if (response) {
90
+ expectTypeOf(response.structuredContent.totalCount).toBeNumber();
91
+ }
92
+ expectTypeOf(error).toBeUnknown();
93
+ expectTypeOf(args.destination).toBeString();
94
+ },
95
+ });
96
+ });
97
+ test("callTool supports sideEffects for tools with no required inputs", () => {
98
+ const { useCallTool } = generateHelpers();
99
+ const { callTool } = useCallTool("no-input-widget");
100
+ callTool({
101
+ onSuccess: (response) => {
102
+ expectTypeOf(response).toHaveProperty("structuredContent");
103
+ },
104
+ });
105
+ callTool({}, {
106
+ onSuccess: (response) => {
107
+ expectTypeOf(response).toHaveProperty("structuredContent");
108
+ },
109
+ });
110
+ });
111
+ test("callToolAsync returns correctly typed promise", () => {
112
+ const { useCallTool } = generateHelpers();
113
+ const { callToolAsync: searchAsync } = useCallTool("search-voyage");
114
+ const searchPromise = searchAsync({ destination: "Spain" });
115
+ expectTypeOf(searchPromise).resolves.toHaveProperty("structuredContent");
116
+ const { callToolAsync: noInputAsync } = useCallTool("no-input-widget");
117
+ const noInputPromise = noInputAsync();
118
+ expectTypeOf(noInputPromise).resolves.toHaveProperty("structuredContent");
119
+ });
120
+ test("useCallTool returns correctly typed data", () => {
121
+ const { useCallTool } = generateHelpers();
122
+ const { data } = useCallTool("search-voyage");
123
+ if (data) {
124
+ expectTypeOf(data.structuredContent).toExtend();
125
+ expectTypeOf(data.structuredContent.results).toBeArray();
126
+ expectTypeOf(data.structuredContent.totalCount).toBeNumber();
127
+ }
128
+ });
129
+ test("useCallTool returns correctly typed data for callback-inferred outputs", () => {
130
+ const { useCallTool } = generateHelpers();
131
+ const { data: widgetData } = useCallTool("inferred-output-widget");
132
+ if (widgetData) {
133
+ expectTypeOf(widgetData.structuredContent).toExtend();
134
+ }
135
+ const { data: toolData } = useCallTool("inferred-tool");
136
+ if (toolData) {
137
+ expectTypeOf(toolData.structuredContent).toExtend();
138
+ }
139
+ });
140
+ test("generateHelpers provides autocomplete for tool names in useToolInfo (widgets + registerTool)", () => {
141
+ const { useToolInfo } = generateHelpers();
142
+ useToolInfo();
143
+ useToolInfo();
144
+ useToolInfo();
145
+ useToolInfo();
146
+ useToolInfo();
147
+ useToolInfo();
148
+ useToolInfo();
149
+ useToolInfo();
150
+ useToolInfo();
151
+ // @ts-expect-error - "invalid-name" is not a valid tool name
152
+ useToolInfo();
153
+ });
154
+ test("useToolInfo infers input and output types", () => {
155
+ const { useToolInfo } = generateHelpers();
156
+ const toolInfo = useToolInfo();
157
+ // Input is only available when not in idle state
158
+ if (!(toolInfo.status === "idle")) {
159
+ expectTypeOf(toolInfo.input).toExtend();
160
+ }
161
+ if (toolInfo.status === "success") {
162
+ expectTypeOf(toolInfo.output).toExtend();
163
+ expectTypeOf(toolInfo.output.results).toBeArray();
164
+ expectTypeOf(toolInfo.output.totalCount).toBeNumber();
165
+ }
166
+ });
167
+ test("ToolResponseMetadata extracts _meta type from callback", () => {
168
+ expectTypeOf().toEqualTypeOf();
169
+ expectTypeOf().toEqualTypeOf();
170
+ expectTypeOf().toBeUnknown();
171
+ });
172
+ test("useToolInfo infers responseMetadata type from generateHelpers", () => {
173
+ const { useToolInfo } = generateHelpers();
174
+ const toolInfo = useToolInfo();
175
+ if (toolInfo.isSuccess) {
176
+ expectTypeOf(toolInfo.responseMetadata.requestId).toBeString();
177
+ expectTypeOf(toolInfo.responseMetadata.timestamp).toBeNumber();
178
+ expectTypeOf(toolInfo.responseMetadata.cached).toBeBoolean();
179
+ }
180
+ });
181
+ test("ToolResponseMetadata extracts _meta from mixed return paths", () => {
182
+ expectTypeOf().toEqualTypeOf();
183
+ });
184
+ test("ToolOutput extracts correct type when using interface declaration", () => {
185
+ expectTypeOf().toHaveProperty("itemName");
186
+ expectTypeOf().toBeString();
187
+ expectTypeOf().toBeNumber();
188
+ });
189
+ test("ToolResponseMetadata extracts correct type when using interface declaration", () => {
190
+ expectTypeOf().toHaveProperty("processedBy");
191
+ expectTypeOf().toBeString();
192
+ expectTypeOf().toBeNumber();
193
+ });
194
+ test("generateHelpers works with interface-typed server", () => {
195
+ const { useCallTool, useToolInfo } = generateHelpers();
196
+ const { data } = useCallTool("interface-widget");
197
+ if (data) {
198
+ expectTypeOf(data.structuredContent.itemName).toBeString();
199
+ expectTypeOf(data.structuredContent.quantity).toBeNumber();
200
+ }
201
+ const toolInfo = useToolInfo();
202
+ if (toolInfo.isSuccess) {
203
+ expectTypeOf(toolInfo.output.itemName).toBeString();
204
+ expectTypeOf(toolInfo.output.quantity).toBeNumber();
205
+ expectTypeOf(toolInfo.responseMetadata.processedBy).toBeString();
206
+ expectTypeOf(toolInfo.responseMetadata.version).toBeNumber();
207
+ }
208
+ });
209
+ //# sourceMappingURL=generate-helpers.test-d.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generate-helpers.test-d.js","sourceRoot":"","sources":["../../src/web/generate-helpers.test-d.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,17 @@
1
+ import { describe, expect, it } from "vitest";
2
+ import { createMinimalTestServer } from "../test/utils.js";
3
+ import { generateHelpers } from "./generate-helpers.js";
4
+ const server = createMinimalTestServer();
5
+ describe("generateHelpers", () => {
6
+ it("should return an object with useCallTool hook", () => {
7
+ const hooks = generateHelpers();
8
+ expect(hooks).toHaveProperty("useCallTool");
9
+ expect(typeof hooks.useCallTool).toBe("function");
10
+ });
11
+ it("should return an object with useToolInfo hook", () => {
12
+ const hooks = generateHelpers();
13
+ expect(hooks).toHaveProperty("useToolInfo");
14
+ expect(typeof hooks.useToolInfo).toBe("function");
15
+ });
16
+ });
17
+ //# sourceMappingURL=generate-helpers.test.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"generate-helpers.test.js","sourceRoot":"","sources":["../../src/web/generate-helpers.test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,QAAQ,CAAC;AAC9C,OAAO,EAAE,uBAAuB,EAAE,MAAM,kBAAkB,CAAC;AAC3D,OAAO,EAAE,eAAe,EAAE,MAAM,uBAAuB,CAAC;AAExD,MAAM,MAAM,GAAG,uBAAuB,EAAE,CAAC;AAGzC,QAAQ,CAAC,iBAAiB,EAAE,GAAG,EAAE;IAC/B,EAAE,CAAC,+CAA+C,EAAE,GAAG,EAAE;QACvD,MAAM,KAAK,GAAG,eAAe,EAAc,CAAC;QAC5C,MAAM,CAAC,KAAK,CAAC,CAAC,cAAc,CAAC,aAAa,CAAC,CAAC;QAC5C,MAAM,CAAC,OAAO,KAAK,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;IACpD,CAAC,CAAC,CAAC;IAEH,EAAE,CAAC,+CAA+C,EAAE,GAAG,EAAE;QACvD,MAAM,KAAK,GAAG,eAAe,EAAc,CAAC;QAC5C,MAAM,CAAC,KAAK,CAAC,CAAC,cAAc,CAAC,aAAa,CAAC,CAAC;QAC5C,MAAM,CAAC,OAAO,KAAK,CAAC,WAAW,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;IACpD,CAAC,CAAC,CAAC;AACL,CAAC,CAAC,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { type SuperJSONResult } from "superjson";
2
+ import type { UnknownObject } from "../types.js";
3
+ export declare function filterWidgetContext<T extends UnknownObject>(state?: T | null): T | null;
4
+ export declare function injectWidgetContext<T extends UnknownObject>(newState: T | null): T | null;
5
+ export declare function serializeState(value: UnknownObject): unknown;
6
+ export declare function deserializeState(value: SuperJSONResult): unknown;
7
+ export declare function getInitialState<State extends UnknownObject>(defaultState?: State | (() => State)): State | null;