@letta-ai/letta-client 1.0.0-alpha.21 → 1.0.0-alpha.22
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/CHANGELOG.md +13 -0
- package/package.json +1 -1
- package/resources/agents/agents.d.mts +2 -2
- package/resources/agents/agents.d.mts.map +1 -1
- package/resources/agents/agents.d.ts +2 -2
- package/resources/agents/agents.d.ts.map +1 -1
- package/resources/agents/agents.js.map +1 -1
- package/resources/agents/agents.mjs.map +1 -1
- package/resources/agents/folders.d.mts +2 -2
- package/resources/agents/folders.d.mts.map +1 -1
- package/resources/agents/folders.d.ts +2 -2
- package/resources/agents/folders.d.ts.map +1 -1
- package/resources/agents/index.d.mts +1 -1
- package/resources/agents/index.d.mts.map +1 -1
- package/resources/agents/index.d.ts +1 -1
- package/resources/agents/index.d.ts.map +1 -1
- package/resources/agents/index.js.map +1 -1
- package/resources/agents/index.mjs.map +1 -1
- package/resources/agents/messages.d.mts +2 -77
- package/resources/agents/messages.d.mts.map +1 -1
- package/resources/agents/messages.d.ts +2 -77
- package/resources/agents/messages.d.ts.map +1 -1
- package/resources/agents/messages.js +0 -7
- package/resources/agents/messages.js.map +1 -1
- package/resources/agents/messages.mjs +0 -7
- package/resources/agents/messages.mjs.map +1 -1
- package/resources/mcp-servers/mcp-servers.d.mts +39 -201
- package/resources/mcp-servers/mcp-servers.d.mts.map +1 -1
- package/resources/mcp-servers/mcp-servers.d.ts +39 -201
- package/resources/mcp-servers/mcp-servers.d.ts.map +1 -1
- package/resources/mcp-servers/mcp-servers.js.map +1 -1
- package/resources/mcp-servers/mcp-servers.mjs.map +1 -1
- package/src/resources/agents/agents.ts +0 -4
- package/src/resources/agents/folders.ts +2 -2
- package/src/resources/agents/index.ts +0 -2
- package/src/resources/agents/messages.ts +1 -115
- package/src/resources/mcp-servers/mcp-servers.ts +39 -231
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -42,10 +42,6 @@ export declare class McpServers extends APIResource {
|
|
|
42
42
|
* Create a new SSE MCP server
|
|
43
43
|
*/
|
|
44
44
|
export interface CreateSseMcpServer {
|
|
45
|
-
/**
|
|
46
|
-
* The name of the server
|
|
47
|
-
*/
|
|
48
|
-
server_name: string;
|
|
49
45
|
/**
|
|
50
46
|
* The URL of the server
|
|
51
47
|
*/
|
|
@@ -64,7 +60,7 @@ export interface CreateSseMcpServer {
|
|
|
64
60
|
custom_headers?: {
|
|
65
61
|
[key: string]: string;
|
|
66
62
|
} | null;
|
|
67
|
-
|
|
63
|
+
mcp_server_type?: 'sse';
|
|
68
64
|
}
|
|
69
65
|
/**
|
|
70
66
|
* Create a new Stdio MCP server
|
|
@@ -78,26 +74,18 @@ export interface CreateStdioMcpServer {
|
|
|
78
74
|
* The command to run (MCP 'local' client will run this command)
|
|
79
75
|
*/
|
|
80
76
|
command: string;
|
|
81
|
-
/**
|
|
82
|
-
* The name of the server
|
|
83
|
-
*/
|
|
84
|
-
server_name: string;
|
|
85
77
|
/**
|
|
86
78
|
* Environment variables to set
|
|
87
79
|
*/
|
|
88
80
|
env?: {
|
|
89
81
|
[key: string]: string;
|
|
90
82
|
} | null;
|
|
91
|
-
|
|
83
|
+
mcp_server_type?: 'stdio';
|
|
92
84
|
}
|
|
93
85
|
/**
|
|
94
86
|
* Create a new Streamable HTTP MCP server
|
|
95
87
|
*/
|
|
96
88
|
export interface CreateStreamableHTTPMcpServer {
|
|
97
|
-
/**
|
|
98
|
-
* The name of the server
|
|
99
|
-
*/
|
|
100
|
-
server_name: string;
|
|
101
89
|
/**
|
|
102
90
|
* The URL of the server
|
|
103
91
|
*/
|
|
@@ -116,7 +104,7 @@ export interface CreateStreamableHTTPMcpServer {
|
|
|
116
104
|
custom_headers?: {
|
|
117
105
|
[key: string]: string;
|
|
118
106
|
} | null;
|
|
119
|
-
|
|
107
|
+
mcp_server_type?: 'streamable_http';
|
|
120
108
|
}
|
|
121
109
|
/**
|
|
122
110
|
* Request to execute an MCP tool by IDs.
|
|
@@ -134,7 +122,7 @@ export interface McpToolExecuteRequest {
|
|
|
134
122
|
*/
|
|
135
123
|
export interface SseMcpServer {
|
|
136
124
|
/**
|
|
137
|
-
* The name of the server
|
|
125
|
+
* The name of the MCP server
|
|
138
126
|
*/
|
|
139
127
|
server_name: string;
|
|
140
128
|
/**
|
|
@@ -159,7 +147,7 @@ export interface SseMcpServer {
|
|
|
159
147
|
custom_headers?: {
|
|
160
148
|
[key: string]: string;
|
|
161
149
|
} | null;
|
|
162
|
-
|
|
150
|
+
mcp_server_type?: 'sse';
|
|
163
151
|
}
|
|
164
152
|
/**
|
|
165
153
|
* A Stdio MCP server
|
|
@@ -174,7 +162,7 @@ export interface StdioMcpServer {
|
|
|
174
162
|
*/
|
|
175
163
|
command: string;
|
|
176
164
|
/**
|
|
177
|
-
* The name of the server
|
|
165
|
+
* The name of the MCP server
|
|
178
166
|
*/
|
|
179
167
|
server_name: string;
|
|
180
168
|
/**
|
|
@@ -187,14 +175,14 @@ export interface StdioMcpServer {
|
|
|
187
175
|
env?: {
|
|
188
176
|
[key: string]: string;
|
|
189
177
|
} | null;
|
|
190
|
-
|
|
178
|
+
mcp_server_type?: 'stdio';
|
|
191
179
|
}
|
|
192
180
|
/**
|
|
193
181
|
* A Streamable HTTP MCP server
|
|
194
182
|
*/
|
|
195
183
|
export interface StreamableHTTPMcpServer {
|
|
196
184
|
/**
|
|
197
|
-
* The name of the server
|
|
185
|
+
* The name of the MCP server
|
|
198
186
|
*/
|
|
199
187
|
server_name: string;
|
|
200
188
|
/**
|
|
@@ -219,7 +207,7 @@ export interface StreamableHTTPMcpServer {
|
|
|
219
207
|
custom_headers?: {
|
|
220
208
|
[key: string]: string;
|
|
221
209
|
} | null;
|
|
222
|
-
|
|
210
|
+
mcp_server_type?: 'streamable_http';
|
|
223
211
|
}
|
|
224
212
|
export interface ToolExecutionResult {
|
|
225
213
|
/**
|
|
@@ -254,9 +242,9 @@ export interface ToolExecutionResult {
|
|
|
254
242
|
*/
|
|
255
243
|
export interface UpdateSseMcpServer {
|
|
256
244
|
/**
|
|
257
|
-
* The
|
|
245
|
+
* The URL of the server
|
|
258
246
|
*/
|
|
259
|
-
|
|
247
|
+
server_url: string | null;
|
|
260
248
|
/**
|
|
261
249
|
* The name of the authentication header (e.g., 'Authorization')
|
|
262
250
|
*/
|
|
@@ -266,19 +254,12 @@ export interface UpdateSseMcpServer {
|
|
|
266
254
|
*/
|
|
267
255
|
auth_token?: string | null;
|
|
268
256
|
/**
|
|
269
|
-
* Custom headers to
|
|
257
|
+
* Custom HTTP headers to include with requests
|
|
270
258
|
*/
|
|
271
259
|
custom_headers?: {
|
|
272
260
|
[key: string]: string;
|
|
273
261
|
} | null;
|
|
274
|
-
|
|
275
|
-
* The name of the MCP server
|
|
276
|
-
*/
|
|
277
|
-
server_name?: string | null;
|
|
278
|
-
/**
|
|
279
|
-
* The URL of the SSE MCP server
|
|
280
|
-
*/
|
|
281
|
-
server_url?: string | null;
|
|
262
|
+
mcp_server_type?: 'sse';
|
|
282
263
|
}
|
|
283
264
|
/**
|
|
284
265
|
* Update schema for Stdio MCP server - all fields optional
|
|
@@ -287,30 +268,27 @@ export interface UpdateStdioMcpServer {
|
|
|
287
268
|
/**
|
|
288
269
|
* The arguments to pass to the command
|
|
289
270
|
*/
|
|
290
|
-
args
|
|
271
|
+
args: Array<string> | null;
|
|
291
272
|
/**
|
|
292
|
-
* The command to run
|
|
273
|
+
* The command to run (MCP 'local' client will run this command)
|
|
293
274
|
*/
|
|
294
|
-
command
|
|
275
|
+
command: string | null;
|
|
295
276
|
/**
|
|
296
277
|
* Environment variables to set
|
|
297
278
|
*/
|
|
298
279
|
env?: {
|
|
299
280
|
[key: string]: string;
|
|
300
281
|
} | null;
|
|
301
|
-
|
|
302
|
-
* The name of the MCP server
|
|
303
|
-
*/
|
|
304
|
-
server_name?: string | null;
|
|
282
|
+
mcp_server_type?: 'stdio';
|
|
305
283
|
}
|
|
306
284
|
/**
|
|
307
285
|
* Update schema for Streamable HTTP MCP server - all fields optional
|
|
308
286
|
*/
|
|
309
287
|
export interface UpdateStreamableHTTPMcpServer {
|
|
310
288
|
/**
|
|
311
|
-
* The
|
|
289
|
+
* The URL of the server
|
|
312
290
|
*/
|
|
313
|
-
|
|
291
|
+
server_url: string | null;
|
|
314
292
|
/**
|
|
315
293
|
* The name of the authentication header (e.g., 'Authorization')
|
|
316
294
|
*/
|
|
@@ -320,19 +298,12 @@ export interface UpdateStreamableHTTPMcpServer {
|
|
|
320
298
|
*/
|
|
321
299
|
auth_token?: string | null;
|
|
322
300
|
/**
|
|
323
|
-
* Custom headers to
|
|
301
|
+
* Custom HTTP headers to include with requests
|
|
324
302
|
*/
|
|
325
303
|
custom_headers?: {
|
|
326
304
|
[key: string]: string;
|
|
327
305
|
} | null;
|
|
328
|
-
|
|
329
|
-
* The name of the MCP server
|
|
330
|
-
*/
|
|
331
|
-
server_name?: string | null;
|
|
332
|
-
/**
|
|
333
|
-
* The URL of the Streamable HTTP MCP server
|
|
334
|
-
*/
|
|
335
|
-
server_url?: string | null;
|
|
306
|
+
mcp_server_type?: 'streamable_http';
|
|
336
307
|
}
|
|
337
308
|
/**
|
|
338
309
|
* A Stdio MCP server
|
|
@@ -348,158 +319,25 @@ export type McpServerRetrieveResponse = StdioMcpServer | SseMcpServer | Streamab
|
|
|
348
319
|
export type McpServerUpdateResponse = StdioMcpServer | SseMcpServer | StreamableHTTPMcpServer;
|
|
349
320
|
export type McpServerListResponse = Array<StdioMcpServer | SseMcpServer | StreamableHTTPMcpServer>;
|
|
350
321
|
export type McpServerRefreshResponse = unknown;
|
|
351
|
-
export
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
*/
|
|
361
|
-
command: string;
|
|
362
|
-
/**
|
|
363
|
-
* The name of the server
|
|
364
|
-
*/
|
|
365
|
-
server_name: string;
|
|
366
|
-
/**
|
|
367
|
-
* Environment variables to set
|
|
368
|
-
*/
|
|
369
|
-
env?: {
|
|
370
|
-
[key: string]: string;
|
|
371
|
-
} | null;
|
|
372
|
-
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
373
|
-
}
|
|
374
|
-
interface CreateSseMcpServer {
|
|
375
|
-
/**
|
|
376
|
-
* The name of the server
|
|
377
|
-
*/
|
|
378
|
-
server_name: string;
|
|
379
|
-
/**
|
|
380
|
-
* The URL of the server
|
|
381
|
-
*/
|
|
382
|
-
server_url: string;
|
|
383
|
-
/**
|
|
384
|
-
* The name of the authentication header (e.g., 'Authorization')
|
|
385
|
-
*/
|
|
386
|
-
auth_header?: string | null;
|
|
387
|
-
/**
|
|
388
|
-
* The authentication token or API key value
|
|
389
|
-
*/
|
|
390
|
-
auth_token?: string | null;
|
|
391
|
-
/**
|
|
392
|
-
* Custom HTTP headers to include with requests
|
|
393
|
-
*/
|
|
394
|
-
custom_headers?: {
|
|
395
|
-
[key: string]: string;
|
|
396
|
-
} | null;
|
|
397
|
-
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
398
|
-
}
|
|
399
|
-
interface CreateStreamableHTTPMcpServer {
|
|
400
|
-
/**
|
|
401
|
-
* The name of the server
|
|
402
|
-
*/
|
|
403
|
-
server_name: string;
|
|
404
|
-
/**
|
|
405
|
-
* The URL of the server
|
|
406
|
-
*/
|
|
407
|
-
server_url: string;
|
|
408
|
-
/**
|
|
409
|
-
* The name of the authentication header (e.g., 'Authorization')
|
|
410
|
-
*/
|
|
411
|
-
auth_header?: string | null;
|
|
412
|
-
/**
|
|
413
|
-
* The authentication token or API key value
|
|
414
|
-
*/
|
|
415
|
-
auth_token?: string | null;
|
|
416
|
-
/**
|
|
417
|
-
* Custom HTTP headers to include with requests
|
|
418
|
-
*/
|
|
419
|
-
custom_headers?: {
|
|
420
|
-
[key: string]: string;
|
|
421
|
-
} | null;
|
|
422
|
-
type?: 'sse' | 'stdio' | 'streamable_http';
|
|
423
|
-
}
|
|
322
|
+
export interface McpServerCreateParams {
|
|
323
|
+
/**
|
|
324
|
+
* The MCP server configuration (Stdio, SSE, or Streamable HTTP)
|
|
325
|
+
*/
|
|
326
|
+
config: CreateStdioMcpServer | CreateSseMcpServer | CreateStreamableHTTPMcpServer;
|
|
327
|
+
/**
|
|
328
|
+
* The name of the MCP server
|
|
329
|
+
*/
|
|
330
|
+
server_name: string;
|
|
424
331
|
}
|
|
425
|
-
export
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
*/
|
|
435
|
-
command?: string | null;
|
|
436
|
-
/**
|
|
437
|
-
* Environment variables to set
|
|
438
|
-
*/
|
|
439
|
-
env?: {
|
|
440
|
-
[key: string]: string;
|
|
441
|
-
} | null;
|
|
442
|
-
/**
|
|
443
|
-
* The name of the MCP server
|
|
444
|
-
*/
|
|
445
|
-
server_name?: string | null;
|
|
446
|
-
}
|
|
447
|
-
interface UpdateSseMcpServer {
|
|
448
|
-
/**
|
|
449
|
-
* The authentication token (internal)
|
|
450
|
-
*/
|
|
451
|
-
token?: string | null;
|
|
452
|
-
/**
|
|
453
|
-
* The name of the authentication header (e.g., 'Authorization')
|
|
454
|
-
*/
|
|
455
|
-
auth_header?: string | null;
|
|
456
|
-
/**
|
|
457
|
-
* The authentication token or API key value
|
|
458
|
-
*/
|
|
459
|
-
auth_token?: string | null;
|
|
460
|
-
/**
|
|
461
|
-
* Custom headers to send with requests
|
|
462
|
-
*/
|
|
463
|
-
custom_headers?: {
|
|
464
|
-
[key: string]: string;
|
|
465
|
-
} | null;
|
|
466
|
-
/**
|
|
467
|
-
* The name of the MCP server
|
|
468
|
-
*/
|
|
469
|
-
server_name?: string | null;
|
|
470
|
-
/**
|
|
471
|
-
* The URL of the SSE MCP server
|
|
472
|
-
*/
|
|
473
|
-
server_url?: string | null;
|
|
474
|
-
}
|
|
475
|
-
interface UpdateStreamableHTTPMcpServer {
|
|
476
|
-
/**
|
|
477
|
-
* The authentication token (internal)
|
|
478
|
-
*/
|
|
479
|
-
token?: string | null;
|
|
480
|
-
/**
|
|
481
|
-
* The name of the authentication header (e.g., 'Authorization')
|
|
482
|
-
*/
|
|
483
|
-
auth_header?: string | null;
|
|
484
|
-
/**
|
|
485
|
-
* The authentication token or API key value
|
|
486
|
-
*/
|
|
487
|
-
auth_token?: string | null;
|
|
488
|
-
/**
|
|
489
|
-
* Custom headers to send with requests
|
|
490
|
-
*/
|
|
491
|
-
custom_headers?: {
|
|
492
|
-
[key: string]: string;
|
|
493
|
-
} | null;
|
|
494
|
-
/**
|
|
495
|
-
* The name of the MCP server
|
|
496
|
-
*/
|
|
497
|
-
server_name?: string | null;
|
|
498
|
-
/**
|
|
499
|
-
* The URL of the Streamable HTTP MCP server
|
|
500
|
-
*/
|
|
501
|
-
server_url?: string | null;
|
|
502
|
-
}
|
|
332
|
+
export interface McpServerUpdateParams {
|
|
333
|
+
/**
|
|
334
|
+
* The MCP server configuration updates (Stdio, SSE, or Streamable HTTP)
|
|
335
|
+
*/
|
|
336
|
+
config: UpdateStdioMcpServer | UpdateSseMcpServer | UpdateStreamableHTTPMcpServer;
|
|
337
|
+
/**
|
|
338
|
+
* The name of the MCP server
|
|
339
|
+
*/
|
|
340
|
+
server_name?: string | null;
|
|
503
341
|
}
|
|
504
342
|
export interface McpServerRefreshParams {
|
|
505
343
|
agent_id?: string | null;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mcp-servers.d.mts","sourceRoot":"","sources":["../../src/resources/mcp-servers/mcp-servers.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,SAAS;OACd,KAAK,QAAQ;OACb,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,aAAa,EAAE,KAAK,EAAE;OAC9D,EAAE,UAAU,EAAE;OAEd,EAAE,cAAc,EAAE;AAGzB,qBAAa,UAAW,SAAQ,WAAW;IACzC,KAAK,EAAE,QAAQ,CAAC,KAAK,CAAoC;IAEzD;;OAEG;IACH,MAAM,CAAC,IAAI,EAAE,qBAAqB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,uBAAuB,CAAC;IAIlG;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,yBAAyB,CAAC;IAI9F;;OAEG;IACH,MAAM,CACJ,WAAW,EAAE,MAAM,EACnB,IAAI,EAAE,qBAAqB,EAC3B,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,uBAAuB,CAAC;IAItC;;OAEG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,qBAAqB,CAAC;IAIjE;;OAEG;IACH,MAAM,CAAC,WAAW,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;IAOvE;;;;;;;;;OASG;IACH,OAAO,CACL,WAAW,EAAE,MAAM,EACnB,MAAM,GAAE,sBAAsB,GAAG,IAAI,GAAG,SAAc,EACtD,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,OAAO,CAAC;CAOvB;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,
|
|
1
|
+
{"version":3,"file":"mcp-servers.d.mts","sourceRoot":"","sources":["../../src/resources/mcp-servers/mcp-servers.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,SAAS;OACd,KAAK,QAAQ;OACb,EAAE,gBAAgB,EAAE,kBAAkB,EAAE,aAAa,EAAE,KAAK,EAAE;OAC9D,EAAE,UAAU,EAAE;OAEd,EAAE,cAAc,EAAE;AAGzB,qBAAa,UAAW,SAAQ,WAAW;IACzC,KAAK,EAAE,QAAQ,CAAC,KAAK,CAAoC;IAEzD;;OAEG;IACH,MAAM,CAAC,IAAI,EAAE,qBAAqB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,uBAAuB,CAAC;IAIlG;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,yBAAyB,CAAC;IAI9F;;OAEG;IACH,MAAM,CACJ,WAAW,EAAE,MAAM,EACnB,IAAI,EAAE,qBAAqB,EAC3B,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,uBAAuB,CAAC;IAItC;;OAEG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,qBAAqB,CAAC;IAIjE;;OAEG;IACH,MAAM,CAAC,WAAW,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,IAAI,CAAC;IAOvE;;;;;;;;;OASG;IACH,OAAO,CACL,WAAW,EAAE,MAAM,EACnB,MAAM,GAAE,sBAAsB,GAAG,IAAI,GAAG,SAAc,EACtD,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,OAAO,CAAC;CAOvB;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE5B;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3B;;OAEG;IACH,cAAc,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAElD,eAAe,CAAC,EAAE,KAAK,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC;;OAEG;IACH,IAAI,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAEpB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,GAAG,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAEvC,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B;AAED;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC5C;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE5B;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3B;;OAEG;IACH,cAAc,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAElD,eAAe,CAAC,EAAE,iBAAiB,CAAC;CACrC;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,IAAI,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;CACnC;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IAEZ;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE5B;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3B;;OAEG;IACH,cAAc,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAElD,eAAe,CAAC,EAAE,KAAK,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B;;OAEG;IACH,IAAI,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAEpB;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IAEZ;;OAEG;IACH,GAAG,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAEvC,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B;AAED;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;IAEZ;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE5B;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3B;;OAEG;IACH,cAAc,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAElD,eAAe,CAAC,EAAE,iBAAiB,CAAC;CACrC;AAED,MAAM,WAAW,mBAAmB;IAClC;;OAEG;IACH,MAAM,EAAE,SAAS,GAAG,OAAO,CAAC;IAE5B;;;;OAIG;IACH,WAAW,CAAC,EAAE,SAAS,CAAC,UAAU,GAAG,IAAI,CAAC;IAE1C;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IAEtB;;OAEG;IACH,0BAA0B,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3C;;OAEG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAE9B;;OAEG;IACH,MAAM,CAAC,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;CAC/B;AAED;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAE1B;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE5B;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3B;;OAEG;IACH,cAAc,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAElD,eAAe,CAAC,EAAE,KAAK,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC;;OAEG;IACH,IAAI,EAAE,KAAK,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC;IAE3B;;OAEG;IACH,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC;IAEvB;;OAEG;IACH,GAAG,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAEvC,eAAe,CAAC,EAAE,OAAO,CAAC;CAC3B;AAED;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC5C;;OAEG;IACH,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IAE1B;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE5B;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAE3B;;OAEG;IACH,cAAc,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAE,GAAG,IAAI,CAAC;IAElD,eAAe,CAAC,EAAE,iBAAiB,CAAC;CACrC;AAED;;GAEG;AACH,MAAM,MAAM,uBAAuB,GAAG,cAAc,GAAG,YAAY,GAAG,uBAAuB,CAAC;AAE9F;;GAEG;AACH,MAAM,MAAM,yBAAyB,GAAG,cAAc,GAAG,YAAY,GAAG,uBAAuB,CAAC;AAEhG;;GAEG;AACH,MAAM,MAAM,uBAAuB,GAAG,cAAc,GAAG,YAAY,GAAG,uBAAuB,CAAC;AAE9F,MAAM,MAAM,qBAAqB,GAAG,KAAK,CAAC,cAAc,GAAG,YAAY,GAAG,uBAAuB,CAAC,CAAC;AAEnG,MAAM,MAAM,wBAAwB,GAAG,OAAO,CAAC;AAE/C,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,MAAM,EAAE,oBAAoB,GAAG,kBAAkB,GAAG,6BAA6B,CAAC;IAElF;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;CACrB;AAED,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,MAAM,EAAE,oBAAoB,GAAG,kBAAkB,GAAG,6BAA6B,CAAC;IAElF;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC7B;AAED,MAAM,WAAW,sBAAsB;IACrC,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B;AAID,MAAM,CAAC,OAAO,WAAW,UAAU,CAAC;IAClC,OAAO,EACL,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,oBAAoB,IAAI,oBAAoB,EACjD,KAAK,6BAA6B,IAAI,6BAA6B,EACnE,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,YAAY,IAAI,YAAY,EACjC,KAAK,cAAc,IAAI,cAAc,EACrC,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,mBAAmB,IAAI,mBAAmB,EAC/C,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,oBAAoB,IAAI,oBAAoB,EACjD,KAAK,6BAA6B,IAAI,6BAA6B,EACnE,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,wBAAwB,IAAI,wBAAwB,EACzD,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,sBAAsB,IAAI,sBAAsB,GACtD,CAAC;IAEF,OAAO,EACL,KAAK,IAAI,KAAK,EACd,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,aAAa,IAAI,aAAa,GACpC,CAAC;CACH"}
|