@mimicprotocol/sdk 0.0.1-rc.20 → 0.0.1-rc.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/dist/axia/types.d.ts +2 -1
- package/dist/axia/types.d.ts.map +1 -1
- package/dist/axia/validators.d.ts +278 -232
- package/dist/axia/validators.d.ts.map +1 -1
- package/dist/axia/validators.js +6 -1
- package/dist/axia/validators.js.map +1 -1
- package/dist/oracle/eip712Types.d.ts +0 -4
- package/dist/oracle/eip712Types.d.ts.map +1 -1
- package/dist/oracle/eip712Types.js +4 -7
- package/dist/oracle/eip712Types.js.map +1 -1
- package/dist/oracle/validators.d.ts +98 -98
- package/dist/registry/ConfigSigner.d.ts +1 -0
- package/dist/registry/ConfigSigner.d.ts.map +1 -1
- package/dist/registry/ConfigSigner.js +28 -11
- package/dist/registry/ConfigSigner.js.map +1 -1
- package/dist/registry/eip712Types.d.ts +25 -0
- package/dist/registry/eip712Types.d.ts.map +1 -1
- package/dist/registry/eip712Types.js +21 -1
- package/dist/registry/eip712Types.js.map +1 -1
- package/dist/registry/types.d.ts +3 -1
- package/dist/registry/types.d.ts.map +1 -1
- package/dist/registry/types.js.map +1 -1
- package/dist/registry/validators.d.ts +149 -39
- package/dist/registry/validators.d.ts.map +1 -1
- package/dist/registry/validators.js +14 -3
- package/dist/registry/validators.js.map +1 -1
- package/dist/relayer/validators.d.ts +134 -134
- package/dist/runner/validators.d.ts +66 -66
- package/dist/shared/codec/encoder.d.ts +6 -6
- package/dist/shared/eip712Types/index.d.ts +4 -0
- package/dist/shared/eip712Types/index.d.ts.map +1 -1
- package/dist/shared/eip712Types/index.js +5 -1
- package/dist/shared/eip712Types/index.js.map +1 -1
- package/dist/shared/utils/chains.d.ts +1 -0
- package/dist/shared/utils/chains.d.ts.map +1 -1
- package/dist/shared/utils/chains.js +1 -0
- package/dist/shared/utils/chains.js.map +1 -1
- package/dist/shared/utils/time.d.ts +1 -0
- package/dist/shared/utils/time.d.ts.map +1 -1
- package/dist/shared/utils/time.js +5 -0
- package/dist/shared/utils/time.js.map +1 -1
- package/dist/shared/validators/executions.d.ts +2 -2
- package/dist/shared/validators/intents.d.ts +32 -32
- package/dist/shared/validators/primitives.d.ts +2 -2
- package/package.json +1 -1
|
@@ -5,6 +5,41 @@ export declare const DeltaValidator: z.ZodEffects<z.ZodString, string, string>;
|
|
|
5
5
|
export declare const CronValidator: z.ZodEffects<z.ZodString, string, string>;
|
|
6
6
|
export declare const SolidityTypeValidator: z.ZodEffects<z.ZodString, string, string>;
|
|
7
7
|
export declare const ManifestInputTypeValidator: z.ZodEffects<z.ZodString, string, string>;
|
|
8
|
+
export declare const TokenValidator: z.ZodObject<{
|
|
9
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
10
|
+
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
11
|
+
}, "strip", z.ZodTypeAny, {
|
|
12
|
+
address: string;
|
|
13
|
+
chainId: number;
|
|
14
|
+
}, {
|
|
15
|
+
address: string;
|
|
16
|
+
chainId: number;
|
|
17
|
+
}>;
|
|
18
|
+
export declare const TokenAmountValidator: z.ZodObject<{
|
|
19
|
+
token: z.ZodObject<{
|
|
20
|
+
chainId: z.ZodEffects<z.ZodNumber, number, number>;
|
|
21
|
+
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
22
|
+
}, "strip", z.ZodTypeAny, {
|
|
23
|
+
address: string;
|
|
24
|
+
chainId: number;
|
|
25
|
+
}, {
|
|
26
|
+
address: string;
|
|
27
|
+
chainId: number;
|
|
28
|
+
}>;
|
|
29
|
+
amount: z.ZodEffects<z.ZodNumber, string, number>;
|
|
30
|
+
}, "strip", z.ZodTypeAny, {
|
|
31
|
+
token: {
|
|
32
|
+
address: string;
|
|
33
|
+
chainId: number;
|
|
34
|
+
};
|
|
35
|
+
amount: string;
|
|
36
|
+
}, {
|
|
37
|
+
token: {
|
|
38
|
+
address: string;
|
|
39
|
+
chainId: number;
|
|
40
|
+
};
|
|
41
|
+
amount: number;
|
|
42
|
+
}>;
|
|
8
43
|
export declare const EventTopicValidator: z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, "many">;
|
|
9
44
|
export declare const EventTopicsValidator: z.ZodArray<z.ZodArray<z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>, "many">, "many">;
|
|
10
45
|
export declare const CronTriggerValidator: z.ZodObject<{
|
|
@@ -153,11 +188,11 @@ export declare const UserAuthenticationValidator: z.ZodObject<{
|
|
|
153
188
|
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
154
189
|
token: z.ZodString;
|
|
155
190
|
}, "strip", z.ZodTypeAny, {
|
|
156
|
-
address: string;
|
|
157
191
|
token: string;
|
|
158
|
-
}, {
|
|
159
192
|
address: string;
|
|
193
|
+
}, {
|
|
160
194
|
token: string;
|
|
195
|
+
address: string;
|
|
161
196
|
}>;
|
|
162
197
|
export declare const UserNonceRequestValidator: z.ZodObject<{
|
|
163
198
|
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -170,11 +205,11 @@ export declare const UserNonceValidator: z.ZodObject<{
|
|
|
170
205
|
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
171
206
|
nonce: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
172
207
|
}, "strip", z.ZodTypeAny, {
|
|
173
|
-
address: string;
|
|
174
208
|
nonce: string;
|
|
175
|
-
}, {
|
|
176
209
|
address: string;
|
|
210
|
+
}, {
|
|
177
211
|
nonce: string;
|
|
212
|
+
address: string;
|
|
178
213
|
}>;
|
|
179
214
|
export declare const UserApiKeyValidator: z.ZodObject<{
|
|
180
215
|
address: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
@@ -197,8 +232,8 @@ export declare const UserTokenValidator: z.ZodObject<{
|
|
|
197
232
|
logo: z.ZodString;
|
|
198
233
|
}, "strip", z.ZodTypeAny, {
|
|
199
234
|
symbol: string;
|
|
200
|
-
chainId: number;
|
|
201
235
|
address: string;
|
|
236
|
+
chainId: number;
|
|
202
237
|
balance: string;
|
|
203
238
|
decimals: number;
|
|
204
239
|
allowance: string;
|
|
@@ -206,8 +241,8 @@ export declare const UserTokenValidator: z.ZodObject<{
|
|
|
206
241
|
logo: string;
|
|
207
242
|
}, {
|
|
208
243
|
symbol: string;
|
|
209
|
-
chainId: number;
|
|
210
244
|
address: string;
|
|
245
|
+
chainId: number;
|
|
211
246
|
balance: string;
|
|
212
247
|
decimals: number;
|
|
213
248
|
allowance: string;
|
|
@@ -225,8 +260,8 @@ export declare const UserTokensValidator: z.ZodArray<z.ZodObject<{
|
|
|
225
260
|
logo: z.ZodString;
|
|
226
261
|
}, "strip", z.ZodTypeAny, {
|
|
227
262
|
symbol: string;
|
|
228
|
-
chainId: number;
|
|
229
263
|
address: string;
|
|
264
|
+
chainId: number;
|
|
230
265
|
balance: string;
|
|
231
266
|
decimals: number;
|
|
232
267
|
allowance: string;
|
|
@@ -234,8 +269,8 @@ export declare const UserTokensValidator: z.ZodArray<z.ZodObject<{
|
|
|
234
269
|
logo: string;
|
|
235
270
|
}, {
|
|
236
271
|
symbol: string;
|
|
237
|
-
chainId: number;
|
|
238
272
|
address: string;
|
|
273
|
+
chainId: number;
|
|
239
274
|
balance: string;
|
|
240
275
|
decimals: number;
|
|
241
276
|
allowance: string;
|
|
@@ -265,14 +300,14 @@ export declare const BalanceValidator: z.ZodObject<{
|
|
|
265
300
|
description: z.ZodString;
|
|
266
301
|
createdAt: z.ZodDate;
|
|
267
302
|
}, "strip", z.ZodTypeAny, {
|
|
268
|
-
address: string;
|
|
269
303
|
amount: number;
|
|
304
|
+
address: string;
|
|
270
305
|
createdAt: Date;
|
|
271
306
|
description: string;
|
|
272
307
|
expiresAt?: Date | undefined;
|
|
273
308
|
}, {
|
|
274
|
-
address: string;
|
|
275
309
|
amount: number;
|
|
310
|
+
address: string;
|
|
276
311
|
createdAt: Date;
|
|
277
312
|
description: string;
|
|
278
313
|
expiresAt?: Date | undefined;
|
|
@@ -284,14 +319,14 @@ export declare const BalancesValidator: z.ZodArray<z.ZodObject<{
|
|
|
284
319
|
description: z.ZodString;
|
|
285
320
|
createdAt: z.ZodDate;
|
|
286
321
|
}, "strip", z.ZodTypeAny, {
|
|
287
|
-
address: string;
|
|
288
322
|
amount: number;
|
|
323
|
+
address: string;
|
|
289
324
|
createdAt: Date;
|
|
290
325
|
description: string;
|
|
291
326
|
expiresAt?: Date | undefined;
|
|
292
327
|
}, {
|
|
293
|
-
address: string;
|
|
294
328
|
amount: number;
|
|
329
|
+
address: string;
|
|
295
330
|
createdAt: Date;
|
|
296
331
|
description: string;
|
|
297
332
|
expiresAt?: Date | undefined;
|
|
@@ -311,12 +346,12 @@ export declare const BalancesCreateRequestValidator: z.ZodObject<{
|
|
|
311
346
|
amount: z.ZodNumber;
|
|
312
347
|
description: z.ZodString;
|
|
313
348
|
}, "strip", z.ZodTypeAny, {
|
|
314
|
-
address: string;
|
|
315
349
|
amount: number;
|
|
350
|
+
address: string;
|
|
316
351
|
description: string;
|
|
317
352
|
}, {
|
|
318
|
-
address: string;
|
|
319
353
|
amount: number;
|
|
354
|
+
address: string;
|
|
320
355
|
description: string;
|
|
321
356
|
}>;
|
|
322
357
|
export declare const TasksGetRequestValidator: z.ZodObject<{
|
|
@@ -396,7 +431,7 @@ export declare const ConfigTypedDataFieldValidator: z.ZodObject<{
|
|
|
396
431
|
name: string;
|
|
397
432
|
type: string;
|
|
398
433
|
}>;
|
|
399
|
-
export declare const ConfigTypesValidator: z.ZodObject<{
|
|
434
|
+
export declare const ConfigTypesValidator: z.ZodIntersection<z.ZodObject<{
|
|
400
435
|
Input: z.ZodArray<z.ZodObject<{
|
|
401
436
|
name: z.ZodString;
|
|
402
437
|
type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -409,7 +444,7 @@ export declare const ConfigTypesValidator: z.ZodObject<{
|
|
|
409
444
|
}>, "many">;
|
|
410
445
|
Trigger: z.ZodUnion<[z.ZodTuple<[z.ZodTypeAny, ...z.ZodTypeAny[]], null>, z.ZodTuple<[z.ZodTypeAny, ...z.ZodTypeAny[]], null>]>;
|
|
411
446
|
Config: z.ZodTuple<[z.ZodTypeAny, ...z.ZodTypeAny[]], null>;
|
|
412
|
-
}, "
|
|
447
|
+
}, "strip", z.ZodTypeAny, {
|
|
413
448
|
Input: {
|
|
414
449
|
name: string;
|
|
415
450
|
type: string;
|
|
@@ -423,9 +458,18 @@ export declare const ConfigTypesValidator: z.ZodObject<{
|
|
|
423
458
|
}[];
|
|
424
459
|
Trigger: [any, ...any[]];
|
|
425
460
|
Config: [any, ...any[]];
|
|
426
|
-
}
|
|
461
|
+
}>, z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
462
|
+
name: z.ZodString;
|
|
463
|
+
type: z.ZodString;
|
|
464
|
+
}, "strip", z.ZodTypeAny, {
|
|
465
|
+
name: string;
|
|
466
|
+
type: string;
|
|
467
|
+
}, {
|
|
468
|
+
name: string;
|
|
469
|
+
type: string;
|
|
470
|
+
}>, "many">>>;
|
|
427
471
|
export declare const ConfigTypedDataValidator: z.ZodObject<{
|
|
428
|
-
types: z.ZodObject<{
|
|
472
|
+
types: z.ZodIntersection<z.ZodObject<{
|
|
429
473
|
Input: z.ZodArray<z.ZodObject<{
|
|
430
474
|
name: z.ZodString;
|
|
431
475
|
type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -438,7 +482,7 @@ export declare const ConfigTypedDataValidator: z.ZodObject<{
|
|
|
438
482
|
}>, "many">;
|
|
439
483
|
Trigger: z.ZodUnion<[z.ZodTuple<[z.ZodTypeAny, ...z.ZodTypeAny[]], null>, z.ZodTuple<[z.ZodTypeAny, ...z.ZodTypeAny[]], null>]>;
|
|
440
484
|
Config: z.ZodTuple<[z.ZodTypeAny, ...z.ZodTypeAny[]], null>;
|
|
441
|
-
}, "
|
|
485
|
+
}, "strip", z.ZodTypeAny, {
|
|
442
486
|
Input: {
|
|
443
487
|
name: string;
|
|
444
488
|
type: string;
|
|
@@ -452,7 +496,16 @@ export declare const ConfigTypedDataValidator: z.ZodObject<{
|
|
|
452
496
|
}[];
|
|
453
497
|
Trigger: [any, ...any[]];
|
|
454
498
|
Config: [any, ...any[]];
|
|
455
|
-
}
|
|
499
|
+
}>, z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
500
|
+
name: z.ZodString;
|
|
501
|
+
type: z.ZodString;
|
|
502
|
+
}, "strip", z.ZodTypeAny, {
|
|
503
|
+
name: string;
|
|
504
|
+
type: string;
|
|
505
|
+
}, {
|
|
506
|
+
name: string;
|
|
507
|
+
type: string;
|
|
508
|
+
}>, "many">>>;
|
|
456
509
|
values: z.ZodObject<{
|
|
457
510
|
taskCid: z.ZodEffects<z.ZodString, string, string>;
|
|
458
511
|
version: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -563,7 +616,10 @@ export declare const ConfigTypedDataValidator: z.ZodObject<{
|
|
|
563
616
|
}[];
|
|
564
617
|
Trigger: [any, ...any[]];
|
|
565
618
|
Config: [any, ...any[]];
|
|
566
|
-
}
|
|
619
|
+
} & Record<string, {
|
|
620
|
+
name: string;
|
|
621
|
+
type: string;
|
|
622
|
+
}[]>;
|
|
567
623
|
}, {
|
|
568
624
|
values: {
|
|
569
625
|
minValidations: number;
|
|
@@ -592,12 +648,15 @@ export declare const ConfigTypedDataValidator: z.ZodObject<{
|
|
|
592
648
|
}[];
|
|
593
649
|
Trigger: [any, ...any[]];
|
|
594
650
|
Config: [any, ...any[]];
|
|
595
|
-
}
|
|
651
|
+
} & Record<string, {
|
|
652
|
+
name: string;
|
|
653
|
+
type: string;
|
|
654
|
+
}[]>;
|
|
596
655
|
}>;
|
|
597
656
|
export declare const ConfigCreateRequestValidator: z.ZodObject<{
|
|
598
657
|
description: z.ZodString;
|
|
599
658
|
typedData: z.ZodObject<{
|
|
600
|
-
types: z.ZodObject<{
|
|
659
|
+
types: z.ZodIntersection<z.ZodObject<{
|
|
601
660
|
Input: z.ZodArray<z.ZodObject<{
|
|
602
661
|
name: z.ZodString;
|
|
603
662
|
type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -610,7 +669,7 @@ export declare const ConfigCreateRequestValidator: z.ZodObject<{
|
|
|
610
669
|
}>, "many">;
|
|
611
670
|
Trigger: z.ZodUnion<[z.ZodTuple<[z.ZodTypeAny, ...z.ZodTypeAny[]], null>, z.ZodTuple<[z.ZodTypeAny, ...z.ZodTypeAny[]], null>]>;
|
|
612
671
|
Config: z.ZodTuple<[z.ZodTypeAny, ...z.ZodTypeAny[]], null>;
|
|
613
|
-
}, "
|
|
672
|
+
}, "strip", z.ZodTypeAny, {
|
|
614
673
|
Input: {
|
|
615
674
|
name: string;
|
|
616
675
|
type: string;
|
|
@@ -624,7 +683,16 @@ export declare const ConfigCreateRequestValidator: z.ZodObject<{
|
|
|
624
683
|
}[];
|
|
625
684
|
Trigger: [any, ...any[]];
|
|
626
685
|
Config: [any, ...any[]];
|
|
627
|
-
}
|
|
686
|
+
}>, z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
687
|
+
name: z.ZodString;
|
|
688
|
+
type: z.ZodString;
|
|
689
|
+
}, "strip", z.ZodTypeAny, {
|
|
690
|
+
name: string;
|
|
691
|
+
type: string;
|
|
692
|
+
}, {
|
|
693
|
+
name: string;
|
|
694
|
+
type: string;
|
|
695
|
+
}>, "many">>>;
|
|
628
696
|
values: z.ZodObject<{
|
|
629
697
|
taskCid: z.ZodEffects<z.ZodString, string, string>;
|
|
630
698
|
version: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -735,7 +803,10 @@ export declare const ConfigCreateRequestValidator: z.ZodObject<{
|
|
|
735
803
|
}[];
|
|
736
804
|
Trigger: [any, ...any[]];
|
|
737
805
|
Config: [any, ...any[]];
|
|
738
|
-
}
|
|
806
|
+
} & Record<string, {
|
|
807
|
+
name: string;
|
|
808
|
+
type: string;
|
|
809
|
+
}[]>;
|
|
739
810
|
}, {
|
|
740
811
|
values: {
|
|
741
812
|
minValidations: number;
|
|
@@ -764,7 +835,10 @@ export declare const ConfigCreateRequestValidator: z.ZodObject<{
|
|
|
764
835
|
}[];
|
|
765
836
|
Trigger: [any, ...any[]];
|
|
766
837
|
Config: [any, ...any[]];
|
|
767
|
-
}
|
|
838
|
+
} & Record<string, {
|
|
839
|
+
name: string;
|
|
840
|
+
type: string;
|
|
841
|
+
}[]>;
|
|
768
842
|
}>;
|
|
769
843
|
sig: z.ZodEffects<z.ZodEffects<z.ZodString, string, string>, string, string>;
|
|
770
844
|
signer: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -798,7 +872,10 @@ export declare const ConfigCreateRequestValidator: z.ZodObject<{
|
|
|
798
872
|
}[];
|
|
799
873
|
Trigger: [any, ...any[]];
|
|
800
874
|
Config: [any, ...any[]];
|
|
801
|
-
}
|
|
875
|
+
} & Record<string, {
|
|
876
|
+
name: string;
|
|
877
|
+
type: string;
|
|
878
|
+
}[]>;
|
|
802
879
|
};
|
|
803
880
|
sig: string;
|
|
804
881
|
signer: string;
|
|
@@ -832,7 +909,10 @@ export declare const ConfigCreateRequestValidator: z.ZodObject<{
|
|
|
832
909
|
}[];
|
|
833
910
|
Trigger: [any, ...any[]];
|
|
834
911
|
Config: [any, ...any[]];
|
|
835
|
-
}
|
|
912
|
+
} & Record<string, {
|
|
913
|
+
name: string;
|
|
914
|
+
type: string;
|
|
915
|
+
}[]>;
|
|
836
916
|
};
|
|
837
917
|
sig: string;
|
|
838
918
|
signer: string;
|
|
@@ -916,7 +996,7 @@ export declare const ConfigValidator: z.ZodObject<{
|
|
|
916
996
|
}>]>;
|
|
917
997
|
executionFeeLimit: z.ZodEffects<z.ZodString, string, string>;
|
|
918
998
|
minValidations: z.ZodNumber;
|
|
919
|
-
types: z.ZodObject<{
|
|
999
|
+
types: z.ZodIntersection<z.ZodObject<{
|
|
920
1000
|
Input: z.ZodArray<z.ZodObject<{
|
|
921
1001
|
name: z.ZodString;
|
|
922
1002
|
type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -929,7 +1009,7 @@ export declare const ConfigValidator: z.ZodObject<{
|
|
|
929
1009
|
}>, "many">;
|
|
930
1010
|
Trigger: z.ZodUnion<[z.ZodTuple<[z.ZodTypeAny, ...z.ZodTypeAny[]], null>, z.ZodTuple<[z.ZodTypeAny, ...z.ZodTypeAny[]], null>]>;
|
|
931
1011
|
Config: z.ZodTuple<[z.ZodTypeAny, ...z.ZodTypeAny[]], null>;
|
|
932
|
-
}, "
|
|
1012
|
+
}, "strip", z.ZodTypeAny, {
|
|
933
1013
|
Input: {
|
|
934
1014
|
name: string;
|
|
935
1015
|
type: string;
|
|
@@ -943,7 +1023,16 @@ export declare const ConfigValidator: z.ZodObject<{
|
|
|
943
1023
|
}[];
|
|
944
1024
|
Trigger: [any, ...any[]];
|
|
945
1025
|
Config: [any, ...any[]];
|
|
946
|
-
}
|
|
1026
|
+
}>, z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
1027
|
+
name: z.ZodString;
|
|
1028
|
+
type: z.ZodString;
|
|
1029
|
+
}, "strip", z.ZodTypeAny, {
|
|
1030
|
+
name: string;
|
|
1031
|
+
type: string;
|
|
1032
|
+
}, {
|
|
1033
|
+
name: string;
|
|
1034
|
+
type: string;
|
|
1035
|
+
}>, "many">>>;
|
|
947
1036
|
}, "strip", z.ZodTypeAny, {
|
|
948
1037
|
minValidations: number;
|
|
949
1038
|
version: string;
|
|
@@ -972,7 +1061,10 @@ export declare const ConfigValidator: z.ZodObject<{
|
|
|
972
1061
|
}[];
|
|
973
1062
|
Trigger: [any, ...any[]];
|
|
974
1063
|
Config: [any, ...any[]];
|
|
975
|
-
}
|
|
1064
|
+
} & Record<string, {
|
|
1065
|
+
name: string;
|
|
1066
|
+
type: string;
|
|
1067
|
+
}[]>;
|
|
976
1068
|
sig: string;
|
|
977
1069
|
signer: string;
|
|
978
1070
|
deactivateSig?: string | undefined;
|
|
@@ -1004,7 +1096,10 @@ export declare const ConfigValidator: z.ZodObject<{
|
|
|
1004
1096
|
}[];
|
|
1005
1097
|
Trigger: [any, ...any[]];
|
|
1006
1098
|
Config: [any, ...any[]];
|
|
1007
|
-
}
|
|
1099
|
+
} & Record<string, {
|
|
1100
|
+
name: string;
|
|
1101
|
+
type: string;
|
|
1102
|
+
}[]>;
|
|
1008
1103
|
sig: string;
|
|
1009
1104
|
signer: string;
|
|
1010
1105
|
deactivateSig?: string | undefined;
|
|
@@ -1057,7 +1152,7 @@ export declare const ConfigsValidator: z.ZodArray<z.ZodObject<{
|
|
|
1057
1152
|
}>]>;
|
|
1058
1153
|
executionFeeLimit: z.ZodEffects<z.ZodString, string, string>;
|
|
1059
1154
|
minValidations: z.ZodNumber;
|
|
1060
|
-
types: z.ZodObject<{
|
|
1155
|
+
types: z.ZodIntersection<z.ZodObject<{
|
|
1061
1156
|
Input: z.ZodArray<z.ZodObject<{
|
|
1062
1157
|
name: z.ZodString;
|
|
1063
1158
|
type: z.ZodEffects<z.ZodString, string, string>;
|
|
@@ -1070,7 +1165,7 @@ export declare const ConfigsValidator: z.ZodArray<z.ZodObject<{
|
|
|
1070
1165
|
}>, "many">;
|
|
1071
1166
|
Trigger: z.ZodUnion<[z.ZodTuple<[z.ZodTypeAny, ...z.ZodTypeAny[]], null>, z.ZodTuple<[z.ZodTypeAny, ...z.ZodTypeAny[]], null>]>;
|
|
1072
1167
|
Config: z.ZodTuple<[z.ZodTypeAny, ...z.ZodTypeAny[]], null>;
|
|
1073
|
-
}, "
|
|
1168
|
+
}, "strip", z.ZodTypeAny, {
|
|
1074
1169
|
Input: {
|
|
1075
1170
|
name: string;
|
|
1076
1171
|
type: string;
|
|
@@ -1084,7 +1179,16 @@ export declare const ConfigsValidator: z.ZodArray<z.ZodObject<{
|
|
|
1084
1179
|
}[];
|
|
1085
1180
|
Trigger: [any, ...any[]];
|
|
1086
1181
|
Config: [any, ...any[]];
|
|
1087
|
-
}
|
|
1182
|
+
}>, z.ZodRecord<z.ZodString, z.ZodArray<z.ZodObject<{
|
|
1183
|
+
name: z.ZodString;
|
|
1184
|
+
type: z.ZodString;
|
|
1185
|
+
}, "strip", z.ZodTypeAny, {
|
|
1186
|
+
name: string;
|
|
1187
|
+
type: string;
|
|
1188
|
+
}, {
|
|
1189
|
+
name: string;
|
|
1190
|
+
type: string;
|
|
1191
|
+
}>, "many">>>;
|
|
1088
1192
|
}, "strip", z.ZodTypeAny, {
|
|
1089
1193
|
minValidations: number;
|
|
1090
1194
|
version: string;
|
|
@@ -1113,7 +1217,10 @@ export declare const ConfigsValidator: z.ZodArray<z.ZodObject<{
|
|
|
1113
1217
|
}[];
|
|
1114
1218
|
Trigger: [any, ...any[]];
|
|
1115
1219
|
Config: [any, ...any[]];
|
|
1116
|
-
}
|
|
1220
|
+
} & Record<string, {
|
|
1221
|
+
name: string;
|
|
1222
|
+
type: string;
|
|
1223
|
+
}[]>;
|
|
1117
1224
|
sig: string;
|
|
1118
1225
|
signer: string;
|
|
1119
1226
|
deactivateSig?: string | undefined;
|
|
@@ -1145,7 +1252,10 @@ export declare const ConfigsValidator: z.ZodArray<z.ZodObject<{
|
|
|
1145
1252
|
}[];
|
|
1146
1253
|
Trigger: [any, ...any[]];
|
|
1147
1254
|
Config: [any, ...any[]];
|
|
1148
|
-
}
|
|
1255
|
+
} & Record<string, {
|
|
1256
|
+
name: string;
|
|
1257
|
+
type: string;
|
|
1258
|
+
}[]>;
|
|
1149
1259
|
sig: string;
|
|
1150
1260
|
signer: string;
|
|
1151
1261
|
deactivateSig?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validators.d.ts","sourceRoot":"","sources":["../../src/registry/validators.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAkBL,WAAW,EACZ,MAAM,WAAW,CAAA;AAYlB,eAAO,MAAM,eAAe,2CAAkE,CAAA;AAE9F,eAAO,MAAM,cAAc,2CAAgE,CAAA;AAE3F,eAAO,MAAM,aAAa,2CAA8D,CAAA;AAExF,eAAO,MAAM,qBAAqB,2CAA+E,CAAA;AAEjH,eAAO,MAAM,0BAA0B,2CAGtC,CAAA;AAED,eAAO,MAAM,mBAAmB,6FAAwB,CAAA;AAExD,eAAO,MAAM,oBAAoB,iHAA6C,CAAA;AAE9E,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;EAOtB,CAAA;AAEX,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;EASvB,CAAA;AAEX,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAA8E,CAAA;AAE3G,eAAO,MAAM,uBAAuB;;;;;;;;;KAMnC,CAAA;AAED,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAO5B,CAAA;AAIF,eAAO,MAAM,kCAAkC;;;;;;;;;EAAyE,CAAA;AAExH,eAAO,MAAM,2BAA2B;;;;;;;;;EAAkE,CAAA;AAE1G,eAAO,MAAM,yBAAyB;;;;;;EAA0C,CAAA;AAEhF,eAAO,MAAM,kBAAkB;;;;;;;;;EAA+D,CAAA;AAE9F,eAAO,MAAM,mBAAmB;;;;;;;;;EAAmE,CAAA;AAEnG,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAS7B,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;WAA8B,CAAA;AAI9D,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;EAO5B,CAAA;AAEZ,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;EAM3B,CAAA;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;WAA4B,CAAA;AAE1D,eAAO,MAAM,qBAAqB;;;;;;;;;EAGhC,CAAA;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;EAIzC,CAAA;AAIF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;EAOzB,CAAA;AAEZ,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;EAMxB,CAAA;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;WAAyB,CAAA;AAEpD,eAAO,MAAM,0BAA0B;;;;;;;;;EAarC,CAAA;AAIF,eAAO,MAAM,wBAAwB,qDAAiE,CAAA;AAEtG,eAAO,MAAM,yBAAyB,qDAAkE,CAAA;AAExG,eAAO,MAAM,oBAAoB,wHAAiE,CAAA;AAElG,eAAO,MAAM,6BAA6B;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"validators.d.ts","sourceRoot":"","sources":["../../src/registry/validators.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EAkBL,WAAW,EACZ,MAAM,WAAW,CAAA;AAYlB,eAAO,MAAM,eAAe,2CAAkE,CAAA;AAE9F,eAAO,MAAM,cAAc,2CAAgE,CAAA;AAE3F,eAAO,MAAM,aAAa,2CAA8D,CAAA;AAExF,eAAO,MAAM,qBAAqB,2CAA+E,CAAA;AAEjH,eAAO,MAAM,0BAA0B,2CAGtC,CAAA;AAED,eAAO,MAAM,cAAc;;;;;;;;;EAGzB,CAAA;AAEF,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;EAG/B,CAAA;AAEF,eAAO,MAAM,mBAAmB,6FAAwB,CAAA;AAExD,eAAO,MAAM,oBAAoB,iHAA6C,CAAA;AAE9E,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;EAOtB,CAAA;AAEX,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;EASvB,CAAA;AAEX,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IAA8E,CAAA;AAE3G,eAAO,MAAM,uBAAuB;;;;;;;;;KAMnC,CAAA;AAED,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAO5B,CAAA;AAIF,eAAO,MAAM,kCAAkC;;;;;;;;;EAAyE,CAAA;AAExH,eAAO,MAAM,2BAA2B;;;;;;;;;EAAkE,CAAA;AAE1G,eAAO,MAAM,yBAAyB;;;;;;EAA0C,CAAA;AAEhF,eAAO,MAAM,kBAAkB;;;;;;;;;EAA+D,CAAA;AAE9F,eAAO,MAAM,mBAAmB;;;;;;;;;EAAmE,CAAA;AAEnG,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;EAS7B,CAAA;AAEF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;;;;;;;;;;;;;;;;WAA8B,CAAA;AAI9D,eAAO,MAAM,2BAA2B;;;;;;;;;;;;;;;EAO5B,CAAA;AAEZ,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;EAM3B,CAAA;AAEF,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;WAA4B,CAAA;AAE1D,eAAO,MAAM,qBAAqB;;;;;;;;;EAGhC,CAAA;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;;;;EAIzC,CAAA;AAIF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;EAOzB,CAAA;AAEZ,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;EAMxB,CAAA;AAEF,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;WAAyB,CAAA;AAEpD,eAAO,MAAM,0BAA0B;;;;;;;;;EAarC,CAAA;AAIF,eAAO,MAAM,wBAAwB,qDAAiE,CAAA;AAEtG,eAAO,MAAM,yBAAyB,qDAAkE,CAAA;AAExG,eAAO,MAAM,oBAAoB,wHAAiE,CAAA;AAElG,eAAO,MAAM,6BAA6B;;;;;;;;;EAE/B,CAAA;AAEX,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAMsD,CAAA;AAEvF,eAAO,MAAM,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYnC,CAAA;AAEF,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAKvC,CAAA;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAY3B,CAAA;AAEZ,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAa1B,CAAA;AAEF,eAAO,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAA2B,CAAA;AAExD,eAAO,MAAM,gCAAgC;;;;;;EAAkD,CAAA;AAI/F,eAAO,MAAM,eAAe;;;;;;;;;EAG1B,CAAA;AAIF,eAAO,MAAM,gBAAgB;;;;;;;;;EAG3B,CAAA;AAIF,eAAO,MAAM,oCAAoC;;;;;;;;;;;;;;;;;;EAQrC,CAAA;AAEZ,eAAO,MAAM,yBAAyB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAapC,CAAA;AAEF,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WAAqC,CAAA;AAI5E,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;EAK5B,CAAA;AAEF,eAAO,MAAM,8BAA8B;;;;;;;;;EAAsE,CAAA;AAIjH,eAAO,MAAM,uCAAuC;;;;;;EAAsC,CAAA;AAE1F,eAAO,MAAM,uCAAuC;;;;;;EAAsC,CAAA;AAE1F,eAAO,MAAM,0BAA0B;;;;;;;;;EAGrC,CAAA"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.EmailVerificationVerifyRequestValidator = exports.EmailVerificationCreateRequestValidator = exports.UserDataUpdateRequestValidator = exports.UserDataValidator = exports.ExecutionPricingsValidator = exports.ExecutionPricingValidator = exports.ExecutionPricingsGetRequestValidator = exports.RelayerValidator = exports.OracleValidator = exports.ConfigDeactivateRequestValidator = exports.ConfigsValidator = exports.ConfigValidator = exports.ConfigsGetRequestValidator = exports.ConfigCreateRequestValidator = exports.ConfigTypedDataValidator = exports.ConfigTypesValidator = exports.ConfigTypedDataFieldValidator = exports.TriggerTypeValidator = exports.EventTriggerTypeValidator = exports.CronTriggerTypeValidator = exports.TaskCreateRequestValidator = exports.TasksValidator = exports.TaskValidator = exports.TasksGetRequestValidator = exports.BalancesCreateRequestValidator = exports.BalanceTotalValidator = exports.BalancesValidator = exports.BalanceValidator = exports.BalancesGetRequestValidator = exports.UserTokensValidator = exports.UserTokenValidator = exports.UserApiKeyValidator = exports.UserNonceValidator = exports.UserNonceRequestValidator = exports.UserAuthenticationValidator = exports.UserAuthenticationRequestValidator = exports.ManifestValidator = exports.ManifestInputsValidator = exports.TriggerValidator = exports.EventTriggerValidator = exports.CronTriggerValidator = exports.EventTopicsValidator = exports.EventTopicValidator = exports.TokenAmountValidator = exports.TokenValidator = exports.ManifestInputTypeValidator = exports.SolidityTypeValidator = exports.CronValidator = exports.DeltaValidator = exports.SemVerValidator = void 0;
|
|
4
|
+
exports.EmailVerificationValidator = void 0;
|
|
4
5
|
const zod_1 = require("zod");
|
|
5
6
|
const shared_1 = require("../shared");
|
|
6
7
|
const validators_1 = require("../shared/validators");
|
|
@@ -11,6 +12,14 @@ exports.DeltaValidator = shared_1.StringValidator.refine(validations_1.isValidDe
|
|
|
11
12
|
exports.CronValidator = shared_1.StringValidator.refine(validations_1.isValidCron, 'Must be a valid cron');
|
|
12
13
|
exports.SolidityTypeValidator = shared_1.StringValidator.refine(validations_1.isValidSolidityType, 'Must be a valid Solidity type');
|
|
13
14
|
exports.ManifestInputTypeValidator = shared_1.StringValidator.refine(validations_1.isValidManifestInputType, 'Must be a valid Solidity type or custom type (Token, TokenAmount)');
|
|
15
|
+
exports.TokenValidator = zod_1.z.object({
|
|
16
|
+
chainId: shared_1.ChainIdValidator,
|
|
17
|
+
address: shared_1.AddressValidator,
|
|
18
|
+
});
|
|
19
|
+
exports.TokenAmountValidator = zod_1.z.object({
|
|
20
|
+
token: exports.TokenValidator,
|
|
21
|
+
amount: validators_1.PositiveNumberValidator.transform(String),
|
|
22
|
+
});
|
|
14
23
|
exports.EventTopicValidator = zod_1.z.array(shared_1.HexValidator);
|
|
15
24
|
exports.EventTopicsValidator = zod_1.z.array(exports.EventTopicValidator).min(1).max(4);
|
|
16
25
|
exports.CronTriggerValidator = zod_1.z
|
|
@@ -116,14 +125,16 @@ exports.TaskCreateRequestValidator = zod_1.z.object({
|
|
|
116
125
|
exports.CronTriggerTypeValidator = (0, validators_1.eip712TypesToZodValidator)(eip712Types_1.TRIGGER_712_TYPES[shared_1.TriggerType.Cron]);
|
|
117
126
|
exports.EventTriggerTypeValidator = (0, validators_1.eip712TypesToZodValidator)(eip712Types_1.TRIGGER_712_TYPES[shared_1.TriggerType.Event]);
|
|
118
127
|
exports.TriggerTypeValidator = zod_1.z.union([exports.CronTriggerTypeValidator, exports.EventTriggerTypeValidator]);
|
|
119
|
-
exports.ConfigTypedDataFieldValidator = zod_1.z
|
|
128
|
+
exports.ConfigTypedDataFieldValidator = zod_1.z
|
|
129
|
+
.object({ name: shared_1.StringValidator, type: exports.ManifestInputTypeValidator })
|
|
130
|
+
.strict();
|
|
120
131
|
exports.ConfigTypesValidator = zod_1.z
|
|
121
132
|
.object({
|
|
122
133
|
Input: zod_1.z.array(exports.ConfigTypedDataFieldValidator),
|
|
123
134
|
Trigger: exports.TriggerTypeValidator,
|
|
124
135
|
Config: (0, validators_1.eip712TypesToZodValidator)(eip712Types_1.CONFIG_FIELD_712_TYPE),
|
|
125
136
|
})
|
|
126
|
-
.
|
|
137
|
+
.and(zod_1.z.record(zod_1.z.string(), zod_1.z.array(zod_1.z.object({ name: zod_1.z.string(), type: zod_1.z.string() })))); // Allow additional properties
|
|
127
138
|
exports.ConfigTypedDataValidator = zod_1.z.object({
|
|
128
139
|
types: exports.ConfigTypesValidator,
|
|
129
140
|
values: zod_1.z
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"validators.js","sourceRoot":"","sources":["../../src/registry/validators.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"validators.js","sourceRoot":"","sources":["../../src/registry/validators.ts"],"names":[],"mappings":"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"}
|