skybridge 0.0.0-dev.e4c9359 → 0.0.0-dev.e9705ff

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 (75) hide show
  1. package/README.md +102 -10
  2. package/dist/src/server/index.d.ts +1 -1
  3. package/dist/src/server/inferUtilityTypes.d.ts +12 -6
  4. package/dist/src/server/server.d.ts +14 -1
  5. package/dist/src/server/server.js.map +1 -1
  6. package/dist/src/web/create-store.d.ts +3 -0
  7. package/dist/src/web/create-store.js +25 -0
  8. package/dist/src/web/create-store.js.map +1 -0
  9. package/dist/src/web/create-store.test.js +70 -0
  10. package/dist/src/web/create-store.test.js.map +1 -0
  11. package/dist/src/web/data-llm.d.ts +14 -0
  12. package/dist/src/web/data-llm.js +68 -0
  13. package/dist/src/web/data-llm.js.map +1 -0
  14. package/dist/src/web/data-llm.test.js +76 -0
  15. package/dist/src/web/data-llm.test.js.map +1 -0
  16. package/dist/src/web/{typed-hooks.d.ts → generate-helpers.d.ts} +17 -16
  17. package/dist/src/web/{typed-hooks.js → generate-helpers.js} +10 -8
  18. package/dist/src/web/generate-helpers.js.map +1 -0
  19. package/dist/src/web/generate-helpers.test-d.d.ts +1 -0
  20. package/dist/src/web/generate-helpers.test-d.js +153 -0
  21. package/dist/src/web/generate-helpers.test-d.js.map +1 -0
  22. package/dist/src/web/generate-helpers.test.d.ts +1 -0
  23. package/dist/src/web/{typed-hooks.test.js → generate-helpers.test.js} +5 -5
  24. package/dist/src/web/generate-helpers.test.js.map +1 -0
  25. package/dist/src/web/helpers/state.d.ts +7 -0
  26. package/dist/src/web/helpers/state.js +40 -0
  27. package/dist/src/web/helpers/state.js.map +1 -0
  28. package/dist/src/web/helpers/state.test.d.ts +1 -0
  29. package/dist/src/web/helpers/state.test.js +46 -0
  30. package/dist/src/web/helpers/state.test.js.map +1 -0
  31. package/dist/src/web/hooks/index.d.ts +1 -3
  32. package/dist/src/web/hooks/index.js +1 -3
  33. package/dist/src/web/hooks/index.js.map +1 -1
  34. package/dist/src/web/hooks/use-call-tool.d.ts +20 -19
  35. package/dist/src/web/hooks/use-call-tool.js +7 -15
  36. package/dist/src/web/hooks/use-call-tool.js.map +1 -1
  37. package/dist/src/web/hooks/use-call-tool.test-d.d.ts +1 -0
  38. package/dist/src/web/hooks/use-call-tool.test-d.js +104 -0
  39. package/dist/src/web/hooks/use-call-tool.test-d.js.map +1 -0
  40. package/dist/src/web/hooks/use-call-tool.test.js +17 -9
  41. package/dist/src/web/hooks/use-call-tool.test.js.map +1 -1
  42. package/dist/src/web/hooks/use-widget-state.js +8 -6
  43. package/dist/src/web/hooks/use-widget-state.js.map +1 -1
  44. package/dist/src/web/index.d.ts +4 -2
  45. package/dist/src/web/index.js +4 -2
  46. package/dist/src/web/index.js.map +1 -1
  47. package/dist/src/web/plugin/data-llm.test.d.ts +1 -0
  48. package/dist/src/web/plugin/data-llm.test.js +81 -0
  49. package/dist/src/web/plugin/data-llm.test.js.map +1 -0
  50. package/dist/src/web/{plugin.js → plugin/plugin.js} +5 -0
  51. package/dist/src/web/plugin/plugin.js.map +1 -0
  52. package/dist/src/web/plugin/transform-data-llm.d.ts +12 -0
  53. package/dist/src/web/plugin/transform-data-llm.js +93 -0
  54. package/dist/src/web/plugin/transform-data-llm.js.map +1 -0
  55. package/dist/src/web/plugin/transform-data-llm.test.d.ts +1 -0
  56. package/dist/src/web/plugin/transform-data-llm.test.js +81 -0
  57. package/dist/src/web/plugin/transform-data-llm.test.js.map +1 -0
  58. package/dist/src/web/types.d.ts +10 -0
  59. package/dist/src/web/types.js +1 -0
  60. package/dist/src/web/types.js.map +1 -1
  61. package/package.json +7 -3
  62. package/dist/src/web/hooks/use-tool-output.d.ts +0 -4
  63. package/dist/src/web/hooks/use-tool-output.js +0 -9
  64. package/dist/src/web/hooks/use-tool-output.js.map +0 -1
  65. package/dist/src/web/hooks/use-tool-response-metadata.d.ts +0 -4
  66. package/dist/src/web/hooks/use-tool-response-metadata.js +0 -8
  67. package/dist/src/web/hooks/use-tool-response-metadata.js.map +0 -1
  68. package/dist/src/web/plugin.js.map +0 -1
  69. package/dist/src/web/typed-hooks.js.map +0 -1
  70. package/dist/src/web/typed-hooks.test-d.js +0 -90
  71. package/dist/src/web/typed-hooks.test-d.js.map +0 -1
  72. package/dist/src/web/typed-hooks.test.js.map +0 -1
  73. /package/dist/src/web/{typed-hooks.test-d.d.ts → create-store.test.d.ts} +0 -0
  74. /package/dist/src/web/{typed-hooks.test.d.ts → data-llm.test.d.ts} +0 -0
  75. /package/dist/src/web/{plugin.d.ts → plugin/plugin.d.ts} +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skybridge",
