@agentapplicationprotocol/client 0.4.1 → 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.
- package/README.md +28 -0
- package/dist/src/client.test.d.ts +1 -0
- package/dist/src/client.test.js +191 -0
- package/dist/src/examples/basic/index.d.ts +1 -0
- package/dist/src/examples/basic/index.js +88 -0
- package/dist/src/examples/cli/index.d.ts +16 -0
- package/dist/src/examples/cli/index.js +355 -0
- package/dist/src/session.d.ts +9 -0
- package/dist/src/session.js +15 -0
- package/dist/src/session.test.d.ts +1 -0
- package/dist/src/session.test.js +217 -0
- package/dist/src/utils.test.d.ts +1 -0
- package/dist/src/utils.test.js +54 -0
- package/package.json +9 -8
- package/dist/tsconfig.tsbuildinfo +0 -1
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# @agentapplicationprotocol/client
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@agentapplicationprotocol/client)
|
|
4
|
+
|
|
5
|
+
AAP client for the [Agent Application Protocol (AAP)](https://github.com/agentapplicationprotocol/agent-application-protocol).
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm install @agentapplicationprotocol/client
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```ts
|
|
16
|
+
import { Client, Session } from "@agentapplicationprotocol/client";
|
|
17
|
+
|
|
18
|
+
const client = new Client({ baseUrl: "http://localhost:3010", apiKey: "..." });
|
|
19
|
+
|
|
20
|
+
const session = await Session.create(client, "my-agent", {
|
|
21
|
+
messages: [{ role: "user", content: "Hello!" }],
|
|
22
|
+
});
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Examples
|
|
26
|
+
|
|
27
|
+
- [Basic example](./src/examples/basic) — sends a few prompts without streaming
|
|
28
|
+
- [CLI example](./src/examples/cli) — interactive terminal chat client
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const vitest_1 = require("vitest");
|
|
4
|
+
const client_1 = require("./client");
|
|
5
|
+
const BASE_URL = "https://example.com";
|
|
6
|
+
const API_KEY = "test-key";
|
|
7
|
+
function mockFetch(body, status = 200) {
|
|
8
|
+
return vitest_1.vi.fn().mockResolvedValue({
|
|
9
|
+
ok: status >= 200 && status < 300,
|
|
10
|
+
status,
|
|
11
|
+
statusText: "OK",
|
|
12
|
+
json: () => Promise.resolve(body),
|
|
13
|
+
text: () => Promise.resolve(String(body)),
|
|
14
|
+
body: null,
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
function mockSSEFetch(events, status = 200) {
|
|
18
|
+
const chunks = events.map(({ event, ...data }) => new TextEncoder().encode(`event: ${event}\ndata: ${JSON.stringify(data)}\n\n`));
|
|
19
|
+
let i = 0;
|
|
20
|
+
const body = {
|
|
21
|
+
getReader: () => ({
|
|
22
|
+
read: async () => i < chunks.length ? { done: false, value: chunks[i++] } : { done: true, value: undefined },
|
|
23
|
+
releaseLock: vitest_1.vi.fn(),
|
|
24
|
+
}),
|
|
25
|
+
};
|
|
26
|
+
return vitest_1.vi.fn().mockResolvedValue({
|
|
27
|
+
ok: status >= 200 && status < 300,
|
|
28
|
+
status,
|
|
29
|
+
body,
|
|
30
|
+
text: () => Promise.resolve(""),
|
|
31
|
+
});
|
|
32
|
+
}
|
|
33
|
+
let client;
|
|
34
|
+
(0, vitest_1.beforeEach)(() => {
|
|
35
|
+
client = new client_1.Client({ baseUrl: BASE_URL, apiKey: API_KEY });
|
|
36
|
+
});
|
|
37
|
+
(0, vitest_1.describe)("Client", () => {
|
|
38
|
+
(0, vitest_1.it)("strips trailing slash from baseUrl", () => {
|
|
39
|
+
const c = new client_1.Client({ baseUrl: BASE_URL + "/", apiKey: API_KEY });
|
|
40
|
+
const fetch = mockFetch({});
|
|
41
|
+
vitest_1.vi.stubGlobal("fetch", fetch);
|
|
42
|
+
c.getMeta();
|
|
43
|
+
(0, vitest_1.expect)(fetch.mock.calls[0][0]).toBe(`${BASE_URL}/meta`);
|
|
44
|
+
});
|
|
45
|
+
(0, vitest_1.it)("sends Authorization header", async () => {
|
|
46
|
+
const fetch = mockFetch({ version: 1, agents: [] });
|
|
47
|
+
vitest_1.vi.stubGlobal("fetch", fetch);
|
|
48
|
+
await client.getMeta();
|
|
49
|
+
(0, vitest_1.expect)(fetch.mock.calls[0][1].headers["Authorization"]).toBe(`Bearer ${API_KEY}`);
|
|
50
|
+
});
|
|
51
|
+
(0, vitest_1.it)("getMeta: GET /meta", async () => {
|
|
52
|
+
const meta = { version: 1, agents: [] };
|
|
53
|
+
vitest_1.vi.stubGlobal("fetch", mockFetch(meta));
|
|
54
|
+
(0, vitest_1.expect)(await client.getMeta()).toEqual(meta);
|
|
55
|
+
});
|
|
56
|
+
(0, vitest_1.it)("getSession: GET /session/:id", async () => {
|
|
57
|
+
const session = { sessionId: "s1", agent: { name: "a" } };
|
|
58
|
+
vitest_1.vi.stubGlobal("fetch", mockFetch(session));
|
|
59
|
+
(0, vitest_1.expect)(await client.getSession("s1")).toEqual(session);
|
|
60
|
+
});
|
|
61
|
+
(0, vitest_1.it)("getSession: appends ?history=compacted", async () => {
|
|
62
|
+
const fetch = mockFetch({ sessionId: "s1", agent: { name: "a" } });
|
|
63
|
+
vitest_1.vi.stubGlobal("fetch", fetch);
|
|
64
|
+
await client.getSession("s1", "compacted");
|
|
65
|
+
(0, vitest_1.expect)(fetch.mock.calls[0][0]).toBe(`${BASE_URL}/session/s1?history=compacted`);
|
|
66
|
+
});
|
|
67
|
+
(0, vitest_1.it)("getSession: appends ?history=full", async () => {
|
|
68
|
+
const fetch = mockFetch({ sessionId: "s1", agent: { name: "a" } });
|
|
69
|
+
vitest_1.vi.stubGlobal("fetch", fetch);
|
|
70
|
+
await client.getSession("s1", "full");
|
|
71
|
+
(0, vitest_1.expect)(fetch.mock.calls[0][0]).toBe(`${BASE_URL}/session/s1?history=full`);
|
|
72
|
+
});
|
|
73
|
+
(0, vitest_1.it)("listSessions: GET /sessions without cursor", async () => {
|
|
74
|
+
const res = { sessions: ["s1"] };
|
|
75
|
+
const fetch = mockFetch(res);
|
|
76
|
+
vitest_1.vi.stubGlobal("fetch", fetch);
|
|
77
|
+
await client.listSessions();
|
|
78
|
+
(0, vitest_1.expect)(fetch.mock.calls[0][0]).toBe(`${BASE_URL}/sessions`);
|
|
79
|
+
});
|
|
80
|
+
(0, vitest_1.it)("listSessions: appends after param", async () => {
|
|
81
|
+
const fetch = mockFetch({ sessions: [] });
|
|
82
|
+
vitest_1.vi.stubGlobal("fetch", fetch);
|
|
83
|
+
await client.listSessions({ after: "cursor1" });
|
|
84
|
+
(0, vitest_1.expect)(fetch.mock.calls[0][0]).toBe(`${BASE_URL}/sessions?after=cursor1`);
|
|
85
|
+
});
|
|
86
|
+
(0, vitest_1.it)("listAllSessions: paginates until no next", async () => {
|
|
87
|
+
const fetch = vitest_1.vi
|
|
88
|
+
.fn()
|
|
89
|
+
.mockResolvedValueOnce({
|
|
90
|
+
ok: true,
|
|
91
|
+
status: 200,
|
|
92
|
+
json: () => Promise.resolve({ sessions: ["s1"], next: "c1" }),
|
|
93
|
+
})
|
|
94
|
+
.mockResolvedValueOnce({
|
|
95
|
+
ok: true,
|
|
96
|
+
status: 200,
|
|
97
|
+
json: () => Promise.resolve({ sessions: ["s2"] }),
|
|
98
|
+
});
|
|
99
|
+
vitest_1.vi.stubGlobal("fetch", fetch);
|
|
100
|
+
(0, vitest_1.expect)(await client.listAllSessions()).toEqual(["s1", "s2"]);
|
|
101
|
+
(0, vitest_1.expect)(fetch).toHaveBeenCalledTimes(2);
|
|
102
|
+
});
|
|
103
|
+
(0, vitest_1.it)("deleteSession: DELETE /session/:id returns void on 204", async () => {
|
|
104
|
+
vitest_1.vi.stubGlobal("fetch", vitest_1.vi.fn().mockResolvedValue({ ok: true, status: 204 }));
|
|
105
|
+
await (0, vitest_1.expect)(client.deleteSession("s1")).resolves.toBeUndefined();
|
|
106
|
+
});
|
|
107
|
+
(0, vitest_1.it)("createSession: throws if last message is not a user message", () => {
|
|
108
|
+
vitest_1.vi.stubGlobal("fetch", mockFetch({}));
|
|
109
|
+
(0, vitest_1.expect)(() => client.createSession({
|
|
110
|
+
agent: { name: "a" },
|
|
111
|
+
messages: [{ role: "assistant", content: "hi" }],
|
|
112
|
+
})).toThrow("Last message must be a user message");
|
|
113
|
+
});
|
|
114
|
+
(0, vitest_1.it)("createSession: non-streaming returns AgentResponse", async () => {
|
|
115
|
+
const res = { sessionId: "s1", stopReason: "end_turn", messages: [] };
|
|
116
|
+
vitest_1.vi.stubGlobal("fetch", mockFetch(res, 201));
|
|
117
|
+
const result = await client.createSession({
|
|
118
|
+
agent: { name: "a" },
|
|
119
|
+
messages: [{ role: "user", content: "hi" }],
|
|
120
|
+
});
|
|
121
|
+
(0, vitest_1.expect)(result).toEqual(res);
|
|
122
|
+
});
|
|
123
|
+
(0, vitest_1.it)("createSession: streaming returns SSE events", async () => {
|
|
124
|
+
const events = [
|
|
125
|
+
{ event: "session_start", sessionId: "s1" },
|
|
126
|
+
{ event: "turn_start" },
|
|
127
|
+
{ event: "turn_stop", stopReason: "end_turn" },
|
|
128
|
+
];
|
|
129
|
+
vitest_1.vi.stubGlobal("fetch", mockSSEFetch(events));
|
|
130
|
+
const stream = await client.createSession({
|
|
131
|
+
agent: { name: "a" },
|
|
132
|
+
messages: [{ role: "user", content: "hi" }],
|
|
133
|
+
stream: "message",
|
|
134
|
+
});
|
|
135
|
+
const received = [];
|
|
136
|
+
for await (const e of stream)
|
|
137
|
+
received.push(e);
|
|
138
|
+
(0, vitest_1.expect)(received).toEqual(events);
|
|
139
|
+
});
|
|
140
|
+
(0, vitest_1.it)("sendTurn: non-streaming returns AgentResponse", async () => {
|
|
141
|
+
const res = { stopReason: "end_turn", messages: [] };
|
|
142
|
+
vitest_1.vi.stubGlobal("fetch", mockFetch(res));
|
|
143
|
+
const result = await client.sendTurn("s1", { messages: [{ role: "user", content: "hi" }] });
|
|
144
|
+
(0, vitest_1.expect)(result).toEqual(res);
|
|
145
|
+
});
|
|
146
|
+
(0, vitest_1.it)("sendTurn: streaming returns SSE events", async () => {
|
|
147
|
+
const events = [
|
|
148
|
+
{ event: "turn_start" },
|
|
149
|
+
{ event: "text", text: "hello" },
|
|
150
|
+
{ event: "turn_stop", stopReason: "end_turn" },
|
|
151
|
+
];
|
|
152
|
+
vitest_1.vi.stubGlobal("fetch", mockSSEFetch(events));
|
|
153
|
+
const stream = await client.sendTurn("s1", {
|
|
154
|
+
messages: [{ role: "user", content: "hi" }],
|
|
155
|
+
stream: "message",
|
|
156
|
+
});
|
|
157
|
+
const received = [];
|
|
158
|
+
for await (const e of stream)
|
|
159
|
+
received.push(e);
|
|
160
|
+
(0, vitest_1.expect)(received).toEqual(events);
|
|
161
|
+
});
|
|
162
|
+
(0, vitest_1.it)("streamRequest: throws ClientError on non-ok response", async () => {
|
|
163
|
+
vitest_1.vi.stubGlobal("fetch", vitest_1.vi.fn().mockResolvedValue({
|
|
164
|
+
ok: false,
|
|
165
|
+
status: 403,
|
|
166
|
+
body: null,
|
|
167
|
+
text: () => Promise.resolve("Forbidden"),
|
|
168
|
+
}));
|
|
169
|
+
await (0, vitest_1.expect)(client.createSession({
|
|
170
|
+
agent: { name: "a" },
|
|
171
|
+
messages: [{ role: "user", content: "hi" }],
|
|
172
|
+
stream: "delta",
|
|
173
|
+
})).rejects.toThrow(client_1.ClientError);
|
|
174
|
+
});
|
|
175
|
+
(0, vitest_1.it)("throws ClientError on non-ok response", async () => {
|
|
176
|
+
vitest_1.vi.stubGlobal("fetch", vitest_1.vi
|
|
177
|
+
.fn()
|
|
178
|
+
.mockResolvedValue({ ok: false, status: 401, text: () => Promise.resolve("Unauthorized") }));
|
|
179
|
+
await (0, vitest_1.expect)(client.getMeta()).rejects.toThrow(client_1.ClientError);
|
|
180
|
+
});
|
|
181
|
+
(0, vitest_1.it)("ClientError has correct properties", async () => {
|
|
182
|
+
vitest_1.vi.stubGlobal("fetch", vitest_1.vi
|
|
183
|
+
.fn()
|
|
184
|
+
.mockResolvedValue({ ok: false, status: 404, text: () => Promise.resolve("Not Found") }));
|
|
185
|
+
const err = await client.getSession("x").catch((e) => e);
|
|
186
|
+
(0, vitest_1.expect)(err).toBeInstanceOf(client_1.ClientError);
|
|
187
|
+
(0, vitest_1.expect)(err.status).toBe(404);
|
|
188
|
+
(0, vitest_1.expect)(err.method).toBe("GET");
|
|
189
|
+
(0, vitest_1.expect)(err.path).toBe("/session/x");
|
|
190
|
+
});
|
|
191
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const readline = __importStar(require("node:readline/promises"));
|
|
37
|
+
const node_process_1 = require("node:process");
|
|
38
|
+
const index_js_1 = require("../../index.js");
|
|
39
|
+
const BASE_URL = process.env.BASE_URL ?? "http://localhost:3010";
|
|
40
|
+
const API_KEY = process.env.API_KEY ?? "";
|
|
41
|
+
function extractText(content) {
|
|
42
|
+
if (!content)
|
|
43
|
+
return "";
|
|
44
|
+
if (typeof content === "string")
|
|
45
|
+
return content;
|
|
46
|
+
if (Array.isArray(content))
|
|
47
|
+
return content
|
|
48
|
+
.filter((b) => b.type === "text")
|
|
49
|
+
.map((b) => b.text)
|
|
50
|
+
.join("");
|
|
51
|
+
return String(content);
|
|
52
|
+
}
|
|
53
|
+
const prompts = [
|
|
54
|
+
"What is the capital of France?",
|
|
55
|
+
"What is 12 * 8?",
|
|
56
|
+
"Summarize what we discussed.",
|
|
57
|
+
];
|
|
58
|
+
async function main() {
|
|
59
|
+
const client = new index_js_1.Client({ baseUrl: BASE_URL, apiKey: API_KEY });
|
|
60
|
+
const meta = await client.getMeta();
|
|
61
|
+
const agentInfo = meta.agents[0];
|
|
62
|
+
if (!agentInfo)
|
|
63
|
+
throw new Error("No agents available");
|
|
64
|
+
// Prompt for agent options
|
|
65
|
+
const options = {};
|
|
66
|
+
if (agentInfo.options?.length) {
|
|
67
|
+
const rl = readline.createInterface({ input: node_process_1.stdin, output: node_process_1.stdout });
|
|
68
|
+
for (const opt of agentInfo.options) {
|
|
69
|
+
const hint = opt.type === "secret" ? "(secret)" : `default: ${opt.default}`;
|
|
70
|
+
const answer = await rl.question(`${opt.title ?? opt.name} [${hint}]: `);
|
|
71
|
+
if (answer)
|
|
72
|
+
options[opt.name] = answer;
|
|
73
|
+
}
|
|
74
|
+
rl.close();
|
|
75
|
+
}
|
|
76
|
+
const { session } = await index_js_1.Session.create(client, {
|
|
77
|
+
agent: { name: agentInfo.name, options: Object.keys(options).length ? options : undefined },
|
|
78
|
+
messages: [{ role: "user", content: prompts[0] }],
|
|
79
|
+
}, agentInfo);
|
|
80
|
+
console.log(`\n[user] ${prompts[0]}`);
|
|
81
|
+
console.log(`[assistant] ${extractText(session.history.at(-1)?.content)}\n`);
|
|
82
|
+
for (const prompt of prompts.slice(1)) {
|
|
83
|
+
await session.send({ messages: [{ role: "user", content: prompt }] });
|
|
84
|
+
console.log(`[user] ${prompt}`);
|
|
85
|
+
console.log(`[assistant] ${extractText(session.history.at(-1)?.content)}\n`);
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
main().catch(console.error);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* AAP CLI — interactive chat client
|
|
4
|
+
*
|
|
5
|
+
* Usage: BASE_URL=http://localhost:3010 API_KEY=secret tsx src/examples/cli/index.ts [agent-name]
|
|
6
|
+
*
|
|
7
|
+
* Slash commands:
|
|
8
|
+
* /stream delta|message|none — set streaming mode
|
|
9
|
+
* /enable <tool> — enable a server or client tool
|
|
10
|
+
* /disable <tool> — disable a server or client tool
|
|
11
|
+
* /trust <tool> — trust a tool (server: run inline; client: auto-execute without confirmation)
|
|
12
|
+
* /set <option>=<value> — set an agent option
|
|
13
|
+
* /help — show this help
|
|
14
|
+
* /quit — exit
|
|
15
|
+
*/
|
|
16
|
+
export {};
|
|
@@ -0,0 +1,355 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
"use strict";
|
|
3
|
+
/**
|
|
4
|
+
* AAP CLI — interactive chat client
|
|
5
|
+
*
|
|
6
|
+
* Usage: BASE_URL=http://localhost:3010 API_KEY=secret tsx src/examples/cli/index.ts [agent-name]
|
|
7
|
+
*
|
|
8
|
+
* Slash commands:
|
|
9
|
+
* /stream delta|message|none — set streaming mode
|
|
10
|
+
* /enable <tool> — enable a server or client tool
|
|
11
|
+
* /disable <tool> — disable a server or client tool
|
|
12
|
+
* /trust <tool> — trust a tool (server: run inline; client: auto-execute without confirmation)
|
|
13
|
+
* /set <option>=<value> — set an agent option
|
|
14
|
+
* /help — show this help
|
|
15
|
+
* /quit — exit
|
|
16
|
+
*/
|
|
17
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
18
|
+
if (k2 === undefined) k2 = k;
|
|
19
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
20
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
21
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
22
|
+
}
|
|
23
|
+
Object.defineProperty(o, k2, desc);
|
|
24
|
+
}) : (function(o, m, k, k2) {
|
|
25
|
+
if (k2 === undefined) k2 = k;
|
|
26
|
+
o[k2] = m[k];
|
|
27
|
+
}));
|
|
28
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
29
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
30
|
+
}) : function(o, v) {
|
|
31
|
+
o["default"] = v;
|
|
32
|
+
});
|
|
33
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
34
|
+
var ownKeys = function(o) {
|
|
35
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
36
|
+
var ar = [];
|
|
37
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
38
|
+
return ar;
|
|
39
|
+
};
|
|
40
|
+
return ownKeys(o);
|
|
41
|
+
};
|
|
42
|
+
return function (mod) {
|
|
43
|
+
if (mod && mod.__esModule) return mod;
|
|
44
|
+
var result = {};
|
|
45
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
46
|
+
__setModuleDefault(result, mod);
|
|
47
|
+
return result;
|
|
48
|
+
};
|
|
49
|
+
})();
|
|
50
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
51
|
+
const readline = __importStar(require("node:readline/promises"));
|
|
52
|
+
const node_process_1 = require("node:process");
|
|
53
|
+
const client_js_1 = require("../../client.js");
|
|
54
|
+
const session_js_1 = require("../../session.js");
|
|
55
|
+
const BASE_URL = process.env.BASE_URL ?? "http://localhost:3010";
|
|
56
|
+
const API_KEY = process.env.API_KEY ?? "";
|
|
57
|
+
const client = new client_js_1.Client({ baseUrl: BASE_URL, apiKey: API_KEY });
|
|
58
|
+
// --- built-in client tools ---
|
|
59
|
+
const CLIENT_TOOLS = {
|
|
60
|
+
calculate: {
|
|
61
|
+
spec: {
|
|
62
|
+
name: "calculate",
|
|
63
|
+
description: "Evaluate a mathematical expression",
|
|
64
|
+
inputSchema: {
|
|
65
|
+
type: "object",
|
|
66
|
+
properties: {
|
|
67
|
+
expression: {
|
|
68
|
+
type: "string",
|
|
69
|
+
description: "Math expression to evaluate",
|
|
70
|
+
},
|
|
71
|
+
},
|
|
72
|
+
required: ["expression"],
|
|
73
|
+
},
|
|
74
|
+
},
|
|
75
|
+
exec: (input) => {
|
|
76
|
+
const { expression } = input;
|
|
77
|
+
try {
|
|
78
|
+
if (!/^[\d\s+\-*/().%^]+$/.test(expression))
|
|
79
|
+
return "Error: invalid expression";
|
|
80
|
+
return Function(`"use strict"; return (${expression})`)();
|
|
81
|
+
}
|
|
82
|
+
catch {
|
|
83
|
+
return "Error: could not evaluate expression";
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
},
|
|
87
|
+
};
|
|
88
|
+
// --- state ---
|
|
89
|
+
let streamMode = "delta";
|
|
90
|
+
const enabledTools = new Set(); // enabled server and client tools
|
|
91
|
+
const trustedTools = new Set(); // trusted: server tools run inline; client tools auto-execute
|
|
92
|
+
const agentOptions = {};
|
|
93
|
+
let rl;
|
|
94
|
+
function isClientTool(name) {
|
|
95
|
+
return name in CLIENT_TOOLS;
|
|
96
|
+
}
|
|
97
|
+
function printHelp(agent) {
|
|
98
|
+
console.log("Commands:");
|
|
99
|
+
console.log(" /stream delta|message|none");
|
|
100
|
+
console.log(" /enable <tool> — enable a server or client tool");
|
|
101
|
+
console.log(" /disable <tool> — disable a server or client tool");
|
|
102
|
+
console.log(" /trust <tool> — trust a tool (server: inline; client: auto-execute)");
|
|
103
|
+
console.log(" /set <option>=<value>");
|
|
104
|
+
console.log(" /help /quit");
|
|
105
|
+
if (agent.tools?.length)
|
|
106
|
+
console.log("Server tools:", agent.tools.map((t) => t.name).join(", "));
|
|
107
|
+
if (agent.options?.length)
|
|
108
|
+
console.log("Options:", agent.options.map((o) => `${o.name} (default: ${o.default})`).join(", "));
|
|
109
|
+
console.log("Client tools:", Object.keys(CLIENT_TOOLS).join(", "));
|
|
110
|
+
}
|
|
111
|
+
function handleCommand(line, agent) {
|
|
112
|
+
const [cmd, ...args] = line.slice(1).trim().split(/\s+/);
|
|
113
|
+
switch (cmd) {
|
|
114
|
+
case "stream": {
|
|
115
|
+
const mode = args[0];
|
|
116
|
+
if (!["delta", "message", "none"].includes(mode)) {
|
|
117
|
+
console.log("Usage: /stream delta|message|none");
|
|
118
|
+
}
|
|
119
|
+
else {
|
|
120
|
+
streamMode = mode;
|
|
121
|
+
console.log(`Stream mode: ${streamMode}`);
|
|
122
|
+
}
|
|
123
|
+
return true;
|
|
124
|
+
}
|
|
125
|
+
case "enable": {
|
|
126
|
+
const tool = args[0];
|
|
127
|
+
if (!tool) {
|
|
128
|
+
console.log("Usage: /enable <tool>");
|
|
129
|
+
return true;
|
|
130
|
+
}
|
|
131
|
+
enabledTools.add(tool);
|
|
132
|
+
console.log(`Enabled: ${tool}`);
|
|
133
|
+
return true;
|
|
134
|
+
}
|
|
135
|
+
case "disable": {
|
|
136
|
+
const tool = args[0];
|
|
137
|
+
if (!tool) {
|
|
138
|
+
console.log("Usage: /disable <tool>");
|
|
139
|
+
return true;
|
|
140
|
+
}
|
|
141
|
+
enabledTools.delete(tool);
|
|
142
|
+
console.log(`Disabled: ${tool}`);
|
|
143
|
+
return true;
|
|
144
|
+
}
|
|
145
|
+
case "trust": {
|
|
146
|
+
const tool = args[0];
|
|
147
|
+
if (!tool) {
|
|
148
|
+
console.log("Usage: /trust <tool>");
|
|
149
|
+
return true;
|
|
150
|
+
}
|
|
151
|
+
if (trustedTools.has(tool)) {
|
|
152
|
+
trustedTools.delete(tool);
|
|
153
|
+
console.log(`Untrusted: ${tool}`);
|
|
154
|
+
}
|
|
155
|
+
else {
|
|
156
|
+
trustedTools.add(tool);
|
|
157
|
+
console.log(`Trusted: ${tool}`);
|
|
158
|
+
}
|
|
159
|
+
return true;
|
|
160
|
+
}
|
|
161
|
+
case "set": {
|
|
162
|
+
const [key, ...rest] = args.join(" ").split("=");
|
|
163
|
+
const value = rest.join("=");
|
|
164
|
+
if (!key || value === undefined) {
|
|
165
|
+
console.log("Usage: /set <option>=<value>");
|
|
166
|
+
return true;
|
|
167
|
+
}
|
|
168
|
+
const name = key.trim();
|
|
169
|
+
if (!agent.options?.some((o) => o.name === name)) {
|
|
170
|
+
console.log(`Unknown option: ${name}`);
|
|
171
|
+
return true;
|
|
172
|
+
}
|
|
173
|
+
agentOptions[name] = value;
|
|
174
|
+
console.log(`Set ${name} = ${value}`);
|
|
175
|
+
return true;
|
|
176
|
+
}
|
|
177
|
+
case "help":
|
|
178
|
+
printHelp(agent);
|
|
179
|
+
return true;
|
|
180
|
+
case "quit":
|
|
181
|
+
process.exit(0);
|
|
182
|
+
}
|
|
183
|
+
return false;
|
|
184
|
+
}
|
|
185
|
+
let inDelta = false;
|
|
186
|
+
function sseCallback(e) {
|
|
187
|
+
if (e.event === "text_delta") {
|
|
188
|
+
process.stdout.write(e.delta);
|
|
189
|
+
inDelta = true;
|
|
190
|
+
}
|
|
191
|
+
else if (e.event === "thinking_delta") {
|
|
192
|
+
process.stdout.write(`\x1b[2m${e.delta}\x1b[0m`);
|
|
193
|
+
inDelta = true;
|
|
194
|
+
}
|
|
195
|
+
else {
|
|
196
|
+
if (inDelta) {
|
|
197
|
+
process.stdout.write("\n");
|
|
198
|
+
inDelta = false;
|
|
199
|
+
}
|
|
200
|
+
if (e.event === "text")
|
|
201
|
+
console.log(e.text);
|
|
202
|
+
else if (e.event === "thinking")
|
|
203
|
+
console.log(`\x1b[2m${e.thinking}\x1b[0m`);
|
|
204
|
+
else if (e.event === "tool_call")
|
|
205
|
+
console.log(`[tool call: ${e.name}(${JSON.stringify(e.input)})]`);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
function printLastAssistant(session) {
|
|
209
|
+
if (streamMode !== "none")
|
|
210
|
+
return;
|
|
211
|
+
const last = session.history.at(-1);
|
|
212
|
+
if (last?.role !== "assistant")
|
|
213
|
+
return;
|
|
214
|
+
const text = typeof last.content === "string"
|
|
215
|
+
? last.content
|
|
216
|
+
: last.content
|
|
217
|
+
.filter((b) => b.type === "text")
|
|
218
|
+
.map((b) => b.text)
|
|
219
|
+
.join("");
|
|
220
|
+
if (text)
|
|
221
|
+
console.log(`Assistant: ${text}`);
|
|
222
|
+
}
|
|
223
|
+
async function confirm(prompt) {
|
|
224
|
+
const answer = await rl.question(prompt);
|
|
225
|
+
return answer.toLowerCase().startsWith("y");
|
|
226
|
+
}
|
|
227
|
+
/** Resolve pending tool calls, prompting for untrusted ones, looping until none remain. */
|
|
228
|
+
async function resolvePending(session, pending) {
|
|
229
|
+
while (pending.client.length > 0 || pending.server.length > 0) {
|
|
230
|
+
const messages = [];
|
|
231
|
+
// client tools
|
|
232
|
+
for (const t of pending.client) {
|
|
233
|
+
const tool = CLIENT_TOOLS[t.name];
|
|
234
|
+
if (!tool) {
|
|
235
|
+
messages.push({
|
|
236
|
+
role: "tool",
|
|
237
|
+
toolCallId: t.toolCallId,
|
|
238
|
+
content: `Unknown tool: ${t.name}`,
|
|
239
|
+
});
|
|
240
|
+
continue;
|
|
241
|
+
}
|
|
242
|
+
if (!trustedTools.has(t.name) &&
|
|
243
|
+
!(await confirm(`Allow ${t.name}(${JSON.stringify(t.input)})? [y/N] `))) {
|
|
244
|
+
messages.push({
|
|
245
|
+
role: "tool",
|
|
246
|
+
toolCallId: t.toolCallId,
|
|
247
|
+
content: "Tool use denied by user",
|
|
248
|
+
});
|
|
249
|
+
continue;
|
|
250
|
+
}
|
|
251
|
+
const result = String(tool.exec(t.input));
|
|
252
|
+
console.log(`[${t.name} → ${result}]`);
|
|
253
|
+
messages.push({
|
|
254
|
+
role: "tool",
|
|
255
|
+
toolCallId: t.toolCallId,
|
|
256
|
+
content: result,
|
|
257
|
+
});
|
|
258
|
+
}
|
|
259
|
+
// untrusted server tools — prompt for permission
|
|
260
|
+
const permissions = [];
|
|
261
|
+
for (const t of pending.server) {
|
|
262
|
+
const granted = await confirm(`Allow server tool ${t.name}(${JSON.stringify(t.input)})? [y/N] `);
|
|
263
|
+
permissions.push({
|
|
264
|
+
role: "tool_permission",
|
|
265
|
+
toolCallId: t.toolCallId,
|
|
266
|
+
granted,
|
|
267
|
+
reason: granted ? undefined : "denied by user",
|
|
268
|
+
});
|
|
269
|
+
}
|
|
270
|
+
pending = await session.send({
|
|
271
|
+
messages: [...messages, ...permissions],
|
|
272
|
+
stream: streamMode === "none" ? undefined : streamMode,
|
|
273
|
+
}, sseCallback);
|
|
274
|
+
printLastAssistant(session);
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
function getServerTools(agentInfo) {
|
|
278
|
+
return agentInfo.tools
|
|
279
|
+
?.filter((t) => enabledTools.has(t.name))
|
|
280
|
+
.map((t) => ({ name: t.name, trust: trustedTools.has(t.name) }));
|
|
281
|
+
}
|
|
282
|
+
function getClientTools() {
|
|
283
|
+
return Object.values(CLIENT_TOOLS)
|
|
284
|
+
.filter((t) => enabledTools.has(t.spec.name))
|
|
285
|
+
.map((t) => t.spec);
|
|
286
|
+
}
|
|
287
|
+
async function main() {
|
|
288
|
+
const meta = await client.getMeta();
|
|
289
|
+
const agentName = process.argv[2] ?? meta.agents[0]?.name;
|
|
290
|
+
const agentInfo = meta.agents.find((a) => a.name === agentName);
|
|
291
|
+
if (!agentInfo) {
|
|
292
|
+
console.error(`Agent "${agentName}" not found. Available: ${meta.agents.map((a) => a.name).join(", ")}`);
|
|
293
|
+
process.exit(1);
|
|
294
|
+
}
|
|
295
|
+
console.log(`Connected to ${agentInfo.title ?? agentInfo.name} (${agentInfo.version})`);
|
|
296
|
+
if (agentInfo.description)
|
|
297
|
+
console.log(agentInfo.description);
|
|
298
|
+
// enable all server and client tools by default
|
|
299
|
+
agentInfo.tools?.forEach((t) => enabledTools.add(t.name));
|
|
300
|
+
Object.keys(CLIENT_TOOLS).forEach((name) => enabledTools.add(name));
|
|
301
|
+
if (agentInfo.tools?.length)
|
|
302
|
+
console.log(`Server tools: ${agentInfo.tools.map((t) => t.name).join(", ")}`);
|
|
303
|
+
console.log(`Client tools: ${Object.keys(CLIENT_TOOLS).join(", ")}`);
|
|
304
|
+
if (agentInfo.options?.length)
|
|
305
|
+
console.log(`Options: ${agentInfo.options.map((o) => `${o.name}=${o.default}`).join(", ")}`);
|
|
306
|
+
console.log("Type /help for commands.\n");
|
|
307
|
+
rl = readline.createInterface({ input: node_process_1.stdin, output: node_process_1.stdout });
|
|
308
|
+
let firstInput;
|
|
309
|
+
while (true) {
|
|
310
|
+
firstInput = (await rl.question("You: ")).trim();
|
|
311
|
+
if (!firstInput)
|
|
312
|
+
continue;
|
|
313
|
+
if (firstInput.startsWith("/")) {
|
|
314
|
+
handleCommand(firstInput, agentInfo);
|
|
315
|
+
continue;
|
|
316
|
+
}
|
|
317
|
+
break;
|
|
318
|
+
}
|
|
319
|
+
const { session, pending } = await session_js_1.Session.create(client, {
|
|
320
|
+
agent: {
|
|
321
|
+
name: agentName,
|
|
322
|
+
tools: getServerTools(agentInfo),
|
|
323
|
+
options: Object.keys(agentOptions).length ? agentOptions : undefined,
|
|
324
|
+
},
|
|
325
|
+
tools: getClientTools(),
|
|
326
|
+
stream: streamMode === "none" ? undefined : streamMode,
|
|
327
|
+
messages: [{ role: "user", content: firstInput }],
|
|
328
|
+
}, agentInfo, sseCallback);
|
|
329
|
+
printLastAssistant(session);
|
|
330
|
+
await resolvePending(session, pending);
|
|
331
|
+
while (true) {
|
|
332
|
+
const input = (await rl.question("You: ")).trim();
|
|
333
|
+
if (!input)
|
|
334
|
+
continue;
|
|
335
|
+
if (input.startsWith("/")) {
|
|
336
|
+
handleCommand(input, agentInfo);
|
|
337
|
+
continue;
|
|
338
|
+
}
|
|
339
|
+
const turnPending = await session.send({
|
|
340
|
+
agent: {
|
|
341
|
+
tools: getServerTools(agentInfo),
|
|
342
|
+
options: Object.keys(agentOptions).length ? { ...agentOptions } : undefined,
|
|
343
|
+
},
|
|
344
|
+
tools: getClientTools(),
|
|
345
|
+
stream: streamMode === "none" ? undefined : streamMode,
|
|
346
|
+
messages: [{ role: "user", content: input }],
|
|
347
|
+
}, sseCallback);
|
|
348
|
+
printLastAssistant(session);
|
|
349
|
+
await resolvePending(session, turnPending);
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
main().catch((e) => {
|
|
353
|
+
console.error(e);
|
|
354
|
+
process.exit(1);
|
|
355
|
+
});
|
package/dist/src/session.d.ts
CHANGED
|
@@ -29,6 +29,15 @@ export declare class Session {
|
|
|
29
29
|
session: Session;
|
|
30
30
|
pending: PendingToolUse;
|
|
31
31
|
}>;
|
|
32
|
+
/**
|
|
33
|
+
* Loads an existing session and resolves any pending tool use.
|
|
34
|
+
* @param agents - List of known agents to match against the session's agent name.
|
|
35
|
+
* @returns The loaded session and any pending tool calls.
|
|
36
|
+
*/
|
|
37
|
+
static load(client: Client, sessionId: string, agents: AgentInfo[], history?: "full" | "compacted"): Promise<{
|
|
38
|
+
session: Session;
|
|
39
|
+
pending: PendingToolUse;
|
|
40
|
+
}>;
|
|
32
41
|
/**
|
|
33
42
|
* Sends a turn to the server and appends the result to history.
|
|
34
43
|
* Strips `tools` and `agent` fields that are unchanged from the current session state.
|
package/dist/src/session.js
CHANGED
|
@@ -43,6 +43,21 @@ class Session {
|
|
|
43
43
|
session.history.push(...req.messages, ...newMessages);
|
|
44
44
|
return { session, pending: (0, utils_1.resolvePendingToolUse)(session.history, session.tools) };
|
|
45
45
|
}
|
|
46
|
+
/**
|
|
47
|
+
* Loads an existing session and resolves any pending tool use.
|
|
48
|
+
* @param agents - List of known agents to match against the session's agent name.
|
|
49
|
+
* @returns The loaded session and any pending tool calls.
|
|
50
|
+
*/
|
|
51
|
+
static async load(client, sessionId, agents, history) {
|
|
52
|
+
const res = await client.getSession(sessionId, history);
|
|
53
|
+
const agentInfo = agents.find((a) => a.name === res.agent.name);
|
|
54
|
+
if (!agentInfo)
|
|
55
|
+
throw new Error(`Unknown agent: ${res.agent.name}`);
|
|
56
|
+
const session = new Session(sessionId, client, agentInfo, res.agent, res.tools);
|
|
57
|
+
const h = history === "compacted" ? res.history?.compacted : res.history?.full;
|
|
58
|
+
session.history.push(...(h ?? []));
|
|
59
|
+
return { session, pending: (0, utils_1.resolvePendingToolUse)(session.history, session.tools) };
|
|
60
|
+
}
|
|
46
61
|
/**
|
|
47
62
|
* Sends a turn to the server and appends the result to history.
|
|
48
63
|
* Strips `tools` and `agent` fields that are unchanged from the current session state.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,217 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const vitest_1 = require("vitest");
|
|
4
|
+
const client_1 = require("./client");
|
|
5
|
+
const session_1 = require("./session");
|
|
6
|
+
const BASE_URL = "https://example.com";
|
|
7
|
+
const agentInfo = { name: "test-agent", version: "1.0.0" };
|
|
8
|
+
function mockFetch(body, status = 200) {
|
|
9
|
+
return vitest_1.vi.fn().mockResolvedValue({
|
|
10
|
+
ok: status >= 200 && status < 300,
|
|
11
|
+
status,
|
|
12
|
+
json: () => Promise.resolve(body),
|
|
13
|
+
text: () => Promise.resolve(String(body)),
|
|
14
|
+
body: null,
|
|
15
|
+
});
|
|
16
|
+
}
|
|
17
|
+
function mockSSEFetch(events) {
|
|
18
|
+
const chunks = events.map(({ event, ...data }) => new TextEncoder().encode(`event: ${event}\ndata: ${JSON.stringify(data)}\n\n`));
|
|
19
|
+
let i = 0;
|
|
20
|
+
const body = {
|
|
21
|
+
getReader: () => ({
|
|
22
|
+
read: async () => i < chunks.length ? { done: false, value: chunks[i++] } : { done: true, value: undefined },
|
|
23
|
+
releaseLock: vitest_1.vi.fn(),
|
|
24
|
+
}),
|
|
25
|
+
};
|
|
26
|
+
return vitest_1.vi
|
|
27
|
+
.fn()
|
|
28
|
+
.mockResolvedValue({ ok: true, status: 200, body, text: () => Promise.resolve("") });
|
|
29
|
+
}
|
|
30
|
+
let client;
|
|
31
|
+
(0, vitest_1.beforeEach)(() => {
|
|
32
|
+
client = new client_1.Client({ baseUrl: BASE_URL, apiKey: "key" });
|
|
33
|
+
});
|
|
34
|
+
(0, vitest_1.describe)("Session.load", () => {
|
|
35
|
+
(0, vitest_1.it)("returns session with correct sessionId and agentConfig", async () => {
|
|
36
|
+
const res = { sessionId: "s1", agent: { name: "test-agent" } };
|
|
37
|
+
vitest_1.vi.stubGlobal("fetch", mockFetch(res));
|
|
38
|
+
const { session } = await session_1.Session.load(client, "s1", [agentInfo]);
|
|
39
|
+
(0, vitest_1.expect)(session.sessionId).toBe("s1");
|
|
40
|
+
(0, vitest_1.expect)(session.agentConfig).toEqual({ name: "test-agent" });
|
|
41
|
+
(0, vitest_1.expect)(session.agent).toBe(agentInfo);
|
|
42
|
+
});
|
|
43
|
+
(0, vitest_1.it)("populates history from full history", async () => {
|
|
44
|
+
const history = [{ role: "user", content: "hi" }];
|
|
45
|
+
const res = {
|
|
46
|
+
sessionId: "s1",
|
|
47
|
+
agent: { name: "test-agent" },
|
|
48
|
+
history: { full: history },
|
|
49
|
+
};
|
|
50
|
+
vitest_1.vi.stubGlobal("fetch", mockFetch(res));
|
|
51
|
+
const { session } = await session_1.Session.load(client, "s1", [agentInfo], "full");
|
|
52
|
+
(0, vitest_1.expect)(session.history).toEqual(history);
|
|
53
|
+
});
|
|
54
|
+
(0, vitest_1.it)("populates history from compacted history", async () => {
|
|
55
|
+
const history = [{ role: "user", content: "summary" }];
|
|
56
|
+
const res = {
|
|
57
|
+
sessionId: "s1",
|
|
58
|
+
agent: { name: "test-agent" },
|
|
59
|
+
history: { compacted: history },
|
|
60
|
+
};
|
|
61
|
+
vitest_1.vi.stubGlobal("fetch", mockFetch(res));
|
|
62
|
+
const { session } = await session_1.Session.load(client, "s1", [agentInfo], "compacted");
|
|
63
|
+
(0, vitest_1.expect)(session.history).toEqual(history);
|
|
64
|
+
});
|
|
65
|
+
(0, vitest_1.it)("returns empty history when no history in response", async () => {
|
|
66
|
+
const res = { sessionId: "s1", agent: { name: "test-agent" } };
|
|
67
|
+
vitest_1.vi.stubGlobal("fetch", mockFetch(res));
|
|
68
|
+
const { session } = await session_1.Session.load(client, "s1", [agentInfo], "full");
|
|
69
|
+
(0, vitest_1.expect)(session.history).toEqual([]);
|
|
70
|
+
});
|
|
71
|
+
(0, vitest_1.it)("resolves pending client tool use from history", async () => {
|
|
72
|
+
const tools = [
|
|
73
|
+
{
|
|
74
|
+
name: "myTool",
|
|
75
|
+
description: "d",
|
|
76
|
+
inputSchema: { type: "object", properties: {} },
|
|
77
|
+
},
|
|
78
|
+
];
|
|
79
|
+
const history = [
|
|
80
|
+
{ role: "user", content: "go" },
|
|
81
|
+
{
|
|
82
|
+
role: "assistant",
|
|
83
|
+
content: [{ type: "tool_use", toolCallId: "tc1", name: "myTool", input: {} }],
|
|
84
|
+
},
|
|
85
|
+
];
|
|
86
|
+
const res = {
|
|
87
|
+
sessionId: "s1",
|
|
88
|
+
agent: { name: "test-agent" },
|
|
89
|
+
tools,
|
|
90
|
+
history: { full: history },
|
|
91
|
+
};
|
|
92
|
+
vitest_1.vi.stubGlobal("fetch", mockFetch(res));
|
|
93
|
+
const { pending } = await session_1.Session.load(client, "s1", [agentInfo], "full");
|
|
94
|
+
(0, vitest_1.expect)(pending.client).toEqual([{ toolCallId: "tc1", name: "myTool", input: {} }]);
|
|
95
|
+
(0, vitest_1.expect)(pending.server).toEqual([]);
|
|
96
|
+
});
|
|
97
|
+
(0, vitest_1.it)("calls getSession with correct history param", async () => {
|
|
98
|
+
const fetch = mockFetch({
|
|
99
|
+
sessionId: "s1",
|
|
100
|
+
agent: { name: "test-agent" },
|
|
101
|
+
});
|
|
102
|
+
vitest_1.vi.stubGlobal("fetch", fetch);
|
|
103
|
+
await session_1.Session.load(client, "s1", [agentInfo], "compacted");
|
|
104
|
+
(0, vitest_1.expect)(fetch.mock.calls[0][0]).toBe(`${BASE_URL}/session/s1?history=compacted`);
|
|
105
|
+
});
|
|
106
|
+
(0, vitest_1.it)("throws if agent name not found in list", async () => {
|
|
107
|
+
const res = { sessionId: "s1", agent: { name: "unknown-agent" } };
|
|
108
|
+
vitest_1.vi.stubGlobal("fetch", mockFetch(res));
|
|
109
|
+
await (0, vitest_1.expect)(session_1.Session.load(client, "s1", [agentInfo])).rejects.toThrow("Unknown agent: unknown-agent");
|
|
110
|
+
});
|
|
111
|
+
});
|
|
112
|
+
(0, vitest_1.describe)("Session.create", () => {
|
|
113
|
+
(0, vitest_1.it)("non-streaming: builds session and history", async () => {
|
|
114
|
+
const res = {
|
|
115
|
+
sessionId: "s1",
|
|
116
|
+
stopReason: "end_turn",
|
|
117
|
+
messages: [{ role: "assistant", content: "hi" }],
|
|
118
|
+
};
|
|
119
|
+
vitest_1.vi.stubGlobal("fetch", mockFetch(res, 201));
|
|
120
|
+
const { session, pending } = await session_1.Session.create(client, { agent: { name: "test-agent" }, messages: [{ role: "user", content: "hello" }] }, agentInfo);
|
|
121
|
+
(0, vitest_1.expect)(session.sessionId).toBe("s1");
|
|
122
|
+
(0, vitest_1.expect)(session.history).toHaveLength(2);
|
|
123
|
+
(0, vitest_1.expect)(pending).toEqual({ client: [], server: [] });
|
|
124
|
+
});
|
|
125
|
+
(0, vitest_1.it)("streaming: builds session from SSE events and calls cb", async () => {
|
|
126
|
+
const events = [
|
|
127
|
+
{ event: "session_start", sessionId: "s2" },
|
|
128
|
+
{ event: "turn_start" },
|
|
129
|
+
{ event: "text", text: "hey" },
|
|
130
|
+
{ event: "turn_stop", stopReason: "end_turn" },
|
|
131
|
+
];
|
|
132
|
+
vitest_1.vi.stubGlobal("fetch", mockSSEFetch(events));
|
|
133
|
+
const cb = vitest_1.vi.fn();
|
|
134
|
+
const { session } = await session_1.Session.create(client, {
|
|
135
|
+
agent: { name: "test-agent" },
|
|
136
|
+
messages: [{ role: "user", content: "hello" }],
|
|
137
|
+
stream: "message",
|
|
138
|
+
}, agentInfo, cb);
|
|
139
|
+
(0, vitest_1.expect)(session.sessionId).toBe("s2");
|
|
140
|
+
(0, vitest_1.expect)(cb).toHaveBeenCalledTimes(events.length);
|
|
141
|
+
});
|
|
142
|
+
});
|
|
143
|
+
(0, vitest_1.describe)("Session.send", () => {
|
|
144
|
+
async function makeSession() {
|
|
145
|
+
const res = { sessionId: "s1", stopReason: "end_turn", messages: [] };
|
|
146
|
+
vitest_1.vi.stubGlobal("fetch", mockFetch(res, 201));
|
|
147
|
+
const { session } = await session_1.Session.create(client, { agent: { name: "test-agent" }, messages: [{ role: "user", content: "hi" }] }, agentInfo);
|
|
148
|
+
return session;
|
|
149
|
+
}
|
|
150
|
+
(0, vitest_1.it)("non-streaming: appends messages and returns pending", async () => {
|
|
151
|
+
const session = await makeSession();
|
|
152
|
+
const turnRes = {
|
|
153
|
+
stopReason: "end_turn",
|
|
154
|
+
messages: [{ role: "assistant", content: "reply" }],
|
|
155
|
+
};
|
|
156
|
+
vitest_1.vi.stubGlobal("fetch", mockFetch(turnRes));
|
|
157
|
+
const pending = await session.send({ messages: [{ role: "user", content: "next" }] });
|
|
158
|
+
(0, vitest_1.expect)(session.history).toHaveLength(3);
|
|
159
|
+
(0, vitest_1.expect)(pending).toEqual({ client: [], server: [] });
|
|
160
|
+
});
|
|
161
|
+
(0, vitest_1.it)("streaming: appends messages and calls cb", async () => {
|
|
162
|
+
const session = await makeSession();
|
|
163
|
+
const events = [
|
|
164
|
+
{ event: "turn_start" },
|
|
165
|
+
{ event: "text", text: "streamed" },
|
|
166
|
+
{ event: "turn_stop", stopReason: "end_turn" },
|
|
167
|
+
];
|
|
168
|
+
vitest_1.vi.stubGlobal("fetch", mockSSEFetch(events));
|
|
169
|
+
const cb = vitest_1.vi.fn();
|
|
170
|
+
await session.send({ messages: [{ role: "user", content: "next" }], stream: "message" }, cb);
|
|
171
|
+
(0, vitest_1.expect)(cb).toHaveBeenCalledTimes(events.length);
|
|
172
|
+
});
|
|
173
|
+
(0, vitest_1.it)("strips unchanged tools from request", async () => {
|
|
174
|
+
const session = await makeSession();
|
|
175
|
+
const tools = [
|
|
176
|
+
{ name: "t", description: "d", inputSchema: { type: "object", properties: {} } },
|
|
177
|
+
];
|
|
178
|
+
session.tools = tools;
|
|
179
|
+
const fetch = mockFetch({ stopReason: "end_turn", messages: [] });
|
|
180
|
+
vitest_1.vi.stubGlobal("fetch", fetch);
|
|
181
|
+
await session.send({ messages: [{ role: "user", content: "hi" }], tools });
|
|
182
|
+
const body = JSON.parse(fetch.mock.calls[0][1].body);
|
|
183
|
+
(0, vitest_1.expect)(body.tools).toBeUndefined();
|
|
184
|
+
});
|
|
185
|
+
(0, vitest_1.it)("sends changed tools and updates session.tools", async () => {
|
|
186
|
+
const session = await makeSession();
|
|
187
|
+
const newTools = [
|
|
188
|
+
{ name: "t2", description: "d", inputSchema: { type: "object", properties: {} } },
|
|
189
|
+
];
|
|
190
|
+
const fetch = mockFetch({ stopReason: "end_turn", messages: [] });
|
|
191
|
+
vitest_1.vi.stubGlobal("fetch", fetch);
|
|
192
|
+
await session.send({ messages: [{ role: "user", content: "hi" }], tools: newTools });
|
|
193
|
+
const body = JSON.parse(fetch.mock.calls[0][1].body);
|
|
194
|
+
(0, vitest_1.expect)(body.tools).toEqual(newTools);
|
|
195
|
+
(0, vitest_1.expect)(session.tools).toEqual(newTools);
|
|
196
|
+
});
|
|
197
|
+
(0, vitest_1.it)("sends only changed agent options", async () => {
|
|
198
|
+
const session = await makeSession();
|
|
199
|
+
session.agentConfig = { name: "test-agent", options: { model: "gpt-4" } };
|
|
200
|
+
const fetch = mockFetch({ stopReason: "end_turn", messages: [] });
|
|
201
|
+
vitest_1.vi.stubGlobal("fetch", fetch);
|
|
202
|
+
await session.send({
|
|
203
|
+
messages: [{ role: "user", content: "hi" }],
|
|
204
|
+
agent: { options: { model: "gpt-4o", temperature: "0.5" } },
|
|
205
|
+
});
|
|
206
|
+
const body = JSON.parse(fetch.mock.calls[0][1].body);
|
|
207
|
+
(0, vitest_1.expect)(body.agent.options).toEqual({ model: "gpt-4o", temperature: "0.5" });
|
|
208
|
+
});
|
|
209
|
+
(0, vitest_1.it)("omits agent if nothing changed", async () => {
|
|
210
|
+
const session = await makeSession();
|
|
211
|
+
const fetch = mockFetch({ stopReason: "end_turn", messages: [] });
|
|
212
|
+
vitest_1.vi.stubGlobal("fetch", fetch);
|
|
213
|
+
await session.send({ messages: [{ role: "user", content: "hi" }] });
|
|
214
|
+
const body = JSON.parse(fetch.mock.calls[0][1].body);
|
|
215
|
+
(0, vitest_1.expect)(body.agent).toBeUndefined();
|
|
216
|
+
});
|
|
217
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const vitest_1 = require("vitest");
|
|
4
|
+
const utils_1 = require("./utils");
|
|
5
|
+
(0, vitest_1.describe)("resolvePendingToolUse", () => {
|
|
6
|
+
const clientTool = {
|
|
7
|
+
name: "client_tool",
|
|
8
|
+
description: "d",
|
|
9
|
+
inputSchema: { type: "object" },
|
|
10
|
+
};
|
|
11
|
+
(0, vitest_1.it)("classifies client and server tools", () => {
|
|
12
|
+
const messages = [
|
|
13
|
+
{
|
|
14
|
+
role: "assistant",
|
|
15
|
+
content: [
|
|
16
|
+
{ type: "tool_use", toolCallId: "c1", name: "client_tool", input: {} },
|
|
17
|
+
{ type: "tool_use", toolCallId: "s1", name: "server_tool", input: {} },
|
|
18
|
+
],
|
|
19
|
+
},
|
|
20
|
+
];
|
|
21
|
+
const { client, server } = (0, utils_1.resolvePendingToolUse)(messages, [clientTool]);
|
|
22
|
+
(0, vitest_1.expect)(client).toEqual([{ toolCallId: "c1", name: "client_tool", input: {} }]);
|
|
23
|
+
(0, vitest_1.expect)(server).toEqual([{ toolCallId: "s1", name: "server_tool", input: {} }]);
|
|
24
|
+
});
|
|
25
|
+
(0, vitest_1.it)("skips tool_use blocks already resolved by tool_result", () => {
|
|
26
|
+
const messages = [
|
|
27
|
+
{
|
|
28
|
+
role: "assistant",
|
|
29
|
+
content: [{ type: "tool_use", toolCallId: "c1", name: "client_tool", input: {} }],
|
|
30
|
+
},
|
|
31
|
+
{ role: "tool", toolCallId: "c1", content: "done" },
|
|
32
|
+
];
|
|
33
|
+
(0, vitest_1.expect)((0, utils_1.resolvePendingToolUse)(messages, [clientTool])).toEqual({ client: [], server: [] });
|
|
34
|
+
});
|
|
35
|
+
(0, vitest_1.it)("returns empty if last assistant message has string content", () => {
|
|
36
|
+
const messages = [{ role: "assistant", content: "plain" }];
|
|
37
|
+
(0, vitest_1.expect)((0, utils_1.resolvePendingToolUse)(messages)).toEqual({ client: [], server: [] });
|
|
38
|
+
});
|
|
39
|
+
(0, vitest_1.it)("returns empty if no assistant message in history", () => {
|
|
40
|
+
const messages = [{ role: "user", content: "hi" }];
|
|
41
|
+
(0, vitest_1.expect)((0, utils_1.resolvePendingToolUse)(messages)).toEqual({ client: [], server: [] });
|
|
42
|
+
});
|
|
43
|
+
(0, vitest_1.it)("finds last assistant message even if not the last message", () => {
|
|
44
|
+
const messages = [
|
|
45
|
+
{
|
|
46
|
+
role: "assistant",
|
|
47
|
+
content: [{ type: "tool_use", toolCallId: "c1", name: "client_tool", input: {} }],
|
|
48
|
+
},
|
|
49
|
+
{ role: "tool", toolCallId: "c1", content: "done" },
|
|
50
|
+
{ role: "user", content: "thanks" },
|
|
51
|
+
];
|
|
52
|
+
(0, vitest_1.expect)((0, utils_1.resolvePendingToolUse)(messages, [clientTool])).toEqual({ client: [], server: [] });
|
|
53
|
+
});
|
|
54
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentapplicationprotocol/client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "AAP client",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"aap",
|
|
@@ -21,20 +21,21 @@
|
|
|
21
21
|
"directory": "packages/client"
|
|
22
22
|
},
|
|
23
23
|
"files": [
|
|
24
|
-
"dist",
|
|
25
|
-
"!dist
|
|
26
|
-
"!dist/**/*.test
|
|
24
|
+
"dist/src",
|
|
25
|
+
"!dist/src/examples",
|
|
26
|
+
"!dist/src/**/*.test.*"
|
|
27
27
|
],
|
|
28
|
-
"main": "dist/index.js",
|
|
29
|
-
"types": "dist/index.d.ts",
|
|
28
|
+
"main": "dist/src/index.js",
|
|
29
|
+
"types": "dist/src/index.d.ts",
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"eventsource-parser": "^3.0.6",
|
|
32
|
-
"@agentapplicationprotocol/core": "0.
|
|
32
|
+
"@agentapplicationprotocol/core": "0.5.0"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"build": "tsc",
|
|
36
36
|
"test": "vitest run",
|
|
37
37
|
"dev": "tsc --watch",
|
|
38
|
-
"example:
|
|
38
|
+
"example:basic": "tsx src/examples/basic/index.ts",
|
|
39
|
+
"example:cli": "tsx src/examples/cli/index.ts"
|
|
39
40
|
}
|
|
40
41
|
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"fileNames":["../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../node_modules/.pnpm/eventsource-parser@3.0.6/node_modules/eventsource-parser/dist/index.d.ts","../../../node_modules/.pnpm/@types+json-schema@7.0.15/node_modules/@types/json-schema/index.d.ts","../../core/dist/src/types.d.ts","../../core/dist/src/utils.d.ts","../../core/dist/src/index.d.ts","../src/client.ts","../src/utils.ts","../src/session.ts","../src/index.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/compatibility/iterators.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/globals.typedarray.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/buffer.buffer.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/globals.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/web-globals/blob.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/web-globals/console.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/web-globals/crypto.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/web-globals/domexception.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/web-globals/encoding.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/web-globals/events.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/utility.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/header.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/readable.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/fetch.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/formdata.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/connector.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/client-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/client.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/errors.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/global-dispatcher.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/global-origin.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/pool-stats.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/pool.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/handlers.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/balanced-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/round-robin-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/h2c-client.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/agent.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/mock-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/mock-call-history.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/mock-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/mock-client.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/mock-pool.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/snapshot-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/mock-errors.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/retry-handler.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/retry-agent.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/api.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/cache-interceptor.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/interceptors.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/util.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/cookies.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/patch.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/websocket.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/eventsource.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/diagnostics-channel.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/content-type.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/cache.d.ts","../../../node_modules/.pnpm/undici-types@7.18.2/node_modules/undici-types/index.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/web-globals/fetch.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/web-globals/importmeta.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/web-globals/messaging.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/web-globals/navigator.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/web-globals/performance.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/web-globals/storage.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/web-globals/streams.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/web-globals/timers.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/web-globals/url.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/assert.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/assert/strict.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/async_hooks.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/buffer.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/child_process.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/cluster.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/console.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/constants.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/crypto.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/dgram.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/diagnostics_channel.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/dns.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/dns/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/domain.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/events.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/fs.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/fs/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/http.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/http2.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/https.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/inspector.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/inspector.generated.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/inspector/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/module.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/net.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/os.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/path.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/path/posix.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/path/win32.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/perf_hooks.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/process.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/punycode.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/querystring.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/quic.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/readline.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/readline/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/repl.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/sea.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/sqlite.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/stream.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/stream/consumers.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/stream/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/stream/web.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/string_decoder.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/test.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/test/reporters.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/timers.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/timers/promises.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/tls.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/trace_events.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/tty.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/url.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/util.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/util/types.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/v8.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/vm.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/wasi.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/worker_threads.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/zlib.d.ts","../../../node_modules/.pnpm/@types+node@25.5.0/node_modules/@types/node/index.d.ts"],"fileIdsList":[[72,135,143,147,150,152,153,154,166],[72,132,133,135,143,147,150,152,153,154,166],[72,134,135,143,147,150,152,153,154,166],[135,143,147,150,152,153,154,166],[72,135,143,147,150,152,153,154,166,174],[72,135,136,141,143,146,147,150,152,153,154,156,166,171,183],[72,135,136,137,143,146,147,150,152,153,154,166],[72,135,138,143,147,150,152,153,154,166,184],[72,135,139,140,143,147,150,152,153,154,157,166],[72,135,140,143,147,150,152,153,154,166,171,180],[72,135,141,143,146,147,150,152,153,154,156,166],[72,134,135,142,143,147,150,152,153,154,166],[72,135,143,144,147,150,152,153,154,166],[72,135,143,145,146,147,150,152,153,154,166],[72,134,135,143,146,147,150,152,153,154,166],[72,135,143,146,147,148,150,152,153,154,166,171,183],[72,135,143,146,147,148,150,152,153,154,166,171,174],[72,122,135,143,146,147,149,150,152,153,154,156,166,171,183],[72,135,143,146,147,149,150,152,153,154,156,166,171,180,183],[72,135,143,147,149,150,151,152,153,154,166,171,180,183],[70,71,72,73,74,75,76,77,78,79,80,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190],[72,135,143,146,147,150,152,153,154,166],[72,135,143,147,150,152,154,166],[72,135,143,147,150,152,153,154,155,166,183],[72,135,143,146,147,150,152,153,154,156,166,171],[72,135,143,147,150,152,153,154,157,166],[72,135,143,147,150,152,153,154,158,166],[72,135,143,146,147,150,152,153,154,161,166],[72,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190],[72,135,143,147,150,152,153,154,163,166],[72,135,143,147,150,152,153,154,164,166],[72,135,140,143,147,150,152,153,154,156,166,174],[72,135,143,146,147,150,152,153,154,166,167],[72,135,143,147,150,152,153,154,166,168,184,187],[72,135,143,146,147,150,152,153,154,166,171,173,174],[72,135,143,147,150,152,153,154,166,172,174],[72,135,143,147,150,152,153,154,166,174,184],[72,135,143,147,150,152,153,154,166,175],[72,132,135,143,147,150,152,153,154,166,171,177,183],[72,135,143,147,150,152,153,154,166,171,176],[72,135,143,146,147,150,152,153,154,166,178,179],[72,135,143,147,150,152,153,154,166,178,179],[72,135,140,143,147,150,152,153,154,156,166,171,180],[72,135,143,147,150,152,153,154,166,181],[72,135,143,147,150,152,153,154,156,166,182],[72,135,143,147,149,150,152,153,154,164,166,183],[72,135,143,147,150,152,153,154,166,184,185],[72,135,140,143,147,150,152,153,154,166,185],[72,135,143,147,150,152,153,154,166,171,186],[72,135,143,147,150,152,153,154,155,166,187],[72,135,143,147,150,152,153,154,166,188],[72,135,138,143,147,150,152,153,154,166],[72,135,140,143,147,150,152,153,154,166],[72,135,143,147,150,152,153,154,166,184],[72,122,135,143,147,150,152,153,154,166],[72,135,143,147,150,152,153,154,166,183],[72,135,143,147,150,152,153,154,166,189],[72,135,143,147,150,152,153,154,161,166],[72,135,143,147,150,152,153,154,166,179],[72,122,135,143,146,147,148,150,152,153,154,161,166,171,174,183,186,187,189],[72,135,143,147,150,152,153,154,166,171,190],[72,87,90,93,94,135,143,147,150,152,153,154,166,183],[72,90,135,143,147,150,152,153,154,166,171,183],[72,90,94,135,143,147,150,152,153,154,166,183],[72,135,143,147,150,152,153,154,166,171],[72,84,135,143,147,150,152,153,154,166],[72,88,135,143,147,150,152,153,154,166],[72,86,87,90,135,143,147,150,152,153,154,166,183],[72,135,143,147,150,152,153,154,156,166,180],[72,135,143,147,150,152,153,154,166,191],[72,84,135,143,147,150,152,153,154,166,191],[72,86,90,135,143,147,150,152,153,154,156,166,183],[72,81,82,83,85,89,135,143,146,147,150,152,153,154,166,171,183],[72,90,99,107,135,143,147,150,152,153,154,166],[72,82,88,135,143,147,150,152,153,154,166],[72,90,116,117,135,143,147,150,152,153,154,166],[72,82,85,90,135,143,147,150,152,153,154,166,174,183,191],[72,90,135,143,147,150,152,153,154,166],[72,86,90,135,143,147,150,152,153,154,166,183],[72,81,135,143,147,150,152,153,154,166],[72,84,85,86,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,117,118,119,120,121,135,143,147,150,152,153,154,166],[72,90,109,112,135,143,147,150,152,153,154,166],[72,90,99,100,101,135,143,147,150,152,153,154,166],[72,88,90,100,102,135,143,147,150,152,153,154,166],[72,89,135,143,147,150,152,153,154,166],[72,82,84,90,135,143,147,150,152,153,154,166],[72,90,94,100,102,135,143,147,150,152,153,154,166],[72,94,135,143,147,150,152,153,154,166],[72,88,90,93,135,143,147,150,152,153,154,166,183],[72,82,86,90,99,135,143,147,150,152,153,154,166],[72,90,109,135,143,147,150,152,153,154,166],[72,102,135,143,147,150,152,153,154,166],[72,84,90,116,135,143,147,150,152,153,154,166,174,189,191],[61,65,72,135,143,147,150,152,153,154,166],[66,68,72,135,143,147,150,152,153,154,166],[65,66,67,72,135,143,147,150,152,153,154,166],[65,72,135,143,147,150,152,153,154,166],[63,64,72,135,143,147,150,152,153,154,166],[62,72,135,143,147,150,152,153,154,166],[63,72,135,143,147,150,152,153,154,166]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"890f2a33f45484cf9a95bfcd03de4abfe462238411af8649791e640b95678f44","impliedFormat":99},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},"a9d0edd637db826208a0b35cfb06ac5bf46f3c1b76bd429e06e55b39295b673b","4541b19f4f9398bd12595c86f55279a0cd5ea6f384e4acbcb863215d5abe5254","b573196f24878a6e4a35997166e818366843000659d94cb423c6df9e26eaebd5",{"version":"80479e125d9852d4e3478c1490ebfee7b7d2380a1f7b6d529a30162287736a65","signature":"e4bcff250cd9f70c806e2d0712b1e431fd0a5c3766ee7f83e67f36c0fd07003c"},{"version":"090e80aaf27b0f0dd3b4002e72eb9c7b9814e4864bb3e9f62252c2a2dd35316c","signature":"27a68ec0fff995c78cba93a5bdc7a0015a5ddcd0097acb7653aec9bf57b19bd2"},{"version":"daefdf8b01ef78310c9c89243b8bdef39da505d9463a85f7a0a6ccf46b3aa73d","signature":"76d5d105c946de19e9b777920f92bec7774646f7b21c2ff5b4256b8fb168180c"},"a711c9abc9a07374af221e10ee6ecf69b84dbc960babc11ca53d99bd12abe5d6",{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ccdaa19852d25ecd84eec365c3bfa16e7859cadecf6e9ca6d0dbbbee439743f","affectsGlobalScope":true,"impliedFormat":1},{"version":"438b41419b1df9f1fbe33b5e1b18f5853432be205991d1b19f5b7f351675541e","affectsGlobalScope":true,"impliedFormat":1},{"version":"096116f8fedc1765d5bd6ef360c257b4a9048e5415054b3bf3c41b07f8951b0b","affectsGlobalScope":true,"impliedFormat":1},{"version":"e5e01375c9e124a83b52ee4b3244ed1a4d214a6cfb54ac73e164a823a4a7860a","affectsGlobalScope":true,"impliedFormat":1},{"version":"f90ae2bbce1505e67f2f6502392e318f5714bae82d2d969185c4a6cecc8af2fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"4b58e207b93a8f1c88bbf2a95ddc686ac83962b13830fe8ad3f404ffc7051fb4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1fefabcb2b06736a66d2904074d56268753654805e829989a46a0161cd8412c5","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"c18a99f01eb788d849ad032b31cafd49de0b19e083fe775370834c5675d7df8e","affectsGlobalScope":true,"impliedFormat":1},{"version":"5247874c2a23b9a62d178ae84f2db6a1d54e6c9a2e7e057e178cc5eea13757fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"156a859e21ef3244d13afeeba4e49760a6afa035c149dda52f0c45ea8903b338","impliedFormat":1},{"version":"10ec5e82144dfac6f04fa5d1d6c11763b3e4dbbac6d99101427219ab3e2ae887","impliedFormat":1},{"version":"615754924717c0b1e293e083b83503c0a872717ad5aa60ed7f1a699eb1b4ea5c","impliedFormat":1},{"version":"074de5b2fdead0165a2757e3aaef20f27a6347b1c36adea27d51456795b37682","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"24371e69a38fc33e268d4a8716dbcda430d6c2c414a99ff9669239c4b8f40dea","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"3e11fce78ad8c0e1d1db4ba5f0652285509be3acdd519529bc8fcef85f7dafd9","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"9c32412007b5662fd34a8eb04292fb5314ec370d7016d1c2fb8aa193c807fe22","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"4d327f7d72ad0918275cea3eee49a6a8dc8114ae1d5b7f3f5d0774de75f7439a","impliedFormat":1},{"version":"6ebe8ebb8659aaa9d1acbf3710d7dae3e923e97610238b9511c25dc39023a166","impliedFormat":1},{"version":"e85d7f8068f6a26710bff0cc8c0fc5e47f71089c3780fbede05857331d2ddec9","impliedFormat":1},{"version":"7befaf0e76b5671be1d47b77fcc65f2b0aad91cc26529df1904f4a7c46d216e9","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"8aee8b6d4f9f62cf3776cda1305fb18763e2aade7e13cea5bbe699112df85214","impliedFormat":1},{"version":"c63b9ada8c72f95aac5db92aea07e5e87ec810353cdf63b2d78f49a58662cf6c","impliedFormat":1},{"version":"1cc2a09e1a61a5222d4174ab358a9f9de5e906afe79dbf7363d871a7edda3955","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"b64d4d1c5f877f9c666e98e833f0205edb9384acc46e98a1fef344f64d6aba44","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"12950411eeab8563b349cb7959543d92d8d02c289ed893d78499a19becb5a8cc","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"c9381908473a1c92cb8c516b184e75f4d226dad95c3a85a5af35f670064d9a2f","impliedFormat":1},{"version":"c3f5289820990ab66b70c7fb5b63cb674001009ff84b13de40619619a9c8175f","affectsGlobalScope":true,"impliedFormat":1},{"version":"b3275d55fac10b799c9546804126239baf020d220136163f763b55a74e50e750","affectsGlobalScope":true,"impliedFormat":1},{"version":"fa68a0a3b7cb32c00e39ee3cd31f8f15b80cac97dce51b6ee7fc14a1e8deb30b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"6c36e755bced82df7fb6ce8169265d0a7bb046ab4e2cb6d0da0cb72b22033e89","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"7a93de4ff8a63bafe62ba86b89af1df0ccb5e40bb85b0c67d6bbcfdcf96bf3d4","affectsGlobalScope":true,"impliedFormat":1},{"version":"90e85f9bc549dfe2b5749b45fe734144e96cd5d04b38eae244028794e142a77e","affectsGlobalScope":true,"impliedFormat":1},{"version":"e0a5deeb610b2a50a6350bd23df6490036a1773a8a71d70f2f9549ab009e67ee","affectsGlobalScope":true,"impliedFormat":1},{"version":"3fad5618174d74a34ee006406d4eb37e8d07dd62eb1315dbf52f48d31a337547","impliedFormat":1},{"version":"7e49f52a159435fc8df4de9dc377ef5860732ca2dc9efec1640531d3cf5da7a3","impliedFormat":1},{"version":"dd4bde4bdc2e5394aed6855e98cf135dfdf5dd6468cad842e03116d31bbcc9bc","impliedFormat":1},{"version":"4d4e879009a84a47c05350b8dca823036ba3a29a3038efed1be76c9f81e45edf","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b50a819485ffe0d237bf0d131e92178d14d11e2aa873d73615a9ec578b341f5","impliedFormat":1},{"version":"9ba13b47cb450a438e3076c4a3f6afb9dc85e17eae50f26d4b2d72c0688c9251","impliedFormat":1},{"version":"b64cd4401633ea4ecadfd700ddc8323a13b63b106ac7127c1d2726f32424622c","impliedFormat":1},{"version":"37c6e5fe5715814412b43cc9b50b24c67a63c4e04e753e0d1305970d65417a60","impliedFormat":1},{"version":"1d024184fb57c58c5c91823f9d10b4915a4867b7934e89115fd0d861a9df27c8","impliedFormat":1},{"version":"ee0e4946247f842c6dd483cbb60a5e6b484fee07996e3a7bc7343dfb68a04c5d","impliedFormat":1},{"version":"ef051f42b7e0ef5ca04552f54c4552eac84099d64b6c5ad0ef4033574b6035b8","impliedFormat":1},{"version":"853a43154f1d01b0173d9cbd74063507ece57170bad7a3b68f3fa1229ad0a92f","impliedFormat":1},{"version":"56231e3c39a031bfb0afb797690b20ed4537670c93c0318b72d5180833d98b72","impliedFormat":1},{"version":"5cc7c39031bfd8b00ad58f32143d59eb6ffc24f5d41a20931269011dccd36c5e","impliedFormat":1},{"version":"12d602a8fe4c2f2ba4f7804f5eda8ba07e0c83bf5cf0cda8baffa2e9967bfb77","affectsGlobalScope":true,"impliedFormat":1},{"version":"a856ab781967b62b288dfd85b860bef0e62f005ed4b1b8fa25c53ce17856acaf","impliedFormat":1},{"version":"cc25940cfb27aa538e60d465f98bb5068d4d7d33131861ace43f04fe6947d68f","impliedFormat":1},{"version":"8db46b61a690f15b245cf16270db044dc047dce9f93b103a59f50262f677ea1f","impliedFormat":1},{"version":"01ff95aa1443e3f7248974e5a771f513cb2ac158c8898f470a1792f817bee497","impliedFormat":1},{"version":"757227c8b345c57d76f7f0e3bbad7a91ffca23f1b2547cbed9e10025816c9cb7","impliedFormat":1},{"version":"959d0327c96dd9bb5521f3ed6af0c435996504cc8dd46baa8e12cb3b3518cef1","impliedFormat":1},{"version":"e1c1a0b4d1ead0de9eca52203aeb1f771f21e6238d6fcd15aa56ac2a02f1b7bf","impliedFormat":1},{"version":"101f482fd48cb4c7c0468dcc6d62c843d842977aea6235644b1edd05e81fbf22","impliedFormat":1},{"version":"266bee0a41e9c3ba335583e21e9277ae03822402cf5e8e1d99f5196853613b98","affectsGlobalScope":true,"impliedFormat":1},{"version":"386606f8a297988535cb1401959041cfa7f59d54b8a9ed09738e65c98684c976","impliedFormat":1},{"version":"3ef397f12387eff17f550bc484ea7c27d21d43816bbe609d495107f44b97e933","impliedFormat":1},{"version":"1023282e2ba810bc07905d3668349fbd37a26411f0c8f94a70ef3c05fe523fcf","impliedFormat":1},{"version":"b214ebcf76c51b115453f69729ee8aa7b7f8eccdae2a922b568a45c2d7ff52f7","impliedFormat":1},{"version":"429c9cdfa7d126255779efd7e6d9057ced2d69c81859bbab32073bad52e9ba76","impliedFormat":1},{"version":"e236b5eba291f51bdf32c231673e6cab81b5410850e61f51a7a524dddadc0f95","impliedFormat":1},{"version":"ce8653341224f8b45ff46d2a06f2cacb96f841f768a886c9d8dd8ec0878b11bd","affectsGlobalScope":true,"impliedFormat":1},{"version":"7f2c62938251b45715fd2a9887060ec4fbc8724727029d1cbce373747252bdd7","impliedFormat":1},{"version":"e3ace08b6bbd84655d41e244677b474fd995923ffef7149ddb68af8848b60b05","impliedFormat":1},{"version":"132580b0e86c48fab152bab850fc57a4b74fe915c8958d2ccb052b809a44b61c","impliedFormat":1},{"version":"90a278f5fab7557e69e97056c0841adf269c42697194f0bd5c5e69152637d4b3","impliedFormat":1},{"version":"69c9a5a9392e8564bd81116e1ed93b13205201fb44cb35a7fde8c9f9e21c4b23","impliedFormat":1},{"version":"5f8fc37f8434691ffac1bfd8fc2634647da2c0e84253ab5d2dd19a7718915b35","impliedFormat":1},{"version":"5981c2340fd8b076cae8efbae818d42c11ffc615994cb060b1cd390795f1be2b","impliedFormat":1},{"version":"f263485c9ca90df9fe7bb3a906db9701997dc6cae86ace1f8106ac8d2f7f677b","impliedFormat":1},{"version":"1edcf2f36fc332615846bde6dcc71a8fe526065505bc5e3dcfd65a14becdf698","affectsGlobalScope":true,"impliedFormat":1},{"version":"0250da3eb85c99624f974e77ef355cdf86f43980251bc371475c2b397ba55bcd","impliedFormat":1},{"version":"f1c93e046fb3d9b7f8249629f4b63dc068dd839b824dd0aa39a5e68476dc9420","impliedFormat":1},{"version":"3d3a5f27ffbc06c885dd4d5f9ee20de61faf877fe2c3a7051c4825903d9a7fdc","impliedFormat":1},{"version":"12806f9f085598ef930edaf2467a5fa1789a878fba077cd27e85dc5851e11834","impliedFormat":1},{"version":"1dbca38aa4b0db1f4f9e6edacc2780af7e028b733d2a98dd3598cd235ca0c97d","impliedFormat":1},{"version":"a43fe41c33d0a192a0ecaf9b92e87bef3709c9972e6d53c42c49251ccb962d69","impliedFormat":1},{"version":"a177959203c017fad3ecc4f3d96c8757a840957a4959a3ae00dab9d35961ca6c","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc727ccf9b36e257ff982ea0badeffbfc2c151802f741bddff00c6af3b784cf","impliedFormat":1},{"version":"19143c930aef7ccf248549f3e78992f2f1049118ec5d4622e95025057d8e392b","impliedFormat":1},{"version":"4844a4c9b4b1e812b257676ed8a80b3f3be0e29bf05e742cc2ea9c3c6865e6c6","impliedFormat":1},{"version":"064878a60367e0407c42fb7ba02a2ea4d83257357dc20088e549bd4d89433e9c","impliedFormat":1},{"version":"cca8917838a876e2d7016c9b6af57cbf11fdf903c5fdd8e613fa31840b2957bf","impliedFormat":1},{"version":"d91ae55e4282c22b9c21bc26bd3ef637d3fe132507b10529ae68bf76f5de785b","impliedFormat":1},{"version":"b484ec11ba00e3a2235562a41898d55372ccabe607986c6fa4f4aba72093749f","impliedFormat":1},{"version":"7e8a671604329e178bb479c8f387715ebd40a091fc4a7552a0a75c2f3a21c65c","impliedFormat":1},{"version":"41ef7992c555671a8fe54db302788adefa191ded810a50329b79d20a6772d14c","impliedFormat":1},{"version":"041a7781b9127ab568d2cdcce62c58fdea7c7407f40b8c50045d7866a2727130","impliedFormat":1},{"version":"4c5e90ddbcd177ad3f2ffc909ae217c87820f1e968f6959e4b6ba38a8cec935e","impliedFormat":1},{"version":"b70dd9a44e1ac42f030bb12e7d79117eac7cb74170d72d381a1e7913320af23a","impliedFormat":1},{"version":"55cdbeebe76a1fa18bbd7e7bf73350a2173926bd3085bb050cf5a5397025ee4e","impliedFormat":1}],"root":[[66,69]],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"module":1,"outDir":"./","skipLibCheck":true,"strict":true,"target":7},"referencedMap":[[62,1],[132,2],[133,2],[134,3],[72,4],[135,5],[136,6],[137,7],[70,1],[138,8],[139,9],[140,10],[141,11],[142,12],[143,13],[144,13],[145,14],[146,15],[147,16],[148,17],[73,1],[71,1],[149,18],[150,19],[151,20],[191,21],[152,22],[153,23],[154,22],[155,24],[156,25],[157,26],[158,27],[159,27],[160,27],[161,28],[162,29],[163,30],[164,31],[165,32],[166,33],[167,33],[168,34],[169,1],[170,1],[171,35],[172,36],[173,35],[174,37],[175,38],[176,39],[177,40],[178,41],[179,42],[180,43],[181,44],[182,45],[183,46],[184,47],[185,48],[186,49],[187,50],[188,51],[74,22],[75,1],[76,52],[77,53],[78,1],[79,54],[80,1],[123,55],[124,56],[125,57],[126,57],[127,58],[128,1],[129,5],[130,59],[131,56],[189,60],[190,61],[61,1],[59,1],[60,1],[10,1],[12,1],[11,1],[2,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[3,1],[21,1],[22,1],[4,1],[23,1],[27,1],[24,1],[25,1],[26,1],[28,1],[29,1],[30,1],[5,1],[31,1],[32,1],[33,1],[34,1],[6,1],[38,1],[35,1],[36,1],[37,1],[39,1],[7,1],[40,1],[45,1],[46,1],[41,1],[42,1],[43,1],[44,1],[8,1],[50,1],[47,1],[48,1],[49,1],[51,1],[9,1],[52,1],[53,1],[54,1],[56,1],[55,1],[1,1],[57,1],[58,1],[99,62],[111,63],[96,64],[112,65],[121,66],[87,67],[88,68],[86,69],[120,70],[115,71],[119,72],[90,73],[108,74],[89,75],[118,76],[84,77],[85,71],[91,78],[92,1],[98,79],[95,78],[82,80],[122,81],[113,82],[102,83],[101,78],[103,84],[106,85],[100,86],[104,87],[116,70],[93,88],[94,89],[107,90],[83,65],[110,91],[109,78],[97,89],[105,92],[114,1],[81,1],[117,93],[66,94],[69,95],[68,96],[67,97],[65,98],[63,99],[64,100]],"latestChangedDtsFile":"./src/index.d.ts","version":"5.9.3"}
|