@taqueria/protocol 0.20.2 → 0.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Config.d.ts +317 -293
- package/Config.d.ts.map +1 -1
- package/LoadedConfig.d.ts +331 -306
- package/LoadedConfig.d.ts.map +1 -1
- package/NetworkConfig.d.ts +129 -110
- package/NetworkConfig.d.ts.map +1 -1
- package/NetworkConfig.js +10 -2
- package/NetworkConfig.js.map +1 -1
- package/NetworkConfig.mjs +10 -2
- package/NetworkConfig.mjs.map +1 -1
- package/Operation.d.ts +64 -60
- package/Operation.d.ts.map +1 -1
- package/ParsedOperation.d.ts +16 -15
- package/ParsedOperation.d.ts.map +1 -1
- package/ParsedTemplate.d.ts +32 -30
- package/ParsedTemplate.d.ts.map +1 -1
- package/PluginSchema.d.ts +448 -420
- package/PluginSchema.d.ts.map +1 -1
- package/RequestArgs.d.ts +659 -610
- package/RequestArgs.d.ts.map +1 -1
- package/SandboxConfig.d.ts +64 -64
- package/Template.d.ts +96 -90
- package/Template.d.ts.map +1 -1
- package/package.json +1 -1
package/Config.d.ts
CHANGED
|
@@ -61,16 +61,8 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
61
61
|
}>>>;
|
|
62
62
|
}, {
|
|
63
63
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
};
|
|
67
|
-
rpcUrl: string & {
|
|
68
|
-
readonly __kind: any;
|
|
69
|
-
};
|
|
70
|
-
protocol: string & {
|
|
71
|
-
readonly __kind: any;
|
|
72
|
-
};
|
|
73
|
-
faucet: Flatten<{
|
|
64
|
+
accounts?: Record<string, any> | undefined;
|
|
65
|
+
faucet?: Flatten<{
|
|
74
66
|
email?: string | undefined;
|
|
75
67
|
password?: string | undefined;
|
|
76
68
|
amount?: string | undefined;
|
|
@@ -81,10 +73,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
81
73
|
};
|
|
82
74
|
} & {
|
|
83
75
|
readonly __kind: any;
|
|
84
|
-
}
|
|
85
|
-
} & {
|
|
86
|
-
readonly __kind: any;
|
|
87
|
-
}, any>, Flatten<{
|
|
76
|
+
}> | undefined;
|
|
88
77
|
label: string & {
|
|
89
78
|
readonly __kind: any;
|
|
90
79
|
};
|
|
@@ -94,7 +83,11 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
94
83
|
protocol: string & {
|
|
95
84
|
readonly __kind: any;
|
|
96
85
|
};
|
|
97
|
-
|
|
86
|
+
} & {
|
|
87
|
+
readonly __kind: any;
|
|
88
|
+
}, any>, Flatten<{
|
|
89
|
+
accounts?: Record<string, any> | undefined;
|
|
90
|
+
faucet?: Flatten<{
|
|
98
91
|
email?: string | undefined;
|
|
99
92
|
password?: string | undefined;
|
|
100
93
|
amount?: string | undefined;
|
|
@@ -105,15 +98,20 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
105
98
|
};
|
|
106
99
|
} & {
|
|
107
100
|
readonly __kind: any;
|
|
108
|
-
}
|
|
101
|
+
}> | undefined;
|
|
102
|
+
label: string & {
|
|
103
|
+
readonly __kind: any;
|
|
104
|
+
};
|
|
105
|
+
rpcUrl: string & {
|
|
106
|
+
readonly __kind: any;
|
|
107
|
+
};
|
|
108
|
+
protocol: string & {
|
|
109
|
+
readonly __kind: any;
|
|
110
|
+
};
|
|
109
111
|
} & {
|
|
110
112
|
readonly __kind: any;
|
|
111
113
|
}>, any>>>;
|
|
112
114
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
113
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
114
|
-
plugin?: (string & {
|
|
115
|
-
readonly __kind: any;
|
|
116
|
-
}) | undefined;
|
|
117
115
|
accounts?: Record<string, string | ({
|
|
118
116
|
encryptedKey: string;
|
|
119
117
|
publicKeyHash: string & {
|
|
@@ -123,6 +121,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
123
121
|
} & {
|
|
124
122
|
readonly __kind: any;
|
|
125
123
|
})> | undefined;
|
|
124
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
125
|
+
plugin?: (string & {
|
|
126
|
+
readonly __kind: any;
|
|
127
|
+
}) | undefined;
|
|
126
128
|
tzkt?: {
|
|
127
129
|
disableAutostartWithSandbox: boolean;
|
|
128
130
|
postgresqlPort: number;
|
|
@@ -140,10 +142,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
140
142
|
} & {
|
|
141
143
|
readonly __kind: any;
|
|
142
144
|
}, any>, {
|
|
143
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
144
|
-
plugin?: (string & {
|
|
145
|
-
readonly __kind: any;
|
|
146
|
-
}) | undefined;
|
|
147
145
|
accounts?: Record<string, string | ({
|
|
148
146
|
encryptedKey: string;
|
|
149
147
|
publicKeyHash: string & {
|
|
@@ -153,6 +151,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
153
151
|
} & {
|
|
154
152
|
readonly __kind: any;
|
|
155
153
|
})> | undefined;
|
|
154
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
155
|
+
plugin?: (string & {
|
|
156
|
+
readonly __kind: any;
|
|
157
|
+
}) | undefined;
|
|
156
158
|
tzkt?: {
|
|
157
159
|
disableAutostartWithSandbox: boolean;
|
|
158
160
|
postgresqlPort: number;
|
|
@@ -231,16 +233,8 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
231
233
|
};
|
|
232
234
|
}> | undefined;
|
|
233
235
|
network?: Record<string, Flatten<{
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
};
|
|
237
|
-
rpcUrl: string & {
|
|
238
|
-
readonly __kind: any;
|
|
239
|
-
};
|
|
240
|
-
protocol: string & {
|
|
241
|
-
readonly __kind: any;
|
|
242
|
-
};
|
|
243
|
-
faucet: Flatten<{
|
|
236
|
+
accounts?: Record<string, any> | undefined;
|
|
237
|
+
faucet?: Flatten<{
|
|
244
238
|
email?: string | undefined;
|
|
245
239
|
password?: string | undefined;
|
|
246
240
|
amount?: string | undefined;
|
|
@@ -251,15 +245,20 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
251
245
|
};
|
|
252
246
|
} & {
|
|
253
247
|
readonly __kind: any;
|
|
254
|
-
}
|
|
248
|
+
}> | undefined;
|
|
249
|
+
label: string & {
|
|
250
|
+
readonly __kind: any;
|
|
251
|
+
};
|
|
252
|
+
rpcUrl: string & {
|
|
253
|
+
readonly __kind: any;
|
|
254
|
+
};
|
|
255
|
+
protocol: string & {
|
|
256
|
+
readonly __kind: any;
|
|
257
|
+
};
|
|
255
258
|
} & {
|
|
256
259
|
readonly __kind: any;
|
|
257
260
|
}>> | undefined;
|
|
258
261
|
sandbox?: Record<string, {
|
|
259
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
260
|
-
plugin?: (string & {
|
|
261
|
-
readonly __kind: any;
|
|
262
|
-
}) | undefined;
|
|
263
262
|
accounts?: Record<string, string | ({
|
|
264
263
|
encryptedKey: string;
|
|
265
264
|
publicKeyHash: string & {
|
|
@@ -269,6 +268,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
269
268
|
} & {
|
|
270
269
|
readonly __kind: any;
|
|
271
270
|
})> | undefined;
|
|
271
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
272
|
+
plugin?: (string & {
|
|
273
|
+
readonly __kind: any;
|
|
274
|
+
}) | undefined;
|
|
272
275
|
tzkt?: {
|
|
273
276
|
disableAutostartWithSandbox: boolean;
|
|
274
277
|
postgresqlPort: number;
|
|
@@ -366,7 +369,8 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
366
369
|
label: z.ZodString;
|
|
367
370
|
rpcUrl: z.ZodString;
|
|
368
371
|
protocol: z.ZodEffects<z.ZodString, string, string>;
|
|
369
|
-
|
|
372
|
+
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
373
|
+
faucet: z.ZodOptional<z.ZodObject<z.extendShape<{
|
|
370
374
|
mnemonic: z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>;
|
|
371
375
|
email: z.ZodOptional<z.ZodString>;
|
|
372
376
|
password: z.ZodOptional<z.ZodString>;
|
|
@@ -388,31 +392,33 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
388
392
|
amount?: string | undefined;
|
|
389
393
|
activation_code?: string | undefined;
|
|
390
394
|
pkh: string;
|
|
391
|
-
}
|
|
395
|
+
}>>;
|
|
392
396
|
}, "strip", z.ZodTypeAny, {
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
protocol: string;
|
|
396
|
-
faucet: {
|
|
397
|
+
accounts?: Record<string, any> | undefined;
|
|
398
|
+
faucet?: {
|
|
397
399
|
email?: string | undefined;
|
|
398
400
|
password?: string | undefined;
|
|
399
401
|
amount?: string | undefined;
|
|
400
402
|
activation_code?: string | undefined;
|
|
401
403
|
mnemonic: string[];
|
|
402
404
|
pkh: string;
|
|
403
|
-
};
|
|
404
|
-
}, {
|
|
405
|
+
} | undefined;
|
|
405
406
|
label: string;
|
|
406
407
|
rpcUrl: string;
|
|
407
408
|
protocol: string;
|
|
408
|
-
|
|
409
|
+
}, {
|
|
410
|
+
accounts?: Record<string, any> | undefined;
|
|
411
|
+
faucet?: {
|
|
409
412
|
mnemonic?: unknown;
|
|
410
413
|
email?: string | undefined;
|
|
411
414
|
password?: string | undefined;
|
|
412
415
|
amount?: string | undefined;
|
|
413
416
|
activation_code?: string | undefined;
|
|
414
417
|
pkh: string;
|
|
415
|
-
};
|
|
418
|
+
} | undefined;
|
|
419
|
+
label: string;
|
|
420
|
+
rpcUrl: string;
|
|
421
|
+
protocol: string;
|
|
416
422
|
}>>>;
|
|
417
423
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
418
424
|
label: z.ZodString;
|
|
@@ -453,8 +459,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
453
459
|
apiPort?: number | undefined;
|
|
454
460
|
}>>;
|
|
455
461
|
}, "strip", z.ZodTypeAny, {
|
|
456
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
457
|
-
plugin?: string | undefined;
|
|
458
462
|
accounts?: {
|
|
459
463
|
default: string;
|
|
460
464
|
} | Record<string, {
|
|
@@ -462,6 +466,8 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
462
466
|
publicKeyHash: string;
|
|
463
467
|
secretKey: string;
|
|
464
468
|
}> | undefined;
|
|
469
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
470
|
+
plugin?: string | undefined;
|
|
465
471
|
tzkt?: {
|
|
466
472
|
disableAutostartWithSandbox: boolean;
|
|
467
473
|
postgresqlPort: number;
|
|
@@ -471,8 +477,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
471
477
|
rpcUrl: string;
|
|
472
478
|
protocol: string;
|
|
473
479
|
}, {
|
|
474
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
475
|
-
plugin?: string | undefined;
|
|
476
480
|
accounts?: {
|
|
477
481
|
default: string;
|
|
478
482
|
} | Record<string, {
|
|
@@ -480,6 +484,8 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
480
484
|
publicKeyHash: string;
|
|
481
485
|
secretKey: string;
|
|
482
486
|
}> | undefined;
|
|
487
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
488
|
+
plugin?: string | undefined;
|
|
483
489
|
tzkt?: {
|
|
484
490
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
485
491
|
postgresqlPort?: number | undefined;
|
|
@@ -537,21 +543,20 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
537
543
|
hash: string;
|
|
538
544
|
}> | undefined;
|
|
539
545
|
network?: Record<string, {
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
protocol: string;
|
|
543
|
-
faucet: {
|
|
546
|
+
accounts?: Record<string, any> | undefined;
|
|
547
|
+
faucet?: {
|
|
544
548
|
email?: string | undefined;
|
|
545
549
|
password?: string | undefined;
|
|
546
550
|
amount?: string | undefined;
|
|
547
551
|
activation_code?: string | undefined;
|
|
548
552
|
mnemonic: string[];
|
|
549
553
|
pkh: string;
|
|
550
|
-
};
|
|
554
|
+
} | undefined;
|
|
555
|
+
label: string;
|
|
556
|
+
rpcUrl: string;
|
|
557
|
+
protocol: string;
|
|
551
558
|
}> | undefined;
|
|
552
559
|
sandbox?: Record<string, {
|
|
553
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
554
|
-
plugin?: string | undefined;
|
|
555
560
|
accounts?: {
|
|
556
561
|
default: string;
|
|
557
562
|
} | Record<string, {
|
|
@@ -559,6 +564,8 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
559
564
|
publicKeyHash: string;
|
|
560
565
|
secretKey: string;
|
|
561
566
|
}> | undefined;
|
|
567
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
568
|
+
plugin?: string | undefined;
|
|
562
569
|
tzkt?: {
|
|
563
570
|
disableAutostartWithSandbox: boolean;
|
|
564
571
|
postgresqlPort: number;
|
|
@@ -594,21 +601,20 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
594
601
|
}> | undefined;
|
|
595
602
|
artifactsDir?: unknown;
|
|
596
603
|
network?: Record<string, {
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
protocol: string;
|
|
600
|
-
faucet: {
|
|
604
|
+
accounts?: Record<string, any> | undefined;
|
|
605
|
+
faucet?: {
|
|
601
606
|
mnemonic?: unknown;
|
|
602
607
|
email?: string | undefined;
|
|
603
608
|
password?: string | undefined;
|
|
604
609
|
amount?: string | undefined;
|
|
605
610
|
activation_code?: string | undefined;
|
|
606
611
|
pkh: string;
|
|
607
|
-
};
|
|
612
|
+
} | undefined;
|
|
613
|
+
label: string;
|
|
614
|
+
rpcUrl: string;
|
|
615
|
+
protocol: string;
|
|
608
616
|
}> | undefined;
|
|
609
617
|
sandbox?: Record<string, {
|
|
610
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
611
|
-
plugin?: string | undefined;
|
|
612
618
|
accounts?: {
|
|
613
619
|
default: string;
|
|
614
620
|
} | Record<string, {
|
|
@@ -616,6 +622,8 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
616
622
|
publicKeyHash: string;
|
|
617
623
|
secretKey: string;
|
|
618
624
|
}> | undefined;
|
|
625
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
626
|
+
plugin?: string | undefined;
|
|
619
627
|
tzkt?: {
|
|
620
628
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
621
629
|
postgresqlPort?: number | undefined;
|
|
@@ -657,16 +665,8 @@ export declare const generatedSchemas: {
|
|
|
657
665
|
};
|
|
658
666
|
}> | undefined;
|
|
659
667
|
network?: Record<string, Flatten<{
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
};
|
|
663
|
-
rpcUrl: string & {
|
|
664
|
-
readonly __kind: any;
|
|
665
|
-
};
|
|
666
|
-
protocol: string & {
|
|
667
|
-
readonly __kind: any;
|
|
668
|
-
};
|
|
669
|
-
faucet: Flatten<{
|
|
668
|
+
accounts?: Record<string, any> | undefined;
|
|
669
|
+
faucet?: Flatten<{
|
|
670
670
|
email?: string | undefined;
|
|
671
671
|
password?: string | undefined;
|
|
672
672
|
amount?: string | undefined;
|
|
@@ -677,15 +677,20 @@ export declare const generatedSchemas: {
|
|
|
677
677
|
};
|
|
678
678
|
} & {
|
|
679
679
|
readonly __kind: any;
|
|
680
|
-
}
|
|
680
|
+
}> | undefined;
|
|
681
|
+
label: string & {
|
|
682
|
+
readonly __kind: any;
|
|
683
|
+
};
|
|
684
|
+
rpcUrl: string & {
|
|
685
|
+
readonly __kind: any;
|
|
686
|
+
};
|
|
687
|
+
protocol: string & {
|
|
688
|
+
readonly __kind: any;
|
|
689
|
+
};
|
|
681
690
|
} & {
|
|
682
691
|
readonly __kind: any;
|
|
683
692
|
}>> | undefined;
|
|
684
693
|
sandbox?: Record<string, {
|
|
685
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
686
|
-
plugin?: (string & {
|
|
687
|
-
readonly __kind: any;
|
|
688
|
-
}) | undefined;
|
|
689
694
|
accounts?: Record<string, string | ({
|
|
690
695
|
encryptedKey: string;
|
|
691
696
|
publicKeyHash: string & {
|
|
@@ -695,6 +700,10 @@ export declare const generatedSchemas: {
|
|
|
695
700
|
} & {
|
|
696
701
|
readonly __kind: any;
|
|
697
702
|
})> | undefined;
|
|
703
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
704
|
+
plugin?: (string & {
|
|
705
|
+
readonly __kind: any;
|
|
706
|
+
}) | undefined;
|
|
698
707
|
tzkt?: {
|
|
699
708
|
disableAutostartWithSandbox: boolean;
|
|
700
709
|
postgresqlPort: number;
|
|
@@ -751,16 +760,8 @@ export declare const generatedSchemas: {
|
|
|
751
760
|
};
|
|
752
761
|
}> | undefined;
|
|
753
762
|
network?: Record<string, Flatten<{
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
};
|
|
757
|
-
rpcUrl: string & {
|
|
758
|
-
readonly __kind: any;
|
|
759
|
-
};
|
|
760
|
-
protocol: string & {
|
|
761
|
-
readonly __kind: any;
|
|
762
|
-
};
|
|
763
|
-
faucet: Flatten<{
|
|
763
|
+
accounts?: Record<string, any> | undefined;
|
|
764
|
+
faucet?: Flatten<{
|
|
764
765
|
email?: string | undefined;
|
|
765
766
|
password?: string | undefined;
|
|
766
767
|
amount?: string | undefined;
|
|
@@ -771,15 +772,20 @@ export declare const generatedSchemas: {
|
|
|
771
772
|
};
|
|
772
773
|
} & {
|
|
773
774
|
readonly __kind: any;
|
|
774
|
-
}
|
|
775
|
+
}> | undefined;
|
|
776
|
+
label: string & {
|
|
777
|
+
readonly __kind: any;
|
|
778
|
+
};
|
|
779
|
+
rpcUrl: string & {
|
|
780
|
+
readonly __kind: any;
|
|
781
|
+
};
|
|
782
|
+
protocol: string & {
|
|
783
|
+
readonly __kind: any;
|
|
784
|
+
};
|
|
775
785
|
} & {
|
|
776
786
|
readonly __kind: any;
|
|
777
787
|
}>> | undefined;
|
|
778
788
|
sandbox?: Record<string, {
|
|
779
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
780
|
-
plugin?: (string & {
|
|
781
|
-
readonly __kind: any;
|
|
782
|
-
}) | undefined;
|
|
783
789
|
accounts?: Record<string, string | ({
|
|
784
790
|
encryptedKey: string;
|
|
785
791
|
publicKeyHash: string & {
|
|
@@ -789,6 +795,10 @@ export declare const generatedSchemas: {
|
|
|
789
795
|
} & {
|
|
790
796
|
readonly __kind: any;
|
|
791
797
|
})> | undefined;
|
|
798
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
799
|
+
plugin?: (string & {
|
|
800
|
+
readonly __kind: any;
|
|
801
|
+
}) | undefined;
|
|
792
802
|
tzkt?: {
|
|
793
803
|
disableAutostartWithSandbox: boolean;
|
|
794
804
|
postgresqlPort: number;
|
|
@@ -841,16 +851,8 @@ export declare const generatedSchemas: {
|
|
|
841
851
|
};
|
|
842
852
|
}> | undefined;
|
|
843
853
|
network?: Record<string, Flatten<{
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
};
|
|
847
|
-
rpcUrl: string & {
|
|
848
|
-
readonly __kind: any;
|
|
849
|
-
};
|
|
850
|
-
protocol: string & {
|
|
851
|
-
readonly __kind: any;
|
|
852
|
-
};
|
|
853
|
-
faucet: Flatten<{
|
|
854
|
+
accounts?: Record<string, any> | undefined;
|
|
855
|
+
faucet?: Flatten<{
|
|
854
856
|
email?: string | undefined;
|
|
855
857
|
password?: string | undefined;
|
|
856
858
|
amount?: string | undefined;
|
|
@@ -861,15 +863,20 @@ export declare const generatedSchemas: {
|
|
|
861
863
|
};
|
|
862
864
|
} & {
|
|
863
865
|
readonly __kind: any;
|
|
864
|
-
}
|
|
866
|
+
}> | undefined;
|
|
867
|
+
label: string & {
|
|
868
|
+
readonly __kind: any;
|
|
869
|
+
};
|
|
870
|
+
rpcUrl: string & {
|
|
871
|
+
readonly __kind: any;
|
|
872
|
+
};
|
|
873
|
+
protocol: string & {
|
|
874
|
+
readonly __kind: any;
|
|
875
|
+
};
|
|
865
876
|
} & {
|
|
866
877
|
readonly __kind: any;
|
|
867
878
|
}>> | undefined;
|
|
868
879
|
sandbox?: Record<string, {
|
|
869
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
870
|
-
plugin?: (string & {
|
|
871
|
-
readonly __kind: any;
|
|
872
|
-
}) | undefined;
|
|
873
880
|
accounts?: Record<string, string | ({
|
|
874
881
|
encryptedKey: string;
|
|
875
882
|
publicKeyHash: string & {
|
|
@@ -879,6 +886,10 @@ export declare const generatedSchemas: {
|
|
|
879
886
|
} & {
|
|
880
887
|
readonly __kind: any;
|
|
881
888
|
})> | undefined;
|
|
889
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
890
|
+
plugin?: (string & {
|
|
891
|
+
readonly __kind: any;
|
|
892
|
+
}) | undefined;
|
|
882
893
|
tzkt?: {
|
|
883
894
|
disableAutostartWithSandbox: boolean;
|
|
884
895
|
postgresqlPort: number;
|
|
@@ -934,16 +945,8 @@ export declare const generatedSchemas: {
|
|
|
934
945
|
};
|
|
935
946
|
}> | undefined;
|
|
936
947
|
network?: Record<string, Flatten<{
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
};
|
|
940
|
-
rpcUrl: string & {
|
|
941
|
-
readonly __kind: any;
|
|
942
|
-
};
|
|
943
|
-
protocol: string & {
|
|
944
|
-
readonly __kind: any;
|
|
945
|
-
};
|
|
946
|
-
faucet: Flatten<{
|
|
948
|
+
accounts?: Record<string, any> | undefined;
|
|
949
|
+
faucet?: Flatten<{
|
|
947
950
|
email?: string | undefined;
|
|
948
951
|
password?: string | undefined;
|
|
949
952
|
amount?: string | undefined;
|
|
@@ -954,15 +957,20 @@ export declare const generatedSchemas: {
|
|
|
954
957
|
};
|
|
955
958
|
} & {
|
|
956
959
|
readonly __kind: any;
|
|
957
|
-
}
|
|
960
|
+
}> | undefined;
|
|
961
|
+
label: string & {
|
|
962
|
+
readonly __kind: any;
|
|
963
|
+
};
|
|
964
|
+
rpcUrl: string & {
|
|
965
|
+
readonly __kind: any;
|
|
966
|
+
};
|
|
967
|
+
protocol: string & {
|
|
968
|
+
readonly __kind: any;
|
|
969
|
+
};
|
|
958
970
|
} & {
|
|
959
971
|
readonly __kind: any;
|
|
960
972
|
}>> | undefined;
|
|
961
973
|
sandbox?: Record<string, {
|
|
962
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
963
|
-
plugin?: (string & {
|
|
964
|
-
readonly __kind: any;
|
|
965
|
-
}) | undefined;
|
|
966
974
|
accounts?: Record<string, string | ({
|
|
967
975
|
encryptedKey: string;
|
|
968
976
|
publicKeyHash: string & {
|
|
@@ -972,6 +980,10 @@ export declare const generatedSchemas: {
|
|
|
972
980
|
} & {
|
|
973
981
|
readonly __kind: any;
|
|
974
982
|
})> | undefined;
|
|
983
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
984
|
+
plugin?: (string & {
|
|
985
|
+
readonly __kind: any;
|
|
986
|
+
}) | undefined;
|
|
975
987
|
tzkt?: {
|
|
976
988
|
disableAutostartWithSandbox: boolean;
|
|
977
989
|
postgresqlPort: number;
|
|
@@ -1027,16 +1039,8 @@ export declare const generatedSchemas: {
|
|
|
1027
1039
|
};
|
|
1028
1040
|
}> | undefined;
|
|
1029
1041
|
network?: Record<string, Flatten<{
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
};
|
|
1033
|
-
rpcUrl: string & {
|
|
1034
|
-
readonly __kind: any;
|
|
1035
|
-
};
|
|
1036
|
-
protocol: string & {
|
|
1037
|
-
readonly __kind: any;
|
|
1038
|
-
};
|
|
1039
|
-
faucet: Flatten<{
|
|
1042
|
+
accounts?: Record<string, any> | undefined;
|
|
1043
|
+
faucet?: Flatten<{
|
|
1040
1044
|
email?: string | undefined;
|
|
1041
1045
|
password?: string | undefined;
|
|
1042
1046
|
amount?: string | undefined;
|
|
@@ -1047,15 +1051,20 @@ export declare const generatedSchemas: {
|
|
|
1047
1051
|
};
|
|
1048
1052
|
} & {
|
|
1049
1053
|
readonly __kind: any;
|
|
1050
|
-
}
|
|
1054
|
+
}> | undefined;
|
|
1055
|
+
label: string & {
|
|
1056
|
+
readonly __kind: any;
|
|
1057
|
+
};
|
|
1058
|
+
rpcUrl: string & {
|
|
1059
|
+
readonly __kind: any;
|
|
1060
|
+
};
|
|
1061
|
+
protocol: string & {
|
|
1062
|
+
readonly __kind: any;
|
|
1063
|
+
};
|
|
1051
1064
|
} & {
|
|
1052
1065
|
readonly __kind: any;
|
|
1053
1066
|
}>> | undefined;
|
|
1054
1067
|
sandbox?: Record<string, {
|
|
1055
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1056
|
-
plugin?: (string & {
|
|
1057
|
-
readonly __kind: any;
|
|
1058
|
-
}) | undefined;
|
|
1059
1068
|
accounts?: Record<string, string | ({
|
|
1060
1069
|
encryptedKey: string;
|
|
1061
1070
|
publicKeyHash: string & {
|
|
@@ -1065,6 +1074,10 @@ export declare const generatedSchemas: {
|
|
|
1065
1074
|
} & {
|
|
1066
1075
|
readonly __kind: any;
|
|
1067
1076
|
})> | undefined;
|
|
1077
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1078
|
+
plugin?: (string & {
|
|
1079
|
+
readonly __kind: any;
|
|
1080
|
+
}) | undefined;
|
|
1068
1081
|
tzkt?: {
|
|
1069
1082
|
disableAutostartWithSandbox: boolean;
|
|
1070
1083
|
postgresqlPort: number;
|
|
@@ -1114,21 +1127,20 @@ export declare const generatedSchemas: {
|
|
|
1114
1127
|
hash: string;
|
|
1115
1128
|
}> | undefined;
|
|
1116
1129
|
network?: Record<string, {
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
protocol: string;
|
|
1120
|
-
faucet: {
|
|
1130
|
+
accounts?: Record<string, any> | undefined;
|
|
1131
|
+
faucet?: {
|
|
1121
1132
|
email?: string | undefined;
|
|
1122
1133
|
password?: string | undefined;
|
|
1123
1134
|
amount?: string | undefined;
|
|
1124
1135
|
activation_code?: string | undefined;
|
|
1125
1136
|
mnemonic: string[];
|
|
1126
1137
|
pkh: string;
|
|
1127
|
-
};
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1138
|
+
} | undefined;
|
|
1139
|
+
label: string;
|
|
1140
|
+
rpcUrl: string;
|
|
1141
|
+
protocol: string;
|
|
1142
|
+
}> | undefined;
|
|
1143
|
+
sandbox?: Record<string, {
|
|
1132
1144
|
accounts?: {
|
|
1133
1145
|
default: string;
|
|
1134
1146
|
} | Record<string, {
|
|
@@ -1136,6 +1148,8 @@ export declare const generatedSchemas: {
|
|
|
1136
1148
|
publicKeyHash: string;
|
|
1137
1149
|
secretKey: string;
|
|
1138
1150
|
}> | undefined;
|
|
1151
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1152
|
+
plugin?: string | undefined;
|
|
1139
1153
|
tzkt?: {
|
|
1140
1154
|
disableAutostartWithSandbox: boolean;
|
|
1141
1155
|
postgresqlPort: number;
|
|
@@ -1175,16 +1189,8 @@ export declare const generatedSchemas: {
|
|
|
1175
1189
|
};
|
|
1176
1190
|
}> | undefined;
|
|
1177
1191
|
network?: Record<string, Flatten<{
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
};
|
|
1181
|
-
rpcUrl: string & {
|
|
1182
|
-
readonly __kind: any;
|
|
1183
|
-
};
|
|
1184
|
-
protocol: string & {
|
|
1185
|
-
readonly __kind: any;
|
|
1186
|
-
};
|
|
1187
|
-
faucet: Flatten<{
|
|
1192
|
+
accounts?: Record<string, any> | undefined;
|
|
1193
|
+
faucet?: Flatten<{
|
|
1188
1194
|
email?: string | undefined;
|
|
1189
1195
|
password?: string | undefined;
|
|
1190
1196
|
amount?: string | undefined;
|
|
@@ -1195,15 +1201,20 @@ export declare const generatedSchemas: {
|
|
|
1195
1201
|
};
|
|
1196
1202
|
} & {
|
|
1197
1203
|
readonly __kind: any;
|
|
1198
|
-
}
|
|
1204
|
+
}> | undefined;
|
|
1205
|
+
label: string & {
|
|
1206
|
+
readonly __kind: any;
|
|
1207
|
+
};
|
|
1208
|
+
rpcUrl: string & {
|
|
1209
|
+
readonly __kind: any;
|
|
1210
|
+
};
|
|
1211
|
+
protocol: string & {
|
|
1212
|
+
readonly __kind: any;
|
|
1213
|
+
};
|
|
1199
1214
|
} & {
|
|
1200
1215
|
readonly __kind: any;
|
|
1201
1216
|
}>> | undefined;
|
|
1202
1217
|
sandbox?: Record<string, {
|
|
1203
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1204
|
-
plugin?: (string & {
|
|
1205
|
-
readonly __kind: any;
|
|
1206
|
-
}) | undefined;
|
|
1207
1218
|
accounts?: Record<string, string | ({
|
|
1208
1219
|
encryptedKey: string;
|
|
1209
1220
|
publicKeyHash: string & {
|
|
@@ -1213,6 +1224,10 @@ export declare const generatedSchemas: {
|
|
|
1213
1224
|
} & {
|
|
1214
1225
|
readonly __kind: any;
|
|
1215
1226
|
})> | undefined;
|
|
1227
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1228
|
+
plugin?: (string & {
|
|
1229
|
+
readonly __kind: any;
|
|
1230
|
+
}) | undefined;
|
|
1216
1231
|
tzkt?: {
|
|
1217
1232
|
disableAutostartWithSandbox: boolean;
|
|
1218
1233
|
postgresqlPort: number;
|
|
@@ -1268,16 +1283,8 @@ export declare const generatedSchemas: {
|
|
|
1268
1283
|
};
|
|
1269
1284
|
}> | undefined;
|
|
1270
1285
|
network?: Record<string, Flatten<{
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
};
|
|
1274
|
-
rpcUrl: string & {
|
|
1275
|
-
readonly __kind: any;
|
|
1276
|
-
};
|
|
1277
|
-
protocol: string & {
|
|
1278
|
-
readonly __kind: any;
|
|
1279
|
-
};
|
|
1280
|
-
faucet: Flatten<{
|
|
1286
|
+
accounts?: Record<string, any> | undefined;
|
|
1287
|
+
faucet?: Flatten<{
|
|
1281
1288
|
email?: string | undefined;
|
|
1282
1289
|
password?: string | undefined;
|
|
1283
1290
|
amount?: string | undefined;
|
|
@@ -1288,15 +1295,20 @@ export declare const generatedSchemas: {
|
|
|
1288
1295
|
};
|
|
1289
1296
|
} & {
|
|
1290
1297
|
readonly __kind: any;
|
|
1291
|
-
}
|
|
1298
|
+
}> | undefined;
|
|
1299
|
+
label: string & {
|
|
1300
|
+
readonly __kind: any;
|
|
1301
|
+
};
|
|
1302
|
+
rpcUrl: string & {
|
|
1303
|
+
readonly __kind: any;
|
|
1304
|
+
};
|
|
1305
|
+
protocol: string & {
|
|
1306
|
+
readonly __kind: any;
|
|
1307
|
+
};
|
|
1292
1308
|
} & {
|
|
1293
1309
|
readonly __kind: any;
|
|
1294
1310
|
}>> | undefined;
|
|
1295
1311
|
sandbox?: Record<string, {
|
|
1296
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1297
|
-
plugin?: (string & {
|
|
1298
|
-
readonly __kind: any;
|
|
1299
|
-
}) | undefined;
|
|
1300
1312
|
accounts?: Record<string, string | ({
|
|
1301
1313
|
encryptedKey: string;
|
|
1302
1314
|
publicKeyHash: string & {
|
|
@@ -1306,6 +1318,10 @@ export declare const generatedSchemas: {
|
|
|
1306
1318
|
} & {
|
|
1307
1319
|
readonly __kind: any;
|
|
1308
1320
|
})> | undefined;
|
|
1321
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1322
|
+
plugin?: (string & {
|
|
1323
|
+
readonly __kind: any;
|
|
1324
|
+
}) | undefined;
|
|
1309
1325
|
tzkt?: {
|
|
1310
1326
|
disableAutostartWithSandbox: boolean;
|
|
1311
1327
|
postgresqlPort: number;
|
|
@@ -1362,16 +1378,8 @@ export declare const create: (input: {
|
|
|
1362
1378
|
};
|
|
1363
1379
|
}> | undefined;
|
|
1364
1380
|
network?: Record<string, Flatten<{
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
};
|
|
1368
|
-
rpcUrl: string & {
|
|
1369
|
-
readonly __kind: any;
|
|
1370
|
-
};
|
|
1371
|
-
protocol: string & {
|
|
1372
|
-
readonly __kind: any;
|
|
1373
|
-
};
|
|
1374
|
-
faucet: Flatten<{
|
|
1381
|
+
accounts?: Record<string, any> | undefined;
|
|
1382
|
+
faucet?: Flatten<{
|
|
1375
1383
|
email?: string | undefined;
|
|
1376
1384
|
password?: string | undefined;
|
|
1377
1385
|
amount?: string | undefined;
|
|
@@ -1382,15 +1390,20 @@ export declare const create: (input: {
|
|
|
1382
1390
|
};
|
|
1383
1391
|
} & {
|
|
1384
1392
|
readonly __kind: any;
|
|
1385
|
-
}
|
|
1393
|
+
}> | undefined;
|
|
1394
|
+
label: string & {
|
|
1395
|
+
readonly __kind: any;
|
|
1396
|
+
};
|
|
1397
|
+
rpcUrl: string & {
|
|
1398
|
+
readonly __kind: any;
|
|
1399
|
+
};
|
|
1400
|
+
protocol: string & {
|
|
1401
|
+
readonly __kind: any;
|
|
1402
|
+
};
|
|
1386
1403
|
} & {
|
|
1387
1404
|
readonly __kind: any;
|
|
1388
1405
|
}>> | undefined;
|
|
1389
1406
|
sandbox?: Record<string, {
|
|
1390
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1391
|
-
plugin?: (string & {
|
|
1392
|
-
readonly __kind: any;
|
|
1393
|
-
}) | undefined;
|
|
1394
1407
|
accounts?: Record<string, string | ({
|
|
1395
1408
|
encryptedKey: string;
|
|
1396
1409
|
publicKeyHash: string & {
|
|
@@ -1400,6 +1413,10 @@ export declare const create: (input: {
|
|
|
1400
1413
|
} & {
|
|
1401
1414
|
readonly __kind: any;
|
|
1402
1415
|
})> | undefined;
|
|
1416
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1417
|
+
plugin?: (string & {
|
|
1418
|
+
readonly __kind: any;
|
|
1419
|
+
}) | undefined;
|
|
1403
1420
|
tzkt?: {
|
|
1404
1421
|
disableAutostartWithSandbox: boolean;
|
|
1405
1422
|
postgresqlPort: number;
|
|
@@ -1449,21 +1466,20 @@ export declare const create: (input: {
|
|
|
1449
1466
|
hash: string;
|
|
1450
1467
|
}> | undefined;
|
|
1451
1468
|
network?: Record<string, {
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
protocol: string;
|
|
1455
|
-
faucet: {
|
|
1469
|
+
accounts?: Record<string, any> | undefined;
|
|
1470
|
+
faucet?: {
|
|
1456
1471
|
email?: string | undefined;
|
|
1457
1472
|
password?: string | undefined;
|
|
1458
1473
|
amount?: string | undefined;
|
|
1459
1474
|
activation_code?: string | undefined;
|
|
1460
1475
|
mnemonic: string[];
|
|
1461
1476
|
pkh: string;
|
|
1462
|
-
};
|
|
1477
|
+
} | undefined;
|
|
1478
|
+
label: string;
|
|
1479
|
+
rpcUrl: string;
|
|
1480
|
+
protocol: string;
|
|
1463
1481
|
}> | undefined;
|
|
1464
1482
|
sandbox?: Record<string, {
|
|
1465
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1466
|
-
plugin?: string | undefined;
|
|
1467
1483
|
accounts?: {
|
|
1468
1484
|
default: string;
|
|
1469
1485
|
} | Record<string, {
|
|
@@ -1471,6 +1487,8 @@ export declare const create: (input: {
|
|
|
1471
1487
|
publicKeyHash: string;
|
|
1472
1488
|
secretKey: string;
|
|
1473
1489
|
}> | undefined;
|
|
1490
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1491
|
+
plugin?: string | undefined;
|
|
1474
1492
|
tzkt?: {
|
|
1475
1493
|
disableAutostartWithSandbox: boolean;
|
|
1476
1494
|
postgresqlPort: number;
|
|
@@ -1510,16 +1528,8 @@ export declare const create: (input: {
|
|
|
1510
1528
|
};
|
|
1511
1529
|
}> | undefined;
|
|
1512
1530
|
network?: Record<string, Flatten<{
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
};
|
|
1516
|
-
rpcUrl: string & {
|
|
1517
|
-
readonly __kind: any;
|
|
1518
|
-
};
|
|
1519
|
-
protocol: string & {
|
|
1520
|
-
readonly __kind: any;
|
|
1521
|
-
};
|
|
1522
|
-
faucet: Flatten<{
|
|
1531
|
+
accounts?: Record<string, any> | undefined;
|
|
1532
|
+
faucet?: Flatten<{
|
|
1523
1533
|
email?: string | undefined;
|
|
1524
1534
|
password?: string | undefined;
|
|
1525
1535
|
amount?: string | undefined;
|
|
@@ -1530,15 +1540,20 @@ export declare const create: (input: {
|
|
|
1530
1540
|
};
|
|
1531
1541
|
} & {
|
|
1532
1542
|
readonly __kind: any;
|
|
1533
|
-
}
|
|
1543
|
+
}> | undefined;
|
|
1544
|
+
label: string & {
|
|
1545
|
+
readonly __kind: any;
|
|
1546
|
+
};
|
|
1547
|
+
rpcUrl: string & {
|
|
1548
|
+
readonly __kind: any;
|
|
1549
|
+
};
|
|
1550
|
+
protocol: string & {
|
|
1551
|
+
readonly __kind: any;
|
|
1552
|
+
};
|
|
1534
1553
|
} & {
|
|
1535
1554
|
readonly __kind: any;
|
|
1536
1555
|
}>> | undefined;
|
|
1537
1556
|
sandbox?: Record<string, {
|
|
1538
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1539
|
-
plugin?: (string & {
|
|
1540
|
-
readonly __kind: any;
|
|
1541
|
-
}) | undefined;
|
|
1542
1557
|
accounts?: Record<string, string | ({
|
|
1543
1558
|
encryptedKey: string;
|
|
1544
1559
|
publicKeyHash: string & {
|
|
@@ -1548,6 +1563,10 @@ export declare const create: (input: {
|
|
|
1548
1563
|
} & {
|
|
1549
1564
|
readonly __kind: any;
|
|
1550
1565
|
})> | undefined;
|
|
1566
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1567
|
+
plugin?: (string & {
|
|
1568
|
+
readonly __kind: any;
|
|
1569
|
+
}) | undefined;
|
|
1551
1570
|
tzkt?: {
|
|
1552
1571
|
disableAutostartWithSandbox: boolean;
|
|
1553
1572
|
postgresqlPort: number;
|
|
@@ -1602,16 +1621,8 @@ export declare const create: (input: {
|
|
|
1602
1621
|
};
|
|
1603
1622
|
}> | undefined;
|
|
1604
1623
|
network?: Record<string, Flatten<{
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
};
|
|
1608
|
-
rpcUrl: string & {
|
|
1609
|
-
readonly __kind: any;
|
|
1610
|
-
};
|
|
1611
|
-
protocol: string & {
|
|
1612
|
-
readonly __kind: any;
|
|
1613
|
-
};
|
|
1614
|
-
faucet: Flatten<{
|
|
1624
|
+
accounts?: Record<string, any> | undefined;
|
|
1625
|
+
faucet?: Flatten<{
|
|
1615
1626
|
email?: string | undefined;
|
|
1616
1627
|
password?: string | undefined;
|
|
1617
1628
|
amount?: string | undefined;
|
|
@@ -1622,15 +1633,20 @@ export declare const create: (input: {
|
|
|
1622
1633
|
};
|
|
1623
1634
|
} & {
|
|
1624
1635
|
readonly __kind: any;
|
|
1625
|
-
}
|
|
1636
|
+
}> | undefined;
|
|
1637
|
+
label: string & {
|
|
1638
|
+
readonly __kind: any;
|
|
1639
|
+
};
|
|
1640
|
+
rpcUrl: string & {
|
|
1641
|
+
readonly __kind: any;
|
|
1642
|
+
};
|
|
1643
|
+
protocol: string & {
|
|
1644
|
+
readonly __kind: any;
|
|
1645
|
+
};
|
|
1626
1646
|
} & {
|
|
1627
1647
|
readonly __kind: any;
|
|
1628
1648
|
}>> | undefined;
|
|
1629
1649
|
sandbox?: Record<string, {
|
|
1630
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1631
|
-
plugin?: (string & {
|
|
1632
|
-
readonly __kind: any;
|
|
1633
|
-
}) | undefined;
|
|
1634
1650
|
accounts?: Record<string, string | ({
|
|
1635
1651
|
encryptedKey: string;
|
|
1636
1652
|
publicKeyHash: string & {
|
|
@@ -1640,6 +1656,10 @@ export declare const create: (input: {
|
|
|
1640
1656
|
} & {
|
|
1641
1657
|
readonly __kind: any;
|
|
1642
1658
|
})> | undefined;
|
|
1659
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1660
|
+
plugin?: (string & {
|
|
1661
|
+
readonly __kind: any;
|
|
1662
|
+
}) | undefined;
|
|
1643
1663
|
tzkt?: {
|
|
1644
1664
|
disableAutostartWithSandbox: boolean;
|
|
1645
1665
|
postgresqlPort: number;
|
|
@@ -1694,16 +1714,8 @@ export declare const create: (input: {
|
|
|
1694
1714
|
};
|
|
1695
1715
|
}> | undefined;
|
|
1696
1716
|
network?: Record<string, Flatten<{
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
};
|
|
1700
|
-
rpcUrl: string & {
|
|
1701
|
-
readonly __kind: any;
|
|
1702
|
-
};
|
|
1703
|
-
protocol: string & {
|
|
1704
|
-
readonly __kind: any;
|
|
1705
|
-
};
|
|
1706
|
-
faucet: Flatten<{
|
|
1717
|
+
accounts?: Record<string, any> | undefined;
|
|
1718
|
+
faucet?: Flatten<{
|
|
1707
1719
|
email?: string | undefined;
|
|
1708
1720
|
password?: string | undefined;
|
|
1709
1721
|
amount?: string | undefined;
|
|
@@ -1714,15 +1726,20 @@ export declare const create: (input: {
|
|
|
1714
1726
|
};
|
|
1715
1727
|
} & {
|
|
1716
1728
|
readonly __kind: any;
|
|
1717
|
-
}
|
|
1729
|
+
}> | undefined;
|
|
1730
|
+
label: string & {
|
|
1731
|
+
readonly __kind: any;
|
|
1732
|
+
};
|
|
1733
|
+
rpcUrl: string & {
|
|
1734
|
+
readonly __kind: any;
|
|
1735
|
+
};
|
|
1736
|
+
protocol: string & {
|
|
1737
|
+
readonly __kind: any;
|
|
1738
|
+
};
|
|
1718
1739
|
} & {
|
|
1719
1740
|
readonly __kind: any;
|
|
1720
1741
|
}>> | undefined;
|
|
1721
1742
|
sandbox?: Record<string, {
|
|
1722
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1723
|
-
plugin?: (string & {
|
|
1724
|
-
readonly __kind: any;
|
|
1725
|
-
}) | undefined;
|
|
1726
1743
|
accounts?: Record<string, string | ({
|
|
1727
1744
|
encryptedKey: string;
|
|
1728
1745
|
publicKeyHash: string & {
|
|
@@ -1732,6 +1749,10 @@ export declare const create: (input: {
|
|
|
1732
1749
|
} & {
|
|
1733
1750
|
readonly __kind: any;
|
|
1734
1751
|
})> | undefined;
|
|
1752
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1753
|
+
plugin?: (string & {
|
|
1754
|
+
readonly __kind: any;
|
|
1755
|
+
}) | undefined;
|
|
1735
1756
|
tzkt?: {
|
|
1736
1757
|
disableAutostartWithSandbox: boolean;
|
|
1737
1758
|
postgresqlPort: number;
|
|
@@ -1784,16 +1805,8 @@ export declare const create: (input: {
|
|
|
1784
1805
|
};
|
|
1785
1806
|
}> | undefined;
|
|
1786
1807
|
network?: Record<string, Flatten<{
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
};
|
|
1790
|
-
rpcUrl: string & {
|
|
1791
|
-
readonly __kind: any;
|
|
1792
|
-
};
|
|
1793
|
-
protocol: string & {
|
|
1794
|
-
readonly __kind: any;
|
|
1795
|
-
};
|
|
1796
|
-
faucet: Flatten<{
|
|
1808
|
+
accounts?: Record<string, any> | undefined;
|
|
1809
|
+
faucet?: Flatten<{
|
|
1797
1810
|
email?: string | undefined;
|
|
1798
1811
|
password?: string | undefined;
|
|
1799
1812
|
amount?: string | undefined;
|
|
@@ -1804,15 +1817,20 @@ export declare const create: (input: {
|
|
|
1804
1817
|
};
|
|
1805
1818
|
} & {
|
|
1806
1819
|
readonly __kind: any;
|
|
1807
|
-
}
|
|
1820
|
+
}> | undefined;
|
|
1821
|
+
label: string & {
|
|
1822
|
+
readonly __kind: any;
|
|
1823
|
+
};
|
|
1824
|
+
rpcUrl: string & {
|
|
1825
|
+
readonly __kind: any;
|
|
1826
|
+
};
|
|
1827
|
+
protocol: string & {
|
|
1828
|
+
readonly __kind: any;
|
|
1829
|
+
};
|
|
1808
1830
|
} & {
|
|
1809
1831
|
readonly __kind: any;
|
|
1810
1832
|
}>> | undefined;
|
|
1811
1833
|
sandbox?: Record<string, {
|
|
1812
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1813
|
-
plugin?: (string & {
|
|
1814
|
-
readonly __kind: any;
|
|
1815
|
-
}) | undefined;
|
|
1816
1834
|
accounts?: Record<string, string | ({
|
|
1817
1835
|
encryptedKey: string;
|
|
1818
1836
|
publicKeyHash: string & {
|
|
@@ -1822,6 +1840,10 @@ export declare const create: (input: {
|
|
|
1822
1840
|
} & {
|
|
1823
1841
|
readonly __kind: any;
|
|
1824
1842
|
})> | undefined;
|
|
1843
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1844
|
+
plugin?: (string & {
|
|
1845
|
+
readonly __kind: any;
|
|
1846
|
+
}) | undefined;
|
|
1825
1847
|
tzkt?: {
|
|
1826
1848
|
disableAutostartWithSandbox: boolean;
|
|
1827
1849
|
postgresqlPort: number;
|
|
@@ -1880,16 +1902,8 @@ export declare const schemas: {
|
|
|
1880
1902
|
};
|
|
1881
1903
|
}> | undefined;
|
|
1882
1904
|
network?: Record<string, Flatten<{
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
};
|
|
1886
|
-
rpcUrl: string & {
|
|
1887
|
-
readonly __kind: any;
|
|
1888
|
-
};
|
|
1889
|
-
protocol: string & {
|
|
1890
|
-
readonly __kind: any;
|
|
1891
|
-
};
|
|
1892
|
-
faucet: Flatten<{
|
|
1905
|
+
accounts?: Record<string, any> | undefined;
|
|
1906
|
+
faucet?: Flatten<{
|
|
1893
1907
|
email?: string | undefined;
|
|
1894
1908
|
password?: string | undefined;
|
|
1895
1909
|
amount?: string | undefined;
|
|
@@ -1900,15 +1914,20 @@ export declare const schemas: {
|
|
|
1900
1914
|
};
|
|
1901
1915
|
} & {
|
|
1902
1916
|
readonly __kind: any;
|
|
1903
|
-
}
|
|
1917
|
+
}> | undefined;
|
|
1918
|
+
label: string & {
|
|
1919
|
+
readonly __kind: any;
|
|
1920
|
+
};
|
|
1921
|
+
rpcUrl: string & {
|
|
1922
|
+
readonly __kind: any;
|
|
1923
|
+
};
|
|
1924
|
+
protocol: string & {
|
|
1925
|
+
readonly __kind: any;
|
|
1926
|
+
};
|
|
1904
1927
|
} & {
|
|
1905
1928
|
readonly __kind: any;
|
|
1906
1929
|
}>> | undefined;
|
|
1907
1930
|
sandbox?: Record<string, {
|
|
1908
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1909
|
-
plugin?: (string & {
|
|
1910
|
-
readonly __kind: any;
|
|
1911
|
-
}) | undefined;
|
|
1912
1931
|
accounts?: Record<string, string | ({
|
|
1913
1932
|
encryptedKey: string;
|
|
1914
1933
|
publicKeyHash: string & {
|
|
@@ -1918,6 +1937,10 @@ export declare const schemas: {
|
|
|
1918
1937
|
} & {
|
|
1919
1938
|
readonly __kind: any;
|
|
1920
1939
|
})> | undefined;
|
|
1940
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1941
|
+
plugin?: (string & {
|
|
1942
|
+
readonly __kind: any;
|
|
1943
|
+
}) | undefined;
|
|
1921
1944
|
tzkt?: {
|
|
1922
1945
|
disableAutostartWithSandbox: boolean;
|
|
1923
1946
|
postgresqlPort: number;
|
|
@@ -1972,16 +1995,8 @@ export declare const schemas: {
|
|
|
1972
1995
|
};
|
|
1973
1996
|
}> | undefined;
|
|
1974
1997
|
network?: Record<string, Flatten<{
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
};
|
|
1978
|
-
rpcUrl: string & {
|
|
1979
|
-
readonly __kind: any;
|
|
1980
|
-
};
|
|
1981
|
-
protocol: string & {
|
|
1982
|
-
readonly __kind: any;
|
|
1983
|
-
};
|
|
1984
|
-
faucet: Flatten<{
|
|
1998
|
+
accounts?: Record<string, any> | undefined;
|
|
1999
|
+
faucet?: Flatten<{
|
|
1985
2000
|
email?: string | undefined;
|
|
1986
2001
|
password?: string | undefined;
|
|
1987
2002
|
amount?: string | undefined;
|
|
@@ -1992,15 +2007,20 @@ export declare const schemas: {
|
|
|
1992
2007
|
};
|
|
1993
2008
|
} & {
|
|
1994
2009
|
readonly __kind: any;
|
|
1995
|
-
}
|
|
2010
|
+
}> | undefined;
|
|
2011
|
+
label: string & {
|
|
2012
|
+
readonly __kind: any;
|
|
2013
|
+
};
|
|
2014
|
+
rpcUrl: string & {
|
|
2015
|
+
readonly __kind: any;
|
|
2016
|
+
};
|
|
2017
|
+
protocol: string & {
|
|
2018
|
+
readonly __kind: any;
|
|
2019
|
+
};
|
|
1996
2020
|
} & {
|
|
1997
2021
|
readonly __kind: any;
|
|
1998
2022
|
}>> | undefined;
|
|
1999
2023
|
sandbox?: Record<string, {
|
|
2000
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2001
|
-
plugin?: (string & {
|
|
2002
|
-
readonly __kind: any;
|
|
2003
|
-
}) | undefined;
|
|
2004
2024
|
accounts?: Record<string, string | ({
|
|
2005
2025
|
encryptedKey: string;
|
|
2006
2026
|
publicKeyHash: string & {
|
|
@@ -2010,6 +2030,10 @@ export declare const schemas: {
|
|
|
2010
2030
|
} & {
|
|
2011
2031
|
readonly __kind: any;
|
|
2012
2032
|
})> | undefined;
|
|
2033
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2034
|
+
plugin?: (string & {
|
|
2035
|
+
readonly __kind: any;
|
|
2036
|
+
}) | undefined;
|
|
2013
2037
|
tzkt?: {
|
|
2014
2038
|
disableAutostartWithSandbox: boolean;
|
|
2015
2039
|
postgresqlPort: number;
|