@taqueria/protocol 0.19.3 → 0.19.4
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/Base.d.ts +1 -1
- package/Base.d.ts.map +1 -1
- package/Base.js +1 -1
- package/Base.js.map +1 -1
- package/Base.mjs +1 -1
- package/Base.mjs.map +1 -1
- package/Config.d.ts +193 -194
- package/Config.d.ts.map +1 -1
- package/Config.js +21 -18
- package/Config.js.map +1 -1
- package/Config.mjs +22 -19
- package/Config.mjs.map +1 -1
- package/EphemeralState.d.ts +3 -1
- package/EphemeralState.d.ts.map +1 -1
- package/Faucet.d.ts +97 -98
- package/Faucet.d.ts.map +1 -1
- package/Faucet.js +20 -32
- package/Faucet.js.map +1 -1
- package/Faucet.mjs +20 -32
- package/Faucet.mjs.map +1 -1
- package/LoadedConfig.d.ts +201 -202
- package/LoadedConfig.d.ts.map +1 -1
- package/NetworkConfig.d.ts +107 -108
- package/NetworkConfig.d.ts.map +1 -1
- package/Operation.d.ts +32 -32
- package/ParsedOperation.d.ts +8 -8
- package/ParsedTemplate.d.ts +16 -16
- package/PluginSchema.d.ts +224 -224
- package/RequestArgs.d.ts +376 -376
- package/Template.d.ts +48 -48
- package/package.json +1 -1
package/Config.d.ts
CHANGED
|
@@ -60,7 +60,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
60
60
|
hash: string;
|
|
61
61
|
}>>>;
|
|
62
62
|
}, {
|
|
63
|
-
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
63
|
+
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
64
64
|
label: string & {
|
|
65
65
|
readonly __kind: any;
|
|
66
66
|
};
|
|
@@ -71,14 +71,14 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
71
71
|
readonly __kind: any;
|
|
72
72
|
};
|
|
73
73
|
faucet: Flatten<{
|
|
74
|
-
email?: string | undefined;
|
|
75
|
-
password?: string | undefined;
|
|
76
|
-
amount?: string | undefined;
|
|
77
|
-
activation_code?: string | undefined;
|
|
78
|
-
mnemonic: string[];
|
|
79
74
|
pkh: string & {
|
|
80
75
|
readonly __kind: any;
|
|
81
76
|
};
|
|
77
|
+
mnemonic: string[];
|
|
78
|
+
email: string;
|
|
79
|
+
password: string;
|
|
80
|
+
amount: string;
|
|
81
|
+
activation_code: string;
|
|
82
82
|
} & {
|
|
83
83
|
readonly __kind: any;
|
|
84
84
|
}>;
|
|
@@ -95,21 +95,21 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
95
95
|
readonly __kind: any;
|
|
96
96
|
};
|
|
97
97
|
faucet: Flatten<{
|
|
98
|
-
email?: string | undefined;
|
|
99
|
-
password?: string | undefined;
|
|
100
|
-
amount?: string | undefined;
|
|
101
|
-
activation_code?: string | undefined;
|
|
102
|
-
mnemonic: string[];
|
|
103
98
|
pkh: string & {
|
|
104
99
|
readonly __kind: any;
|
|
105
100
|
};
|
|
101
|
+
mnemonic: string[];
|
|
102
|
+
email: string;
|
|
103
|
+
password: string;
|
|
104
|
+
amount: string;
|
|
105
|
+
activation_code: string;
|
|
106
106
|
} & {
|
|
107
107
|
readonly __kind: any;
|
|
108
108
|
}>;
|
|
109
109
|
} & {
|
|
110
110
|
readonly __kind: any;
|
|
111
|
-
}>, any>>>;
|
|
112
|
-
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
111
|
+
}>, any>, z.ZodString]>>>;
|
|
112
|
+
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
113
113
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
114
114
|
plugin?: (string & {
|
|
115
115
|
readonly __kind: any;
|
|
@@ -169,7 +169,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
169
169
|
};
|
|
170
170
|
} & {
|
|
171
171
|
readonly __kind: any;
|
|
172
|
-
}, any>>>;
|
|
172
|
+
}, any>, z.ZodString]>>>;
|
|
173
173
|
environment: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
174
174
|
storage?: Record<string, any> | undefined;
|
|
175
175
|
aliases?: Record<string, any> | undefined;
|
|
@@ -230,7 +230,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
230
230
|
readonly __kind: any;
|
|
231
231
|
};
|
|
232
232
|
}> | undefined;
|
|
233
|
-
network?: Record<string, Flatten<{
|
|
233
|
+
network?: Record<string, string | Flatten<{
|
|
234
234
|
label: string & {
|
|
235
235
|
readonly __kind: any;
|
|
236
236
|
};
|
|
@@ -241,21 +241,21 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
241
241
|
readonly __kind: any;
|
|
242
242
|
};
|
|
243
243
|
faucet: Flatten<{
|
|
244
|
-
email?: string | undefined;
|
|
245
|
-
password?: string | undefined;
|
|
246
|
-
amount?: string | undefined;
|
|
247
|
-
activation_code?: string | undefined;
|
|
248
|
-
mnemonic: string[];
|
|
249
244
|
pkh: string & {
|
|
250
245
|
readonly __kind: any;
|
|
251
246
|
};
|
|
247
|
+
mnemonic: string[];
|
|
248
|
+
email: string;
|
|
249
|
+
password: string;
|
|
250
|
+
amount: string;
|
|
251
|
+
activation_code: string;
|
|
252
252
|
} & {
|
|
253
253
|
readonly __kind: any;
|
|
254
254
|
}>;
|
|
255
255
|
} & {
|
|
256
256
|
readonly __kind: any;
|
|
257
257
|
}>> | undefined;
|
|
258
|
-
sandbox?: Record<string, {
|
|
258
|
+
sandbox?: Record<string, string | ({
|
|
259
259
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
260
260
|
plugin?: (string & {
|
|
261
261
|
readonly __kind: any;
|
|
@@ -285,7 +285,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
285
285
|
};
|
|
286
286
|
} & {
|
|
287
287
|
readonly __kind: any;
|
|
288
|
-
}> | undefined;
|
|
288
|
+
})> | undefined;
|
|
289
289
|
environment?: Record<string, string | Flatten<{
|
|
290
290
|
storage?: Record<string, any> | undefined;
|
|
291
291
|
aliases?: Record<string, any> | undefined;
|
|
@@ -362,59 +362,58 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
362
362
|
type: "npm" | "binary" | "deno";
|
|
363
363
|
name: string;
|
|
364
364
|
}[], unknown>>;
|
|
365
|
-
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
365
|
+
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
366
366
|
label: z.ZodString;
|
|
367
367
|
rpcUrl: z.ZodString;
|
|
368
368
|
protocol: z.ZodEffects<z.ZodString, string, string>;
|
|
369
|
-
faucet: z.ZodObject<
|
|
370
|
-
mnemonic: z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>;
|
|
371
|
-
email: z.ZodOptional<z.ZodString>;
|
|
372
|
-
password: z.ZodOptional<z.ZodString>;
|
|
373
|
-
amount: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
374
|
-
activation_code: z.ZodOptional<z.ZodString>;
|
|
375
|
-
}, {
|
|
369
|
+
faucet: z.ZodObject<{
|
|
376
370
|
pkh: z.ZodString;
|
|
377
|
-
|
|
378
|
-
email
|
|
379
|
-
password
|
|
380
|
-
amount
|
|
381
|
-
activation_code
|
|
382
|
-
|
|
371
|
+
mnemonic: z.ZodArray<z.ZodString, "many">;
|
|
372
|
+
email: z.ZodString;
|
|
373
|
+
password: z.ZodString;
|
|
374
|
+
amount: z.ZodString;
|
|
375
|
+
activation_code: z.ZodString;
|
|
376
|
+
}, "strip", z.ZodTypeAny, {
|
|
383
377
|
pkh: string;
|
|
378
|
+
mnemonic: string[];
|
|
379
|
+
email: string;
|
|
380
|
+
password: string;
|
|
381
|
+
amount: string;
|
|
382
|
+
activation_code: string;
|
|
384
383
|
}, {
|
|
385
|
-
mnemonic?: unknown;
|
|
386
|
-
email?: string | undefined;
|
|
387
|
-
password?: string | undefined;
|
|
388
|
-
amount?: string | undefined;
|
|
389
|
-
activation_code?: string | undefined;
|
|
390
384
|
pkh: string;
|
|
385
|
+
mnemonic: string[];
|
|
386
|
+
email: string;
|
|
387
|
+
password: string;
|
|
388
|
+
amount: string;
|
|
389
|
+
activation_code: string;
|
|
391
390
|
}>;
|
|
392
391
|
}, "strip", z.ZodTypeAny, {
|
|
393
392
|
label: string;
|
|
394
393
|
rpcUrl: string;
|
|
395
394
|
protocol: string;
|
|
396
395
|
faucet: {
|
|
397
|
-
email?: string | undefined;
|
|
398
|
-
password?: string | undefined;
|
|
399
|
-
amount?: string | undefined;
|
|
400
|
-
activation_code?: string | undefined;
|
|
401
|
-
mnemonic: string[];
|
|
402
396
|
pkh: string;
|
|
397
|
+
mnemonic: string[];
|
|
398
|
+
email: string;
|
|
399
|
+
password: string;
|
|
400
|
+
amount: string;
|
|
401
|
+
activation_code: string;
|
|
403
402
|
};
|
|
404
403
|
}, {
|
|
405
404
|
label: string;
|
|
406
405
|
rpcUrl: string;
|
|
407
406
|
protocol: string;
|
|
408
407
|
faucet: {
|
|
409
|
-
mnemonic?: unknown;
|
|
410
|
-
email?: string | undefined;
|
|
411
|
-
password?: string | undefined;
|
|
412
|
-
amount?: string | undefined;
|
|
413
|
-
activation_code?: string | undefined;
|
|
414
408
|
pkh: string;
|
|
409
|
+
mnemonic: string[];
|
|
410
|
+
email: string;
|
|
411
|
+
password: string;
|
|
412
|
+
amount: string;
|
|
413
|
+
activation_code: string;
|
|
415
414
|
};
|
|
416
|
-
}>>>;
|
|
417
|
-
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
415
|
+
}>, z.ZodString]>>>;
|
|
416
|
+
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
418
417
|
label: z.ZodString;
|
|
419
418
|
rpcUrl: z.ZodString;
|
|
420
419
|
protocol: z.ZodString;
|
|
@@ -488,7 +487,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
488
487
|
label: string;
|
|
489
488
|
rpcUrl: string;
|
|
490
489
|
protocol: string;
|
|
491
|
-
}>>>;
|
|
490
|
+
}>, z.ZodString]>>>;
|
|
492
491
|
environment: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
493
492
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
494
493
|
sandboxes: z.ZodArray<z.ZodString, "many">;
|
|
@@ -536,20 +535,20 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
536
535
|
sourceFile: string;
|
|
537
536
|
hash: string;
|
|
538
537
|
}> | undefined;
|
|
539
|
-
network?: Record<string, {
|
|
538
|
+
network?: Record<string, string | {
|
|
540
539
|
label: string;
|
|
541
540
|
rpcUrl: string;
|
|
542
541
|
protocol: string;
|
|
543
542
|
faucet: {
|
|
544
|
-
email?: string | undefined;
|
|
545
|
-
password?: string | undefined;
|
|
546
|
-
amount?: string | undefined;
|
|
547
|
-
activation_code?: string | undefined;
|
|
548
|
-
mnemonic: string[];
|
|
549
543
|
pkh: string;
|
|
544
|
+
mnemonic: string[];
|
|
545
|
+
email: string;
|
|
546
|
+
password: string;
|
|
547
|
+
amount: string;
|
|
548
|
+
activation_code: string;
|
|
550
549
|
};
|
|
551
550
|
}> | undefined;
|
|
552
|
-
sandbox?: Record<string, {
|
|
551
|
+
sandbox?: Record<string, string | {
|
|
553
552
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
554
553
|
plugin?: string | undefined;
|
|
555
554
|
accounts?: {
|
|
@@ -593,20 +592,20 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
593
592
|
hash: string;
|
|
594
593
|
}> | undefined;
|
|
595
594
|
artifactsDir?: unknown;
|
|
596
|
-
network?: Record<string, {
|
|
595
|
+
network?: Record<string, string | {
|
|
597
596
|
label: string;
|
|
598
597
|
rpcUrl: string;
|
|
599
598
|
protocol: string;
|
|
600
599
|
faucet: {
|
|
601
|
-
mnemonic?: unknown;
|
|
602
|
-
email?: string | undefined;
|
|
603
|
-
password?: string | undefined;
|
|
604
|
-
amount?: string | undefined;
|
|
605
|
-
activation_code?: string | undefined;
|
|
606
600
|
pkh: string;
|
|
601
|
+
mnemonic: string[];
|
|
602
|
+
email: string;
|
|
603
|
+
password: string;
|
|
604
|
+
amount: string;
|
|
605
|
+
activation_code: string;
|
|
607
606
|
};
|
|
608
607
|
}> | undefined;
|
|
609
|
-
sandbox?: Record<string, {
|
|
608
|
+
sandbox?: Record<string, string | {
|
|
610
609
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
611
610
|
plugin?: string | undefined;
|
|
612
611
|
accounts?: {
|
|
@@ -656,7 +655,7 @@ export declare const generatedSchemas: {
|
|
|
656
655
|
readonly __kind: any;
|
|
657
656
|
};
|
|
658
657
|
}> | undefined;
|
|
659
|
-
network?: Record<string, Flatten<{
|
|
658
|
+
network?: Record<string, string | Flatten<{
|
|
660
659
|
label: string & {
|
|
661
660
|
readonly __kind: any;
|
|
662
661
|
};
|
|
@@ -667,21 +666,21 @@ export declare const generatedSchemas: {
|
|
|
667
666
|
readonly __kind: any;
|
|
668
667
|
};
|
|
669
668
|
faucet: Flatten<{
|
|
670
|
-
email?: string | undefined;
|
|
671
|
-
password?: string | undefined;
|
|
672
|
-
amount?: string | undefined;
|
|
673
|
-
activation_code?: string | undefined;
|
|
674
|
-
mnemonic: string[];
|
|
675
669
|
pkh: string & {
|
|
676
670
|
readonly __kind: any;
|
|
677
671
|
};
|
|
672
|
+
mnemonic: string[];
|
|
673
|
+
email: string;
|
|
674
|
+
password: string;
|
|
675
|
+
amount: string;
|
|
676
|
+
activation_code: string;
|
|
678
677
|
} & {
|
|
679
678
|
readonly __kind: any;
|
|
680
679
|
}>;
|
|
681
680
|
} & {
|
|
682
681
|
readonly __kind: any;
|
|
683
682
|
}>> | undefined;
|
|
684
|
-
sandbox?: Record<string, {
|
|
683
|
+
sandbox?: Record<string, string | ({
|
|
685
684
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
686
685
|
plugin?: (string & {
|
|
687
686
|
readonly __kind: any;
|
|
@@ -711,7 +710,7 @@ export declare const generatedSchemas: {
|
|
|
711
710
|
};
|
|
712
711
|
} & {
|
|
713
712
|
readonly __kind: any;
|
|
714
|
-
}> | undefined;
|
|
713
|
+
})> | undefined;
|
|
715
714
|
environment?: Record<string, string | Flatten<{
|
|
716
715
|
storage?: Record<string, any> | undefined;
|
|
717
716
|
aliases?: Record<string, any> | undefined;
|
|
@@ -750,7 +749,7 @@ export declare const generatedSchemas: {
|
|
|
750
749
|
readonly __kind: any;
|
|
751
750
|
};
|
|
752
751
|
}> | undefined;
|
|
753
|
-
network?: Record<string, Flatten<{
|
|
752
|
+
network?: Record<string, string | Flatten<{
|
|
754
753
|
label: string & {
|
|
755
754
|
readonly __kind: any;
|
|
756
755
|
};
|
|
@@ -761,21 +760,21 @@ export declare const generatedSchemas: {
|
|
|
761
760
|
readonly __kind: any;
|
|
762
761
|
};
|
|
763
762
|
faucet: Flatten<{
|
|
764
|
-
email?: string | undefined;
|
|
765
|
-
password?: string | undefined;
|
|
766
|
-
amount?: string | undefined;
|
|
767
|
-
activation_code?: string | undefined;
|
|
768
|
-
mnemonic: string[];
|
|
769
763
|
pkh: string & {
|
|
770
764
|
readonly __kind: any;
|
|
771
765
|
};
|
|
766
|
+
mnemonic: string[];
|
|
767
|
+
email: string;
|
|
768
|
+
password: string;
|
|
769
|
+
amount: string;
|
|
770
|
+
activation_code: string;
|
|
772
771
|
} & {
|
|
773
772
|
readonly __kind: any;
|
|
774
773
|
}>;
|
|
775
774
|
} & {
|
|
776
775
|
readonly __kind: any;
|
|
777
776
|
}>> | undefined;
|
|
778
|
-
sandbox?: Record<string, {
|
|
777
|
+
sandbox?: Record<string, string | ({
|
|
779
778
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
780
779
|
plugin?: (string & {
|
|
781
780
|
readonly __kind: any;
|
|
@@ -805,7 +804,7 @@ export declare const generatedSchemas: {
|
|
|
805
804
|
};
|
|
806
805
|
} & {
|
|
807
806
|
readonly __kind: any;
|
|
808
|
-
}> | undefined;
|
|
807
|
+
})> | undefined;
|
|
809
808
|
environment?: Record<string, string | Flatten<{
|
|
810
809
|
storage?: Record<string, any> | undefined;
|
|
811
810
|
aliases?: Record<string, any> | undefined;
|
|
@@ -840,7 +839,7 @@ export declare const generatedSchemas: {
|
|
|
840
839
|
readonly __kind: any;
|
|
841
840
|
};
|
|
842
841
|
}> | undefined;
|
|
843
|
-
network?: Record<string, Flatten<{
|
|
842
|
+
network?: Record<string, string | Flatten<{
|
|
844
843
|
label: string & {
|
|
845
844
|
readonly __kind: any;
|
|
846
845
|
};
|
|
@@ -851,21 +850,21 @@ export declare const generatedSchemas: {
|
|
|
851
850
|
readonly __kind: any;
|
|
852
851
|
};
|
|
853
852
|
faucet: Flatten<{
|
|
854
|
-
email?: string | undefined;
|
|
855
|
-
password?: string | undefined;
|
|
856
|
-
amount?: string | undefined;
|
|
857
|
-
activation_code?: string | undefined;
|
|
858
|
-
mnemonic: string[];
|
|
859
853
|
pkh: string & {
|
|
860
854
|
readonly __kind: any;
|
|
861
855
|
};
|
|
856
|
+
mnemonic: string[];
|
|
857
|
+
email: string;
|
|
858
|
+
password: string;
|
|
859
|
+
amount: string;
|
|
860
|
+
activation_code: string;
|
|
862
861
|
} & {
|
|
863
862
|
readonly __kind: any;
|
|
864
863
|
}>;
|
|
865
864
|
} & {
|
|
866
865
|
readonly __kind: any;
|
|
867
866
|
}>> | undefined;
|
|
868
|
-
sandbox?: Record<string, {
|
|
867
|
+
sandbox?: Record<string, string | ({
|
|
869
868
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
870
869
|
plugin?: (string & {
|
|
871
870
|
readonly __kind: any;
|
|
@@ -895,7 +894,7 @@ export declare const generatedSchemas: {
|
|
|
895
894
|
};
|
|
896
895
|
} & {
|
|
897
896
|
readonly __kind: any;
|
|
898
|
-
}> | undefined;
|
|
897
|
+
})> | undefined;
|
|
899
898
|
environment?: Record<string, string | Flatten<{
|
|
900
899
|
storage?: Record<string, any> | undefined;
|
|
901
900
|
aliases?: Record<string, any> | undefined;
|
|
@@ -933,7 +932,7 @@ export declare const generatedSchemas: {
|
|
|
933
932
|
readonly __kind: any;
|
|
934
933
|
};
|
|
935
934
|
}> | undefined;
|
|
936
|
-
network?: Record<string, Flatten<{
|
|
935
|
+
network?: Record<string, string | Flatten<{
|
|
937
936
|
label: string & {
|
|
938
937
|
readonly __kind: any;
|
|
939
938
|
};
|
|
@@ -944,21 +943,21 @@ export declare const generatedSchemas: {
|
|
|
944
943
|
readonly __kind: any;
|
|
945
944
|
};
|
|
946
945
|
faucet: Flatten<{
|
|
947
|
-
email?: string | undefined;
|
|
948
|
-
password?: string | undefined;
|
|
949
|
-
amount?: string | undefined;
|
|
950
|
-
activation_code?: string | undefined;
|
|
951
|
-
mnemonic: string[];
|
|
952
946
|
pkh: string & {
|
|
953
947
|
readonly __kind: any;
|
|
954
948
|
};
|
|
949
|
+
mnemonic: string[];
|
|
950
|
+
email: string;
|
|
951
|
+
password: string;
|
|
952
|
+
amount: string;
|
|
953
|
+
activation_code: string;
|
|
955
954
|
} & {
|
|
956
955
|
readonly __kind: any;
|
|
957
956
|
}>;
|
|
958
957
|
} & {
|
|
959
958
|
readonly __kind: any;
|
|
960
959
|
}>> | undefined;
|
|
961
|
-
sandbox?: Record<string, {
|
|
960
|
+
sandbox?: Record<string, string | ({
|
|
962
961
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
963
962
|
plugin?: (string & {
|
|
964
963
|
readonly __kind: any;
|
|
@@ -988,7 +987,7 @@ export declare const generatedSchemas: {
|
|
|
988
987
|
};
|
|
989
988
|
} & {
|
|
990
989
|
readonly __kind: any;
|
|
991
|
-
}> | undefined;
|
|
990
|
+
})> | undefined;
|
|
992
991
|
environment?: Record<string, string | Flatten<{
|
|
993
992
|
storage?: Record<string, any> | undefined;
|
|
994
993
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1026,7 +1025,7 @@ export declare const generatedSchemas: {
|
|
|
1026
1025
|
readonly __kind: any;
|
|
1027
1026
|
};
|
|
1028
1027
|
}> | undefined;
|
|
1029
|
-
network?: Record<string, Flatten<{
|
|
1028
|
+
network?: Record<string, string | Flatten<{
|
|
1030
1029
|
label: string & {
|
|
1031
1030
|
readonly __kind: any;
|
|
1032
1031
|
};
|
|
@@ -1037,21 +1036,21 @@ export declare const generatedSchemas: {
|
|
|
1037
1036
|
readonly __kind: any;
|
|
1038
1037
|
};
|
|
1039
1038
|
faucet: Flatten<{
|
|
1040
|
-
email?: string | undefined;
|
|
1041
|
-
password?: string | undefined;
|
|
1042
|
-
amount?: string | undefined;
|
|
1043
|
-
activation_code?: string | undefined;
|
|
1044
|
-
mnemonic: string[];
|
|
1045
1039
|
pkh: string & {
|
|
1046
1040
|
readonly __kind: any;
|
|
1047
1041
|
};
|
|
1042
|
+
mnemonic: string[];
|
|
1043
|
+
email: string;
|
|
1044
|
+
password: string;
|
|
1045
|
+
amount: string;
|
|
1046
|
+
activation_code: string;
|
|
1048
1047
|
} & {
|
|
1049
1048
|
readonly __kind: any;
|
|
1050
1049
|
}>;
|
|
1051
1050
|
} & {
|
|
1052
1051
|
readonly __kind: any;
|
|
1053
1052
|
}>> | undefined;
|
|
1054
|
-
sandbox?: Record<string, {
|
|
1053
|
+
sandbox?: Record<string, string | ({
|
|
1055
1054
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1056
1055
|
plugin?: (string & {
|
|
1057
1056
|
readonly __kind: any;
|
|
@@ -1081,7 +1080,7 @@ export declare const generatedSchemas: {
|
|
|
1081
1080
|
};
|
|
1082
1081
|
} & {
|
|
1083
1082
|
readonly __kind: any;
|
|
1084
|
-
}> | undefined;
|
|
1083
|
+
})> | undefined;
|
|
1085
1084
|
environment?: Record<string, string | Flatten<{
|
|
1086
1085
|
storage?: Record<string, any> | undefined;
|
|
1087
1086
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1113,20 +1112,20 @@ export declare const generatedSchemas: {
|
|
|
1113
1112
|
sourceFile: string;
|
|
1114
1113
|
hash: string;
|
|
1115
1114
|
}> | undefined;
|
|
1116
|
-
network?: Record<string, {
|
|
1115
|
+
network?: Record<string, string | {
|
|
1117
1116
|
label: string;
|
|
1118
1117
|
rpcUrl: string;
|
|
1119
1118
|
protocol: string;
|
|
1120
1119
|
faucet: {
|
|
1121
|
-
email?: string | undefined;
|
|
1122
|
-
password?: string | undefined;
|
|
1123
|
-
amount?: string | undefined;
|
|
1124
|
-
activation_code?: string | undefined;
|
|
1125
|
-
mnemonic: string[];
|
|
1126
1120
|
pkh: string;
|
|
1121
|
+
mnemonic: string[];
|
|
1122
|
+
email: string;
|
|
1123
|
+
password: string;
|
|
1124
|
+
amount: string;
|
|
1125
|
+
activation_code: string;
|
|
1127
1126
|
};
|
|
1128
1127
|
}> | undefined;
|
|
1129
|
-
sandbox?: Record<string, {
|
|
1128
|
+
sandbox?: Record<string, string | {
|
|
1130
1129
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1131
1130
|
plugin?: string | undefined;
|
|
1132
1131
|
accounts?: {
|
|
@@ -1174,7 +1173,7 @@ export declare const generatedSchemas: {
|
|
|
1174
1173
|
readonly __kind: any;
|
|
1175
1174
|
};
|
|
1176
1175
|
}> | undefined;
|
|
1177
|
-
network?: Record<string, Flatten<{
|
|
1176
|
+
network?: Record<string, string | Flatten<{
|
|
1178
1177
|
label: string & {
|
|
1179
1178
|
readonly __kind: any;
|
|
1180
1179
|
};
|
|
@@ -1185,21 +1184,21 @@ export declare const generatedSchemas: {
|
|
|
1185
1184
|
readonly __kind: any;
|
|
1186
1185
|
};
|
|
1187
1186
|
faucet: Flatten<{
|
|
1188
|
-
email?: string | undefined;
|
|
1189
|
-
password?: string | undefined;
|
|
1190
|
-
amount?: string | undefined;
|
|
1191
|
-
activation_code?: string | undefined;
|
|
1192
|
-
mnemonic: string[];
|
|
1193
1187
|
pkh: string & {
|
|
1194
1188
|
readonly __kind: any;
|
|
1195
1189
|
};
|
|
1190
|
+
mnemonic: string[];
|
|
1191
|
+
email: string;
|
|
1192
|
+
password: string;
|
|
1193
|
+
amount: string;
|
|
1194
|
+
activation_code: string;
|
|
1196
1195
|
} & {
|
|
1197
1196
|
readonly __kind: any;
|
|
1198
1197
|
}>;
|
|
1199
1198
|
} & {
|
|
1200
1199
|
readonly __kind: any;
|
|
1201
1200
|
}>> | undefined;
|
|
1202
|
-
sandbox?: Record<string, {
|
|
1201
|
+
sandbox?: Record<string, string | ({
|
|
1203
1202
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1204
1203
|
plugin?: (string & {
|
|
1205
1204
|
readonly __kind: any;
|
|
@@ -1229,7 +1228,7 @@ export declare const generatedSchemas: {
|
|
|
1229
1228
|
};
|
|
1230
1229
|
} & {
|
|
1231
1230
|
readonly __kind: any;
|
|
1232
|
-
}> | undefined;
|
|
1231
|
+
})> | undefined;
|
|
1233
1232
|
environment?: Record<string, string | Flatten<{
|
|
1234
1233
|
storage?: Record<string, any> | undefined;
|
|
1235
1234
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1267,7 +1266,7 @@ export declare const generatedSchemas: {
|
|
|
1267
1266
|
readonly __kind: any;
|
|
1268
1267
|
};
|
|
1269
1268
|
}> | undefined;
|
|
1270
|
-
network?: Record<string, Flatten<{
|
|
1269
|
+
network?: Record<string, string | Flatten<{
|
|
1271
1270
|
label: string & {
|
|
1272
1271
|
readonly __kind: any;
|
|
1273
1272
|
};
|
|
@@ -1278,21 +1277,21 @@ export declare const generatedSchemas: {
|
|
|
1278
1277
|
readonly __kind: any;
|
|
1279
1278
|
};
|
|
1280
1279
|
faucet: Flatten<{
|
|
1281
|
-
email?: string | undefined;
|
|
1282
|
-
password?: string | undefined;
|
|
1283
|
-
amount?: string | undefined;
|
|
1284
|
-
activation_code?: string | undefined;
|
|
1285
|
-
mnemonic: string[];
|
|
1286
1280
|
pkh: string & {
|
|
1287
1281
|
readonly __kind: any;
|
|
1288
1282
|
};
|
|
1283
|
+
mnemonic: string[];
|
|
1284
|
+
email: string;
|
|
1285
|
+
password: string;
|
|
1286
|
+
amount: string;
|
|
1287
|
+
activation_code: string;
|
|
1289
1288
|
} & {
|
|
1290
1289
|
readonly __kind: any;
|
|
1291
1290
|
}>;
|
|
1292
1291
|
} & {
|
|
1293
1292
|
readonly __kind: any;
|
|
1294
1293
|
}>> | undefined;
|
|
1295
|
-
sandbox?: Record<string, {
|
|
1294
|
+
sandbox?: Record<string, string | ({
|
|
1296
1295
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1297
1296
|
plugin?: (string & {
|
|
1298
1297
|
readonly __kind: any;
|
|
@@ -1322,7 +1321,7 @@ export declare const generatedSchemas: {
|
|
|
1322
1321
|
};
|
|
1323
1322
|
} & {
|
|
1324
1323
|
readonly __kind: any;
|
|
1325
|
-
}> | undefined;
|
|
1324
|
+
})> | undefined;
|
|
1326
1325
|
environment?: Record<string, string | Flatten<{
|
|
1327
1326
|
storage?: Record<string, any> | undefined;
|
|
1328
1327
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1361,7 +1360,7 @@ export declare const create: (input: {
|
|
|
1361
1360
|
readonly __kind: any;
|
|
1362
1361
|
};
|
|
1363
1362
|
}> | undefined;
|
|
1364
|
-
network?: Record<string, Flatten<{
|
|
1363
|
+
network?: Record<string, string | Flatten<{
|
|
1365
1364
|
label: string & {
|
|
1366
1365
|
readonly __kind: any;
|
|
1367
1366
|
};
|
|
@@ -1372,21 +1371,21 @@ export declare const create: (input: {
|
|
|
1372
1371
|
readonly __kind: any;
|
|
1373
1372
|
};
|
|
1374
1373
|
faucet: Flatten<{
|
|
1375
|
-
email?: string | undefined;
|
|
1376
|
-
password?: string | undefined;
|
|
1377
|
-
amount?: string | undefined;
|
|
1378
|
-
activation_code?: string | undefined;
|
|
1379
|
-
mnemonic: string[];
|
|
1380
1374
|
pkh: string & {
|
|
1381
1375
|
readonly __kind: any;
|
|
1382
1376
|
};
|
|
1377
|
+
mnemonic: string[];
|
|
1378
|
+
email: string;
|
|
1379
|
+
password: string;
|
|
1380
|
+
amount: string;
|
|
1381
|
+
activation_code: string;
|
|
1383
1382
|
} & {
|
|
1384
1383
|
readonly __kind: any;
|
|
1385
1384
|
}>;
|
|
1386
1385
|
} & {
|
|
1387
1386
|
readonly __kind: any;
|
|
1388
1387
|
}>> | undefined;
|
|
1389
|
-
sandbox?: Record<string, {
|
|
1388
|
+
sandbox?: Record<string, string | ({
|
|
1390
1389
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1391
1390
|
plugin?: (string & {
|
|
1392
1391
|
readonly __kind: any;
|
|
@@ -1416,7 +1415,7 @@ export declare const create: (input: {
|
|
|
1416
1415
|
};
|
|
1417
1416
|
} & {
|
|
1418
1417
|
readonly __kind: any;
|
|
1419
|
-
}> | undefined;
|
|
1418
|
+
})> | undefined;
|
|
1420
1419
|
environment?: Record<string, string | Flatten<{
|
|
1421
1420
|
storage?: Record<string, any> | undefined;
|
|
1422
1421
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1448,20 +1447,20 @@ export declare const create: (input: {
|
|
|
1448
1447
|
sourceFile: string;
|
|
1449
1448
|
hash: string;
|
|
1450
1449
|
}> | undefined;
|
|
1451
|
-
network?: Record<string, {
|
|
1450
|
+
network?: Record<string, string | {
|
|
1452
1451
|
label: string;
|
|
1453
1452
|
rpcUrl: string;
|
|
1454
1453
|
protocol: string;
|
|
1455
1454
|
faucet: {
|
|
1456
|
-
email?: string | undefined;
|
|
1457
|
-
password?: string | undefined;
|
|
1458
|
-
amount?: string | undefined;
|
|
1459
|
-
activation_code?: string | undefined;
|
|
1460
|
-
mnemonic: string[];
|
|
1461
1455
|
pkh: string;
|
|
1456
|
+
mnemonic: string[];
|
|
1457
|
+
email: string;
|
|
1458
|
+
password: string;
|
|
1459
|
+
amount: string;
|
|
1460
|
+
activation_code: string;
|
|
1462
1461
|
};
|
|
1463
1462
|
}> | undefined;
|
|
1464
|
-
sandbox?: Record<string, {
|
|
1463
|
+
sandbox?: Record<string, string | {
|
|
1465
1464
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1466
1465
|
plugin?: string | undefined;
|
|
1467
1466
|
accounts?: {
|
|
@@ -1509,7 +1508,7 @@ export declare const create: (input: {
|
|
|
1509
1508
|
readonly __kind: any;
|
|
1510
1509
|
};
|
|
1511
1510
|
}> | undefined;
|
|
1512
|
-
network?: Record<string, Flatten<{
|
|
1511
|
+
network?: Record<string, string | Flatten<{
|
|
1513
1512
|
label: string & {
|
|
1514
1513
|
readonly __kind: any;
|
|
1515
1514
|
};
|
|
@@ -1520,21 +1519,21 @@ export declare const create: (input: {
|
|
|
1520
1519
|
readonly __kind: any;
|
|
1521
1520
|
};
|
|
1522
1521
|
faucet: Flatten<{
|
|
1523
|
-
email?: string | undefined;
|
|
1524
|
-
password?: string | undefined;
|
|
1525
|
-
amount?: string | undefined;
|
|
1526
|
-
activation_code?: string | undefined;
|
|
1527
|
-
mnemonic: string[];
|
|
1528
1522
|
pkh: string & {
|
|
1529
1523
|
readonly __kind: any;
|
|
1530
1524
|
};
|
|
1525
|
+
mnemonic: string[];
|
|
1526
|
+
email: string;
|
|
1527
|
+
password: string;
|
|
1528
|
+
amount: string;
|
|
1529
|
+
activation_code: string;
|
|
1531
1530
|
} & {
|
|
1532
1531
|
readonly __kind: any;
|
|
1533
1532
|
}>;
|
|
1534
1533
|
} & {
|
|
1535
1534
|
readonly __kind: any;
|
|
1536
1535
|
}>> | undefined;
|
|
1537
|
-
sandbox?: Record<string, {
|
|
1536
|
+
sandbox?: Record<string, string | ({
|
|
1538
1537
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1539
1538
|
plugin?: (string & {
|
|
1540
1539
|
readonly __kind: any;
|
|
@@ -1564,7 +1563,7 @@ export declare const create: (input: {
|
|
|
1564
1563
|
};
|
|
1565
1564
|
} & {
|
|
1566
1565
|
readonly __kind: any;
|
|
1567
|
-
}> | undefined;
|
|
1566
|
+
})> | undefined;
|
|
1568
1567
|
environment?: Record<string, string | Flatten<{
|
|
1569
1568
|
storage?: Record<string, any> | undefined;
|
|
1570
1569
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1601,7 +1600,7 @@ export declare const create: (input: {
|
|
|
1601
1600
|
readonly __kind: any;
|
|
1602
1601
|
};
|
|
1603
1602
|
}> | undefined;
|
|
1604
|
-
network?: Record<string, Flatten<{
|
|
1603
|
+
network?: Record<string, string | Flatten<{
|
|
1605
1604
|
label: string & {
|
|
1606
1605
|
readonly __kind: any;
|
|
1607
1606
|
};
|
|
@@ -1612,21 +1611,21 @@ export declare const create: (input: {
|
|
|
1612
1611
|
readonly __kind: any;
|
|
1613
1612
|
};
|
|
1614
1613
|
faucet: Flatten<{
|
|
1615
|
-
email?: string | undefined;
|
|
1616
|
-
password?: string | undefined;
|
|
1617
|
-
amount?: string | undefined;
|
|
1618
|
-
activation_code?: string | undefined;
|
|
1619
|
-
mnemonic: string[];
|
|
1620
1614
|
pkh: string & {
|
|
1621
1615
|
readonly __kind: any;
|
|
1622
1616
|
};
|
|
1617
|
+
mnemonic: string[];
|
|
1618
|
+
email: string;
|
|
1619
|
+
password: string;
|
|
1620
|
+
amount: string;
|
|
1621
|
+
activation_code: string;
|
|
1623
1622
|
} & {
|
|
1624
1623
|
readonly __kind: any;
|
|
1625
1624
|
}>;
|
|
1626
1625
|
} & {
|
|
1627
1626
|
readonly __kind: any;
|
|
1628
1627
|
}>> | undefined;
|
|
1629
|
-
sandbox?: Record<string, {
|
|
1628
|
+
sandbox?: Record<string, string | ({
|
|
1630
1629
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1631
1630
|
plugin?: (string & {
|
|
1632
1631
|
readonly __kind: any;
|
|
@@ -1656,7 +1655,7 @@ export declare const create: (input: {
|
|
|
1656
1655
|
};
|
|
1657
1656
|
} & {
|
|
1658
1657
|
readonly __kind: any;
|
|
1659
|
-
}> | undefined;
|
|
1658
|
+
})> | undefined;
|
|
1660
1659
|
environment?: Record<string, string | Flatten<{
|
|
1661
1660
|
storage?: Record<string, any> | undefined;
|
|
1662
1661
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1693,7 +1692,7 @@ export declare const create: (input: {
|
|
|
1693
1692
|
readonly __kind: any;
|
|
1694
1693
|
};
|
|
1695
1694
|
}> | undefined;
|
|
1696
|
-
network?: Record<string, Flatten<{
|
|
1695
|
+
network?: Record<string, string | Flatten<{
|
|
1697
1696
|
label: string & {
|
|
1698
1697
|
readonly __kind: any;
|
|
1699
1698
|
};
|
|
@@ -1704,21 +1703,21 @@ export declare const create: (input: {
|
|
|
1704
1703
|
readonly __kind: any;
|
|
1705
1704
|
};
|
|
1706
1705
|
faucet: Flatten<{
|
|
1707
|
-
email?: string | undefined;
|
|
1708
|
-
password?: string | undefined;
|
|
1709
|
-
amount?: string | undefined;
|
|
1710
|
-
activation_code?: string | undefined;
|
|
1711
|
-
mnemonic: string[];
|
|
1712
1706
|
pkh: string & {
|
|
1713
1707
|
readonly __kind: any;
|
|
1714
1708
|
};
|
|
1709
|
+
mnemonic: string[];
|
|
1710
|
+
email: string;
|
|
1711
|
+
password: string;
|
|
1712
|
+
amount: string;
|
|
1713
|
+
activation_code: string;
|
|
1715
1714
|
} & {
|
|
1716
1715
|
readonly __kind: any;
|
|
1717
1716
|
}>;
|
|
1718
1717
|
} & {
|
|
1719
1718
|
readonly __kind: any;
|
|
1720
1719
|
}>> | undefined;
|
|
1721
|
-
sandbox?: Record<string, {
|
|
1720
|
+
sandbox?: Record<string, string | ({
|
|
1722
1721
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1723
1722
|
plugin?: (string & {
|
|
1724
1723
|
readonly __kind: any;
|
|
@@ -1748,7 +1747,7 @@ export declare const create: (input: {
|
|
|
1748
1747
|
};
|
|
1749
1748
|
} & {
|
|
1750
1749
|
readonly __kind: any;
|
|
1751
|
-
}> | undefined;
|
|
1750
|
+
})> | undefined;
|
|
1752
1751
|
environment?: Record<string, string | Flatten<{
|
|
1753
1752
|
storage?: Record<string, any> | undefined;
|
|
1754
1753
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1783,7 +1782,7 @@ export declare const create: (input: {
|
|
|
1783
1782
|
readonly __kind: any;
|
|
1784
1783
|
};
|
|
1785
1784
|
}> | undefined;
|
|
1786
|
-
network?: Record<string, Flatten<{
|
|
1785
|
+
network?: Record<string, string | Flatten<{
|
|
1787
1786
|
label: string & {
|
|
1788
1787
|
readonly __kind: any;
|
|
1789
1788
|
};
|
|
@@ -1794,21 +1793,21 @@ export declare const create: (input: {
|
|
|
1794
1793
|
readonly __kind: any;
|
|
1795
1794
|
};
|
|
1796
1795
|
faucet: Flatten<{
|
|
1797
|
-
email?: string | undefined;
|
|
1798
|
-
password?: string | undefined;
|
|
1799
|
-
amount?: string | undefined;
|
|
1800
|
-
activation_code?: string | undefined;
|
|
1801
|
-
mnemonic: string[];
|
|
1802
1796
|
pkh: string & {
|
|
1803
1797
|
readonly __kind: any;
|
|
1804
1798
|
};
|
|
1799
|
+
mnemonic: string[];
|
|
1800
|
+
email: string;
|
|
1801
|
+
password: string;
|
|
1802
|
+
amount: string;
|
|
1803
|
+
activation_code: string;
|
|
1805
1804
|
} & {
|
|
1806
1805
|
readonly __kind: any;
|
|
1807
1806
|
}>;
|
|
1808
1807
|
} & {
|
|
1809
1808
|
readonly __kind: any;
|
|
1810
1809
|
}>> | undefined;
|
|
1811
|
-
sandbox?: Record<string, {
|
|
1810
|
+
sandbox?: Record<string, string | ({
|
|
1812
1811
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1813
1812
|
plugin?: (string & {
|
|
1814
1813
|
readonly __kind: any;
|
|
@@ -1838,7 +1837,7 @@ export declare const create: (input: {
|
|
|
1838
1837
|
};
|
|
1839
1838
|
} & {
|
|
1840
1839
|
readonly __kind: any;
|
|
1841
|
-
}> | undefined;
|
|
1840
|
+
})> | undefined;
|
|
1842
1841
|
environment?: Record<string, string | Flatten<{
|
|
1843
1842
|
storage?: Record<string, any> | undefined;
|
|
1844
1843
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1879,7 +1878,7 @@ export declare const schemas: {
|
|
|
1879
1878
|
readonly __kind: any;
|
|
1880
1879
|
};
|
|
1881
1880
|
}> | undefined;
|
|
1882
|
-
network?: Record<string, Flatten<{
|
|
1881
|
+
network?: Record<string, string | Flatten<{
|
|
1883
1882
|
label: string & {
|
|
1884
1883
|
readonly __kind: any;
|
|
1885
1884
|
};
|
|
@@ -1890,21 +1889,21 @@ export declare const schemas: {
|
|
|
1890
1889
|
readonly __kind: any;
|
|
1891
1890
|
};
|
|
1892
1891
|
faucet: Flatten<{
|
|
1893
|
-
email?: string | undefined;
|
|
1894
|
-
password?: string | undefined;
|
|
1895
|
-
amount?: string | undefined;
|
|
1896
|
-
activation_code?: string | undefined;
|
|
1897
|
-
mnemonic: string[];
|
|
1898
1892
|
pkh: string & {
|
|
1899
1893
|
readonly __kind: any;
|
|
1900
1894
|
};
|
|
1895
|
+
mnemonic: string[];
|
|
1896
|
+
email: string;
|
|
1897
|
+
password: string;
|
|
1898
|
+
amount: string;
|
|
1899
|
+
activation_code: string;
|
|
1901
1900
|
} & {
|
|
1902
1901
|
readonly __kind: any;
|
|
1903
1902
|
}>;
|
|
1904
1903
|
} & {
|
|
1905
1904
|
readonly __kind: any;
|
|
1906
1905
|
}>> | undefined;
|
|
1907
|
-
sandbox?: Record<string, {
|
|
1906
|
+
sandbox?: Record<string, string | ({
|
|
1908
1907
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1909
1908
|
plugin?: (string & {
|
|
1910
1909
|
readonly __kind: any;
|
|
@@ -1934,7 +1933,7 @@ export declare const schemas: {
|
|
|
1934
1933
|
};
|
|
1935
1934
|
} & {
|
|
1936
1935
|
readonly __kind: any;
|
|
1937
|
-
}> | undefined;
|
|
1936
|
+
})> | undefined;
|
|
1938
1937
|
environment?: Record<string, string | Flatten<{
|
|
1939
1938
|
storage?: Record<string, any> | undefined;
|
|
1940
1939
|
aliases?: Record<string, any> | undefined;
|
|
@@ -1971,7 +1970,7 @@ export declare const schemas: {
|
|
|
1971
1970
|
readonly __kind: any;
|
|
1972
1971
|
};
|
|
1973
1972
|
}> | undefined;
|
|
1974
|
-
network?: Record<string, Flatten<{
|
|
1973
|
+
network?: Record<string, string | Flatten<{
|
|
1975
1974
|
label: string & {
|
|
1976
1975
|
readonly __kind: any;
|
|
1977
1976
|
};
|
|
@@ -1982,21 +1981,21 @@ export declare const schemas: {
|
|
|
1982
1981
|
readonly __kind: any;
|
|
1983
1982
|
};
|
|
1984
1983
|
faucet: Flatten<{
|
|
1985
|
-
email?: string | undefined;
|
|
1986
|
-
password?: string | undefined;
|
|
1987
|
-
amount?: string | undefined;
|
|
1988
|
-
activation_code?: string | undefined;
|
|
1989
|
-
mnemonic: string[];
|
|
1990
1984
|
pkh: string & {
|
|
1991
1985
|
readonly __kind: any;
|
|
1992
1986
|
};
|
|
1987
|
+
mnemonic: string[];
|
|
1988
|
+
email: string;
|
|
1989
|
+
password: string;
|
|
1990
|
+
amount: string;
|
|
1991
|
+
activation_code: string;
|
|
1993
1992
|
} & {
|
|
1994
1993
|
readonly __kind: any;
|
|
1995
1994
|
}>;
|
|
1996
1995
|
} & {
|
|
1997
1996
|
readonly __kind: any;
|
|
1998
1997
|
}>> | undefined;
|
|
1999
|
-
sandbox?: Record<string, {
|
|
1998
|
+
sandbox?: Record<string, string | ({
|
|
2000
1999
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2001
2000
|
plugin?: (string & {
|
|
2002
2001
|
readonly __kind: any;
|
|
@@ -2026,7 +2025,7 @@ export declare const schemas: {
|
|
|
2026
2025
|
};
|
|
2027
2026
|
} & {
|
|
2028
2027
|
readonly __kind: any;
|
|
2029
|
-
}> | undefined;
|
|
2028
|
+
})> | undefined;
|
|
2030
2029
|
environment?: Record<string, string | Flatten<{
|
|
2031
2030
|
storage?: Record<string, any> | undefined;
|
|
2032
2031
|
aliases?: Record<string, any> | undefined;
|