@illalabs/interfaces 0.2.1 → 0.3.0-canary.9f7bb0cd
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/schemas/chatContext.d.ts +114 -45
- package/dist/schemas/chatContext.d.ts.map +1 -1
- package/dist/schemas/chatRequestBody.d.ts +366 -132
- package/dist/schemas/chatRequestBody.d.ts.map +1 -1
- package/dist/schemas/executionCheckerQueryParams.d.ts +5 -5
- package/dist/schemas/messages.d.ts +162 -55
- package/dist/schemas/messages.d.ts.map +1 -1
- package/dist/schemas/messages.js +9 -1
- package/dist/schemas/messages.js.map +1 -1
- package/dist/schemas/toolAutorouter.d.ts +6 -6
- package/dist/types/actions/inputs.d.ts +4 -3
- package/dist/types/actions/inputs.d.ts.map +1 -1
- package/dist/types/actions/tools/{swapBridgeAction.d.ts → bridgeAction.d.ts} +3 -3
- package/dist/types/actions/tools/bridgeAction.d.ts.map +1 -0
- package/dist/types/actions/tools/bridgeAction.js +2 -0
- package/dist/types/actions/tools/bridgeAction.js.map +1 -0
- package/dist/types/actions/tools/index.d.ts +6 -3
- package/dist/types/actions/tools/index.d.ts.map +1 -1
- package/dist/types/actions/tools/swapAction.d.ts +16 -0
- package/dist/types/actions/tools/swapAction.d.ts.map +1 -0
- package/dist/types/actions/tools/swapAction.js +2 -0
- package/dist/types/actions/tools/swapAction.js.map +1 -0
- package/dist/utils/constants.d.ts +2 -2
- package/dist/utils/constants.d.ts.map +1 -1
- package/dist/utils/constants.js +4 -2
- package/dist/utils/constants.js.map +1 -1
- package/package.json +1 -1
- package/dist/types/actions/tools/swapBridgeAction.d.ts.map +0 -1
- package/dist/types/actions/tools/swapBridgeAction.js +0 -2
- package/dist/types/actions/tools/swapBridgeAction.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"chatRequestBody.d.ts","sourceRoot":"","sources":["../../src/schemas/chatRequestBody.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAOxB,eAAO,MAAM,gCAAgC
|
|
1
|
+
{"version":3,"file":"chatRequestBody.d.ts","sourceRoot":"","sources":["../../src/schemas/chatRequestBody.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAOxB,eAAO,MAAM,gCAAgC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUhC,CAAC;AAEd,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOxC,CAAC"}
|
|
@@ -10,7 +10,7 @@ export declare const BaseLongPollingArgsSchema: z.ZodObject<{
|
|
|
10
10
|
fromChain?: number | undefined;
|
|
11
11
|
}>;
|
|
12
12
|
export declare const LongPollingActionRequestParamsSchema: z.ZodObject<{
|
|
13
|
-
toolName: z.ZodEnum<["
|
|
13
|
+
toolName: z.ZodEnum<["swap", "bridge", "defiSupply", "defiWithdraw"]>;
|
|
14
14
|
protocol: z.ZodString;
|
|
15
15
|
args: z.ZodObject<{
|
|
16
16
|
txHash: z.ZodString;
|
|
@@ -23,18 +23,18 @@ export declare const LongPollingActionRequestParamsSchema: z.ZodObject<{
|
|
|
23
23
|
fromChain?: number | undefined;
|
|
24
24
|
}>;
|
|
25
25
|
}, "strict", z.ZodTypeAny, {
|
|
26
|
-
|
|
26
|
+
protocol: string;
|
|
27
|
+
toolName: "defiSupply" | "defiWithdraw" | "swap" | "bridge";
|
|
27
28
|
args: {
|
|
28
29
|
txHash: string;
|
|
29
30
|
fromChain?: number | undefined;
|
|
30
31
|
};
|
|
31
|
-
protocol: string;
|
|
32
32
|
}, {
|
|
33
|
-
|
|
33
|
+
protocol: string;
|
|
34
|
+
toolName: "defiSupply" | "defiWithdraw" | "swap" | "bridge";
|
|
34
35
|
args: {
|
|
35
36
|
txHash: string;
|
|
36
37
|
fromChain?: number | undefined;
|
|
37
38
|
};
|
|
38
|
-
protocol: string;
|
|
39
39
|
}>;
|
|
40
40
|
//# sourceMappingURL=executionCheckerQueryParams.d.ts.map
|
|
@@ -2,13 +2,14 @@ import type { ModelMessage } from "@ai-sdk/provider-utils";
|
|
|
2
2
|
import type { PrepareTransactionRequestReturnType } from "viem";
|
|
3
3
|
import { z } from "zod";
|
|
4
4
|
import type { ActionError } from "../types/actions/errors.js";
|
|
5
|
+
import type { BridgeActionInput } from "../types/actions/tools/bridgeAction.js";
|
|
5
6
|
import type { DefiFetchListingsActionInput } from "../types/actions/tools/defiFetchListingsAction.js";
|
|
6
7
|
import type { DefiPositionsActionInput } from "../types/actions/tools/defiPositionsAction.js";
|
|
7
8
|
import type { DefiSupplyActionInput } from "../types/actions/tools/defiSupplyAction.js";
|
|
8
9
|
import type { DefiWithdrawActionInput } from "../types/actions/tools/defiWithdrawAction.js";
|
|
9
10
|
import type { ExchangeRateActionInput } from "../types/actions/tools/exchangeRateAction.js";
|
|
10
11
|
import type { GetWalletBalanceActionInput } from "../types/actions/tools/getWalletBalanceAction.js";
|
|
11
|
-
import type {
|
|
12
|
+
import type { SwapActionInput } from "../types/actions/tools/swapAction.js";
|
|
12
13
|
import type { TokenTransferActionInput } from "../types/actions/tools/tokenTransferAction.js";
|
|
13
14
|
export declare const ToolResultSchema: z.ZodObject<{
|
|
14
15
|
toolCallId: z.ZodString;
|
|
@@ -271,28 +272,48 @@ export declare const ToolCallPartSchema: z.ZodDiscriminatedUnion<"toolName", [z.
|
|
|
271
272
|
}>, z.ZodObject<{
|
|
272
273
|
type: z.ZodLiteral<"tool-call">;
|
|
273
274
|
toolCallId: z.ZodString;
|
|
274
|
-
toolName: z.ZodLiteral<"
|
|
275
|
-
args: z.ZodType<
|
|
275
|
+
toolName: z.ZodLiteral<"swap">;
|
|
276
|
+
args: z.ZodType<SwapActionInput>;
|
|
276
277
|
}, "strict", z.ZodTypeAny, {
|
|
277
278
|
type: "tool-call";
|
|
278
|
-
toolName: "
|
|
279
|
+
toolName: "swap";
|
|
279
280
|
toolCallId: string;
|
|
280
281
|
args: {
|
|
281
282
|
fromAddress: string;
|
|
282
|
-
fromChain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
283
283
|
fromToken: string;
|
|
284
284
|
fromAmount: string;
|
|
285
285
|
protocol: "lifi";
|
|
286
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
287
|
+
toToken?: string | undefined;
|
|
286
288
|
toAddress?: string | undefined;
|
|
289
|
+
toAmount?: string | undefined;
|
|
287
290
|
missingParameters?: string[] | undefined;
|
|
288
291
|
humanFriendlyMessage?: string | undefined;
|
|
289
|
-
|
|
292
|
+
};
|
|
293
|
+
}, {
|
|
294
|
+
type: "tool-call";
|
|
295
|
+
toolName: "swap";
|
|
296
|
+
toolCallId: string;
|
|
297
|
+
args: {
|
|
298
|
+
fromAddress: string;
|
|
299
|
+
fromToken: string;
|
|
300
|
+
fromAmount: string;
|
|
301
|
+
protocol: "lifi";
|
|
302
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
290
303
|
toToken?: string | undefined;
|
|
304
|
+
toAddress?: string | undefined;
|
|
291
305
|
toAmount?: string | undefined;
|
|
306
|
+
missingParameters?: string[] | undefined;
|
|
307
|
+
humanFriendlyMessage?: string | undefined;
|
|
292
308
|
};
|
|
293
|
-
}
|
|
309
|
+
}>, z.ZodObject<{
|
|
310
|
+
type: z.ZodLiteral<"tool-call">;
|
|
311
|
+
toolCallId: z.ZodString;
|
|
312
|
+
toolName: z.ZodLiteral<"bridge">;
|
|
313
|
+
args: z.ZodType<BridgeActionInput>;
|
|
314
|
+
}, "strict", z.ZodTypeAny, {
|
|
294
315
|
type: "tool-call";
|
|
295
|
-
toolName: "
|
|
316
|
+
toolName: "bridge";
|
|
296
317
|
toolCallId: string;
|
|
297
318
|
args: {
|
|
298
319
|
fromAddress: string;
|
|
@@ -300,12 +321,29 @@ export declare const ToolCallPartSchema: z.ZodDiscriminatedUnion<"toolName", [z.
|
|
|
300
321
|
fromToken: string;
|
|
301
322
|
fromAmount: string;
|
|
302
323
|
protocol: "lifi";
|
|
324
|
+
toChain?: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC" | undefined;
|
|
325
|
+
toToken?: string | undefined;
|
|
303
326
|
toAddress?: string | undefined;
|
|
327
|
+
toAmount?: string | undefined;
|
|
304
328
|
missingParameters?: string[] | undefined;
|
|
305
329
|
humanFriendlyMessage?: string | undefined;
|
|
330
|
+
};
|
|
331
|
+
}, {
|
|
332
|
+
type: "tool-call";
|
|
333
|
+
toolName: "bridge";
|
|
334
|
+
toolCallId: string;
|
|
335
|
+
args: {
|
|
336
|
+
fromAddress: string;
|
|
337
|
+
fromChain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
338
|
+
fromToken: string;
|
|
339
|
+
fromAmount: string;
|
|
340
|
+
protocol: "lifi";
|
|
306
341
|
toChain?: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC" | undefined;
|
|
307
342
|
toToken?: string | undefined;
|
|
343
|
+
toAddress?: string | undefined;
|
|
308
344
|
toAmount?: string | undefined;
|
|
345
|
+
missingParameters?: string[] | undefined;
|
|
346
|
+
humanFriendlyMessage?: string | undefined;
|
|
309
347
|
};
|
|
310
348
|
}>, z.ZodObject<{
|
|
311
349
|
type: z.ZodLiteral<"tool-call">;
|
|
@@ -354,10 +392,10 @@ export declare const ToolCallPartSchema: z.ZodDiscriminatedUnion<"toolName", [z.
|
|
|
354
392
|
args: {
|
|
355
393
|
address: string;
|
|
356
394
|
provider: "moralis";
|
|
357
|
-
token?: string | undefined;
|
|
358
|
-
chain?: string | undefined;
|
|
359
395
|
missingParameters?: string[] | undefined;
|
|
360
396
|
humanFriendlyMessage?: string | undefined;
|
|
397
|
+
token?: string | undefined;
|
|
398
|
+
chain?: string | undefined;
|
|
361
399
|
};
|
|
362
400
|
}, {
|
|
363
401
|
type: "tool-call";
|
|
@@ -366,10 +404,10 @@ export declare const ToolCallPartSchema: z.ZodDiscriminatedUnion<"toolName", [z.
|
|
|
366
404
|
args: {
|
|
367
405
|
address: string;
|
|
368
406
|
provider: "moralis";
|
|
369
|
-
token?: string | undefined;
|
|
370
|
-
chain?: string | undefined;
|
|
371
407
|
missingParameters?: string[] | undefined;
|
|
372
408
|
humanFriendlyMessage?: string | undefined;
|
|
409
|
+
token?: string | undefined;
|
|
410
|
+
chain?: string | undefined;
|
|
373
411
|
};
|
|
374
412
|
}>, z.ZodObject<{
|
|
375
413
|
type: z.ZodLiteral<"tool-call">;
|
|
@@ -381,8 +419,8 @@ export declare const ToolCallPartSchema: z.ZodDiscriminatedUnion<"toolName", [z.
|
|
|
381
419
|
toolName: "defiFetchListings";
|
|
382
420
|
toolCallId: string;
|
|
383
421
|
args: {
|
|
384
|
-
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
385
422
|
protocol: "aave";
|
|
423
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
386
424
|
missingParameters?: string[] | undefined;
|
|
387
425
|
humanFriendlyMessage?: string | undefined;
|
|
388
426
|
tokens?: string[] | undefined;
|
|
@@ -394,8 +432,8 @@ export declare const ToolCallPartSchema: z.ZodDiscriminatedUnion<"toolName", [z.
|
|
|
394
432
|
toolName: "defiFetchListings";
|
|
395
433
|
toolCallId: string;
|
|
396
434
|
args: {
|
|
397
|
-
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
398
435
|
protocol: "aave";
|
|
436
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
399
437
|
missingParameters?: string[] | undefined;
|
|
400
438
|
humanFriendlyMessage?: string | undefined;
|
|
401
439
|
tokens?: string[] | undefined;
|
|
@@ -412,10 +450,10 @@ export declare const ToolCallPartSchema: z.ZodDiscriminatedUnion<"toolName", [z.
|
|
|
412
450
|
toolName: "defiSupply";
|
|
413
451
|
toolCallId: string;
|
|
414
452
|
args: {
|
|
453
|
+
protocol: "aave";
|
|
415
454
|
amount: string;
|
|
416
455
|
token: string;
|
|
417
456
|
chain: string;
|
|
418
|
-
protocol: "aave";
|
|
419
457
|
userAddress: string;
|
|
420
458
|
missingParameters?: string[] | undefined;
|
|
421
459
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -425,10 +463,10 @@ export declare const ToolCallPartSchema: z.ZodDiscriminatedUnion<"toolName", [z.
|
|
|
425
463
|
toolName: "defiSupply";
|
|
426
464
|
toolCallId: string;
|
|
427
465
|
args: {
|
|
466
|
+
protocol: "aave";
|
|
428
467
|
amount: string;
|
|
429
468
|
token: string;
|
|
430
469
|
chain: string;
|
|
431
|
-
protocol: "aave";
|
|
432
470
|
userAddress: string;
|
|
433
471
|
missingParameters?: string[] | undefined;
|
|
434
472
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -443,10 +481,10 @@ export declare const ToolCallPartSchema: z.ZodDiscriminatedUnion<"toolName", [z.
|
|
|
443
481
|
toolName: "defiWithdraw";
|
|
444
482
|
toolCallId: string;
|
|
445
483
|
args: {
|
|
484
|
+
protocol: "aave";
|
|
446
485
|
amount: string;
|
|
447
486
|
token: string;
|
|
448
487
|
chain: string;
|
|
449
|
-
protocol: "aave";
|
|
450
488
|
userAddress: string;
|
|
451
489
|
missingParameters?: string[] | undefined;
|
|
452
490
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -456,10 +494,10 @@ export declare const ToolCallPartSchema: z.ZodDiscriminatedUnion<"toolName", [z.
|
|
|
456
494
|
toolName: "defiWithdraw";
|
|
457
495
|
toolCallId: string;
|
|
458
496
|
args: {
|
|
497
|
+
protocol: "aave";
|
|
459
498
|
amount: string;
|
|
460
499
|
token: string;
|
|
461
500
|
chain: string;
|
|
462
|
-
protocol: "aave";
|
|
463
501
|
userAddress: string;
|
|
464
502
|
missingParameters?: string[] | undefined;
|
|
465
503
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -474,8 +512,8 @@ export declare const ToolCallPartSchema: z.ZodDiscriminatedUnion<"toolName", [z.
|
|
|
474
512
|
toolName: "defiPositions";
|
|
475
513
|
toolCallId: string;
|
|
476
514
|
args: {
|
|
477
|
-
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
478
515
|
protocol: "aave";
|
|
516
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
479
517
|
userAddress: string;
|
|
480
518
|
missingParameters?: string[] | undefined;
|
|
481
519
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -486,8 +524,8 @@ export declare const ToolCallPartSchema: z.ZodDiscriminatedUnion<"toolName", [z.
|
|
|
486
524
|
toolName: "defiPositions";
|
|
487
525
|
toolCallId: string;
|
|
488
526
|
args: {
|
|
489
|
-
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
490
527
|
protocol: "aave";
|
|
528
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
491
529
|
userAddress: string;
|
|
492
530
|
missingParameters?: string[] | undefined;
|
|
493
531
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -555,28 +593,48 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
555
593
|
}>, z.ZodObject<{
|
|
556
594
|
type: z.ZodLiteral<"tool-call">;
|
|
557
595
|
toolCallId: z.ZodString;
|
|
558
|
-
toolName: z.ZodLiteral<"
|
|
559
|
-
args: z.ZodType<
|
|
596
|
+
toolName: z.ZodLiteral<"swap">;
|
|
597
|
+
args: z.ZodType<SwapActionInput>;
|
|
560
598
|
}, "strict", z.ZodTypeAny, {
|
|
561
599
|
type: "tool-call";
|
|
562
|
-
toolName: "
|
|
600
|
+
toolName: "swap";
|
|
563
601
|
toolCallId: string;
|
|
564
602
|
args: {
|
|
565
603
|
fromAddress: string;
|
|
566
|
-
fromChain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
567
604
|
fromToken: string;
|
|
568
605
|
fromAmount: string;
|
|
569
606
|
protocol: "lifi";
|
|
607
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
608
|
+
toToken?: string | undefined;
|
|
570
609
|
toAddress?: string | undefined;
|
|
610
|
+
toAmount?: string | undefined;
|
|
571
611
|
missingParameters?: string[] | undefined;
|
|
572
612
|
humanFriendlyMessage?: string | undefined;
|
|
573
|
-
|
|
613
|
+
};
|
|
614
|
+
}, {
|
|
615
|
+
type: "tool-call";
|
|
616
|
+
toolName: "swap";
|
|
617
|
+
toolCallId: string;
|
|
618
|
+
args: {
|
|
619
|
+
fromAddress: string;
|
|
620
|
+
fromToken: string;
|
|
621
|
+
fromAmount: string;
|
|
622
|
+
protocol: "lifi";
|
|
623
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
574
624
|
toToken?: string | undefined;
|
|
625
|
+
toAddress?: string | undefined;
|
|
575
626
|
toAmount?: string | undefined;
|
|
627
|
+
missingParameters?: string[] | undefined;
|
|
628
|
+
humanFriendlyMessage?: string | undefined;
|
|
576
629
|
};
|
|
577
|
-
}
|
|
630
|
+
}>, z.ZodObject<{
|
|
631
|
+
type: z.ZodLiteral<"tool-call">;
|
|
632
|
+
toolCallId: z.ZodString;
|
|
633
|
+
toolName: z.ZodLiteral<"bridge">;
|
|
634
|
+
args: z.ZodType<BridgeActionInput>;
|
|
635
|
+
}, "strict", z.ZodTypeAny, {
|
|
578
636
|
type: "tool-call";
|
|
579
|
-
toolName: "
|
|
637
|
+
toolName: "bridge";
|
|
580
638
|
toolCallId: string;
|
|
581
639
|
args: {
|
|
582
640
|
fromAddress: string;
|
|
@@ -584,12 +642,29 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
584
642
|
fromToken: string;
|
|
585
643
|
fromAmount: string;
|
|
586
644
|
protocol: "lifi";
|
|
645
|
+
toChain?: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC" | undefined;
|
|
646
|
+
toToken?: string | undefined;
|
|
587
647
|
toAddress?: string | undefined;
|
|
648
|
+
toAmount?: string | undefined;
|
|
588
649
|
missingParameters?: string[] | undefined;
|
|
589
650
|
humanFriendlyMessage?: string | undefined;
|
|
651
|
+
};
|
|
652
|
+
}, {
|
|
653
|
+
type: "tool-call";
|
|
654
|
+
toolName: "bridge";
|
|
655
|
+
toolCallId: string;
|
|
656
|
+
args: {
|
|
657
|
+
fromAddress: string;
|
|
658
|
+
fromChain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
659
|
+
fromToken: string;
|
|
660
|
+
fromAmount: string;
|
|
661
|
+
protocol: "lifi";
|
|
590
662
|
toChain?: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC" | undefined;
|
|
591
663
|
toToken?: string | undefined;
|
|
664
|
+
toAddress?: string | undefined;
|
|
592
665
|
toAmount?: string | undefined;
|
|
666
|
+
missingParameters?: string[] | undefined;
|
|
667
|
+
humanFriendlyMessage?: string | undefined;
|
|
593
668
|
};
|
|
594
669
|
}>, z.ZodObject<{
|
|
595
670
|
type: z.ZodLiteral<"tool-call">;
|
|
@@ -638,10 +713,10 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
638
713
|
args: {
|
|
639
714
|
address: string;
|
|
640
715
|
provider: "moralis";
|
|
641
|
-
token?: string | undefined;
|
|
642
|
-
chain?: string | undefined;
|
|
643
716
|
missingParameters?: string[] | undefined;
|
|
644
717
|
humanFriendlyMessage?: string | undefined;
|
|
718
|
+
token?: string | undefined;
|
|
719
|
+
chain?: string | undefined;
|
|
645
720
|
};
|
|
646
721
|
}, {
|
|
647
722
|
type: "tool-call";
|
|
@@ -650,10 +725,10 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
650
725
|
args: {
|
|
651
726
|
address: string;
|
|
652
727
|
provider: "moralis";
|
|
653
|
-
token?: string | undefined;
|
|
654
|
-
chain?: string | undefined;
|
|
655
728
|
missingParameters?: string[] | undefined;
|
|
656
729
|
humanFriendlyMessage?: string | undefined;
|
|
730
|
+
token?: string | undefined;
|
|
731
|
+
chain?: string | undefined;
|
|
657
732
|
};
|
|
658
733
|
}>, z.ZodObject<{
|
|
659
734
|
type: z.ZodLiteral<"tool-call">;
|
|
@@ -665,8 +740,8 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
665
740
|
toolName: "defiFetchListings";
|
|
666
741
|
toolCallId: string;
|
|
667
742
|
args: {
|
|
668
|
-
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
669
743
|
protocol: "aave";
|
|
744
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
670
745
|
missingParameters?: string[] | undefined;
|
|
671
746
|
humanFriendlyMessage?: string | undefined;
|
|
672
747
|
tokens?: string[] | undefined;
|
|
@@ -678,8 +753,8 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
678
753
|
toolName: "defiFetchListings";
|
|
679
754
|
toolCallId: string;
|
|
680
755
|
args: {
|
|
681
|
-
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
682
756
|
protocol: "aave";
|
|
757
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
683
758
|
missingParameters?: string[] | undefined;
|
|
684
759
|
humanFriendlyMessage?: string | undefined;
|
|
685
760
|
tokens?: string[] | undefined;
|
|
@@ -696,10 +771,10 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
696
771
|
toolName: "defiSupply";
|
|
697
772
|
toolCallId: string;
|
|
698
773
|
args: {
|
|
774
|
+
protocol: "aave";
|
|
699
775
|
amount: string;
|
|
700
776
|
token: string;
|
|
701
777
|
chain: string;
|
|
702
|
-
protocol: "aave";
|
|
703
778
|
userAddress: string;
|
|
704
779
|
missingParameters?: string[] | undefined;
|
|
705
780
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -709,10 +784,10 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
709
784
|
toolName: "defiSupply";
|
|
710
785
|
toolCallId: string;
|
|
711
786
|
args: {
|
|
787
|
+
protocol: "aave";
|
|
712
788
|
amount: string;
|
|
713
789
|
token: string;
|
|
714
790
|
chain: string;
|
|
715
|
-
protocol: "aave";
|
|
716
791
|
userAddress: string;
|
|
717
792
|
missingParameters?: string[] | undefined;
|
|
718
793
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -727,10 +802,10 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
727
802
|
toolName: "defiWithdraw";
|
|
728
803
|
toolCallId: string;
|
|
729
804
|
args: {
|
|
805
|
+
protocol: "aave";
|
|
730
806
|
amount: string;
|
|
731
807
|
token: string;
|
|
732
808
|
chain: string;
|
|
733
|
-
protocol: "aave";
|
|
734
809
|
userAddress: string;
|
|
735
810
|
missingParameters?: string[] | undefined;
|
|
736
811
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -740,10 +815,10 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
740
815
|
toolName: "defiWithdraw";
|
|
741
816
|
toolCallId: string;
|
|
742
817
|
args: {
|
|
818
|
+
protocol: "aave";
|
|
743
819
|
amount: string;
|
|
744
820
|
token: string;
|
|
745
821
|
chain: string;
|
|
746
|
-
protocol: "aave";
|
|
747
822
|
userAddress: string;
|
|
748
823
|
missingParameters?: string[] | undefined;
|
|
749
824
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -758,8 +833,8 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
758
833
|
toolName: "defiPositions";
|
|
759
834
|
toolCallId: string;
|
|
760
835
|
args: {
|
|
761
|
-
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
762
836
|
protocol: "aave";
|
|
837
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
763
838
|
userAddress: string;
|
|
764
839
|
missingParameters?: string[] | undefined;
|
|
765
840
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -770,8 +845,8 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
770
845
|
toolName: "defiPositions";
|
|
771
846
|
toolCallId: string;
|
|
772
847
|
args: {
|
|
773
|
-
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
774
848
|
protocol: "aave";
|
|
849
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
775
850
|
userAddress: string;
|
|
776
851
|
missingParameters?: string[] | undefined;
|
|
777
852
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -849,20 +924,36 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
849
924
|
};
|
|
850
925
|
} | {
|
|
851
926
|
type: "tool-call";
|
|
852
|
-
toolName: "
|
|
927
|
+
toolName: "swap";
|
|
853
928
|
toolCallId: string;
|
|
854
929
|
args: {
|
|
855
930
|
fromAddress: string;
|
|
856
|
-
fromChain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
857
931
|
fromToken: string;
|
|
858
932
|
fromAmount: string;
|
|
859
933
|
protocol: "lifi";
|
|
934
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
935
|
+
toToken?: string | undefined;
|
|
860
936
|
toAddress?: string | undefined;
|
|
937
|
+
toAmount?: string | undefined;
|
|
861
938
|
missingParameters?: string[] | undefined;
|
|
862
939
|
humanFriendlyMessage?: string | undefined;
|
|
940
|
+
};
|
|
941
|
+
} | {
|
|
942
|
+
type: "tool-call";
|
|
943
|
+
toolName: "bridge";
|
|
944
|
+
toolCallId: string;
|
|
945
|
+
args: {
|
|
946
|
+
fromAddress: string;
|
|
947
|
+
fromChain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
948
|
+
fromToken: string;
|
|
949
|
+
fromAmount: string;
|
|
950
|
+
protocol: "lifi";
|
|
863
951
|
toChain?: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC" | undefined;
|
|
864
952
|
toToken?: string | undefined;
|
|
953
|
+
toAddress?: string | undefined;
|
|
865
954
|
toAmount?: string | undefined;
|
|
955
|
+
missingParameters?: string[] | undefined;
|
|
956
|
+
humanFriendlyMessage?: string | undefined;
|
|
866
957
|
};
|
|
867
958
|
} | {
|
|
868
959
|
type: "tool-call";
|
|
@@ -886,18 +977,18 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
886
977
|
args: {
|
|
887
978
|
address: string;
|
|
888
979
|
provider: "moralis";
|
|
889
|
-
token?: string | undefined;
|
|
890
|
-
chain?: string | undefined;
|
|
891
980
|
missingParameters?: string[] | undefined;
|
|
892
981
|
humanFriendlyMessage?: string | undefined;
|
|
982
|
+
token?: string | undefined;
|
|
983
|
+
chain?: string | undefined;
|
|
893
984
|
};
|
|
894
985
|
} | {
|
|
895
986
|
type: "tool-call";
|
|
896
987
|
toolName: "defiFetchListings";
|
|
897
988
|
toolCallId: string;
|
|
898
989
|
args: {
|
|
899
|
-
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
900
990
|
protocol: "aave";
|
|
991
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
901
992
|
missingParameters?: string[] | undefined;
|
|
902
993
|
humanFriendlyMessage?: string | undefined;
|
|
903
994
|
tokens?: string[] | undefined;
|
|
@@ -909,10 +1000,10 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
909
1000
|
toolName: "defiSupply";
|
|
910
1001
|
toolCallId: string;
|
|
911
1002
|
args: {
|
|
1003
|
+
protocol: "aave";
|
|
912
1004
|
amount: string;
|
|
913
1005
|
token: string;
|
|
914
1006
|
chain: string;
|
|
915
|
-
protocol: "aave";
|
|
916
1007
|
userAddress: string;
|
|
917
1008
|
missingParameters?: string[] | undefined;
|
|
918
1009
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -922,10 +1013,10 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
922
1013
|
toolName: "defiWithdraw";
|
|
923
1014
|
toolCallId: string;
|
|
924
1015
|
args: {
|
|
1016
|
+
protocol: "aave";
|
|
925
1017
|
amount: string;
|
|
926
1018
|
token: string;
|
|
927
1019
|
chain: string;
|
|
928
|
-
protocol: "aave";
|
|
929
1020
|
userAddress: string;
|
|
930
1021
|
missingParameters?: string[] | undefined;
|
|
931
1022
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -935,8 +1026,8 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
935
1026
|
toolName: "defiPositions";
|
|
936
1027
|
toolCallId: string;
|
|
937
1028
|
args: {
|
|
938
|
-
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
939
1029
|
protocol: "aave";
|
|
1030
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
940
1031
|
userAddress: string;
|
|
941
1032
|
missingParameters?: string[] | undefined;
|
|
942
1033
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -980,20 +1071,36 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
980
1071
|
};
|
|
981
1072
|
} | {
|
|
982
1073
|
type: "tool-call";
|
|
983
|
-
toolName: "
|
|
1074
|
+
toolName: "swap";
|
|
984
1075
|
toolCallId: string;
|
|
985
1076
|
args: {
|
|
986
1077
|
fromAddress: string;
|
|
987
|
-
fromChain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
988
1078
|
fromToken: string;
|
|
989
1079
|
fromAmount: string;
|
|
990
1080
|
protocol: "lifi";
|
|
1081
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
1082
|
+
toToken?: string | undefined;
|
|
991
1083
|
toAddress?: string | undefined;
|
|
1084
|
+
toAmount?: string | undefined;
|
|
992
1085
|
missingParameters?: string[] | undefined;
|
|
993
1086
|
humanFriendlyMessage?: string | undefined;
|
|
1087
|
+
};
|
|
1088
|
+
} | {
|
|
1089
|
+
type: "tool-call";
|
|
1090
|
+
toolName: "bridge";
|
|
1091
|
+
toolCallId: string;
|
|
1092
|
+
args: {
|
|
1093
|
+
fromAddress: string;
|
|
1094
|
+
fromChain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
1095
|
+
fromToken: string;
|
|
1096
|
+
fromAmount: string;
|
|
1097
|
+
protocol: "lifi";
|
|
994
1098
|
toChain?: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC" | undefined;
|
|
995
1099
|
toToken?: string | undefined;
|
|
1100
|
+
toAddress?: string | undefined;
|
|
996
1101
|
toAmount?: string | undefined;
|
|
1102
|
+
missingParameters?: string[] | undefined;
|
|
1103
|
+
humanFriendlyMessage?: string | undefined;
|
|
997
1104
|
};
|
|
998
1105
|
} | {
|
|
999
1106
|
type: "tool-call";
|
|
@@ -1017,18 +1124,18 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
1017
1124
|
args: {
|
|
1018
1125
|
address: string;
|
|
1019
1126
|
provider: "moralis";
|
|
1020
|
-
token?: string | undefined;
|
|
1021
|
-
chain?: string | undefined;
|
|
1022
1127
|
missingParameters?: string[] | undefined;
|
|
1023
1128
|
humanFriendlyMessage?: string | undefined;
|
|
1129
|
+
token?: string | undefined;
|
|
1130
|
+
chain?: string | undefined;
|
|
1024
1131
|
};
|
|
1025
1132
|
} | {
|
|
1026
1133
|
type: "tool-call";
|
|
1027
1134
|
toolName: "defiFetchListings";
|
|
1028
1135
|
toolCallId: string;
|
|
1029
1136
|
args: {
|
|
1030
|
-
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
1031
1137
|
protocol: "aave";
|
|
1138
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
1032
1139
|
missingParameters?: string[] | undefined;
|
|
1033
1140
|
humanFriendlyMessage?: string | undefined;
|
|
1034
1141
|
tokens?: string[] | undefined;
|
|
@@ -1040,10 +1147,10 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
1040
1147
|
toolName: "defiSupply";
|
|
1041
1148
|
toolCallId: string;
|
|
1042
1149
|
args: {
|
|
1150
|
+
protocol: "aave";
|
|
1043
1151
|
amount: string;
|
|
1044
1152
|
token: string;
|
|
1045
1153
|
chain: string;
|
|
1046
|
-
protocol: "aave";
|
|
1047
1154
|
userAddress: string;
|
|
1048
1155
|
missingParameters?: string[] | undefined;
|
|
1049
1156
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -1053,10 +1160,10 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
1053
1160
|
toolName: "defiWithdraw";
|
|
1054
1161
|
toolCallId: string;
|
|
1055
1162
|
args: {
|
|
1163
|
+
protocol: "aave";
|
|
1056
1164
|
amount: string;
|
|
1057
1165
|
token: string;
|
|
1058
1166
|
chain: string;
|
|
1059
|
-
protocol: "aave";
|
|
1060
1167
|
userAddress: string;
|
|
1061
1168
|
missingParameters?: string[] | undefined;
|
|
1062
1169
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -1066,8 +1173,8 @@ export declare const CoreMessageSchema: z.ZodObject<{
|
|
|
1066
1173
|
toolName: "defiPositions";
|
|
1067
1174
|
toolCallId: string;
|
|
1068
1175
|
args: {
|
|
1069
|
-
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
1070
1176
|
protocol: "aave";
|
|
1177
|
+
chain: "Ethereum" | "Polygon" | "Optimism" | "Base" | "Arbitrum" | "Avalanche" | "BSC";
|
|
1071
1178
|
userAddress: string;
|
|
1072
1179
|
missingParameters?: string[] | undefined;
|
|
1073
1180
|
humanFriendlyMessage?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../src/schemas/messages.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAC3D,OAAO,KAAK,EAAE,mCAAmC,EAAE,MAAM,MAAM,CAAC;AAChE,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAExB,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,4BAA4B,CAAC;AAC9D,OAAO,KAAK,EAAE,4BAA4B,EAAE,MAAM,mDAAmD,CAAC;AACtG,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,+CAA+C,CAAC;AAC9F,OAAO,KAAK,EAAE,qBAAqB,EAAE,MAAM,4CAA4C,CAAC;AACxF,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,8CAA8C,CAAC;AAC5F,OAAO,KAAK,EAAE,uBAAuB,EAAE,MAAM,8CAA8C,CAAC;AAC5F,OAAO,KAAK,EAAE,2BAA2B,EAAE,MAAM,kDAAkD,CAAC;AACpG,OAAO,KAAK,EAAE,
|
|
1
|
+
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../src/schemas/messages.ts"],"names":[],"mappings":"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"}
|