@fgv/ts-extras-ollama 5.1.0-34
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/.rush/temp/b70e5f6b6ada97ea70c5583027ea2b58b27bef46.tar.log +54 -0
- package/.rush/temp/chunked-rush-logs/ts-extras-ollama.build.chunks.jsonl +9 -0
- package/.rush/temp/operation/build/all.log +9 -0
- package/.rush/temp/operation/build/log-chunks.jsonl +9 -0
- package/.rush/temp/operation/build/state.json +3 -0
- package/.rush/temp/shrinkwrap-deps.json +681 -0
- package/CHANGELOG.json +4 -0
- package/README.md +105 -0
- package/config/api-extractor.json +38 -0
- package/config/jest.config.json +13 -0
- package/config/rig.json +6 -0
- package/dist/index.js +388 -0
- package/dist/index.js.map +1 -0
- package/dist/test/unit/chatStructured.test.js +287 -0
- package/dist/test/unit/chatStructured.test.js.map +1 -0
- package/dist/test/unit/fixtures/wireFixtures.js +90 -0
- package/dist/test/unit/fixtures/wireFixtures.js.map +1 -0
- package/dist/test/unit/modelManagement.test.js +118 -0
- package/dist/test/unit/modelManagement.test.js.map +1 -0
- package/dist/test/unit/ollamaClient.test.js +38 -0
- package/dist/test/unit/ollamaClient.test.js.map +1 -0
- package/dist/test/unit/pullModel.test.js +202 -0
- package/dist/test/unit/pullModel.test.js.map +1 -0
- package/dist/ts-extras-ollama.d.ts +365 -0
- package/dist/tsdoc-metadata.json +11 -0
- package/eslint.config.js +15 -0
- package/etc/ts-extras-ollama.api.md +139 -0
- package/lib/index.d.ts +341 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +397 -0
- package/lib/index.js.map +1 -0
- package/lib/test/unit/chatStructured.test.d.ts +2 -0
- package/lib/test/unit/chatStructured.test.d.ts.map +1 -0
- package/lib/test/unit/chatStructured.test.js +289 -0
- package/lib/test/unit/chatStructured.test.js.map +1 -0
- package/lib/test/unit/fixtures/wireFixtures.d.ts +19 -0
- package/lib/test/unit/fixtures/wireFixtures.d.ts.map +1 -0
- package/lib/test/unit/fixtures/wireFixtures.js +93 -0
- package/lib/test/unit/fixtures/wireFixtures.js.map +1 -0
- package/lib/test/unit/modelManagement.test.d.ts +2 -0
- package/lib/test/unit/modelManagement.test.d.ts.map +1 -0
- package/lib/test/unit/modelManagement.test.js +120 -0
- package/lib/test/unit/modelManagement.test.js.map +1 -0
- package/lib/test/unit/ollamaClient.test.d.ts +2 -0
- package/lib/test/unit/ollamaClient.test.d.ts.map +1 -0
- package/lib/test/unit/ollamaClient.test.js +40 -0
- package/lib/test/unit/ollamaClient.test.js.map +1 -0
- package/lib/test/unit/pullModel.test.d.ts +2 -0
- package/lib/test/unit/pullModel.test.d.ts.map +1 -0
- package/lib/test/unit/pullModel.test.js +204 -0
- package/lib/test/unit/pullModel.test.js.map +1 -0
- package/package.json +83 -0
- package/rush-logs/ts-extras-ollama.build.cache.log +3 -0
- package/rush-logs/ts-extras-ollama.build.log +9 -0
- package/src/index.ts +655 -0
- package/src/test/unit/chatStructured.test.ts +330 -0
- package/src/test/unit/fixtures/wireFixtures.ts +95 -0
- package/src/test/unit/modelManagement.test.ts +128 -0
- package/src/test/unit/ollamaClient.test.ts +44 -0
- package/src/test/unit/pullModel.test.ts +220 -0
- package/temp/build/lint/_eslint-5eVG3S6w.json +30 -0
- package/temp/build/typescript/ts_8nwakTlr.json +1 -0
- package/temp/ts-extras-ollama.api.json +2528 -0
- package/temp/ts-extras-ollama.api.md +139 -0
- package/tsconfig.json +8 -0
|
@@ -0,0 +1,220 @@
|
|
|
1
|
+
import '@fgv/ts-utils-jest';
|
|
2
|
+
import { type IOllamaClient, type IOllamaPullProgress, createOllamaClient, pullModel } from '../../index';
|
|
3
|
+
|
|
4
|
+
/** The actual `/api/pull` wire chunk shape — layer fields absent on non-transfer phases. */
|
|
5
|
+
interface IPullChunk {
|
|
6
|
+
status: string;
|
|
7
|
+
digest?: string;
|
|
8
|
+
total?: number;
|
|
9
|
+
completed?: number;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
/**
|
|
13
|
+
* Builds a structural mock of the upstream `AbortableAsyncIterator` returned by `client.pull`.
|
|
14
|
+
* `abort()` flips an internal flag that the generator checks before each chunk — so an abort
|
|
15
|
+
* triggered mid-stream surfaces as a throw on the next iteration, matching the real lib.
|
|
16
|
+
*/
|
|
17
|
+
function makePullIterator(
|
|
18
|
+
chunks: ReadonlyArray<IPullChunk>,
|
|
19
|
+
opts?: { readonly throwMidStream?: boolean }
|
|
20
|
+
): { abort: jest.Mock } & AsyncIterable<IPullChunk> {
|
|
21
|
+
let aborted = false;
|
|
22
|
+
return {
|
|
23
|
+
abort: jest.fn(() => {
|
|
24
|
+
aborted = true;
|
|
25
|
+
}),
|
|
26
|
+
async *[Symbol.asyncIterator](): AsyncGenerator<IPullChunk> {
|
|
27
|
+
for (const chunk of chunks) {
|
|
28
|
+
if (aborted) {
|
|
29
|
+
throw new Error('The operation was aborted');
|
|
30
|
+
}
|
|
31
|
+
yield chunk;
|
|
32
|
+
if (opts?.throwMidStream) {
|
|
33
|
+
throw new Error('stream broke mid-pull');
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
function mockPullClient(pull: unknown): IOllamaClient {
|
|
41
|
+
return { pull } as unknown as IOllamaClient;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
const happyChunks: ReadonlyArray<IPullChunk> = [
|
|
45
|
+
{ status: 'pulling manifest' },
|
|
46
|
+
{ status: 'pulling sha256:abc', digest: 'sha256:abc', total: 1000, completed: 1000 },
|
|
47
|
+
{ status: 'success' }
|
|
48
|
+
];
|
|
49
|
+
|
|
50
|
+
describe('pullModel (layer 1 — structural client mock)', () => {
|
|
51
|
+
test('drives the stream, maps each chunk, and resolves with finalStatus + chunkCount', async () => {
|
|
52
|
+
const pull = jest.fn().mockResolvedValue(makePullIterator(happyChunks));
|
|
53
|
+
const client = mockPullClient(pull);
|
|
54
|
+
const seen: IOllamaPullProgress[] = [];
|
|
55
|
+
|
|
56
|
+
expect(await pullModel(client, { model: 'llama3.1:8b', onProgress: (p) => seen.push(p) })).toSucceedWith({
|
|
57
|
+
model: 'llama3.1:8b',
|
|
58
|
+
finalStatus: 'success',
|
|
59
|
+
chunkCount: 3
|
|
60
|
+
});
|
|
61
|
+
expect(pull).toHaveBeenCalledWith({ model: 'llama3.1:8b', stream: true });
|
|
62
|
+
expect(seen).toHaveLength(3);
|
|
63
|
+
// Manifest phase: no layer fields.
|
|
64
|
+
expect(seen[0]).toEqual({
|
|
65
|
+
status: 'pulling manifest',
|
|
66
|
+
digest: undefined,
|
|
67
|
+
total: undefined,
|
|
68
|
+
completed: undefined
|
|
69
|
+
});
|
|
70
|
+
// Transfer phase: layer fields present and mapped 1:1.
|
|
71
|
+
expect(seen[1]).toEqual({
|
|
72
|
+
status: 'pulling sha256:abc',
|
|
73
|
+
digest: 'sha256:abc',
|
|
74
|
+
total: 1000,
|
|
75
|
+
completed: 1000
|
|
76
|
+
});
|
|
77
|
+
expect(seen[2].status).toBe('success');
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
test('forwards insecure and works without an onProgress callback', async () => {
|
|
81
|
+
const pull = jest.fn().mockResolvedValue(makePullIterator(happyChunks));
|
|
82
|
+
const client = mockPullClient(pull);
|
|
83
|
+
|
|
84
|
+
expect(await pullModel(client, { model: 'llama3.1:8b', insecure: true })).toSucceedWith({
|
|
85
|
+
model: 'llama3.1:8b',
|
|
86
|
+
finalStatus: 'success',
|
|
87
|
+
chunkCount: 3
|
|
88
|
+
});
|
|
89
|
+
expect(pull).toHaveBeenCalledWith({ model: 'llama3.1:8b', stream: true, insecure: true });
|
|
90
|
+
});
|
|
91
|
+
|
|
92
|
+
test('fails when the stream errors mid-pull', async () => {
|
|
93
|
+
const pull = jest.fn().mockResolvedValue(makePullIterator(happyChunks, { throwMidStream: true }));
|
|
94
|
+
const client = mockPullClient(pull);
|
|
95
|
+
|
|
96
|
+
expect(await pullModel(client, { model: 'llama3.1:8b' })).toFailWith(/stream broke mid-pull/);
|
|
97
|
+
});
|
|
98
|
+
|
|
99
|
+
test('fails when onProgress throws', async () => {
|
|
100
|
+
const pull = jest.fn().mockResolvedValue(makePullIterator(happyChunks));
|
|
101
|
+
const client = mockPullClient(pull);
|
|
102
|
+
|
|
103
|
+
expect(
|
|
104
|
+
await pullModel(client, {
|
|
105
|
+
model: 'llama3.1:8b',
|
|
106
|
+
onProgress: () => {
|
|
107
|
+
throw new Error('consumer blew up');
|
|
108
|
+
}
|
|
109
|
+
})
|
|
110
|
+
).toFailWith(/consumer blew up/);
|
|
111
|
+
});
|
|
112
|
+
|
|
113
|
+
test('an already-aborted signal cancels the pull on the first iteration', async () => {
|
|
114
|
+
// The signal is aborted before the loop begins, so the iterator's abort fires up front; the
|
|
115
|
+
// throw surfaces on the first iteration attempt (the mock checks the flag before the first yield).
|
|
116
|
+
const iterator = makePullIterator(happyChunks);
|
|
117
|
+
const pull = jest.fn().mockResolvedValue(iterator);
|
|
118
|
+
const client = mockPullClient(pull);
|
|
119
|
+
const controller = new AbortController();
|
|
120
|
+
controller.abort();
|
|
121
|
+
|
|
122
|
+
expect(await pullModel(client, { model: 'llama3.1:8b', signal: controller.signal })).toFailWith(/abort/i);
|
|
123
|
+
expect(iterator.abort).toHaveBeenCalledTimes(1);
|
|
124
|
+
});
|
|
125
|
+
|
|
126
|
+
test('a mid-stream abort cancels the pull, removes the listener, and surfaces as failure', async () => {
|
|
127
|
+
const iterator = makePullIterator(happyChunks);
|
|
128
|
+
const pull = jest.fn().mockResolvedValue(iterator);
|
|
129
|
+
const client = mockPullClient(pull);
|
|
130
|
+
const controller = new AbortController();
|
|
131
|
+
const removeSpy = jest.spyOn(controller.signal, 'removeEventListener');
|
|
132
|
+
const seen: IOllamaPullProgress[] = [];
|
|
133
|
+
|
|
134
|
+
const result = await pullModel(client, {
|
|
135
|
+
model: 'llama3.1:8b',
|
|
136
|
+
signal: controller.signal,
|
|
137
|
+
onProgress: (p) => {
|
|
138
|
+
seen.push(p);
|
|
139
|
+
if (seen.length === 1) {
|
|
140
|
+
controller.abort();
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
});
|
|
144
|
+
expect(result).toFailWith(/abort/i);
|
|
145
|
+
expect(iterator.abort).toHaveBeenCalled();
|
|
146
|
+
expect(seen).toHaveLength(1);
|
|
147
|
+
// The `finally` cleanup runs on the failure path too — no listener leak after an abort.
|
|
148
|
+
expect(removeSpy).toHaveBeenCalledWith('abort', expect.any(Function));
|
|
149
|
+
});
|
|
150
|
+
|
|
151
|
+
test('removes the abort listener after a normal completion', async () => {
|
|
152
|
+
const pull = jest.fn().mockResolvedValue(makePullIterator(happyChunks));
|
|
153
|
+
const client = mockPullClient(pull);
|
|
154
|
+
const controller = new AbortController();
|
|
155
|
+
const removeSpy = jest.spyOn(controller.signal, 'removeEventListener');
|
|
156
|
+
|
|
157
|
+
expect(await pullModel(client, { model: 'llama3.1:8b', signal: controller.signal })).toSucceed();
|
|
158
|
+
expect(removeSpy).toHaveBeenCalledWith('abort', expect.any(Function));
|
|
159
|
+
});
|
|
160
|
+
});
|
|
161
|
+
|
|
162
|
+
/**
|
|
163
|
+
* Layer 2 — a real client built with a mock `fetch` whose body is a `ReadableStream` of
|
|
164
|
+
* newline-delimited JSON. This exercises the `ollama` lib's actual JSON-lines stream parsing
|
|
165
|
+
* flowing through `pullModel`'s loop — the framing that layer 1 stubs over.
|
|
166
|
+
*/
|
|
167
|
+
function ndjsonResponse(lines: ReadonlyArray<string>): Response {
|
|
168
|
+
const bytes = new TextEncoder().encode(lines.join('\n') + '\n');
|
|
169
|
+
// Split the payload mid-stream (likely mid-line) into two reads to exercise buffer reassembly.
|
|
170
|
+
const mid = Math.floor(bytes.length / 2);
|
|
171
|
+
const parts = [bytes.slice(0, mid), bytes.slice(mid)];
|
|
172
|
+
let i = 0;
|
|
173
|
+
const stream = new ReadableStream<Uint8Array>({
|
|
174
|
+
pull(controller: ReadableStreamDefaultController<Uint8Array>): void {
|
|
175
|
+
if (i < parts.length) {
|
|
176
|
+
controller.enqueue(parts[i++]);
|
|
177
|
+
} else {
|
|
178
|
+
controller.close();
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
});
|
|
182
|
+
return new Response(stream, { status: 200 });
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
describe('pullModel (layer 2 — fetch-level JSON-lines integration)', () => {
|
|
186
|
+
test('parses a real newline-delimited /api/pull stream through the ollama lib', async () => {
|
|
187
|
+
const lines = [
|
|
188
|
+
JSON.stringify({ status: 'pulling manifest' }),
|
|
189
|
+
JSON.stringify({ status: 'pulling sha256:abc', digest: 'sha256:abc', total: 1000, completed: 1000 }),
|
|
190
|
+
JSON.stringify({ status: 'verifying sha256 digest' }),
|
|
191
|
+
JSON.stringify({ status: 'writing manifest' }),
|
|
192
|
+
JSON.stringify({ status: 'success' })
|
|
193
|
+
];
|
|
194
|
+
const fetchMock = jest.fn().mockResolvedValue(ndjsonResponse(lines));
|
|
195
|
+
const client = createOllamaClient({ fetch: fetchMock as unknown as typeof fetch }).orThrow();
|
|
196
|
+
const seen: IOllamaPullProgress[] = [];
|
|
197
|
+
|
|
198
|
+
expect(
|
|
199
|
+
await pullModel(client, { model: 'llama3.1:8b', onProgress: (p) => seen.push(p) })
|
|
200
|
+
).toSucceedAndSatisfy((r) => {
|
|
201
|
+
expect(r.finalStatus).toBe('success');
|
|
202
|
+
expect(r.chunkCount).toBe(5);
|
|
203
|
+
});
|
|
204
|
+
expect(seen.map((s) => s.status)).toEqual([
|
|
205
|
+
'pulling manifest',
|
|
206
|
+
'pulling sha256:abc',
|
|
207
|
+
'verifying sha256 digest',
|
|
208
|
+
'writing manifest',
|
|
209
|
+
'success'
|
|
210
|
+
]);
|
|
211
|
+
expect(seen[1]).toEqual({
|
|
212
|
+
status: 'pulling sha256:abc',
|
|
213
|
+
digest: 'sha256:abc',
|
|
214
|
+
total: 1000,
|
|
215
|
+
completed: 1000
|
|
216
|
+
});
|
|
217
|
+
expect(seen[0].digest).toBeUndefined();
|
|
218
|
+
expect(fetchMock.mock.calls[0][0]).toEqual(expect.stringContaining('/api/pull'));
|
|
219
|
+
});
|
|
220
|
+
});
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
{
|
|
2
|
+
"cacheVersion": "9.39.4_v22.22.1",
|
|
3
|
+
"fileVersions": [
|
|
4
|
+
[
|
|
5
|
+
"index.ts",
|
|
6
|
+
"05fc4b40b8a78e814aef1ab1b095e9c0a71fefbc69156d373fa81a7e12361318_ZMNQCLvIpoo6rWlgji8DsyX8iEI="
|
|
7
|
+
],
|
|
8
|
+
[
|
|
9
|
+
"test/unit/chatStructured.test.ts",
|
|
10
|
+
"210a1920a4481a478545cb8dc22233ba0804872efb7cb54c58b5f955f7c433b9_DrHT4s1QxSOlWC/BFUOr23Cvkyw="
|
|
11
|
+
],
|
|
12
|
+
[
|
|
13
|
+
"test/unit/fixtures/wireFixtures.ts",
|
|
14
|
+
"82200a10a73e788f06f67902b26d9aa0f1949cd530c88f4b63474f47cdfae943_ZMNQCLvIpoo6rWlgji8DsyX8iEI="
|
|
15
|
+
],
|
|
16
|
+
[
|
|
17
|
+
"test/unit/modelManagement.test.ts",
|
|
18
|
+
"1c3e9d6a564687a67b53083883a8da1b287a056612dae17957baf2d690106440_DrHT4s1QxSOlWC/BFUOr23Cvkyw="
|
|
19
|
+
],
|
|
20
|
+
[
|
|
21
|
+
"test/unit/ollamaClient.test.ts",
|
|
22
|
+
"26323402165944d087b32bc308701fa56a5b8d116b9a8967598cc6b22c70ec69_DrHT4s1QxSOlWC/BFUOr23Cvkyw="
|
|
23
|
+
],
|
|
24
|
+
[
|
|
25
|
+
"test/unit/pullModel.test.ts",
|
|
26
|
+
"d0704e73e4d053774319fa5aeaa32fce880bebc310e84718f459988a10c4040d_DrHT4s1QxSOlWC/BFUOr23Cvkyw="
|
|
27
|
+
]
|
|
28
|
+
],
|
|
29
|
+
"filesHash": "5bDbOQkjl7C2yB42DXn84Q"
|
|
30
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"fileNames":["../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es5.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.dom.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.d.ts","../../../../../common/temp/node_modules/.pnpm/typescript@5.9.3/node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../../common/temp/node_modules/.pnpm/ollama@0.6.3/node_modules/ollama/dist/shared/ollama.1bfa89da.d.ts","../../../../../common/temp/node_modules/.pnpm/ollama@0.6.3/node_modules/ollama/dist/index.d.ts","../../../../ts-utils/dist/ts-utils.d.ts","../../../../ts-json-base/dist/ts-json-base.d.ts","../../../src/index.ts","../../../../ts-utils-jest/lib/types/index.d.ts","../../../../ts-utils-jest/lib/helpers/fshelpers.d.ts","../../../../ts-utils-jest/lib/index.d.ts","../../../src/test/unit/chatstructured.test.ts","../../../src/test/unit/fixtures/wirefixtures.ts","../../../src/test/unit/modelmanagement.test.ts","../../../src/test/unit/ollamaclient.test.ts","../../../src/test/unit/pullmodel.test.ts","../../../../../common/temp/node_modules/.pnpm/@types+heft-jest@1.0.6/node_modules/@types/heft-jest/mocked.d.ts","../../../../../common/temp/node_modules/.pnpm/@jest+expect-utils@29.7.0/node_modules/@jest/expect-utils/build/index.d.ts","../../../../../common/temp/node_modules/.pnpm/chalk@4.1.2/node_modules/chalk/index.d.ts","../../../../../common/temp/node_modules/.pnpm/@sinclair+typebox@0.27.10/node_modules/@sinclair/typebox/typebox.d.ts","../../../../../common/temp/node_modules/.pnpm/@jest+schemas@29.6.3/node_modules/@jest/schemas/build/index.d.ts","../../../../../common/temp/node_modules/.pnpm/pretty-format@29.7.0/node_modules/pretty-format/build/index.d.ts","../../../../../common/temp/node_modules/.pnpm/jest-diff@29.7.0/node_modules/jest-diff/build/index.d.ts","../../../../../common/temp/node_modules/.pnpm/jest-matcher-utils@29.7.0/node_modules/jest-matcher-utils/build/index.d.ts","../../../../../common/temp/node_modules/.pnpm/expect@29.7.0/node_modules/expect/build/index.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+jest@29.5.14/node_modules/@types/jest/index.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+heft-jest@1.0.6/node_modules/@types/heft-jest/index.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/compatibility/disposable.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/compatibility/indexable.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/compatibility/iterators.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/compatibility/index.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/globals.typedarray.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/buffer.buffer.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/globals.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/web-globals/domexception.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/web-globals/events.d.ts","../../../../../common/temp/node_modules/.pnpm/buffer@6.0.3/node_modules/buffer/index.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/header.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/readable.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/file.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/fetch.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/formdata.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/connector.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/client.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/errors.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/dispatcher.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-dispatcher.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/global-origin.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool-stats.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/pool.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/handlers.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/balanced-pool.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/agent.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-interceptor.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-agent.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-client.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-pool.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/mock-errors.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/proxy-agent.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-handler.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/retry-agent.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/api.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/interceptors.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/util.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cookies.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/patch.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/websocket.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/eventsource.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/filereader.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/diagnostics-channel.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/content-type.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/cache.d.ts","../../../../../common/temp/node_modules/.pnpm/undici-types@6.21.0/node_modules/undici-types/index.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/web-globals/fetch.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/assert.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/assert/strict.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/async_hooks.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/buffer.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/child_process.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/cluster.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/console.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/constants.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/crypto.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/dgram.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/diagnostics_channel.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/dns.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/dns/promises.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/domain.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/events.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/fs.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/fs/promises.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/http.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/http2.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/https.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/inspector.generated.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/module.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/net.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/os.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/path.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/perf_hooks.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/process.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/punycode.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/querystring.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/readline.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/readline/promises.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/repl.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/sea.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/stream.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/stream/promises.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/stream/consumers.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/stream/web.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/string_decoder.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/test.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/timers.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/timers/promises.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/tls.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/trace_events.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/tty.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/url.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/util.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/v8.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/vm.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/wasi.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/worker_threads.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/zlib.d.ts","../../../../../common/temp/node_modules/.pnpm/@types+node@20.19.41/node_modules/@types/node/index.d.ts"],"fileIdsList":[[76,123],[63,76,123],[60,69,76,123],[65,68,76,123],[76,120,123],[76,122,123],[123],[76,123,128,156],[76,123,124,129,134,142,153,164],[76,123,124,125,134,142],[71,72,73,76,123],[76,123,126,165],[76,123,127,128,135,143],[76,123,128,153,161],[76,123,129,131,134,142],[76,122,123,130],[76,123,131,132],[76,123,133,134],[76,122,123,134],[76,123,134,135,136,153,164],[76,123,134,135,136,149,153,156],[76,123,131,134,137,142,153,164],[76,123,134,135,137,138,142,153,161,164],[76,123,137,139,153,161,164],[74,75,76,77,78,79,80,119,120,121,122,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],[76,123,134,140],[76,123,141,164,169],[76,123,131,134,142,153],[76,123,143],[76,123,144],[76,122,123,145],[76,120,121,122,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],[76,123,147],[76,123,148],[76,123,134,149,150],[76,123,149,151,165,167],[76,123,134,153,154,156],[76,123,155,156],[76,123,153,154],[76,123,156],[76,123,157],[76,120,123,153,158],[76,123,134,159,160],[76,123,159,160],[76,123,128,142,153,161],[76,123,162],[76,123,142,163],[76,123,137,148,164],[76,123,128,165],[76,123,153,166],[76,123,141,167],[76,123,168],[76,118,123],[76,118,123,134,136,145,153,156,164,167,169],[76,123,153,170],[61,67,76,123],[65,76,123],[62,66,76,123],[47,76,123],[64,76,123],[76,90,94,123,164],[76,90,123,153,164],[76,85,123],[76,87,90,123,161,164],[76,123,142,161],[76,123,171],[76,85,123,171],[76,87,90,123,142,164],[76,82,83,86,89,123,134,153,164],[76,90,97,123],[76,82,88,123],[76,90,111,112,123],[76,86,90,123,156,164,171],[76,111,123,171],[76,84,85,123,171],[76,90,123],[76,84,85,86,87,88,89,90,91,92,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,112,113,114,115,116,117,123],[76,90,105,123],[76,90,97,98,123],[76,88,90,98,99,123],[76,89,123],[76,82,85,90,123],[76,90,94,98,99,123],[76,94,123],[76,88,90,93,123,164],[76,82,87,90,97,123],[76,123,153],[76,85,90,111,123,169,171],[48,49,50,76,123],[49,50,51,54,76,123],[48,76,123],[51,54,56,76,123],[48,51,54,76,123],[51,54,76,123],[49,76,123],[76,123,135],[52,53,76,123]],"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":"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":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"53f6f22aa2dc89fa5bc010f32845c4d093803ab09d10aad6eaa963f140cb5914","impliedFormat":1},{"version":"8c055d9f323d99c0c9bdcd2ede2a757c60e40208a13ae0a41d00c10b027e6fe4","impliedFormat":1},"586df89824bfbddc71abd00a15624187377788ea8f10bf2d8d70f8a6ca130af4","efa383267c5cdf693c8d1ac82a21117bfffa99cb03530acd4efaf669c15451cf",{"version":"05fc4b40b8a78e814aef1ab1b095e9c0a71fefbc69156d373fa81a7e12361318","signature":"2b640419be3bc1aaa178e8409903126580ea2785ef276b293fe7b5fdc79c373a"},{"version":"ee5b2757ccf8db082239d89e4ccce947c116eccc13774bee571e054c3f21e07b","affectsGlobalScope":true},"7226b455cf19ac49ec1f7f8f16931094b58fdfe3b8cfb411c2d164d8187ab6c3","9bc445a24012b59c572f600f827de0113bcb8ff8d6bbfb650f30c504348858b0",{"version":"210a1920a4481a478545cb8dc22233ba0804872efb7cb54c58b5f955f7c433b9","signature":"526a1bdc740d8cfd8b5a7f379070acaf25a9ef496e9de3d9e95d1b200faa3d7d"},{"version":"82200a10a73e788f06f67902b26d9aa0f1949cd530c88f4b63474f47cdfae943","signature":"02749d8d4652bbcd757467381efcfb3045ac8537a8858c5f260f7094529d258a"},{"version":"1c3e9d6a564687a67b53083883a8da1b287a056612dae17957baf2d690106440","signature":"526a1bdc740d8cfd8b5a7f379070acaf25a9ef496e9de3d9e95d1b200faa3d7d"},{"version":"26323402165944d087b32bc308701fa56a5b8d116b9a8967598cc6b22c70ec69","signature":"526a1bdc740d8cfd8b5a7f379070acaf25a9ef496e9de3d9e95d1b200faa3d7d"},{"version":"d0704e73e4d053774319fa5aeaa32fce880bebc310e84718f459988a10c4040d","signature":"526a1bdc740d8cfd8b5a7f379070acaf25a9ef496e9de3d9e95d1b200faa3d7d"},{"version":"451d384cf4019e816adf1d72550d9d0d81e77061f394c8a2261b7044cfc1e793","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","impliedFormat":1},{"version":"0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","impliedFormat":1},{"version":"e1028394c1cf96d5d057ecc647e31e457b919092f882ed0c7092152b077fed9d","impliedFormat":1},{"version":"f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","impliedFormat":1},{"version":"5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","impliedFormat":1},{"version":"3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","impliedFormat":1},{"version":"ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","impliedFormat":1},{"version":"d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec","impliedFormat":1},{"version":"f8db4fea512ab759b2223b90ecbbe7dae919c02f8ce95ec03f7fb1cf757cfbeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"4c9e8e05e528f96c9a463466b04940227303bf050600f4d80d6ecaad03d7b42f","affectsGlobalScope":true,"impliedFormat":1},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"98cffbf06d6bab333473c70a893770dbe990783904002c4f1a960447b4b53dca","affectsGlobalScope":true,"impliedFormat":1},{"version":"ba481bca06f37d3f2c137ce343c7d5937029b2468f8e26111f3c9d9963d6568d","affectsGlobalScope":true,"impliedFormat":1},{"version":"6d9ef24f9a22a88e3e9b3b3d8c40ab1ddb0853f1bfbd5c843c37800138437b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"b52476feb4a0cbcb25e5931b930fc73cb6643fb1a5060bf8a3dda0eeae5b4b68","affectsGlobalScope":true,"impliedFormat":1},{"version":"e2677634fe27e87348825bb041651e22d50a613e2fdf6a4a3ade971d71bac37e","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"8c0bcd6c6b67b4b503c11e91a1fb91522ed585900eab2ab1f61bba7d7caa9d6f","impliedFormat":1},{"version":"8cd19276b6590b3ebbeeb030ac271871b9ed0afc3074ac88a94ed2449174b776","affectsGlobalScope":true,"impliedFormat":1},{"version":"696eb8d28f5949b87d894b26dc97318ef944c794a9a4e4f62360cd1d1958014b","impliedFormat":1},{"version":"3f8fa3061bd7402970b399300880d55257953ee6d3cd408722cb9ac20126460c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"68bd56c92c2bd7d2339457eb84d63e7de3bd56a69b25f3576e1568d21a162398","affectsGlobalScope":true,"impliedFormat":1},{"version":"3e93b123f7c2944969d291b35fed2af79a6e9e27fdd5faa99748a51c07c02d28","impliedFormat":1},{"version":"9d19808c8c291a9010a6c788e8532a2da70f811adb431c97520803e0ec649991","impliedFormat":1},{"version":"87aad3dd9752067dc875cfaa466fc44246451c0c560b820796bdd528e29bef40","impliedFormat":1},{"version":"4aacb0dd020eeaef65426153686cc639a78ec2885dc72ad220be1d25f1a439df","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"8db0ae9cb14d9955b14c214f34dae1b9ef2baee2fe4ce794a4cd3ac2531e3255","affectsGlobalScope":true,"impliedFormat":1},{"version":"15fc6f7512c86810273af28f224251a5a879e4261b4d4c7e532abfbfc3983134","impliedFormat":1},{"version":"58adba1a8ab2d10b54dc1dced4e41f4e7c9772cbbac40939c0dc8ce2cdb1d442","impliedFormat":1},{"version":"641942a78f9063caa5d6b777c99304b7d1dc7328076038c6d94d8a0b81fc95c1","impliedFormat":1},{"version":"2de7636e6fbb9e54a61a38bcb7505b94ec5be61197fe9e840cff629ca920c4bc","impliedFormat":1},{"version":"855cd5f7eb396f5f1ab1bc0f8580339bff77b68a770f84c6b254e319bbfd1ac7","impliedFormat":1},{"version":"5650cf3dace09e7c25d384e3e6b818b938f68f4e8de96f52d9c5a1b3db068e86","impliedFormat":1},{"version":"1354ca5c38bd3fd3836a68e0f7c9f91f172582ba30ab15bb8c075891b91502b7","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e20d899c28ca26a2a7afc98beaa69e63ff7fba0a8bc47b4e3bf3ede5e09e424","impliedFormat":1},{"version":"2d2fcaab481b31a5882065c7951255703ddbe1c0e507af56ea42d79ac3911201","impliedFormat":1},{"version":"a192fe8ec33f75edbc8d8f3ed79f768dfae11ff5735e7fe52bfa69956e46d78d","impliedFormat":1},{"version":"ca867399f7db82df981d6915bcbb2d81131d7d1ef683bc782b59f71dda59bc85","affectsGlobalScope":true,"impliedFormat":1},{"version":"372413016d17d804e1d139418aca0c68e47a83fb6669490857f4b318de8cccb3","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"b4f70ec656a11d570e1a9edce07d118cd58d9760239e2ece99306ee9dfe61d02","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"6e70e9570e98aae2b825b533aa6292b6abd542e8d9f6e9475e88e1d7ba17c866","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"085f552d005479e2e6a7311cdbbe5d8c55c497b4d19274285df161ee9684cd9c","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"007faacc9268357caa21d24169f3f3f2497af3e9241308df2d89f6e6d9bb3f2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"74cf591a0f63db318651e0e04cb55f8791385f86e987a67fd4d2eaab8191f730","impliedFormat":1},{"version":"5eab9b3dc9b34f185417342436ec3f106898da5f4801992d8ff38ab3aff346b5","impliedFormat":1},{"version":"12ed4559eba17cd977aa0db658d25c4047067444b51acfdcbf38470630642b23","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3ffabc95802521e1e4bcba4c88d8615176dc6e09111d920c7a213bdda6e1d65","impliedFormat":1},{"version":"809821b8a065e3234a55b3a9d7846231ed18d66dd749f2494c66288d890daf7f","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"c3b41e74b9a84b88b1dca61ec39eee25c0dbc8e7d519ba11bb070918cfacf656","affectsGlobalScope":true,"impliedFormat":1},{"version":"4737a9dc24d0e68b734e6cfbcea0c15a2cfafeb493485e27905f7856988c6b29","affectsGlobalScope":true,"impliedFormat":1},{"version":"36d8d3e7506b631c9582c251a2c0b8a28855af3f76719b12b534c6edf952748d","impliedFormat":1},{"version":"1ca69210cc42729e7ca97d3a9ad48f2e9cb0042bada4075b588ae5387debd318","impliedFormat":1},{"version":"f5ebe66baaf7c552cfa59d75f2bfba679f329204847db3cec385acda245e574e","impliedFormat":1},{"version":"ed59add13139f84da271cafd32e2171876b0a0af2f798d0c663e8eeb867732cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"b7c5e2ea4a9749097c347454805e933844ed207b6eefec6b7cfd418b5f5f7b28","impliedFormat":1},{"version":"b1810689b76fd473bd12cc9ee219f8e62f54a7d08019a235d07424afbf074d25","impliedFormat":1}],"root":[51,[55,59]],"options":{"allowUnreachableCode":false,"declaration":true,"declarationMap":true,"esModuleInterop":true,"experimentalDecorators":true,"inlineSources":true,"jsx":2,"module":1,"noEmitOnError":false,"outDir":"../../../lib","rootDir":"../../../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":4,"tsBuildInfoFile":"./ts_8nwakTlr.json","useUnknownInCatchVariables":false},"referencedMap":[[61,1],[64,2],[63,1],[70,3],[60,1],[69,4],[120,5],[121,5],[122,6],[76,7],[123,8],[124,9],[125,10],[71,1],[74,11],[72,1],[73,1],[126,12],[127,13],[128,14],[129,15],[130,16],[131,17],[132,17],[133,18],[134,19],[135,20],[136,21],[77,1],[75,1],[137,22],[138,23],[139,24],[171,25],[140,26],[141,27],[142,28],[143,29],[144,30],[145,31],[146,32],[147,33],[148,34],[149,35],[150,35],[151,36],[152,1],[153,37],[155,38],[154,39],[156,40],[157,41],[158,42],[159,43],[160,44],[161,45],[162,46],[163,47],[164,48],[165,49],[166,50],[167,51],[168,52],[78,1],[79,1],[80,1],[119,53],[169,54],[170,55],[81,1],[62,1],[68,56],[66,57],[67,58],[48,59],[47,1],[65,60],[45,1],[46,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[19,1],[20,1],[4,1],[21,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[36,1],[33,1],[34,1],[35,1],[37,1],[7,1],[38,1],[43,1],[44,1],[39,1],[40,1],[41,1],[42,1],[1,1],[97,61],[107,62],[96,61],[117,63],[88,64],[87,65],[116,66],[110,67],[115,68],[90,69],[104,70],[89,71],[113,72],[85,73],[84,66],[114,74],[86,75],[91,76],[92,1],[95,76],[82,1],[118,77],[108,78],[99,79],[100,80],[102,81],[98,82],[101,83],[111,66],[93,84],[94,85],[103,86],[83,87],[106,78],[105,76],[109,1],[112,88],[51,89],[55,90],[56,91],[57,92],[58,93],[59,94],[50,95],[53,96],[54,97],[52,95],[49,1]],"version":"5.9.3"}
|