3
- "version": "0.0.0-dev.e4c9359",
3
+ "version": "0.0.0-dev.e9705ff",
4
4
  "description": "Skybridge is a framework for building ChatGPT apps",
5
5
  "type": "module",
6
6
  "files": [
@@ -20,7 +20,7 @@
20
20
  "build": "tsc && pnpm run build:templates",
21
21
  "build:templates": "cp -r src/server/templates dist/src/server/",
22
22
  "test": "pnpm run test:unit && pnpm run test:type",
23
- "test:unit": "vitest run --silent",
23
+ "test:unit": "vitest run",
24
24
  "test:type": "tsc --noEmit",
25
25
  "docs:dev": "pnpm --filter @skybridge/docs start",
26
26
  "docs:build": "pnpm --filter @skybridge/docs build",
@@ -39,17 +39,21 @@
39
39
  "react-dom": ">=18.0.0"
40
40
  },
41
41
  "dependencies": {
42
+ "@babel/core": "^7.28.5",
42
43
  "@modelcontextprotocol/sdk": "^1.20.0",
43
44
  "cors": "^2.8.5",
44
45
  "express": "^5.1.0",
45
46
  "handlebars": "^4.7.8",
47
+ "superjson": "^2.2.6",
46
48
  "vite": "^7.1.11",
47
- "zod": "^3.25.51"
49
+ "zod": "^3.25.51",
50
+ "zustand": "^5.0.9"
48
51
  },
