@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/LoadedConfig.d.ts
CHANGED
|
@@ -48,7 +48,8 @@ export declare const rawSchema: z.ZodObject<z.extendShape<Omit<z.extendShape<{
|
|
|
48
48
|
label: z.ZodString;
|
|
49
49
|
rpcUrl: z.ZodString;
|
|
50
50
|
protocol: z.ZodEffects<z.ZodString, string, string>;
|
|
51
|
-
|
|
51
|
+
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
|
|
52
|
+
faucet: z.ZodOptional<z.ZodObject<z.extendShape<{
|
|
52
53
|
mnemonic: z.ZodEffects<z.ZodArray<z.ZodString, "many">, string[], unknown>;
|
|
53
54
|
email: z.ZodOptional<z.ZodString>;
|
|
54
55
|
password: z.ZodOptional<z.ZodString>;
|
|
@@ -70,31 +71,33 @@ export declare const rawSchema: z.ZodObject<z.extendShape<Omit<z.extendShape<{
|
|
|
70
71
|
amount?: string | undefined;
|
|
71
72
|
activation_code?: string | undefined;
|
|
72
73
|
pkh: string;
|
|
73
|
-
}
|
|
74
|
+
}>>;
|
|
74
75
|
}, "strip", z.ZodTypeAny, {
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
protocol: string;
|
|
78
|
-
faucet: {
|
|
76
|
+
accounts?: Record<string, any> | undefined;
|
|
77
|
+
faucet?: {
|
|
79
78
|
email?: string | undefined;
|
|
80
79
|
password?: string | undefined;
|
|
81
80
|
amount?: string | undefined;
|
|
82
81
|
activation_code?: string | undefined;
|
|
83
82
|
mnemonic: string[];
|
|
84
83
|
pkh: string;
|
|
85
|
-
};
|
|
86
|
-
}, {
|
|
84
|
+
} | undefined;
|
|
87
85
|
label: string;
|
|
88
86
|
rpcUrl: string;
|
|
89
87
|
protocol: string;
|
|
90
|
-
|
|
88
|
+
}, {
|
|
89
|
+
accounts?: Record<string, any> | undefined;
|
|
90
|
+
faucet?: {
|
|
91
91
|
mnemonic?: unknown;
|
|
92
92
|
email?: string | undefined;
|
|
93
93
|
password?: string | undefined;
|
|
94
94
|
amount?: string | undefined;
|
|
95
95
|
activation_code?: string | undefined;
|
|
96
96
|
pkh: string;
|
|
97
|
-
};
|
|
97
|
+
} | undefined;
|
|
98
|
+
label: string;
|
|
99
|
+
rpcUrl: string;
|
|
100
|
+
protocol: string;
|
|
98
101
|
}>>>;
|
|
99
102
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
100
103
|
label: z.ZodString;
|
|
@@ -135,8 +138,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<Omit<z.extendShape<{
|
|
|
135
138
|
apiPort?: number | undefined;
|
|
136
139
|
}>>;
|
|
137
140
|
}, "strip", z.ZodTypeAny, {
|
|
138
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
139
|
-
plugin?: string | undefined;
|
|
140
141
|
accounts?: {
|
|
141
142
|
default: string;
|
|
142
143
|
} | Record<string, {
|
|
@@ -144,6 +145,8 @@ export declare const rawSchema: z.ZodObject<z.extendShape<Omit<z.extendShape<{
|
|
|
144
145
|
publicKeyHash: string;
|
|
145
146
|
secretKey: string;
|
|
146
147
|
}> | undefined;
|
|
148
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
149
|
+
plugin?: string | undefined;
|
|
147
150
|
tzkt?: {
|
|
148
151
|
disableAutostartWithSandbox: boolean;
|
|
149
152
|
postgresqlPort: number;
|
|
@@ -153,8 +156,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<Omit<z.extendShape<{
|
|
|
153
156
|
rpcUrl: string;
|
|
154
157
|
protocol: string;
|
|
155
158
|
}, {
|
|
156
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
157
|
-
plugin?: string | undefined;
|
|
158
159
|
accounts?: {
|
|
159
160
|
default: string;
|
|
160
161
|
} | Record<string, {
|
|
@@ -162,6 +163,8 @@ export declare const rawSchema: z.ZodObject<z.extendShape<Omit<z.extendShape<{
|
|
|
162
163
|
publicKeyHash: string;
|
|
163
164
|
secretKey: string;
|
|
164
165
|
}> | undefined;
|
|
166
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
167
|
+
plugin?: string | undefined;
|
|
165
168
|
tzkt?: {
|
|
166
169
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
167
170
|
postgresqlPort?: number | undefined;
|
|
@@ -232,21 +235,20 @@ export declare const rawSchema: z.ZodObject<z.extendShape<Omit<z.extendShape<{
|
|
|
232
235
|
hash: string;
|
|
233
236
|
}> | undefined;
|
|
234
237
|
network?: Record<string, {
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
protocol: string;
|
|
238
|
-
faucet: {
|
|
238
|
+
accounts?: Record<string, any> | undefined;
|
|
239
|
+
faucet?: {
|
|
239
240
|
email?: string | undefined;
|
|
240
241
|
password?: string | undefined;
|
|
241
242
|
amount?: string | undefined;
|
|
242
243
|
activation_code?: string | undefined;
|
|
243
244
|
mnemonic: string[];
|
|
244
245
|
pkh: string;
|
|
245
|
-
};
|
|
246
|
+
} | undefined;
|
|
247
|
+
label: string;
|
|
248
|
+
rpcUrl: string;
|
|
249
|
+
protocol: string;
|
|
246
250
|
}> | undefined;
|
|
247
251
|
sandbox?: Record<string, {
|
|
248
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
249
|
-
plugin?: string | undefined;
|
|
250
252
|
accounts?: {
|
|
251
253
|
default: string;
|
|
252
254
|
} | Record<string, {
|
|
@@ -254,6 +256,8 @@ export declare const rawSchema: z.ZodObject<z.extendShape<Omit<z.extendShape<{
|
|
|
254
256
|
publicKeyHash: string;
|
|
255
257
|
secretKey: string;
|
|
256
258
|
}> | undefined;
|
|
259
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
260
|
+
plugin?: string | undefined;
|
|
257
261
|
tzkt?: {
|
|
258
262
|
disableAutostartWithSandbox: boolean;
|
|
259
263
|
postgresqlPort: number;
|
|
@@ -296,21 +300,20 @@ export declare const rawSchema: z.ZodObject<z.extendShape<Omit<z.extendShape<{
|
|
|
296
300
|
}> | undefined;
|
|
297
301
|
artifactsDir?: unknown;
|
|
298
302
|
network?: Record<string, {
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
protocol: string;
|
|
302
|
-
faucet: {
|
|
303
|
+
accounts?: Record<string, any> | undefined;
|
|
304
|
+
faucet?: {
|
|
303
305
|
mnemonic?: unknown;
|
|
304
306
|
email?: string | undefined;
|
|
305
307
|
password?: string | undefined;
|
|
306
308
|
amount?: string | undefined;
|
|
307
309
|
activation_code?: string | undefined;
|
|
308
310
|
pkh: string;
|
|
309
|
-
};
|
|
311
|
+
} | undefined;
|
|
312
|
+
label: string;
|
|
313
|
+
rpcUrl: string;
|
|
314
|
+
protocol: string;
|
|
310
315
|
}> | undefined;
|
|
311
316
|
sandbox?: Record<string, {
|
|
312
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
313
|
-
plugin?: string | undefined;
|
|
314
317
|
accounts?: {
|
|
315
318
|
default: string;
|
|
316
319
|
} | Record<string, {
|
|
@@ -318,6 +321,8 @@ export declare const rawSchema: z.ZodObject<z.extendShape<Omit<z.extendShape<{
|
|
|
318
321
|
publicKeyHash: string;
|
|
319
322
|
secretKey: string;
|
|
320
323
|
}> | undefined;
|
|
324
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
325
|
+
plugin?: string | undefined;
|
|
321
326
|
tzkt?: {
|
|
322
327
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
323
328
|
postgresqlPort?: number | undefined;
|
|
@@ -376,16 +381,8 @@ export declare const internalSchema: z.ZodObject<z.extendShape<Omit<z.extendShap
|
|
|
376
381
|
}>>>;
|
|
377
382
|
}, {
|
|
378
383
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
};
|
|
382
|
-
rpcUrl: string & {
|
|
383
|
-
readonly __kind: any;
|
|
384
|
-
};
|
|
385
|
-
protocol: string & {
|
|
386
|
-
readonly __kind: any;
|
|
387
|
-
};
|
|
388
|
-
faucet: Flatten<{
|
|
384
|
+
accounts?: Record<string, any> | undefined;
|
|
385
|
+
faucet?: Flatten<{
|
|
389
386
|
email?: string | undefined;
|
|
390
387
|
password?: string | undefined;
|
|
391
388
|
amount?: string | undefined;
|
|
@@ -396,10 +393,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<Omit<z.extendShap
|
|
|
396
393
|
};
|
|
397
394
|
} & {
|
|
398
395
|
readonly __kind: any;
|
|
399
|
-
}
|
|
400
|
-
} & {
|
|
401
|
-
readonly __kind: any;
|
|
402
|
-
}, any>, Flatten<{
|
|
396
|
+
}> | undefined;
|
|
403
397
|
label: string & {
|
|
404
398
|
readonly __kind: any;
|
|
405
399
|
};
|
|
@@ -409,7 +403,11 @@ export declare const internalSchema: z.ZodObject<z.extendShape<Omit<z.extendShap
|
|
|
409
403
|
protocol: string & {
|
|
410
404
|
readonly __kind: any;
|
|
411
405
|
};
|
|
412
|
-
|
|
406
|
+
} & {
|
|
407
|
+
readonly __kind: any;
|
|
408
|
+
}, any>, Flatten<{
|
|
409
|
+
accounts?: Record<string, any> | undefined;
|
|
410
|
+
faucet?: Flatten<{
|
|
413
411
|
email?: string | undefined;
|
|
414
412
|
password?: string | undefined;
|
|
415
413
|
amount?: string | undefined;
|
|
@@ -420,15 +418,20 @@ export declare const internalSchema: z.ZodObject<z.extendShape<Omit<z.extendShap
|
|
|
420
418
|
};
|
|
421
419
|
} & {
|
|
422
420
|
readonly __kind: any;
|
|
423
|
-
}
|
|
421
|
+
}> | undefined;
|
|
422
|
+
label: string & {
|
|
423
|
+
readonly __kind: any;
|
|
424
|
+
};
|
|
425
|
+
rpcUrl: string & {
|
|
426
|
+
readonly __kind: any;
|
|
427
|
+
};
|
|
428
|
+
protocol: string & {
|
|
429
|
+
readonly __kind: any;
|
|
430
|
+
};
|
|
424
431
|
} & {
|
|
425
432
|
readonly __kind: any;
|
|
426
433
|
}>, any>>>;
|
|
427
434
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
428
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
429
|
-
plugin?: (string & {
|
|
430
|
-
readonly __kind: any;
|
|
431
|
-
}) | undefined;
|
|
432
435
|
accounts?: Record<string, string | ({
|
|
433
436
|
encryptedKey: string;
|
|
434
437
|
publicKeyHash: string & {
|
|
@@ -438,6 +441,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<Omit<z.extendShap
|
|
|
438
441
|
} & {
|
|
439
442
|
readonly __kind: any;
|
|
440
443
|
})> | undefined;
|
|
444
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
445
|
+
plugin?: (string & {
|
|
446
|
+
readonly __kind: any;
|
|
447
|
+
}) | undefined;
|
|
441
448
|
tzkt?: {
|
|
442
449
|
disableAutostartWithSandbox: boolean;
|
|
443
450
|
postgresqlPort: number;
|
|
@@ -455,10 +462,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<Omit<z.extendShap
|
|
|
455
462
|
} & {
|
|
456
463
|
readonly __kind: any;
|
|
457
464
|
}, any>, {
|
|
458
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
459
|
-
plugin?: (string & {
|
|
460
|
-
readonly __kind: any;
|
|
461
|
-
}) | undefined;
|
|
462
465
|
accounts?: Record<string, string | ({
|
|
463
466
|
encryptedKey: string;
|
|
464
467
|
publicKeyHash: string & {
|
|
@@ -468,6 +471,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<Omit<z.extendShap
|
|
|
468
471
|
} & {
|
|
469
472
|
readonly __kind: any;
|
|
470
473
|
})> | undefined;
|
|
474
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
475
|
+
plugin?: (string & {
|
|
476
|
+
readonly __kind: any;
|
|
477
|
+
}) | undefined;
|
|
471
478
|
tzkt?: {
|
|
472
479
|
disableAutostartWithSandbox: boolean;
|
|
473
480
|
postgresqlPort: number;
|
|
@@ -572,16 +579,8 @@ export declare const internalSchema: z.ZodObject<z.extendShape<Omit<z.extendShap
|
|
|
572
579
|
};
|
|
573
580
|
}> | undefined;
|
|
574
581
|
network?: Record<string, Flatten<{
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
};
|
|
578
|
-
rpcUrl: string & {
|
|
579
|
-
readonly __kind: any;
|
|
580
|
-
};
|
|
581
|
-
protocol: string & {
|
|
582
|
-
readonly __kind: any;
|
|
583
|
-
};
|
|
584
|
-
faucet: Flatten<{
|
|
582
|
+
accounts?: Record<string, any> | undefined;
|
|
583
|
+
faucet?: Flatten<{
|
|
585
584
|
email?: string | undefined;
|
|
586
585
|
password?: string | undefined;
|
|
587
586
|
amount?: string | undefined;
|
|
@@ -592,15 +591,20 @@ export declare const internalSchema: z.ZodObject<z.extendShape<Omit<z.extendShap
|
|
|
592
591
|
};
|
|
593
592
|
} & {
|
|
594
593
|
readonly __kind: any;
|
|
595
|
-
}
|
|
594
|
+
}> | undefined;
|
|
595
|
+
label: string & {
|
|
596
|
+
readonly __kind: any;
|
|
597
|
+
};
|
|
598
|
+
rpcUrl: string & {
|
|
599
|
+
readonly __kind: any;
|
|
600
|
+
};
|
|
601
|
+
protocol: string & {
|
|
602
|
+
readonly __kind: any;
|
|
603
|
+
};
|
|
596
604
|
} & {
|
|
597
605
|
readonly __kind: any;
|
|
598
606
|
}>> | undefined;
|
|
599
607
|
sandbox?: Record<string, {
|
|
600
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
601
|
-
plugin?: (string & {
|
|
602
|
-
readonly __kind: any;
|
|
603
|
-
}) | undefined;
|
|
604
608
|
accounts?: Record<string, string | ({
|
|
605
609
|
encryptedKey: string;
|
|
606
610
|
publicKeyHash: string & {
|
|
@@ -610,6 +614,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<Omit<z.extendShap
|
|
|
610
614
|
} & {
|
|
611
615
|
readonly __kind: any;
|
|
612
616
|
})> | undefined;
|
|
617
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
618
|
+
plugin?: (string & {
|
|
619
|
+
readonly __kind: any;
|
|
620
|
+
}) | undefined;
|
|
613
621
|
tzkt?: {
|
|
614
622
|
disableAutostartWithSandbox: boolean;
|
|
615
623
|
postgresqlPort: number;
|
|
@@ -689,16 +697,8 @@ export declare const generatedSchemas: {
|
|
|
689
697
|
};
|
|
690
698
|
}> | undefined;
|
|
691
699
|
network?: Record<string, Flatten<{
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
};
|
|
695
|
-
rpcUrl: string & {
|
|
696
|
-
readonly __kind: any;
|
|
697
|
-
};
|
|
698
|
-
protocol: string & {
|
|
699
|
-
readonly __kind: any;
|
|
700
|
-
};
|
|
701
|
-
faucet: Flatten<{
|
|
700
|
+
accounts?: Record<string, any> | undefined;
|
|
701
|
+
faucet?: Flatten<{
|
|
702
702
|
email?: string | undefined;
|
|
703
703
|
password?: string | undefined;
|
|
704
704
|
amount?: string | undefined;
|
|
@@ -709,15 +709,20 @@ export declare const generatedSchemas: {
|
|
|
709
709
|
};
|
|
710
710
|
} & {
|
|
711
711
|
readonly __kind: any;
|
|
712
|
-
}
|
|
712
|
+
}> | undefined;
|
|
713
|
+
label: string & {
|
|
714
|
+
readonly __kind: any;
|
|
715
|
+
};
|
|
716
|
+
rpcUrl: string & {
|
|
717
|
+
readonly __kind: any;
|
|
718
|
+
};
|
|
719
|
+
protocol: string & {
|
|
720
|
+
readonly __kind: any;
|
|
721
|
+
};
|
|
713
722
|
} & {
|
|
714
723
|
readonly __kind: any;
|
|
715
724
|
}>> | undefined;
|
|
716
725
|
sandbox?: Record<string, {
|
|
717
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
718
|
-
plugin?: (string & {
|
|
719
|
-
readonly __kind: any;
|
|
720
|
-
}) | undefined;
|
|
721
726
|
accounts?: Record<string, string | ({
|
|
722
727
|
encryptedKey: string;
|
|
723
728
|
publicKeyHash: string & {
|
|
@@ -727,6 +732,10 @@ export declare const generatedSchemas: {
|
|
|
727
732
|
} & {
|
|
728
733
|
readonly __kind: any;
|
|
729
734
|
})> | undefined;
|
|
735
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
736
|
+
plugin?: (string & {
|
|
737
|
+
readonly __kind: any;
|
|
738
|
+
}) | undefined;
|
|
730
739
|
tzkt?: {
|
|
731
740
|
disableAutostartWithSandbox: boolean;
|
|
732
741
|
postgresqlPort: number;
|
|
@@ -792,16 +801,8 @@ export declare const generatedSchemas: {
|
|
|
792
801
|
};
|
|
793
802
|
}> | undefined;
|
|
794
803
|
network?: Record<string, Flatten<{
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
};
|
|
798
|
-
rpcUrl: string & {
|
|
799
|
-
readonly __kind: any;
|
|
800
|
-
};
|
|
801
|
-
protocol: string & {
|
|
802
|
-
readonly __kind: any;
|
|
803
|
-
};
|
|
804
|
-
faucet: Flatten<{
|
|
804
|
+
accounts?: Record<string, any> | undefined;
|
|
805
|
+
faucet?: Flatten<{
|
|
805
806
|
email?: string | undefined;
|
|
806
807
|
password?: string | undefined;
|
|
807
808
|
amount?: string | undefined;
|
|
@@ -812,15 +813,20 @@ export declare const generatedSchemas: {
|
|
|
812
813
|
};
|
|
813
814
|
} & {
|
|
814
815
|
readonly __kind: any;
|
|
815
|
-
}
|
|
816
|
+
}> | undefined;
|
|
817
|
+
label: string & {
|
|
818
|
+
readonly __kind: any;
|
|
819
|
+
};
|
|
820
|
+
rpcUrl: string & {
|
|
821
|
+
readonly __kind: any;
|
|
822
|
+
};
|
|
823
|
+
protocol: string & {
|
|
824
|
+
readonly __kind: any;
|
|
825
|
+
};
|
|
816
826
|
} & {
|
|
817
827
|
readonly __kind: any;
|
|
818
828
|
}>> | undefined;
|
|
819
829
|
sandbox?: Record<string, {
|
|
820
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
821
|
-
plugin?: (string & {
|
|
822
|
-
readonly __kind: any;
|
|
823
|
-
}) | undefined;
|
|
824
830
|
accounts?: Record<string, string | ({
|
|
825
831
|
encryptedKey: string;
|
|
826
832
|
publicKeyHash: string & {
|
|
@@ -830,6 +836,10 @@ export declare const generatedSchemas: {
|
|
|
830
836
|
} & {
|
|
831
837
|
readonly __kind: any;
|
|
832
838
|
})> | undefined;
|
|
839
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
840
|
+
plugin?: (string & {
|
|
841
|
+
readonly __kind: any;
|
|
842
|
+
}) | undefined;
|
|
833
843
|
tzkt?: {
|
|
834
844
|
disableAutostartWithSandbox: boolean;
|
|
835
845
|
postgresqlPort: number;
|
|
@@ -891,16 +901,8 @@ export declare const generatedSchemas: {
|
|
|
891
901
|
};
|
|
892
902
|
}> | undefined;
|
|
893
903
|
network?: Record<string, Flatten<{
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
};
|
|
897
|
-
rpcUrl: string & {
|
|
898
|
-
readonly __kind: any;
|
|
899
|
-
};
|
|
900
|
-
protocol: string & {
|
|
901
|
-
readonly __kind: any;
|
|
902
|
-
};
|
|
903
|
-
faucet: Flatten<{
|
|
904
|
+
accounts?: Record<string, any> | undefined;
|
|
905
|
+
faucet?: Flatten<{
|
|
904
906
|
email?: string | undefined;
|
|
905
907
|
password?: string | undefined;
|
|
906
908
|
amount?: string | undefined;
|
|
@@ -911,15 +913,20 @@ export declare const generatedSchemas: {
|
|
|
911
913
|
};
|
|
912
914
|
} & {
|
|
913
915
|
readonly __kind: any;
|
|
914
|
-
}
|
|
916
|
+
}> | undefined;
|
|
917
|
+
label: string & {
|
|
918
|
+
readonly __kind: any;
|
|
919
|
+
};
|
|
920
|
+
rpcUrl: string & {
|
|
921
|
+
readonly __kind: any;
|
|
922
|
+
};
|
|
923
|
+
protocol: string & {
|
|
924
|
+
readonly __kind: any;
|
|
925
|
+
};
|
|
915
926
|
} & {
|
|
916
927
|
readonly __kind: any;
|
|
917
928
|
}>> | undefined;
|
|
918
929
|
sandbox?: Record<string, {
|
|
919
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
920
|
-
plugin?: (string & {
|
|
921
|
-
readonly __kind: any;
|
|
922
|
-
}) | undefined;
|
|
923
930
|
accounts?: Record<string, string | ({
|
|
924
931
|
encryptedKey: string;
|
|
925
932
|
publicKeyHash: string & {
|
|
@@ -929,6 +936,10 @@ export declare const generatedSchemas: {
|
|
|
929
936
|
} & {
|
|
930
937
|
readonly __kind: any;
|
|
931
938
|
})> | undefined;
|
|
939
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
940
|
+
plugin?: (string & {
|
|
941
|
+
readonly __kind: any;
|
|
942
|
+
}) | undefined;
|
|
932
943
|
tzkt?: {
|
|
933
944
|
disableAutostartWithSandbox: boolean;
|
|
934
945
|
postgresqlPort: number;
|
|
@@ -993,16 +1004,8 @@ export declare const generatedSchemas: {
|
|
|
993
1004
|
};
|
|
994
1005
|
}> | undefined;
|
|
995
1006
|
network?: Record<string, Flatten<{
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
};
|
|
999
|
-
rpcUrl: string & {
|
|
1000
|
-
readonly __kind: any;
|
|
1001
|
-
};
|
|
1002
|
-
protocol: string & {
|
|
1003
|
-
readonly __kind: any;
|
|
1004
|
-
};
|
|
1005
|
-
faucet: Flatten<{
|
|
1007
|
+
accounts?: Record<string, any> | undefined;
|
|
1008
|
+
faucet?: Flatten<{
|
|
1006
1009
|
email?: string | undefined;
|
|
1007
1010
|
password?: string | undefined;
|
|
1008
1011
|
amount?: string | undefined;
|
|
@@ -1013,15 +1016,20 @@ export declare const generatedSchemas: {
|
|
|
1013
1016
|
};
|
|
1014
1017
|
} & {
|
|
1015
1018
|
readonly __kind: any;
|
|
1016
|
-
}
|
|
1019
|
+
}> | undefined;
|
|
1020
|
+
label: string & {
|
|
1021
|
+
readonly __kind: any;
|
|
1022
|
+
};
|
|
1023
|
+
rpcUrl: string & {
|
|
1024
|
+
readonly __kind: any;
|
|
1025
|
+
};
|
|
1026
|
+
protocol: string & {
|
|
1027
|
+
readonly __kind: any;
|
|
1028
|
+
};
|
|
1017
1029
|
} & {
|
|
1018
1030
|
readonly __kind: any;
|
|
1019
1031
|
}>> | undefined;
|
|
1020
1032
|
sandbox?: Record<string, {
|
|
1021
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1022
|
-
plugin?: (string & {
|
|
1023
|
-
readonly __kind: any;
|
|
1024
|
-
}) | undefined;
|
|
1025
1033
|
accounts?: Record<string, string | ({
|
|
1026
1034
|
encryptedKey: string;
|
|
1027
1035
|
publicKeyHash: string & {
|
|
@@ -1031,6 +1039,10 @@ export declare const generatedSchemas: {
|
|
|
1031
1039
|
} & {
|
|
1032
1040
|
readonly __kind: any;
|
|
1033
1041
|
})> | undefined;
|
|
1042
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1043
|
+
plugin?: (string & {
|
|
1044
|
+
readonly __kind: any;
|
|
1045
|
+
}) | undefined;
|
|
1034
1046
|
tzkt?: {
|
|
1035
1047
|
disableAutostartWithSandbox: boolean;
|
|
1036
1048
|
postgresqlPort: number;
|
|
@@ -1094,21 +1106,20 @@ export declare const generatedSchemas: {
|
|
|
1094
1106
|
hash: string;
|
|
1095
1107
|
}> | undefined;
|
|
1096
1108
|
network?: Record<string, {
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
protocol: string;
|
|
1100
|
-
faucet: {
|
|
1109
|
+
accounts?: Record<string, any> | undefined;
|
|
1110
|
+
faucet?: {
|
|
1101
1111
|
email?: string | undefined;
|
|
1102
1112
|
password?: string | undefined;
|
|
1103
1113
|
amount?: string | undefined;
|
|
1104
1114
|
activation_code?: string | undefined;
|
|
1105
1115
|
mnemonic: string[];
|
|
1106
1116
|
pkh: string;
|
|
1107
|
-
};
|
|
1117
|
+
} | undefined;
|
|
1118
|
+
label: string;
|
|
1119
|
+
rpcUrl: string;
|
|
1120
|
+
protocol: string;
|
|
1108
1121
|
}> | undefined;
|
|
1109
1122
|
sandbox?: Record<string, {
|
|
1110
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1111
|
-
plugin?: string | undefined;
|
|
1112
1123
|
accounts?: {
|
|
1113
1124
|
default: string;
|
|
1114
1125
|
} | Record<string, {
|
|
@@ -1116,6 +1127,8 @@ export declare const generatedSchemas: {
|
|
|
1116
1127
|
publicKeyHash: string;
|
|
1117
1128
|
secretKey: string;
|
|
1118
1129
|
}> | undefined;
|
|
1130
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1131
|
+
plugin?: string | undefined;
|
|
1119
1132
|
tzkt?: {
|
|
1120
1133
|
disableAutostartWithSandbox: boolean;
|
|
1121
1134
|
postgresqlPort: number;
|
|
@@ -1156,16 +1169,8 @@ export declare const generatedSchemas: {
|
|
|
1156
1169
|
};
|
|
1157
1170
|
}> | undefined;
|
|
1158
1171
|
network?: Record<string, Flatten<{
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
};
|
|
1162
|
-
rpcUrl: string & {
|
|
1163
|
-
readonly __kind: any;
|
|
1164
|
-
};
|
|
1165
|
-
protocol: string & {
|
|
1166
|
-
readonly __kind: any;
|
|
1167
|
-
};
|
|
1168
|
-
faucet: Flatten<{
|
|
1172
|
+
accounts?: Record<string, any> | undefined;
|
|
1173
|
+
faucet?: Flatten<{
|
|
1169
1174
|
email?: string | undefined;
|
|
1170
1175
|
password?: string | undefined;
|
|
1171
1176
|
amount?: string | undefined;
|
|
@@ -1176,15 +1181,20 @@ export declare const generatedSchemas: {
|
|
|
1176
1181
|
};
|
|
1177
1182
|
} & {
|
|
1178
1183
|
readonly __kind: any;
|
|
1179
|
-
}
|
|
1184
|
+
}> | undefined;
|
|
1185
|
+
label: string & {
|
|
1186
|
+
readonly __kind: any;
|
|
1187
|
+
};
|
|
1188
|
+
rpcUrl: string & {
|
|
1189
|
+
readonly __kind: any;
|
|
1190
|
+
};
|
|
1191
|
+
protocol: string & {
|
|
1192
|
+
readonly __kind: any;
|
|
1193
|
+
};
|
|
1180
1194
|
} & {
|
|
1181
1195
|
readonly __kind: any;
|
|
1182
1196
|
}>> | undefined;
|
|
1183
1197
|
sandbox?: Record<string, {
|
|
1184
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1185
|
-
plugin?: (string & {
|
|
1186
|
-
readonly __kind: any;
|
|
1187
|
-
}) | undefined;
|
|
1188
1198
|
accounts?: Record<string, string | ({
|
|
1189
1199
|
encryptedKey: string;
|
|
1190
1200
|
publicKeyHash: string & {
|
|
@@ -1194,6 +1204,10 @@ export declare const generatedSchemas: {
|
|
|
1194
1204
|
} & {
|
|
1195
1205
|
readonly __kind: any;
|
|
1196
1206
|
})> | undefined;
|
|
1207
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1208
|
+
plugin?: (string & {
|
|
1209
|
+
readonly __kind: any;
|
|
1210
|
+
}) | undefined;
|
|
1197
1211
|
tzkt?: {
|
|
1198
1212
|
disableAutostartWithSandbox: boolean;
|
|
1199
1213
|
postgresqlPort: number;
|
|
@@ -1255,16 +1269,8 @@ export declare const generatedSchemas: {
|
|
|
1255
1269
|
};
|
|
1256
1270
|
}> | undefined;
|
|
1257
1271
|
network?: Record<string, Flatten<{
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
};
|
|
1261
|
-
rpcUrl: string & {
|
|
1262
|
-
readonly __kind: any;
|
|
1263
|
-
};
|
|
1264
|
-
protocol: string & {
|
|
1265
|
-
readonly __kind: any;
|
|
1266
|
-
};
|
|
1267
|
-
faucet: Flatten<{
|
|
1272
|
+
accounts?: Record<string, any> | undefined;
|
|
1273
|
+
faucet?: Flatten<{
|
|
1268
1274
|
email?: string | undefined;
|
|
1269
1275
|
password?: string | undefined;
|
|
1270
1276
|
amount?: string | undefined;
|
|
@@ -1275,15 +1281,20 @@ export declare const generatedSchemas: {
|
|
|
1275
1281
|
};
|
|
1276
1282
|
} & {
|
|
1277
1283
|
readonly __kind: any;
|
|
1278
|
-
}
|
|
1284
|
+
}> | undefined;
|
|
1285
|
+
label: string & {
|
|
1286
|
+
readonly __kind: any;
|
|
1287
|
+
};
|
|
1288
|
+
rpcUrl: string & {
|
|
1289
|
+
readonly __kind: any;
|
|
1290
|
+
};
|
|
1291
|
+
protocol: string & {
|
|
1292
|
+
readonly __kind: any;
|
|
1293
|
+
};
|
|
1279
1294
|
} & {
|
|
1280
1295
|
readonly __kind: any;
|
|
1281
1296
|
}>> | undefined;
|
|
1282
1297
|
sandbox?: Record<string, {
|
|
1283
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1284
|
-
plugin?: (string & {
|
|
1285
|
-
readonly __kind: any;
|
|
1286
|
-
}) | undefined;
|
|
1287
1298
|
accounts?: Record<string, string | ({
|
|
1288
1299
|
encryptedKey: string;
|
|
1289
1300
|
publicKeyHash: string & {
|
|
@@ -1293,6 +1304,10 @@ export declare const generatedSchemas: {
|
|
|
1293
1304
|
} & {
|
|
1294
1305
|
readonly __kind: any;
|
|
1295
1306
|
})> | undefined;
|
|
1307
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1308
|
+
plugin?: (string & {
|
|
1309
|
+
readonly __kind: any;
|
|
1310
|
+
}) | undefined;
|
|
1296
1311
|
tzkt?: {
|
|
1297
1312
|
disableAutostartWithSandbox: boolean;
|
|
1298
1313
|
postgresqlPort: number;
|
|
@@ -1357,16 +1372,8 @@ export declare const generatedSchemas: {
|
|
|
1357
1372
|
};
|
|
1358
1373
|
}> | undefined;
|
|
1359
1374
|
network?: Record<string, Flatten<{
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
};
|
|
1363
|
-
rpcUrl: string & {
|
|
1364
|
-
readonly __kind: any;
|
|
1365
|
-
};
|
|
1366
|
-
protocol: string & {
|
|
1367
|
-
readonly __kind: any;
|
|
1368
|
-
};
|
|
1369
|
-
faucet: Flatten<{
|
|
1375
|
+
accounts?: Record<string, any> | undefined;
|
|
1376
|
+
faucet?: Flatten<{
|
|
1370
1377
|
email?: string | undefined;
|
|
1371
1378
|
password?: string | undefined;
|
|
1372
1379
|
amount?: string | undefined;
|
|
@@ -1377,15 +1384,20 @@ export declare const generatedSchemas: {
|
|
|
1377
1384
|
};
|
|
1378
1385
|
} & {
|
|
1379
1386
|
readonly __kind: any;
|
|
1380
|
-
}
|
|
1387
|
+
}> | undefined;
|
|
1388
|
+
label: string & {
|
|
1389
|
+
readonly __kind: any;
|
|
1390
|
+
};
|
|
1391
|
+
rpcUrl: string & {
|
|
1392
|
+
readonly __kind: any;
|
|
1393
|
+
};
|
|
1394
|
+
protocol: string & {
|
|
1395
|
+
readonly __kind: any;
|
|
1396
|
+
};
|
|
1381
1397
|
} & {
|
|
1382
1398
|
readonly __kind: any;
|
|
1383
1399
|
}>> | undefined;
|
|
1384
1400
|
sandbox?: Record<string, {
|
|
1385
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1386
|
-
plugin?: (string & {
|
|
1387
|
-
readonly __kind: any;
|
|
1388
|
-
}) | undefined;
|
|
1389
1401
|
accounts?: Record<string, string | ({
|
|
1390
1402
|
encryptedKey: string;
|
|
1391
1403
|
publicKeyHash: string & {
|
|
@@ -1395,6 +1407,10 @@ export declare const generatedSchemas: {
|
|
|
1395
1407
|
} & {
|
|
1396
1408
|
readonly __kind: any;
|
|
1397
1409
|
})> | undefined;
|
|
1410
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1411
|
+
plugin?: (string & {
|
|
1412
|
+
readonly __kind: any;
|
|
1413
|
+
}) | undefined;
|
|
1398
1414
|
tzkt?: {
|
|
1399
1415
|
disableAutostartWithSandbox: boolean;
|
|
1400
1416
|
postgresqlPort: number;
|
|
@@ -1461,21 +1477,20 @@ export declare const create: (input: {
|
|
|
1461
1477
|
hash: string;
|
|
1462
1478
|
}> | undefined;
|
|
1463
1479
|
network?: Record<string, {
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
protocol: string;
|
|
1467
|
-
faucet: {
|
|
1480
|
+
accounts?: Record<string, any> | undefined;
|
|
1481
|
+
faucet?: {
|
|
1468
1482
|
email?: string | undefined;
|
|
1469
1483
|
password?: string | undefined;
|
|
1470
1484
|
amount?: string | undefined;
|
|
1471
1485
|
activation_code?: string | undefined;
|
|
1472
1486
|
mnemonic: string[];
|
|
1473
1487
|
pkh: string;
|
|
1474
|
-
};
|
|
1488
|
+
} | undefined;
|
|
1489
|
+
label: string;
|
|
1490
|
+
rpcUrl: string;
|
|
1491
|
+
protocol: string;
|
|
1475
1492
|
}> | undefined;
|
|
1476
1493
|
sandbox?: Record<string, {
|
|
1477
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1478
|
-
plugin?: string | undefined;
|
|
1479
1494
|
accounts?: {
|
|
1480
1495
|
default: string;
|
|
1481
1496
|
} | Record<string, {
|
|
@@ -1483,6 +1498,8 @@ export declare const create: (input: {
|
|
|
1483
1498
|
publicKeyHash: string;
|
|
1484
1499
|
secretKey: string;
|
|
1485
1500
|
}> | undefined;
|
|
1501
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1502
|
+
plugin?: string | undefined;
|
|
1486
1503
|
tzkt?: {
|
|
1487
1504
|
disableAutostartWithSandbox: boolean;
|
|
1488
1505
|
postgresqlPort: number;
|
|
@@ -1523,16 +1540,8 @@ export declare const create: (input: {
|
|
|
1523
1540
|
};
|
|
1524
1541
|
}> | undefined;
|
|
1525
1542
|
network?: Record<string, Flatten<{
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
};
|
|
1529
|
-
rpcUrl: string & {
|
|
1530
|
-
readonly __kind: any;
|
|
1531
|
-
};
|
|
1532
|
-
protocol: string & {
|
|
1533
|
-
readonly __kind: any;
|
|
1534
|
-
};
|
|
1535
|
-
faucet: Flatten<{
|
|
1543
|
+
accounts?: Record<string, any> | undefined;
|
|
1544
|
+
faucet?: Flatten<{
|
|
1536
1545
|
email?: string | undefined;
|
|
1537
1546
|
password?: string | undefined;
|
|
1538
1547
|
amount?: string | undefined;
|
|
@@ -1543,15 +1552,20 @@ export declare const create: (input: {
|
|
|
1543
1552
|
};
|
|
1544
1553
|
} & {
|
|
1545
1554
|
readonly __kind: any;
|
|
1546
|
-
}
|
|
1555
|
+
}> | undefined;
|
|
1556
|
+
label: string & {
|
|
1557
|
+
readonly __kind: any;
|
|
1558
|
+
};
|
|
1559
|
+
rpcUrl: string & {
|
|
1560
|
+
readonly __kind: any;
|
|
1561
|
+
};
|
|
1562
|
+
protocol: string & {
|
|
1563
|
+
readonly __kind: any;
|
|
1564
|
+
};
|
|
1547
1565
|
} & {
|
|
1548
1566
|
readonly __kind: any;
|
|
1549
1567
|
}>> | undefined;
|
|
1550
1568
|
sandbox?: Record<string, {
|
|
1551
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1552
|
-
plugin?: (string & {
|
|
1553
|
-
readonly __kind: any;
|
|
1554
|
-
}) | undefined;
|
|
1555
1569
|
accounts?: Record<string, string | ({
|
|
1556
1570
|
encryptedKey: string;
|
|
1557
1571
|
publicKeyHash: string & {
|
|
@@ -1561,6 +1575,10 @@ export declare const create: (input: {
|
|
|
1561
1575
|
} & {
|
|
1562
1576
|
readonly __kind: any;
|
|
1563
1577
|
})> | undefined;
|
|
1578
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1579
|
+
plugin?: (string & {
|
|
1580
|
+
readonly __kind: any;
|
|
1581
|
+
}) | undefined;
|
|
1564
1582
|
tzkt?: {
|
|
1565
1583
|
disableAutostartWithSandbox: boolean;
|
|
1566
1584
|
postgresqlPort: number;
|
|
@@ -1622,16 +1640,8 @@ export declare const create: (input: {
|
|
|
1622
1640
|
};
|
|
1623
1641
|
}> | undefined;
|
|
1624
1642
|
network?: Record<string, Flatten<{
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
};
|
|
1628
|
-
rpcUrl: string & {
|
|
1629
|
-
readonly __kind: any;
|
|
1630
|
-
};
|
|
1631
|
-
protocol: string & {
|
|
1632
|
-
readonly __kind: any;
|
|
1633
|
-
};
|
|
1634
|
-
faucet: Flatten<{
|
|
1643
|
+
accounts?: Record<string, any> | undefined;
|
|
1644
|
+
faucet?: Flatten<{
|
|
1635
1645
|
email?: string | undefined;
|
|
1636
1646
|
password?: string | undefined;
|
|
1637
1647
|
amount?: string | undefined;
|
|
@@ -1642,15 +1652,20 @@ export declare const create: (input: {
|
|
|
1642
1652
|
};
|
|
1643
1653
|
} & {
|
|
1644
1654
|
readonly __kind: any;
|
|
1645
|
-
}
|
|
1655
|
+
}> | undefined;
|
|
1656
|
+
label: string & {
|
|
1657
|
+
readonly __kind: any;
|
|
1658
|
+
};
|
|
1659
|
+
rpcUrl: string & {
|
|
1660
|
+
readonly __kind: any;
|
|
1661
|
+
};
|
|
1662
|
+
protocol: string & {
|
|
1663
|
+
readonly __kind: any;
|
|
1664
|
+
};
|
|
1646
1665
|
} & {
|
|
1647
1666
|
readonly __kind: any;
|
|
1648
1667
|
}>> | undefined;
|
|
1649
1668
|
sandbox?: Record<string, {
|
|
1650
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1651
|
-
plugin?: (string & {
|
|
1652
|
-
readonly __kind: any;
|
|
1653
|
-
}) | undefined;
|
|
1654
1669
|
accounts?: Record<string, string | ({
|
|
1655
1670
|
encryptedKey: string;
|
|
1656
1671
|
publicKeyHash: string & {
|
|
@@ -1660,6 +1675,10 @@ export declare const create: (input: {
|
|
|
1660
1675
|
} & {
|
|
1661
1676
|
readonly __kind: any;
|
|
1662
1677
|
})> | undefined;
|
|
1678
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1679
|
+
plugin?: (string & {
|
|
1680
|
+
readonly __kind: any;
|
|
1681
|
+
}) | undefined;
|
|
1663
1682
|
tzkt?: {
|
|
1664
1683
|
disableAutostartWithSandbox: boolean;
|
|
1665
1684
|
postgresqlPort: number;
|
|
@@ -1723,16 +1742,8 @@ export declare const create: (input: {
|
|
|
1723
1742
|
};
|
|
1724
1743
|
}> | undefined;
|
|
1725
1744
|
network?: Record<string, Flatten<{
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
};
|
|
1729
|
-
rpcUrl: string & {
|
|
1730
|
-
readonly __kind: any;
|
|
1731
|
-
};
|
|
1732
|
-
protocol: string & {
|
|
1733
|
-
readonly __kind: any;
|
|
1734
|
-
};
|
|
1735
|
-
faucet: Flatten<{
|
|
1745
|
+
accounts?: Record<string, any> | undefined;
|
|
1746
|
+
faucet?: Flatten<{
|
|
1736
1747
|
email?: string | undefined;
|
|
1737
1748
|
password?: string | undefined;
|
|
1738
1749
|
amount?: string | undefined;
|
|
@@ -1743,15 +1754,20 @@ export declare const create: (input: {
|
|
|
1743
1754
|
};
|
|
1744
1755
|
} & {
|
|
1745
1756
|
readonly __kind: any;
|
|
1746
|
-
}
|
|
1757
|
+
}> | undefined;
|
|
1758
|
+
label: string & {
|
|
1759
|
+
readonly __kind: any;
|
|
1760
|
+
};
|
|
1761
|
+
rpcUrl: string & {
|
|
1762
|
+
readonly __kind: any;
|
|
1763
|
+
};
|
|
1764
|
+
protocol: string & {
|
|
1765
|
+
readonly __kind: any;
|
|
1766
|
+
};
|
|
1747
1767
|
} & {
|
|
1748
1768
|
readonly __kind: any;
|
|
1749
1769
|
}>> | undefined;
|
|
1750
1770
|
sandbox?: Record<string, {
|
|
1751
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1752
|
-
plugin?: (string & {
|
|
1753
|
-
readonly __kind: any;
|
|
1754
|
-
}) | undefined;
|
|
1755
1771
|
accounts?: Record<string, string | ({
|
|
1756
1772
|
encryptedKey: string;
|
|
1757
1773
|
publicKeyHash: string & {
|
|
@@ -1761,6 +1777,10 @@ export declare const create: (input: {
|
|
|
1761
1777
|
} & {
|
|
1762
1778
|
readonly __kind: any;
|
|
1763
1779
|
})> | undefined;
|
|
1780
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1781
|
+
plugin?: (string & {
|
|
1782
|
+
readonly __kind: any;
|
|
1783
|
+
}) | undefined;
|
|
1764
1784
|
tzkt?: {
|
|
1765
1785
|
disableAutostartWithSandbox: boolean;
|
|
1766
1786
|
postgresqlPort: number;
|
|
@@ -1824,16 +1844,8 @@ export declare const create: (input: {
|
|
|
1824
1844
|
};
|
|
1825
1845
|
}> | undefined;
|
|
1826
1846
|
network?: Record<string, Flatten<{
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
};
|
|
1830
|
-
rpcUrl: string & {
|
|
1831
|
-
readonly __kind: any;
|
|
1832
|
-
};
|
|
1833
|
-
protocol: string & {
|
|
1834
|
-
readonly __kind: any;
|
|
1835
|
-
};
|
|
1836
|
-
faucet: Flatten<{
|
|
1847
|
+
accounts?: Record<string, any> | undefined;
|
|
1848
|
+
faucet?: Flatten<{
|
|
1837
1849
|
email?: string | undefined;
|
|
1838
1850
|
password?: string | undefined;
|
|
1839
1851
|
amount?: string | undefined;
|
|
@@ -1844,15 +1856,20 @@ export declare const create: (input: {
|
|
|
1844
1856
|
};
|
|
1845
1857
|
} & {
|
|
1846
1858
|
readonly __kind: any;
|
|
1847
|
-
}
|
|
1859
|
+
}> | undefined;
|
|
1860
|
+
label: string & {
|
|
1861
|
+
readonly __kind: any;
|
|
1862
|
+
};
|
|
1863
|
+
rpcUrl: string & {
|
|
1864
|
+
readonly __kind: any;
|
|
1865
|
+
};
|
|
1866
|
+
protocol: string & {
|
|
1867
|
+
readonly __kind: any;
|
|
1868
|
+
};
|
|
1848
1869
|
} & {
|
|
1849
1870
|
readonly __kind: any;
|
|
1850
1871
|
}>> | undefined;
|
|
1851
1872
|
sandbox?: Record<string, {
|
|
1852
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1853
|
-
plugin?: (string & {
|
|
1854
|
-
readonly __kind: any;
|
|
1855
|
-
}) | undefined;
|
|
1856
1873
|
accounts?: Record<string, string | ({
|
|
1857
1874
|
encryptedKey: string;
|
|
1858
1875
|
publicKeyHash: string & {
|
|
@@ -1862,6 +1879,10 @@ export declare const create: (input: {
|
|
|
1862
1879
|
} & {
|
|
1863
1880
|
readonly __kind: any;
|
|
1864
1881
|
})> | undefined;
|
|
1882
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1883
|
+
plugin?: (string & {
|
|
1884
|
+
readonly __kind: any;
|
|
1885
|
+
}) | undefined;
|
|
1865
1886
|
tzkt?: {
|
|
1866
1887
|
disableAutostartWithSandbox: boolean;
|
|
1867
1888
|
postgresqlPort: number;
|
|
@@ -1923,16 +1944,8 @@ export declare const create: (input: {
|
|
|
1923
1944
|
};
|
|
1924
1945
|
}> | undefined;
|
|
1925
1946
|
network?: Record<string, Flatten<{
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
};
|
|
1929
|
-
rpcUrl: string & {
|
|
1930
|
-
readonly __kind: any;
|
|
1931
|
-
};
|
|
1932
|
-
protocol: string & {
|
|
1933
|
-
readonly __kind: any;
|
|
1934
|
-
};
|
|
1935
|
-
faucet: Flatten<{
|
|
1947
|
+
accounts?: Record<string, any> | undefined;
|
|
1948
|
+
faucet?: Flatten<{
|
|
1936
1949
|
email?: string | undefined;
|
|
1937
1950
|
password?: string | undefined;
|
|
1938
1951
|
amount?: string | undefined;
|
|
@@ -1943,15 +1956,20 @@ export declare const create: (input: {
|
|
|
1943
1956
|
};
|
|
1944
1957
|
} & {
|
|
1945
1958
|
readonly __kind: any;
|
|
1946
|
-
}
|
|
1959
|
+
}> | undefined;
|
|
1960
|
+
label: string & {
|
|
1961
|
+
readonly __kind: any;
|
|
1962
|
+
};
|
|
1963
|
+
rpcUrl: string & {
|
|
1964
|
+
readonly __kind: any;
|
|
1965
|
+
};
|
|
1966
|
+
protocol: string & {
|
|
1967
|
+
readonly __kind: any;
|
|
1968
|
+
};
|
|
1947
1969
|
} & {
|
|
1948
1970
|
readonly __kind: any;
|
|
1949
1971
|
}>> | undefined;
|
|
1950
1972
|
sandbox?: Record<string, {
|
|
1951
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1952
|
-
plugin?: (string & {
|
|
1953
|
-
readonly __kind: any;
|
|
1954
|
-
}) | undefined;
|
|
1955
1973
|
accounts?: Record<string, string | ({
|
|
1956
1974
|
encryptedKey: string;
|
|
1957
1975
|
publicKeyHash: string & {
|
|
@@ -1961,6 +1979,10 @@ export declare const create: (input: {
|
|
|
1961
1979
|
} & {
|
|
1962
1980
|
readonly __kind: any;
|
|
1963
1981
|
})> | undefined;
|
|
1982
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1983
|
+
plugin?: (string & {
|
|
1984
|
+
readonly __kind: any;
|
|
1985
|
+
}) | undefined;
|
|
1964
1986
|
tzkt?: {
|
|
1965
1987
|
disableAutostartWithSandbox: boolean;
|
|
1966
1988
|
postgresqlPort: number;
|
|
@@ -2026,16 +2048,8 @@ export declare const schemas: {
|
|
|
2026
2048
|
};
|
|
2027
2049
|
}> | undefined;
|
|
2028
2050
|
network?: Record<string, Flatten<{
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
};
|
|
2032
|
-
rpcUrl: string & {
|
|
2033
|
-
readonly __kind: any;
|
|
2034
|
-
};
|
|
2035
|
-
protocol: string & {
|
|
2036
|
-
readonly __kind: any;
|
|
2037
|
-
};
|
|
2038
|
-
faucet: Flatten<{
|
|
2051
|
+
accounts?: Record<string, any> | undefined;
|
|
2052
|
+
faucet?: Flatten<{
|
|
2039
2053
|
email?: string | undefined;
|
|
2040
2054
|
password?: string | undefined;
|
|
2041
2055
|
amount?: string | undefined;
|
|
@@ -2046,15 +2060,20 @@ export declare const schemas: {
|
|
|
2046
2060
|
};
|
|
2047
2061
|
} & {
|
|
2048
2062
|
readonly __kind: any;
|
|
2049
|
-
}
|
|
2063
|
+
}> | undefined;
|
|
2064
|
+
label: string & {
|
|
2065
|
+
readonly __kind: any;
|
|
2066
|
+
};
|
|
2067
|
+
rpcUrl: string & {
|
|
2068
|
+
readonly __kind: any;
|
|
2069
|
+
};
|
|
2070
|
+
protocol: string & {
|
|
2071
|
+
readonly __kind: any;
|
|
2072
|
+
};
|
|
2050
2073
|
} & {
|
|
2051
2074
|
readonly __kind: any;
|
|
2052
2075
|
}>> | undefined;
|
|
2053
2076
|
sandbox?: Record<string, {
|
|
2054
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2055
|
-
plugin?: (string & {
|
|
2056
|
-
readonly __kind: any;
|
|
2057
|
-
}) | undefined;
|
|
2058
2077
|
accounts?: Record<string, string | ({
|
|
2059
2078
|
encryptedKey: string;
|
|
2060
2079
|
publicKeyHash: string & {
|
|
@@ -2064,6 +2083,10 @@ export declare const schemas: {
|
|
|
2064
2083
|
} & {
|
|
2065
2084
|
readonly __kind: any;
|
|
2066
2085
|
})> | undefined;
|
|
2086
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2087
|
+
plugin?: (string & {
|
|
2088
|
+
readonly __kind: any;
|
|
2089
|
+
}) | undefined;
|
|
2067
2090
|
tzkt?: {
|
|
2068
2091
|
disableAutostartWithSandbox: boolean;
|
|
2069
2092
|
postgresqlPort: number;
|
|
@@ -2127,16 +2150,8 @@ export declare const schemas: {
|
|
|
2127
2150
|
};
|
|
2128
2151
|
}> | undefined;
|
|
2129
2152
|
network?: Record<string, Flatten<{
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
};
|
|
2133
|
-
rpcUrl: string & {
|
|
2134
|
-
readonly __kind: any;
|
|
2135
|
-
};
|
|
2136
|
-
protocol: string & {
|
|
2137
|
-
readonly __kind: any;
|
|
2138
|
-
};
|
|
2139
|
-
faucet: Flatten<{
|
|
2153
|
+
accounts?: Record<string, any> | undefined;
|
|
2154
|
+
faucet?: Flatten<{
|
|
2140
2155
|
email?: string | undefined;
|
|
2141
2156
|
password?: string | undefined;
|
|
2142
2157
|
amount?: string | undefined;
|
|
@@ -2147,15 +2162,20 @@ export declare const schemas: {
|
|
|
2147
2162
|
};
|
|
2148
2163
|
} & {
|
|
2149
2164
|
readonly __kind: any;
|
|
2150
|
-
}
|
|
2165
|
+
}> | undefined;
|
|
2166
|
+
label: string & {
|
|
2167
|
+
readonly __kind: any;
|
|
2168
|
+
};
|
|
2169
|
+
rpcUrl: string & {
|
|
2170
|
+
readonly __kind: any;
|
|
2171
|
+
};
|
|
2172
|
+
protocol: string & {
|
|
2173
|
+
readonly __kind: any;
|
|
2174
|
+
};
|
|
2151
2175
|
} & {
|
|
2152
2176
|
readonly __kind: any;
|
|
2153
2177
|
}>> | undefined;
|
|
2154
2178
|
sandbox?: Record<string, {
|
|
2155
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2156
|
-
plugin?: (string & {
|
|
2157
|
-
readonly __kind: any;
|
|
2158
|
-
}) | undefined;
|
|
2159
2179
|
accounts?: Record<string, string | ({
|
|
2160
2180
|
encryptedKey: string;
|
|
2161
2181
|
publicKeyHash: string & {
|
|
@@ -2165,6 +2185,10 @@ export declare const schemas: {
|
|
|
2165
2185
|
} & {
|
|
2166
2186
|
readonly __kind: any;
|
|
2167
2187
|
})> | undefined;
|
|
2188
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2189
|
+
plugin?: (string & {
|
|
2190
|
+
readonly __kind: any;
|
|
2191
|
+
}) | undefined;
|
|
2168
2192
|
tzkt?: {
|
|
2169
2193
|
disableAutostartWithSandbox: boolean;
|
|
2170
2194
|
postgresqlPort: number;
|
|
@@ -2238,16 +2262,8 @@ export declare const toConfig: (config: LoadedConfig) => import("fluture").Futur
|
|
|
2238
2262
|
};
|
|
2239
2263
|
}> | undefined;
|
|
2240
2264
|
network?: Record<string, Flatten<{
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
};
|
|
2244
|
-
rpcUrl: string & {
|
|
2245
|
-
readonly __kind: any;
|
|
2246
|
-
};
|
|
2247
|
-
protocol: string & {
|
|
2248
|
-
readonly __kind: any;
|
|
2249
|
-
};
|
|
2250
|
-
faucet: Flatten<{
|
|
2265
|
+
accounts?: Record<string, any> | undefined;
|
|
2266
|
+
faucet?: Flatten<{
|
|
2251
2267
|
email?: string | undefined;
|
|
2252
2268
|
password?: string | undefined;
|
|
2253
2269
|
amount?: string | undefined;
|
|
@@ -2258,15 +2274,20 @@ export declare const toConfig: (config: LoadedConfig) => import("fluture").Futur
|
|
|
2258
2274
|
};
|
|
2259
2275
|
} & {
|
|
2260
2276
|
readonly __kind: any;
|
|
2261
|
-
}
|
|
2277
|
+
}> | undefined;
|
|
2278
|
+
label: string & {
|
|
2279
|
+
readonly __kind: any;
|
|
2280
|
+
};
|
|
2281
|
+
rpcUrl: string & {
|
|
2282
|
+
readonly __kind: any;
|
|
2283
|
+
};
|
|
2284
|
+
protocol: string & {
|
|
2285
|
+
readonly __kind: any;
|
|
2286
|
+
};
|
|
2262
2287
|
} & {
|
|
2263
2288
|
readonly __kind: any;
|
|
2264
2289
|
}>> | undefined;
|
|
2265
2290
|
sandbox?: Record<string, {
|
|
2266
|
-
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2267
|
-
plugin?: (string & {
|
|
2268
|
-
readonly __kind: any;
|
|
2269
|
-
}) | undefined;
|
|
2270
2291
|
accounts?: Record<string, string | ({
|
|
2271
2292
|
encryptedKey: string;
|
|
2272
2293
|
publicKeyHash: string & {
|
|
@@ -2276,6 +2297,10 @@ export declare const toConfig: (config: LoadedConfig) => import("fluture").Futur
|
|
|
2276
2297
|
} & {
|
|
2277
2298
|
readonly __kind: any;
|
|
2278
2299
|
})> | undefined;
|
|
2300
|
+
attributes?: Record<string, string | number | boolean> | undefined;
|
|
2301
|
+
plugin?: (string & {
|
|
2302
|
+
readonly __kind: any;
|
|
2303
|
+
}) | undefined;
|
|
2279
2304
|
tzkt?: {
|
|
2280
2305
|
disableAutostartWithSandbox: boolean;
|
|
2281
2306
|
postgresqlPort: number;
|