skybridge 0.0.0-dev.705ef7e โ 0.0.0-dev.712a600
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.
- package/dist/src/server/index.d.ts +0 -1
- package/dist/src/server/index.js +0 -1
- package/dist/src/server/index.js.map +1 -1
- package/dist/src/server/server.js +8 -2
- package/dist/src/server/server.js.map +1 -1
- package/dist/src/server/templates/development.hbs +55 -2
- package/dist/src/server/templates/production.hbs +1 -1
- package/dist/src/server/widgetsDevServer.js +11 -3
- package/dist/src/server/widgetsDevServer.js.map +1 -1
- package/dist/src/test/widget.test.js +35 -8
- package/dist/src/test/widget.test.js.map +1 -1
- package/dist/src/web/bridges/adaptors/apps-sdk-adaptor.d.ts +13 -0
- package/dist/src/web/bridges/adaptors/apps-sdk-adaptor.js +33 -0
- package/dist/src/web/bridges/adaptors/apps-sdk-adaptor.js.map +1 -0
- package/dist/src/web/bridges/adaptors/mcp-app-adaptor.d.ts +16 -0
- package/dist/src/web/bridges/adaptors/mcp-app-adaptor.js +115 -0
- package/dist/src/web/bridges/adaptors/mcp-app-adaptor.js.map +1 -0
- package/dist/src/web/bridges/apps-sdk-bridge.d.ts +4 -2
- package/dist/src/web/bridges/apps-sdk-bridge.js +19 -14
- package/dist/src/web/bridges/apps-sdk-bridge.js.map +1 -1
- package/dist/src/web/bridges/hooks/use-adaptor.d.ts +2 -0
- package/dist/src/web/bridges/hooks/use-adaptor.js +8 -0
- package/dist/src/web/bridges/hooks/use-adaptor.js.map +1 -0
- package/dist/src/web/bridges/hooks/use-bridge.d.ts +2 -3
- package/dist/src/web/bridges/hooks/use-bridge.js +5 -24
- package/dist/src/web/bridges/hooks/use-bridge.js.map +1 -1
- package/dist/src/web/bridges/hooks/use-mcp-app-bridge.d.ts +3 -2
- package/dist/src/web/bridges/hooks/use-mcp-app-bridge.js +1 -1
- package/dist/src/web/bridges/hooks/use-mcp-app-bridge.js.map +1 -1
- package/dist/src/web/bridges/hooks/use-mcp-app-bridge.test.js +9 -26
- package/dist/src/web/bridges/hooks/use-mcp-app-bridge.test.js.map +1 -1
- package/dist/src/web/bridges/index.d.ts +1 -0
- package/dist/src/web/bridges/index.js +1 -0
- package/dist/src/web/bridges/index.js.map +1 -1
- package/dist/src/web/bridges/mcp-app-bridge.d.ts +19 -7
- package/dist/src/web/bridges/mcp-app-bridge.js +58 -26
- package/dist/src/web/bridges/mcp-app-bridge.js.map +1 -1
- package/dist/src/web/bridges/types.d.ts +57 -0
- package/dist/src/web/bridges/types.js +2 -0
- package/dist/src/web/bridges/types.js.map +1 -0
- package/dist/src/web/data-llm.js +4 -2
- package/dist/src/web/data-llm.js.map +1 -1
- package/dist/src/web/generate-helpers.test-d.js +4 -1
- package/dist/src/web/generate-helpers.test-d.js.map +1 -1
- package/dist/src/web/hooks/test/utils.d.ts +10 -0
- package/dist/src/web/hooks/test/utils.js +40 -0
- package/dist/src/web/hooks/test/utils.js.map +1 -0
- package/dist/src/web/hooks/use-call-tool.d.ts +1 -1
- package/dist/src/web/hooks/use-call-tool.js +12 -4
- package/dist/src/web/hooks/use-call-tool.js.map +1 -1
- package/dist/src/web/hooks/use-call-tool.test-d.js +1 -1
- package/dist/src/web/hooks/use-call-tool.test-d.js.map +1 -1
- package/dist/src/web/hooks/use-call-tool.test.js +28 -3
- package/dist/src/web/hooks/use-call-tool.test.js.map +1 -1
- package/dist/src/web/hooks/use-display-mode.d.ts +1 -1
- package/dist/src/web/hooks/use-display-mode.js +6 -3
- package/dist/src/web/hooks/use-display-mode.js.map +1 -1
- package/dist/src/web/hooks/use-layout.js +3 -3
- package/dist/src/web/hooks/use-layout.js.map +1 -1
- package/dist/src/web/hooks/use-layout.test.js +87 -38
- package/dist/src/web/hooks/use-layout.test.js.map +1 -1
- package/dist/src/web/hooks/use-open-external.js +5 -3
- package/dist/src/web/hooks/use-open-external.js.map +1 -1
- package/dist/src/web/hooks/use-open-external.test.js +41 -15
- package/dist/src/web/hooks/use-open-external.test.js.map +1 -1
- package/dist/src/web/hooks/use-request-modal.d.ts +6 -3
- package/dist/src/web/hooks/use-request-modal.js +6 -1
- package/dist/src/web/hooks/use-request-modal.js.map +1 -1
- package/dist/src/web/hooks/use-request-modal.test.js +35 -2
- package/dist/src/web/hooks/use-request-modal.test.js.map +1 -1
- package/dist/src/web/hooks/use-send-follow-up-message.js +3 -6
- package/dist/src/web/hooks/use-send-follow-up-message.js.map +1 -1
- package/dist/src/web/hooks/use-tool-info.d.ts +12 -1
- package/dist/src/web/hooks/use-tool-info.js +15 -9
- package/dist/src/web/hooks/use-tool-info.js.map +1 -1
- package/dist/src/web/hooks/use-tool-info.test-d.js +40 -4
- package/dist/src/web/hooks/use-tool-info.test-d.js.map +1 -1
- package/dist/src/web/hooks/use-tool-info.test.js +117 -47
- package/dist/src/web/hooks/use-tool-info.test.js.map +1 -1
- package/dist/src/web/hooks/use-user.js +2 -2
- package/dist/src/web/hooks/use-user.js.map +1 -1
- package/dist/src/web/hooks/use-user.test.js +83 -34
- package/dist/src/web/hooks/use-user.test.js.map +1 -1
- package/dist/src/web/plugin/transform-data-llm.js +6 -3
- package/dist/src/web/plugin/transform-data-llm.js.map +1 -1
- package/dist/src/web/types.d.ts +20 -9
- package/dist/src/web/types.js.map +1 -1
- package/package.json +28 -29
- package/README.md +0 -125
- package/dist/src/server/devtoolsStaticServer.d.ts +0 -15
- package/dist/src/server/devtoolsStaticServer.js +0 -38
- package/dist/src/server/devtoolsStaticServer.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/web/types.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../../src/web/types.ts"],"names":[],"mappings":"AAAA,OAAO,OAAO,CAAC;AAyBf,MAAM,CAAC,MAAM,wBAAwB,GAAG,sBAAsB,CAAC;AAC/D,MAAM,OAAO,iBAAkB,SAAQ,WAErC;IACkB,IAAI,GAAG,wBAAwB,CAAC;CACnD;AAuGD,sDAAsD;AACtD,MAAM,CAAC,MAAM,sBAAsB,GAAG,oBAAoB,CAAC;AAC3D,MAAM,OAAO,eAAgB,SAAQ,WAEnC;IACkB,IAAI,GAAG,sBAAsB,CAAC;CACjD"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skybridge",
|
|
3
|
-
"version": "0.0.0-dev.
|
|
3
|
+
"version": "0.0.0-dev.712a600",
|
|
4
4
|
"description": "Skybridge is a framework for building ChatGPT apps",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/alpic-ai/skybridge.git"
|
|
8
|
+
},
|
|
5
9
|
"type": "module",
|
|
6
10
|
"files": [
|
|
7
11
|
"dist"
|
|
@@ -16,18 +20,6 @@
|
|
|
16
20
|
"default": "./dist/src/web/index.js"
|
|
17
21
|
}
|
|
18
22
|
},
|
|
19
|
-
"scripts": {
|
|
20
|
-
"build": "tsc && pnpm run build:templates",
|
|
21
|
-
"build:templates": "cp -r src/server/templates dist/src/server/",
|
|
22
|
-
"format": "biome check --write --error-on-warnings",
|
|
23
|
-
"test": "pnpm run test:unit && pnpm run test:type && pnpm run test:format",
|
|
24
|
-
"test:unit": "vitest run",
|
|
25
|
-
"test:type": "tsc --noEmit",
|
|
26
|
-
"test:format": "biome ci",
|
|
27
|
-
"docs:dev": "pnpm --filter @skybridge/docs start",
|
|
28
|
-
"docs:build": "pnpm --filter @skybridge/docs build",
|
|
29
|
-
"docs:serve": "pnpm --filter @skybridge/docs serve"
|
|
30
|
-
},
|
|
31
23
|
"keywords": [
|
|
32
24
|
"chatgpt",
|
|
33
25
|
"app",
|
|
@@ -44,31 +36,38 @@
|
|
|
44
36
|
"dependencies": {
|
|
45
37
|
"@babel/core": "^7.28.5",
|
|
46
38
|
"cors": "^2.8.5",
|
|
47
|
-
"
|
|
39
|
+
"dequal": "^2.0.3",
|
|
40
|
+
"express": "^5.2.1",
|
|
48
41
|
"handlebars": "^4.7.8",
|
|
49
42
|
"superjson": "^2.2.6",
|
|
50
|
-
"vite": "^7.1
|
|
43
|
+
"vite": "^7.3.1",
|
|
51
44
|
"zustand": "^5.0.9"
|
|
52
45
|
},
|
|
53
46
|
"devDependencies": {
|
|
54
|
-
"@biomejs/biome": "2.3.8",
|
|
55
47
|
"@modelcontextprotocol/ext-apps": "^0.2.2",
|
|
56
|
-
"@modelcontextprotocol/sdk": "^1.
|
|
48
|
+
"@modelcontextprotocol/sdk": "^1.25.2",
|
|
57
49
|
"@testing-library/dom": "^10.4.1",
|
|
58
|
-
"@testing-library/react": "^16.3.
|
|
50
|
+
"@testing-library/react": "^16.3.1",
|
|
59
51
|
"@total-typescript/tsconfig": "^1.0.4",
|
|
60
52
|
"@types/babel__core": "^7.20.5",
|
|
61
53
|
"@types/cors": "^2.8.19",
|
|
62
|
-
"@types/express": "^5.0.
|
|
63
|
-
"@types/jsdom": "^
|
|
64
|
-
"@types/
|
|
65
|
-
"@types/react": "^19.2.
|
|
66
|
-
"@
|
|
67
|
-
"
|
|
68
|
-
"jsdom": "^25.0.1",
|
|
54
|
+
"@types/express": "^5.0.6",
|
|
55
|
+
"@types/jsdom": "^27.0.0",
|
|
56
|
+
"@types/react": "^19.2.7",
|
|
57
|
+
"@types/react-dom": "^19.2.3",
|
|
58
|
+
"@vitest/ui": "^4.0.16",
|
|
59
|
+
"jsdom": "^27.4.0",
|
|
69
60
|
"typescript": "^5.9.3",
|
|
70
|
-
"vitest": "^
|
|
71
|
-
"zod": "^4.
|
|
61
|
+
"vitest": "^4.0.16",
|
|
62
|
+
"zod": "^4.3.5"
|
|
72
63
|
},
|
|
73
|
-
"
|
|
74
|
-
|
|
64
|
+
"scripts": {
|
|
65
|
+
"build": "tsc && pnpm run build:templates",
|
|
66
|
+
"build:templates": "cp -r src/server/templates dist/src/server/",
|
|
67
|
+
"format": "biome check --write --error-on-warnings",
|
|
68
|
+
"test": "pnpm run test:unit && pnpm run test:type && pnpm run test:format",
|
|
69
|
+
"test:unit": "vitest run",
|
|
70
|
+
"test:type": "tsc --noEmit",
|
|
71
|
+
"test:format": "biome ci"
|
|
72
|
+
}
|
|
73
|
+
}
|
package/README.md
DELETED
|
@@ -1,125 +0,0 @@
|
|
|
1
|
-
<div align="center">
|
|
2
|
-
|
|
3
|
-
<img alt="Skybridge" src="docs/static/img/github-banner.png" width="100%">
|
|
4
|
-
|
|
5
|
-
<br />
|
|
6
|
-
|
|
7
|
-
# Skybridge
|
|
8
|
-
|
|
9
|
-
**Build ChatGPT Apps. The Modern TypeScript Way.**
|
|
10
|
-
|
|
11
|
-
The fullstack TypeScript framework for ChatGPT Apps.<br />
|
|
12
|
-
**Type-safe. React-powered. Zero config.**
|
|
13
|
-
|
|
14
|
-
<br />
|
|
15
|
-
|
|
16
|
-
[](https://www.npmjs.com/package/skybridge)
|
|
17
|
-
[](https://www.npmjs.com/package/skybridge)
|
|
18
|
-
[](https://github.com/alpic-ai/skybridge/blob/main/LICENSE)
|
|
19
|
-
|
|
20
|
-
<br />
|
|
21
|
-
|
|
22
|
-
[Documentation](https://skybridge.tech) ยท [Quick Start](https://github.com/new?template_name=apps-sdk-template&template_owner=alpic-ai) ยท [Examples](https://github.com/alpic-ai/apps-sdk-template)
|
|
23
|
-
|
|
24
|
-
</div>
|
|
25
|
-
|
|
26
|
-
<br />
|
|
27
|
-
|
|
28
|
-
## โจ Why Skybridge?
|
|
29
|
-
|
|
30
|
-
ChatGPT Apps let you embed **rich, interactive UIs** directly in conversations. But the raw SDK is low-levelโno hooks, no type safety, no dev tools, and no HMR.
|
|
31
|
-
|
|
32
|
-
**Skybridge fixes that.**
|
|
33
|
-
|
|
34
|
-
| | |
|
|
35
|
-
|:--|:--|
|
|
36
|
-
| ๐จโ๐ป **Full Dev Environment** โ HMR, debug traces, and local devtools. No more refresh loops. | โ
**End-to-End Type Safety** โ tRPC-style inference from server to widget. Autocomplete everywhere. |
|
|
37
|
-
| ๐ **Widget-to-Model Sync** โ Keep the model aware of UI state with `data-llm`. Dual surfaces, one source of truth. | โ๏ธ **React Query-style Hooks** โ `isPending`, `isError`, callbacks. State management you already know. |
|
|
38
|
-
|
|
39
|
-
<br />
|
|
40
|
-
|
|
41
|
-
## ๐ Get Started
|
|
42
|
-
|
|
43
|
-
**Create a new ChatGPT app:**
|
|
44
|
-
|
|
45
|
-
```bash
|
|
46
|
-
gh repo create my-app --template alpic-ai/apps-sdk-template --clone
|
|
47
|
-
cd my-app && pnpm install
|
|
48
|
-
```
|
|
49
|
-
|
|
50
|
-
**Or add to an existing project:**
|
|
51
|
-
|
|
52
|
-
```bash
|
|
53
|
-
npm i skybridge
|
|
54
|
-
yarn add skybridge
|
|
55
|
-
pnpm add skybridge
|
|
56
|
-
bun add skybridge
|
|
57
|
-
deno add skybridge
|
|
58
|
-
```
|
|
59
|
-
|
|
60
|
-
<div align="center">
|
|
61
|
-
|
|
62
|
-
**๐ [Read the Docs](https://skybridge.tech) ๐**
|
|
63
|
-
|
|
64
|
-
</div>
|
|
65
|
-
|
|
66
|
-
<br />
|
|
67
|
-
|
|
68
|
-
## ๐ฆ The Stack
|
|
69
|
-
|
|
70
|
-
- **`skybridge/server`** โ Drop-in MCP SDK replacement with widget registration and type inference.
|
|
71
|
-
- **`skybridge/web`** โ React hooks and components for ChatGPT's runtime.
|
|
72
|
-
|
|
73
|
-
### Server
|
|
74
|
-
|
|
75
|
-
```ts
|
|
76
|
-
import { McpServer } from "skybridge/server";
|
|
77
|
-
|
|
78
|
-
server.registerWidget("flights", {}, {
|
|
79
|
-
inputSchema: { destination: z.string() },
|
|
80
|
-
}, async ({ destination }) => {
|
|
81
|
-
const flights = await searchFlights(destination);
|
|
82
|
-
return { structuredContent: { flights } };
|
|
83
|
-
});
|
|
84
|
-
```
|
|
85
|
-
|
|
86
|
-
### Widget
|
|
87
|
-
|
|
88
|
-
```tsx
|
|
89
|
-
import { useToolInfo } from "skybridge/web";
|
|
90
|
-
|
|
91
|
-
function FlightsWidget() {
|
|
92
|
-
const { output } = useToolInfo();
|
|
93
|
-
|
|
94
|
-
return output.structuredContent.flights.map(f =>
|
|
95
|
-
<FlightCard key={f.id} flight={f} />
|
|
96
|
-
);
|
|
97
|
-
}
|
|
98
|
-
```
|
|
99
|
-
|
|
100
|
-
<br />
|
|
101
|
-
|
|
102
|
-
## ๐ฏ Features at a Glance
|
|
103
|
-
|
|
104
|
-
- **Live Reload** โ Vite HMR. See changes instantly without reinstalling.
|
|
105
|
-
- **Typed Hooks** โ Full autocomplete for tools, inputs, outputs.
|
|
106
|
-
- **Widget โ Tool Calls** โ Trigger server actions from UI.
|
|
107
|
-
- **Dual Surface Sync** โ Keep model aware of what users see with `data-llm`.
|
|
108
|
-
- **React Query-style API** โ `isPending`, `isError`, callbacks.
|
|
109
|
-
- **MCP Compatible** โ Extends the official SDK. Works with any MCP client.
|
|
110
|
-
|
|
111
|
-
<br />
|
|
112
|
-
|
|
113
|
-
<div align="center">
|
|
114
|
-
|
|
115
|
-
[](https://github.com/alpic-ai/skybridge/discussions)
|
|
116
|
-
[](https://github.com/alpic-ai/skybridge/issues)
|
|
117
|
-
[](https://discord.com/invite/gNAazGueab)
|
|
118
|
-
|
|
119
|
-
See [CONTRIBUTING.md](CONTRIBUTING.md) for setup instructions
|
|
120
|
-
|
|
121
|
-
<br />
|
|
122
|
-
|
|
123
|
-
**[MIT License](LICENSE)** ยท Made with โค๏ธ by **[Alpic](https://alpic.ai)**
|
|
124
|
-
|
|
125
|
-
</div>
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { type RequestHandler } from "express";
|
|
2
|
-
/**
|
|
3
|
-
* Serve the built devtools React app
|
|
4
|
-
* This router serves static files from the devtools's dist directory.
|
|
5
|
-
* It should be installed at the application root, like so:
|
|
6
|
-
*
|
|
7
|
-
* const app = express();
|
|
8
|
-
*
|
|
9
|
-
* if (env.NODE_ENV !== "production") {
|
|
10
|
-
* app.use(await devtoolsStaticServer(server));
|
|
11
|
-
* app.use(await widgetsDevServer());
|
|
12
|
-
* ^^^^^^^^ Make sure to install the devtoolsStaticServer before the widgetsDevServer
|
|
13
|
-
* }
|
|
14
|
-
*/
|
|
15
|
-
export declare const devtoolsStaticServer: () => Promise<RequestHandler>;
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
import { readFileSync } from "node:fs";
|
|
2
|
-
import path from "node:path";
|
|
3
|
-
import { fileURLToPath } from "node:url";
|
|
4
|
-
import cors from "cors";
|
|
5
|
-
import express, {} from "express";
|
|
6
|
-
/**
|
|
7
|
-
* Serve the built devtools React app
|
|
8
|
-
* This router serves static files from the devtools's dist directory.
|
|
9
|
-
* It should be installed at the application root, like so:
|
|
10
|
-
*
|
|
11
|
-
* const app = express();
|
|
12
|
-
*
|
|
13
|
-
* if (env.NODE_ENV !== "production") {
|
|
14
|
-
* app.use(await devtoolsStaticServer(server));
|
|
15
|
-
* app.use(await widgetsDevServer());
|
|
16
|
-
* ^^^^^^^^ Make sure to install the devtoolsStaticServer before the widgetsDevServer
|
|
17
|
-
* }
|
|
18
|
-
*/
|
|
19
|
-
export const devtoolsStaticServer = async () => {
|
|
20
|
-
const router = express.Router();
|
|
21
|
-
const currentDir = path.dirname(fileURLToPath(import.meta.url));
|
|
22
|
-
const devtoolsPath = path.join(currentDir, "..", "devtools");
|
|
23
|
-
router.use(cors());
|
|
24
|
-
router.use(express.static(devtoolsPath));
|
|
25
|
-
router.get("/", (_req, res, next) => {
|
|
26
|
-
const indexHtmlPath = path.join(devtoolsPath, "index.html");
|
|
27
|
-
try {
|
|
28
|
-
const indexHtml = readFileSync(indexHtmlPath, "utf-8");
|
|
29
|
-
res.setHeader("Content-Type", "text/html");
|
|
30
|
-
res.send(indexHtml);
|
|
31
|
-
}
|
|
32
|
-
catch (error) {
|
|
33
|
-
next(error);
|
|
34
|
-
}
|
|
35
|
-
});
|
|
36
|
-
return router;
|
|
37
|
-
};
|
|
38
|
-
//# sourceMappingURL=devtoolsStaticServer.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"devtoolsStaticServer.js","sourceRoot":"","sources":["../../../src/server/devtoolsStaticServer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AACvC,OAAO,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AACzC,OAAO,IAAI,MAAM,MAAM,CAAC;AACxB,OAAO,OAAO,EAAE,EAAuB,MAAM,SAAS,CAAC;AAEvD;;;;;;;;;;;;GAYG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAAG,KAAK,IAA6B,EAAE;IACtE,MAAM,MAAM,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;IAChC,MAAM,UAAU,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;IAChE,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,UAAU,EAAE,IAAI,EAAE,UAAU,CAAC,CAAC;IAE7D,MAAM,CAAC,GAAG,CAAC,IAAI,EAAE,CAAC,CAAC;IAEnB,MAAM,CAAC,GAAG,CAAC,OAAO,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,CAAC;IAEzC,MAAM,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,EAAE;QAClC,MAAM,aAAa,GAAG,IAAI,CAAC,IAAI,CAAC,YAAY,EAAE,YAAY,CAAC,CAAC;QAC5D,IAAI,CAAC;YACH,MAAM,SAAS,GAAG,YAAY,CAAC,aAAa,EAAE,OAAO,CAAC,CAAC;YACvD,GAAG,CAAC,SAAS,CAAC,cAAc,EAAE,WAAW,CAAC,CAAC;YAC3C,GAAG,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QACtB,CAAC;QAAC,OAAO,KAAK,EAAE,CAAC;YACf,IAAI,CAAC,KAAK,CAAC,CAAC;QACd,CAAC;IACH,CAAC,CAAC,CAAC;IAEH,OAAO,MAAM,CAAC;AAChB,CAAC,CAAC"}
|