49
52
  "devDependencies": {
50
53
  "@testing-library/dom": "^10.4.1",
51
54
  "@testing-library/react": "^16.3.0",
52
55
  "@total-typescript/tsconfig": "^1.0.4",
56
+ "@types/babel__core": "^7.20.5",
53
57
  "@types/cors": "^2.8.19",
54
58
  "@types/express": "^5.0.3",
55
59
  "@types/jsdom": "^21.1.6",
@@ -1,4 +0,0 @@
1
- /**
2
- * @deprecated This hook is deprecated. Use `useToolInfo()` instead and access the `output` property.
3
- */
4
- export declare function useToolOutput(): import("../types.js").UnknownObject | undefined;
@@ -1,9 +0,0 @@
1
- import { useToolInfo } from "./use-tool-info.js";
2
- /**
3
- * @deprecated This hook is deprecated. Use `useToolInfo()` instead and access the `output` property.
4
- */
5
- export function useToolOutput() {
6
- const { output } = useToolInfo();
7
- return output;
8
- }
9
- //# sourceMappingURL=use-tool-output.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"use-tool-output.js","sourceRoot":"","sources":["../../../../src/web/hooks/use-tool-output.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,oBAAoB,CAAC;AAEjD;;GAEG;AACH,MAAM,UAAU,aAAa;IAC3B,MAAM,EAAE,MAAM,EAAE,GAAG,WAAW,EAAE,CAAC;IAEjC,OAAO,MAAM,CAAC;AAChB,CAAC"}
@@ -1,4 +0,0 @@
1
- /**
2
- * @deprecated This hook is deprecated. Use `useToolInfo()` instead and access the `responseMetadata` property.
3
- */
4
- export declare function useToolResponseMetadata(): import("../types.js").UnknownObject | null | undefined;
@@ -1,8 +0,0 @@
1
- import { useOpenAiGlobal } from "./use-openai-global.js";
2
- /**
3
- * @deprecated This hook is deprecated. Use `useToolInfo()` instead and access the `responseMetadata` property.
4
- */
5
- export function useToolResponseMetadata() {
6
- return useOpenAiGlobal("toolResponseMetadata");
7
- }
8
- //# sourceMappingURL=use-tool-response-metadata.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"use-tool-response-metadata.js","sourceRoot":"","sources":["../../../../src/web/hooks/use-tool-response-metadata.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAEzD;;GAEG;AACH,MAAM,UAAU,uBAAuB;IACrC,OAAO,eAAe,CAAC,sBAAsB,CAAC,CAAC;AACjD,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"plugin.js","sourceRoot":"","sources":["../../../src/web/plugin.ts"],"names":[],"mappings":"AAEA,MAAM,UAAU,SAAS;IACvB,OAAO;QACL,IAAI,EAAE,WAAW;QAEjB,KAAK,CAAC,MAAM,CAAC,MAAM;YACjB,4EAA4E;YAC5E,MAAM,EAAE,QAAQ,EAAE,GAAG,MAAM,MAAM,CAAC,SAAS,CAAC,CAAC;YAC7C,MAAM,EAAE,OAAO,EAAE,GAAG,MAAM,MAAM,CAAC,WAAW,CAAC,CAAC;YAE9C,MAAM,WAAW,GAAG,MAAM,CAAC,IAAI,IAAI,OAAO,CAAC,GAAG,EAAE,CAAC;YACjD,MAAM,cAAc,GAAG,OAAO,CAC5B,WAAW,EACX,oCAAoC,CACrC,CAAC;YAEF,MAAM,KAAK,GAAG,MAAM,CAAC,WAAW,CAC9B,QAAQ,CAAC,cAAc,CAAC,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC;gBACrC,IAAI,CAAC,KAAK,CAAC,0BAA0B,CAAC,EAAE,CAAC,CAAC,CAAC;gBAC3C,IAAI;aACL,CAAC,CACH,CAAC;YAEF,OAAO;gBACL,IAAI,EAAE,SAAS;gBACf,KAAK,EAAE;oBACL,QAAQ,EAAE,IAAI;oBACd,MAAM,EAAE,IAAI;oBACZ,YAAY,EAAE,KAAK;oBACnB,aAAa,EAAE;wBACb,KAAK;qBACN;iBACF;aACF,CAAC;QACJ,CAAC;KACF,CAAC;AACJ,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"typed-hooks.js","sourceRoot":"","sources":["../../../src/web/typed-hooks.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAsB,MAAM,0BAA0B,CAAC;AAC3E,OAAO,EAAE,WAAW,EAAkB,MAAM,0BAA0B,CAAC;AAuBvE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAiDG;AACH,MAAM,UAAU,gBAAgB;IAI9B,OAAO;QACL;;;;;;;;;;;;;;;;;;WAkBG;QACH,WAAW,EAAE,CACX,IAAO,EACqD,EAAE;YAC9D,OAAO,WAAW,CAAC,IAAI,CAGtB,CAAC;QACJ,CAAC;QAED;;;;;;;;;;;;;;;;;;;;;;;;WAwBG;QACH,WAAW,EAAE,GAGX,EAAE;YACF,OAAO,WAAW,EAGjB,CAAC;QACJ,CAAC;KACF,CAAC;AACJ,CAAC"}
@@ -1,90 +0,0 @@
1
- import { expectTypeOf, test } from "vitest";
2
- import { createTypedHooks } from "./typed-hooks.js";
3
- import { createTestServer } from "../test/utils.js";
4
- const server = createTestServer();
5
- test("InferTools extracts the tool registry type (widgets + registerTool)", () => {
6
- expectTypeOf().toHaveProperty("search-voyage");
7
- expectTypeOf().toHaveProperty("get-trip-details");
8
- expectTypeOf().toHaveProperty("no-input-widget");
9
- expectTypeOf().toHaveProperty("calculate-price");
10
- expectTypeOf().toHaveProperty("inferred-output-widget");
11
- expectTypeOf().toHaveProperty("inferred-tool");
12
- });
13
- test("ToolNames returns a union of tool name literals (widgets + registerTool)", () => {
14
- expectTypeOf().toEqualTypeOf();
15
- });
16
- test("ToolInput extracts the correct input type from Zod schema", () => {
17
- expectTypeOf().toEqualTypeOf();
18
- expectTypeOf().toEqualTypeOf();
19
- expectTypeOf().toEqualTypeOf();
20
- });
21
- test("ToolOutput extracts the correct output type from callback's structuredContent", () => {
22
- expectTypeOf().toEqualTypeOf();
23
- expectTypeOf().toEqualTypeOf();
24
- expectTypeOf().toEqualTypeOf();
25
- expectTypeOf().toEqualTypeOf();
26
- });
27
- test("ToolOutput extracts the correct output type from callback (inferred)", () => {
28
- expectTypeOf().toEqualTypeOf();
29
- expectTypeOf().toEqualTypeOf();
30
- });
31
- test("createTypedHooks provides autocomplete for tool names (widgets + registerTool)", () => {
32
- const { useCallTool } = createTypedHooks();
33
- useCallTool("search-voyage");
34
- useCallTool("get-trip-details");
35
- useCallTool("no-input-widget");
36
- useCallTool("calculate-price");
37
- useCallTool("inferred-output-widget");
38
- useCallTool("inferred-tool");
39
- // @ts-expect-error - "invalid-name" is not a valid tool name
40
- useCallTool("invalid-name");
41
- });
42
- test("useCallTool returns correctly typed callTool function", () => {
43
- const { useCallTool } = createTypedHooks();
44
- const { callTool } = useCallTool("search-voyage");
45
- callTool({ destination: "Spain" });
46
- callTool({ destination: "France", departureDate: "2024-06-01" });
47
- callTool({ destination: "Italy", maxPrice: 1000 });
48
- const { callTool: calculateTool } = useCallTool("calculate-price");
49
- calculateTool({ tripId: "123", passengers: 2 });
50
- });
51
- test("useCallTool returns correctly typed data", () => {
52
- const { useCallTool } = createTypedHooks();
53
- const { data } = useCallTool("search-voyage");
54
- if (data) {
55
- expectTypeOf(data.structuredContent).toExtend();
56
- expectTypeOf(data.structuredContent.results).toBeArray();
57
- expectTypeOf(data.structuredContent.totalCount).toBeNumber();
58
- }
59
- });
60
- test("useCallTool returns correctly typed data for callback-inferred outputs", () => {
61
- const { useCallTool } = createTypedHooks();
62
- const { data: widgetData } = useCallTool("inferred-output-widget");
63
- if (widgetData) {
64
- expectTypeOf(widgetData.structuredContent).toExtend();
65
- }
66
- const { data: toolData } = useCallTool("inferred-tool");
67
- if (toolData) {
68
- expectTypeOf(toolData.structuredContent).toExtend();
69
- }
70
- });
71
- test("createTypedHooks provides autocomplete for tool names in useToolInfo (widgets + registerTool)", () => {
72
- const { useToolInfo } = createTypedHooks();
73
- useToolInfo();
74
- useToolInfo();
75
- useToolInfo();
76
- useToolInfo();
77
- useToolInfo();
78
- useToolInfo();
79
- // @ts-expect-error - "invalid-name" is not a valid tool name
80
- useToolInfo();
81
- });
82
- test("useToolInfo infers input and output types", () => {
83
- const { useToolInfo } = createTypedHooks();
84
- const toolInfo = useToolInfo();
85
- expectTypeOf(toolInfo.input).toExtend();
86
- if (toolInfo.status === "success") {
87
- expectTypeOf(toolInfo.output).toExtend();
88
- }
89
- });
90
- //# sourceMappingURL=typed-hooks.test-d.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"typed-hooks.test-d.js","sourceRoot":"","sources":["../../../src/web/typed-hooks.test-d.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC5C,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAEpD,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AAEpD,MAAM,MAAM,GAAG,gBAAgB,EAAE,CAAC;AAGlC,IAAI,CAAC,qEAAqE,EAAE,GAAG,EAAE;IAG/E,YAAY,EAAS,CAAC,cAAc,CAAC,eAAe,CAAC,CAAC;IACtD,YAAY,EAAS,CAAC,cAAc,CAAC,kBAAkB,CAAC,CAAC;IACzD,YAAY,EAAS,CAAC,cAAc,CAAC,iBAAiB,CAAC,CAAC;IACxD,YAAY,EAAS,CAAC,cAAc,CAAC,iBAAiB,CAAC,CAAC;IACxD,YAAY,EAAS,CAAC,cAAc,CAAC,wBAAwB,CAAC,CAAC;IAC/D,YAAY,EAAS,CAAC,cAAc,CAAC,eAAe,CAAC,CAAC;AACxD,CAAC,CAAC,CAAC;AAEH,IAAI,CAAC,0EAA0E,EAAE,GAAG,EAAE;IAGpF,YAAY,EAAS,CAAC,aAAa,EAOhC,CAAC;AACN,CAAC,CAAC,CAAC;AAEH,IAAI,CAAC,2DAA2D,EAAE,GAAG,EAAE;IAGrE,YAAY,EAAe,CAAC,aAAa,EAIrC,CAAC;IAIL,YAAY,EAAgB,CAAC,aAAa,EAEtC,CAAC;IAIL,YAAY,EAAkB,CAAC,aAAa,EAGxC,CAAC;AACP,CAAC,CAAC,CAAC;AAEH,IAAI,CAAC,+EAA+E,EAAE,GAAG,EAAE;IAGzF,YAAY,EAAgB,CAAC,aAAa,EAOtC,CAAC;IAIL,YAAY,EAAiB,CAAC,aAAa,EAIvC,CAAC;IAML,YAAY,EAAmB,CAAC,aAAa,EAGzC,CAAC;IAGL,YAAY,EAAiB,CAAC,aAAa,EAAM,CAAC;AACpD,CAAC,CAAC,CAAC;AAEH,IAAI,CAAC,sEAAsE,EAAE,GAAG,EAAE;IAGhF,YAAY,EAAwB,CAAC,aAAa,EAG9C,CAAC;IAIL,YAAY,EAAsB,CAAC,aAAa,EAG5C,CAAC;AACP,CAAC,CAAC,CAAC;AAEH,IAAI,CAAC,gFAAgF,EAAE,GAAG,EAAE;IAC1F,MAAM,EAAE,WAAW,EAAE,GAAG,gBAAgB,EAAc,CAAC;IAEvD,WAAW,CAAC,eAAe,CAAC,CAAC;IAC7B,WAAW,CAAC,kBAAkB,CAAC,CAAC;IAChC,WAAW,CAAC,iBAAiB,CAAC,CAAC;IAC/B,WAAW,CAAC,iBAAiB,CAAC,CAAC;IAC/B,WAAW,CAAC,wBAAwB,CAAC,CAAC;IACtC,WAAW,CAAC,eAAe,CAAC,CAAC;IAE7B,6DAA6D;IAC7D,WAAW,CAAC,cAAc,CAAC,CAAC;AAC9B,CAAC,CAAC,CAAC;AAEH,IAAI,CAAC,uDAAuD,EAAE,GAAG,EAAE;IACjE,MAAM,EAAE,WAAW,EAAE,GAAG,gBAAgB,EAAc,CAAC;IACvD,MAAM,EAAE,QAAQ,EAAE,GAAG,WAAW,CAAC,eAAe,CAAC,CAAC;IAElD,QAAQ,CAAC,EAAE,WAAW,EAAE,OAAO,EAAE,CAAC,CAAC;IACnC,QAAQ,CAAC,EAAE,WAAW,EAAE,QAAQ,EAAE,aAAa,EAAE,YAAY,EAAE,CAAC,CAAC;IACjE,QAAQ,CAAC,EAAE,WAAW,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC,CAAC;IAEnD,MAAM,EAAE,QAAQ,EAAE,aAAa,EAAE,GAAG,WAAW,CAAC,iBAAiB,CAAC,CAAC;IACnE,aAAa,CAAC,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,EAAE,CAAC,EAAE,CAAC,CAAC;AAClD,CAAC,CAAC,CAAC;AAEH,IAAI,CAAC,0CAA0C,EAAE,GAAG,EAAE;IACpD,MAAM,EAAE,WAAW,EAAE,GAAG,gBAAgB,EAAc,CAAC;IACvD,MAAM,EAAE,IAAI,EAAE,GAAG,WAAW,CAAC,eAAe,CAAC,CAAC;IAE9C,IAAI,IAAI,EAAE,CAAC;QACT,YAAY,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,QAAQ,EAOzC,CAAC;QAEL,YAAY,CAAC,IAAI,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAC,SAAS,EAAE,CAAC;QACzD,YAAY,CAAC,IAAI,CAAC,iBAAiB,CAAC,UAAU,CAAC,CAAC,UAAU,EAAE,CAAC;IAC/D,CAAC;AACH,CAAC,CAAC,CAAC;AAEH,IAAI,CAAC,wEAAwE,EAAE,GAAG,EAAE;IAClF,MAAM,EAAE,WAAW,EAAE,GAAG,gBAAgB,EAAc,CAAC;IAEvD,MAAM,EAAE,IAAI,EAAE,UAAU,EAAE,GAAG,WAAW,CAAC,wBAAwB,CAAC,CAAC;IACnE,IAAI,UAAU,EAAE,CAAC;QACf,YAAY,CAAC,UAAU,CAAC,iBAAiB,CAAC,CAAC,QAAQ,EAG/C,CAAC;IACP,CAAC;IAED,MAAM,EAAE,IAAI,EAAE,QAAQ,EAAE,GAAG,WAAW,CAAC,eAAe,CAAC,CAAC;IACxD,IAAI,QAAQ,EAAE,CAAC;QACb,YAAY,CAAC,QAAQ,CAAC,iBAAiB,CAAC,CAAC,QAAQ,EAG7C,CAAC;IACP,CAAC;AACH,CAAC,CAAC,CAAC;AAEH,IAAI,CAAC,+FAA+F,EAAE,GAAG,EAAE;IACzG,MAAM,EAAE,WAAW,EAAE,GAAG,gBAAgB,EAAc,CAAC;IAEvD,WAAW,EAAmB,CAAC;IAC/B,WAAW,EAAsB,CAAC;IAClC,WAAW,EAAqB,CAAC;IACjC,WAAW,EAAqB,CAAC;IACjC,WAAW,EAA4B,CAAC;IACxC,WAAW,EAAmB,CAAC;IAE/B,6DAA6D;IAC7D,WAAW,EAAkB,CAAC;AAChC,CAAC,CAAC,CAAC;AAEH,IAAI,CAAC,2CAA2C,EAAE,GAAG,EAAE;IACrD,MAAM,EAAE,WAAW,EAAE,GAAG,gBAAgB,EAAc,CAAC;IACvD,MAAM,QAAQ,GAAG,WAAW,EAAmB,CAAC;IAEhD,YAAY,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,QAAQ,EAA0C,CAAC;IAEhF,IAAI,QAAQ,CAAC,MAAM,KAAK,SAAS,EAAE,CAAC;QAClC,YAAY,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,QAAQ,EAA2C,CAAC;IACpF,CAAC;AACH,CAAC,CAAC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"typed-hooks.test.js","sourceRoot":"","sources":["../../../src/web/typed-hooks.test.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,QAAQ,CAAC;AAC9C,OAAO,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,uBAAuB,EAAE,MAAM,kBAAkB,CAAC;AAE3D,MAAM,MAAM,GAAG,uBAAuB,EAAE,CAAC;AAGzC,QAAQ,CAAC,kBAAkB,EAAE,GAAG,EAAE;IAChC,EAAE,CAAC,+CAA+C,EAAE,GAAG,EAAE;QACvD,MAAM,KAAK,GAAG,gBAAgB,EAAc,CAAC;QAC7C,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,gBAAgB,EAAc,CAAC;QAC7C,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"}