@taqueria/protocol 0.25.16-rc → 0.25.17-rc
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/EphemeralState.d.ts +100 -96
- package/EphemeralState.d.ts.map +1 -1
- package/ParsedPluginInfo.d.ts +250 -240
- package/ParsedPluginInfo.d.ts.map +1 -1
- package/PluginInfo.d.ts +300 -288
- package/PluginInfo.d.ts.map +1 -1
- package/PluginSchema.d.ts +578 -558
- package/PluginSchema.d.ts.map +1 -1
- package/SanitizedArgs.d.ts +66 -0
- package/SanitizedArgs.d.ts.map +1 -1
- package/SanitizedArgs.js +5 -0
- package/SanitizedArgs.js.map +1 -1
- package/SanitizedArgs.mjs +4 -0
- package/SanitizedArgs.mjs.map +1 -1
- package/TaqError.d.ts +1 -1
- package/TaqError.d.ts.map +1 -1
- package/TaqError.js.map +1 -1
- package/TaqError.mjs.map +1 -1
- package/i18n.d.ts.map +1 -1
- package/i18n.js +1 -0
- package/i18n.js.map +1 -1
- package/i18n.mjs +1 -0
- package/i18n.mjs.map +1 -1
- package/out/types/Config.d.ts +158 -150
- package/out/types/Config.d.ts.map +1 -1
- package/out/types/EphemeralState.d.ts +800 -768
- package/out/types/EphemeralState.d.ts.map +1 -1
- package/out/types/LoadedConfig.d.ts +158 -150
- package/out/types/LoadedConfig.d.ts.map +1 -1
- package/out/types/NetworkAccountConfig.d.ts +52 -39
- package/out/types/NetworkAccountConfig.d.ts.map +1 -1
- package/out/types/NetworkConfig.d.ts +84 -76
- package/out/types/NetworkConfig.d.ts.map +1 -1
- package/out/types/Operation.d.ts +254 -246
- package/out/types/Operation.d.ts.map +1 -1
- package/out/types/ParsedConfig.d.ts +182 -174
- package/out/types/ParsedConfig.d.ts.map +1 -1
- package/out/types/ParsedOperation.d.ts +200 -192
- package/out/types/ParsedOperation.d.ts.map +1 -1
- package/out/types/ParsedTemplate.d.ts +200 -192
- package/out/types/ParsedTemplate.d.ts.map +1 -1
- package/out/types/PluginInfo.d.ts +400 -384
- package/out/types/PluginInfo.d.ts.map +1 -1
- package/out/types/PluginSchema.d.ts +1366 -1326
- package/out/types/PluginSchema.d.ts.map +1 -1
- package/out/types/ProxyTaskArgs.d.ts +206 -198
- package/out/types/ProxyTaskArgs.d.ts.map +1 -1
- package/out/types/ProxyTemplateArgs.d.ts +206 -198
- package/out/types/ProxyTemplateArgs.d.ts.map +1 -1
- package/out/types/RequestArgs.d.ts +206 -198
- package/out/types/RequestArgs.d.ts.map +1 -1
- package/out/types/SandboxConfig.d.ts +26 -26
- package/out/types/Template.d.ts +254 -246
- package/out/types/Template.d.ts.map +1 -1
- package/out/types-strict.d.js.map +1 -1
- package/out/types-strict.d.ts +6 -6
- package/out/types-strict.d.ts.map +1 -1
- package/out/types-strict.js.map +1 -1
- package/out/types-zod.d.js.map +1 -1
- package/out/types-zod.d.ts +1166 -1119
- package/out/types-zod.d.ts.map +1 -1
- package/out/types-zod.js +7 -7
- package/out/types-zod.js.map +1 -1
- package/out/types-zod.mjs +7 -7
- package/out/types-zod.mjs.map +1 -1
- package/package.json +2 -1
- package/types.d.ts +6 -6
- package/types.d.ts.map +1 -1
- package/types.js.map +1 -1
package/ParsedPluginInfo.d.ts
CHANGED
|
@@ -281,19 +281,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
281
281
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
282
282
|
label: z.ZodString;
|
|
283
283
|
rpcUrl: z.ZodString;
|
|
284
|
-
protocol: z.ZodString;
|
|
285
284
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
286
|
-
publicKey: z.ZodString
|
|
287
|
-
publicKeyHash: z.ZodString
|
|
288
|
-
privateKey: z.ZodString
|
|
285
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
286
|
+
publicKeyHash: z.ZodOptional<z.ZodString>;
|
|
287
|
+
privateKey: z.ZodOptional<z.ZodString>;
|
|
288
|
+
mnemonic: z.ZodOptional<z.ZodString>;
|
|
289
289
|
}, "strip", z.ZodTypeAny, {
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
290
|
+
mnemonic?: string | undefined;
|
|
291
|
+
publicKey?: string | undefined;
|
|
292
|
+
publicKeyHash?: string | undefined;
|
|
293
|
+
privateKey?: string | undefined;
|
|
293
294
|
}, {
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
295
|
+
mnemonic?: string | undefined;
|
|
296
|
+
publicKey?: string | undefined;
|
|
297
|
+
publicKeyHash?: string | undefined;
|
|
298
|
+
privateKey?: string | undefined;
|
|
297
299
|
}>>>;
|
|
298
300
|
faucet: z.ZodOptional<z.ZodObject<{
|
|
299
301
|
pkh: z.ZodString;
|
|
@@ -319,9 +321,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
319
321
|
}>>;
|
|
320
322
|
}, "strip", z.ZodTypeAny, {
|
|
321
323
|
accounts?: Record<string, {
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
324
|
+
mnemonic?: string | undefined;
|
|
325
|
+
publicKey?: string | undefined;
|
|
326
|
+
publicKeyHash?: string | undefined;
|
|
327
|
+
privateKey?: string | undefined;
|
|
325
328
|
}> | undefined;
|
|
326
329
|
faucet?: {
|
|
327
330
|
pkh: string;
|
|
@@ -333,12 +336,12 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
333
336
|
} | undefined;
|
|
334
337
|
label: string;
|
|
335
338
|
rpcUrl: string;
|
|
336
|
-
protocol: string;
|
|
337
339
|
}, {
|
|
338
340
|
accounts?: Record<string, {
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
341
|
+
mnemonic?: string | undefined;
|
|
342
|
+
publicKey?: string | undefined;
|
|
343
|
+
publicKeyHash?: string | undefined;
|
|
344
|
+
privateKey?: string | undefined;
|
|
342
345
|
}> | undefined;
|
|
343
346
|
faucet?: {
|
|
344
347
|
pkh: string;
|
|
@@ -350,13 +353,11 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
350
353
|
} | undefined;
|
|
351
354
|
label: string;
|
|
352
355
|
rpcUrl: string;
|
|
353
|
-
protocol: string;
|
|
354
356
|
}>>>;
|
|
355
357
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
356
358
|
label: z.ZodString;
|
|
357
359
|
rpcUrl: z.ZodString;
|
|
358
|
-
protocol: z.ZodString
|
|
359
|
-
attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
360
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
360
361
|
plugin: z.ZodOptional<z.ZodString>;
|
|
361
362
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
362
363
|
encryptedKey: z.ZodString;
|
|
@@ -384,6 +385,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
384
385
|
postgresqlPort?: number | undefined;
|
|
385
386
|
apiPort?: number | undefined;
|
|
386
387
|
}>>;
|
|
388
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
387
389
|
}, "strip", z.ZodTypeAny, {
|
|
388
390
|
plugin?: string | undefined;
|
|
389
391
|
accounts?: Record<string, string | {
|
|
@@ -391,15 +393,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
391
393
|
encryptedKey: string;
|
|
392
394
|
secretKey: string;
|
|
393
395
|
}> | undefined;
|
|
394
|
-
|
|
396
|
+
protocol?: string | undefined;
|
|
395
397
|
tzkt?: {
|
|
396
398
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
397
399
|
postgresqlPort?: number | undefined;
|
|
398
400
|
apiPort?: number | undefined;
|
|
399
401
|
} | undefined;
|
|
402
|
+
annotations?: Record<string, unknown> | undefined;
|
|
400
403
|
label: string;
|
|
401
404
|
rpcUrl: string;
|
|
402
|
-
protocol: string;
|
|
403
405
|
}, {
|
|
404
406
|
plugin?: string | undefined;
|
|
405
407
|
accounts?: Record<string, string | {
|
|
@@ -407,15 +409,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
407
409
|
encryptedKey: string;
|
|
408
410
|
secretKey: string;
|
|
409
411
|
}> | undefined;
|
|
410
|
-
|
|
412
|
+
protocol?: string | undefined;
|
|
411
413
|
tzkt?: {
|
|
412
414
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
413
415
|
postgresqlPort?: number | undefined;
|
|
414
416
|
apiPort?: number | undefined;
|
|
415
417
|
} | undefined;
|
|
418
|
+
annotations?: Record<string, unknown> | undefined;
|
|
416
419
|
label: string;
|
|
417
420
|
rpcUrl: string;
|
|
418
|
-
protocol: string;
|
|
419
421
|
}>>>;
|
|
420
422
|
environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
421
423
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
@@ -475,15 +477,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
475
477
|
encryptedKey: string;
|
|
476
478
|
secretKey: string;
|
|
477
479
|
}> | undefined;
|
|
478
|
-
|
|
480
|
+
protocol?: string | undefined;
|
|
479
481
|
tzkt?: {
|
|
480
482
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
481
483
|
postgresqlPort?: number | undefined;
|
|
482
484
|
apiPort?: number | undefined;
|
|
483
485
|
} | undefined;
|
|
486
|
+
annotations?: Record<string, unknown> | undefined;
|
|
484
487
|
label: string;
|
|
485
488
|
rpcUrl: string;
|
|
486
|
-
protocol: string;
|
|
487
489
|
}> | undefined;
|
|
488
490
|
language?: "en" | "fr" | undefined;
|
|
489
491
|
plugins?: {
|
|
@@ -494,9 +496,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
494
496
|
artifactsDir?: string | undefined;
|
|
495
497
|
network?: Record<string, {
|
|
496
498
|
accounts?: Record<string, {
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
499
|
+
mnemonic?: string | undefined;
|
|
500
|
+
publicKey?: string | undefined;
|
|
501
|
+
publicKeyHash?: string | undefined;
|
|
502
|
+
privateKey?: string | undefined;
|
|
500
503
|
}> | undefined;
|
|
501
504
|
faucet?: {
|
|
502
505
|
pkh: string;
|
|
@@ -508,7 +511,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
508
511
|
} | undefined;
|
|
509
512
|
label: string;
|
|
510
513
|
rpcUrl: string;
|
|
511
|
-
protocol: string;
|
|
512
514
|
}> | undefined;
|
|
513
515
|
accounts?: Record<string, string> | undefined;
|
|
514
516
|
contracts?: Record<string, {
|
|
@@ -539,15 +541,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
539
541
|
encryptedKey: string;
|
|
540
542
|
secretKey: string;
|
|
541
543
|
}> | undefined;
|
|
542
|
-
|
|
544
|
+
protocol?: string | undefined;
|
|
543
545
|
tzkt?: {
|
|
544
546
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
545
547
|
postgresqlPort?: number | undefined;
|
|
546
548
|
apiPort?: number | undefined;
|
|
547
549
|
} | undefined;
|
|
550
|
+
annotations?: Record<string, unknown> | undefined;
|
|
548
551
|
label: string;
|
|
549
552
|
rpcUrl: string;
|
|
550
|
-
protocol: string;
|
|
551
553
|
}> | undefined;
|
|
552
554
|
language?: "en" | "fr" | undefined;
|
|
553
555
|
plugins?: {
|
|
@@ -558,9 +560,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
558
560
|
artifactsDir?: string | undefined;
|
|
559
561
|
network?: Record<string, {
|
|
560
562
|
accounts?: Record<string, {
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
563
|
+
mnemonic?: string | undefined;
|
|
564
|
+
publicKey?: string | undefined;
|
|
565
|
+
publicKeyHash?: string | undefined;
|
|
566
|
+
privateKey?: string | undefined;
|
|
564
567
|
}> | undefined;
|
|
565
568
|
faucet?: {
|
|
566
569
|
pkh: string;
|
|
@@ -572,7 +575,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
572
575
|
} | undefined;
|
|
573
576
|
label: string;
|
|
574
577
|
rpcUrl: string;
|
|
575
|
-
protocol: string;
|
|
576
578
|
}> | undefined;
|
|
577
579
|
accounts?: Record<string, string> | undefined;
|
|
578
580
|
contracts?: Record<string, {
|
|
@@ -621,15 +623,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
621
623
|
encryptedKey: string;
|
|
622
624
|
secretKey: string;
|
|
623
625
|
}> | undefined;
|
|
624
|
-
|
|
626
|
+
protocol?: string | undefined;
|
|
625
627
|
tzkt?: {
|
|
626
628
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
627
629
|
postgresqlPort?: number | undefined;
|
|
628
630
|
apiPort?: number | undefined;
|
|
629
631
|
} | undefined;
|
|
632
|
+
annotations?: Record<string, unknown> | undefined;
|
|
630
633
|
label: string;
|
|
631
634
|
rpcUrl: string;
|
|
632
|
-
protocol: string;
|
|
633
635
|
}> | undefined;
|
|
634
636
|
language?: "en" | "fr" | undefined;
|
|
635
637
|
plugins?: {
|
|
@@ -640,9 +642,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
640
642
|
artifactsDir?: string | undefined;
|
|
641
643
|
network?: Record<string, {
|
|
642
644
|
accounts?: Record<string, {
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
645
|
+
mnemonic?: string | undefined;
|
|
646
|
+
publicKey?: string | undefined;
|
|
647
|
+
publicKeyHash?: string | undefined;
|
|
648
|
+
privateKey?: string | undefined;
|
|
646
649
|
}> | undefined;
|
|
647
650
|
faucet?: {
|
|
648
651
|
pkh: string;
|
|
@@ -654,7 +657,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
654
657
|
} | undefined;
|
|
655
658
|
label: string;
|
|
656
659
|
rpcUrl: string;
|
|
657
|
-
protocol: string;
|
|
658
660
|
}> | undefined;
|
|
659
661
|
accounts?: Record<string, string> | undefined;
|
|
660
662
|
contracts?: Record<string, {
|
|
@@ -703,15 +705,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
703
705
|
encryptedKey: string;
|
|
704
706
|
secretKey: string;
|
|
705
707
|
}> | undefined;
|
|
706
|
-
|
|
708
|
+
protocol?: string | undefined;
|
|
707
709
|
tzkt?: {
|
|
708
710
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
709
711
|
postgresqlPort?: number | undefined;
|
|
710
712
|
apiPort?: number | undefined;
|
|
711
713
|
} | undefined;
|
|
714
|
+
annotations?: Record<string, unknown> | undefined;
|
|
712
715
|
label: string;
|
|
713
716
|
rpcUrl: string;
|
|
714
|
-
protocol: string;
|
|
715
717
|
}> | undefined;
|
|
716
718
|
language?: "en" | "fr" | undefined;
|
|
717
719
|
plugins?: {
|
|
@@ -722,9 +724,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
722
724
|
artifactsDir?: string | undefined;
|
|
723
725
|
network?: Record<string, {
|
|
724
726
|
accounts?: Record<string, {
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
727
|
+
mnemonic?: string | undefined;
|
|
728
|
+
publicKey?: string | undefined;
|
|
729
|
+
publicKeyHash?: string | undefined;
|
|
730
|
+
privateKey?: string | undefined;
|
|
728
731
|
}> | undefined;
|
|
729
732
|
faucet?: {
|
|
730
733
|
pkh: string;
|
|
@@ -736,7 +739,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
736
739
|
} | undefined;
|
|
737
740
|
label: string;
|
|
738
741
|
rpcUrl: string;
|
|
739
|
-
protocol: string;
|
|
740
742
|
}> | undefined;
|
|
741
743
|
accounts?: Record<string, string> | undefined;
|
|
742
744
|
contracts?: Record<string, {
|
|
@@ -913,19 +915,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
913
915
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
914
916
|
label: z.ZodString;
|
|
915
917
|
rpcUrl: z.ZodString;
|
|
916
|
-
protocol: z.ZodString;
|
|
917
918
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
918
|
-
publicKey: z.ZodString
|
|
919
|
-
publicKeyHash: z.ZodString
|
|
920
|
-
privateKey: z.ZodString
|
|
919
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
920
|
+
publicKeyHash: z.ZodOptional<z.ZodString>;
|
|
921
|
+
privateKey: z.ZodOptional<z.ZodString>;
|
|
922
|
+
mnemonic: z.ZodOptional<z.ZodString>;
|
|
921
923
|
}, "strip", z.ZodTypeAny, {
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
924
|
+
mnemonic?: string | undefined;
|
|
925
|
+
publicKey?: string | undefined;
|
|
926
|
+
publicKeyHash?: string | undefined;
|
|
927
|
+
privateKey?: string | undefined;
|
|
925
928
|
}, {
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
+
mnemonic?: string | undefined;
|
|
930
|
+
publicKey?: string | undefined;
|
|
931
|
+
publicKeyHash?: string | undefined;
|
|
932
|
+
privateKey?: string | undefined;
|
|
929
933
|
}>>>;
|
|
930
934
|
faucet: z.ZodOptional<z.ZodObject<{
|
|
931
935
|
pkh: z.ZodString;
|
|
@@ -951,9 +955,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
951
955
|
}>>;
|
|
952
956
|
}, "strip", z.ZodTypeAny, {
|
|
953
957
|
accounts?: Record<string, {
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
958
|
+
mnemonic?: string | undefined;
|
|
959
|
+
publicKey?: string | undefined;
|
|
960
|
+
publicKeyHash?: string | undefined;
|
|
961
|
+
privateKey?: string | undefined;
|
|
957
962
|
}> | undefined;
|
|
958
963
|
faucet?: {
|
|
959
964
|
pkh: string;
|
|
@@ -965,12 +970,12 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
965
970
|
} | undefined;
|
|
966
971
|
label: string;
|
|
967
972
|
rpcUrl: string;
|
|
968
|
-
protocol: string;
|
|
969
973
|
}, {
|
|
970
974
|
accounts?: Record<string, {
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
975
|
+
mnemonic?: string | undefined;
|
|
976
|
+
publicKey?: string | undefined;
|
|
977
|
+
publicKeyHash?: string | undefined;
|
|
978
|
+
privateKey?: string | undefined;
|
|
974
979
|
}> | undefined;
|
|
975
980
|
faucet?: {
|
|
976
981
|
pkh: string;
|
|
@@ -982,13 +987,11 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
982
987
|
} | undefined;
|
|
983
988
|
label: string;
|
|
984
989
|
rpcUrl: string;
|
|
985
|
-
protocol: string;
|
|
986
990
|
}>>>;
|
|
987
991
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
988
992
|
label: z.ZodString;
|
|
989
993
|
rpcUrl: z.ZodString;
|
|
990
|
-
protocol: z.ZodString
|
|
991
|
-
attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
994
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
992
995
|
plugin: z.ZodOptional<z.ZodString>;
|
|
993
996
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
994
997
|
encryptedKey: z.ZodString;
|
|
@@ -1016,6 +1019,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1016
1019
|
postgresqlPort?: number | undefined;
|
|
1017
1020
|
apiPort?: number | undefined;
|
|
1018
1021
|
}>>;
|
|
1022
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1019
1023
|
}, "strip", z.ZodTypeAny, {
|
|
1020
1024
|
plugin?: string | undefined;
|
|
1021
1025
|
accounts?: Record<string, string | {
|
|
@@ -1023,15 +1027,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1023
1027
|
encryptedKey: string;
|
|
1024
1028
|
secretKey: string;
|
|
1025
1029
|
}> | undefined;
|
|
1026
|
-
|
|
1030
|
+
protocol?: string | undefined;
|
|
1027
1031
|
tzkt?: {
|
|
1028
1032
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1029
1033
|
postgresqlPort?: number | undefined;
|
|
1030
1034
|
apiPort?: number | undefined;
|
|
1031
1035
|
} | undefined;
|
|
1036
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1032
1037
|
label: string;
|
|
1033
1038
|
rpcUrl: string;
|
|
1034
|
-
protocol: string;
|
|
1035
1039
|
}, {
|
|
1036
1040
|
plugin?: string | undefined;
|
|
1037
1041
|
accounts?: Record<string, string | {
|
|
@@ -1039,15 +1043,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1039
1043
|
encryptedKey: string;
|
|
1040
1044
|
secretKey: string;
|
|
1041
1045
|
}> | undefined;
|
|
1042
|
-
|
|
1046
|
+
protocol?: string | undefined;
|
|
1043
1047
|
tzkt?: {
|
|
1044
1048
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1045
1049
|
postgresqlPort?: number | undefined;
|
|
1046
1050
|
apiPort?: number | undefined;
|
|
1047
1051
|
} | undefined;
|
|
1052
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1048
1053
|
label: string;
|
|
1049
1054
|
rpcUrl: string;
|
|
1050
|
-
protocol: string;
|
|
1051
1055
|
}>>>;
|
|
1052
1056
|
environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
1053
1057
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
@@ -1107,15 +1111,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1107
1111
|
encryptedKey: string;
|
|
1108
1112
|
secretKey: string;
|
|
1109
1113
|
}> | undefined;
|
|
1110
|
-
|
|
1114
|
+
protocol?: string | undefined;
|
|
1111
1115
|
tzkt?: {
|
|
1112
1116
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1113
1117
|
postgresqlPort?: number | undefined;
|
|
1114
1118
|
apiPort?: number | undefined;
|
|
1115
1119
|
} | undefined;
|
|
1120
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1116
1121
|
label: string;
|
|
1117
1122
|
rpcUrl: string;
|
|
1118
|
-
protocol: string;
|
|
1119
1123
|
}> | undefined;
|
|
1120
1124
|
language?: "en" | "fr" | undefined;
|
|
1121
1125
|
plugins?: {
|
|
@@ -1126,9 +1130,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1126
1130
|
artifactsDir?: string | undefined;
|
|
1127
1131
|
network?: Record<string, {
|
|
1128
1132
|
accounts?: Record<string, {
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1133
|
+
mnemonic?: string | undefined;
|
|
1134
|
+
publicKey?: string | undefined;
|
|
1135
|
+
publicKeyHash?: string | undefined;
|
|
1136
|
+
privateKey?: string | undefined;
|
|
1132
1137
|
}> | undefined;
|
|
1133
1138
|
faucet?: {
|
|
1134
1139
|
pkh: string;
|
|
@@ -1140,7 +1145,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1140
1145
|
} | undefined;
|
|
1141
1146
|
label: string;
|
|
1142
1147
|
rpcUrl: string;
|
|
1143
|
-
protocol: string;
|
|
1144
1148
|
}> | undefined;
|
|
1145
1149
|
accounts?: Record<string, string> | undefined;
|
|
1146
1150
|
contracts?: Record<string, {
|
|
@@ -1171,15 +1175,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1171
1175
|
encryptedKey: string;
|
|
1172
1176
|
secretKey: string;
|
|
1173
1177
|
}> | undefined;
|
|
1174
|
-
|
|
1178
|
+
protocol?: string | undefined;
|
|
1175
1179
|
tzkt?: {
|
|
1176
1180
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1177
1181
|
postgresqlPort?: number | undefined;
|
|
1178
1182
|
apiPort?: number | undefined;
|
|
1179
1183
|
} | undefined;
|
|
1184
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1180
1185
|
label: string;
|
|
1181
1186
|
rpcUrl: string;
|
|
1182
|
-
protocol: string;
|
|
1183
1187
|
}> | undefined;
|
|
1184
1188
|
language?: "en" | "fr" | undefined;
|
|
1185
1189
|
plugins?: {
|
|
@@ -1190,9 +1194,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1190
1194
|
artifactsDir?: string | undefined;
|
|
1191
1195
|
network?: Record<string, {
|
|
1192
1196
|
accounts?: Record<string, {
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1197
|
+
mnemonic?: string | undefined;
|
|
1198
|
+
publicKey?: string | undefined;
|
|
1199
|
+
publicKeyHash?: string | undefined;
|
|
1200
|
+
privateKey?: string | undefined;
|
|
1196
1201
|
}> | undefined;
|
|
1197
1202
|
faucet?: {
|
|
1198
1203
|
pkh: string;
|
|
@@ -1204,7 +1209,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1204
1209
|
} | undefined;
|
|
1205
1210
|
label: string;
|
|
1206
1211
|
rpcUrl: string;
|
|
1207
|
-
protocol: string;
|
|
1208
1212
|
}> | undefined;
|
|
1209
1213
|
accounts?: Record<string, string> | undefined;
|
|
1210
1214
|
contracts?: Record<string, {
|
|
@@ -1253,15 +1257,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1253
1257
|
encryptedKey: string;
|
|
1254
1258
|
secretKey: string;
|
|
1255
1259
|
}> | undefined;
|
|
1256
|
-
|
|
1260
|
+
protocol?: string | undefined;
|
|
1257
1261
|
tzkt?: {
|
|
1258
1262
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1259
1263
|
postgresqlPort?: number | undefined;
|
|
1260
1264
|
apiPort?: number | undefined;
|
|
1261
1265
|
} | undefined;
|
|
1266
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1262
1267
|
label: string;
|
|
1263
1268
|
rpcUrl: string;
|
|
1264
|
-
protocol: string;
|
|
1265
1269
|
}> | undefined;
|
|
1266
1270
|
language?: "en" | "fr" | undefined;
|
|
1267
1271
|
plugins?: {
|
|
@@ -1272,9 +1276,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1272
1276
|
artifactsDir?: string | undefined;
|
|
1273
1277
|
network?: Record<string, {
|
|
1274
1278
|
accounts?: Record<string, {
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1279
|
+
mnemonic?: string | undefined;
|
|
1280
|
+
publicKey?: string | undefined;
|
|
1281
|
+
publicKeyHash?: string | undefined;
|
|
1282
|
+
privateKey?: string | undefined;
|
|
1278
1283
|
}> | undefined;
|
|
1279
1284
|
faucet?: {
|
|
1280
1285
|
pkh: string;
|
|
@@ -1286,7 +1291,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1286
1291
|
} | undefined;
|
|
1287
1292
|
label: string;
|
|
1288
1293
|
rpcUrl: string;
|
|
1289
|
-
protocol: string;
|
|
1290
1294
|
}> | undefined;
|
|
1291
1295
|
accounts?: Record<string, string> | undefined;
|
|
1292
1296
|
contracts?: Record<string, {
|
|
@@ -1335,15 +1339,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1335
1339
|
encryptedKey: string;
|
|
1336
1340
|
secretKey: string;
|
|
1337
1341
|
}> | undefined;
|
|
1338
|
-
|
|
1342
|
+
protocol?: string | undefined;
|
|
1339
1343
|
tzkt?: {
|
|
1340
1344
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1341
1345
|
postgresqlPort?: number | undefined;
|
|
1342
1346
|
apiPort?: number | undefined;
|
|
1343
1347
|
} | undefined;
|
|
1348
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1344
1349
|
label: string;
|
|
1345
1350
|
rpcUrl: string;
|
|
1346
|
-
protocol: string;
|
|
1347
1351
|
}> | undefined;
|
|
1348
1352
|
language?: "en" | "fr" | undefined;
|
|
1349
1353
|
plugins?: {
|
|
@@ -1354,9 +1358,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1354
1358
|
artifactsDir?: string | undefined;
|
|
1355
1359
|
network?: Record<string, {
|
|
1356
1360
|
accounts?: Record<string, {
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1361
|
+
mnemonic?: string | undefined;
|
|
1362
|
+
publicKey?: string | undefined;
|
|
1363
|
+
publicKeyHash?: string | undefined;
|
|
1364
|
+
privateKey?: string | undefined;
|
|
1360
1365
|
}> | undefined;
|
|
1361
1366
|
faucet?: {
|
|
1362
1367
|
pkh: string;
|
|
@@ -1368,7 +1373,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1368
1373
|
} | undefined;
|
|
1369
1374
|
label: string;
|
|
1370
1375
|
rpcUrl: string;
|
|
1371
|
-
protocol: string;
|
|
1372
1376
|
}> | undefined;
|
|
1373
1377
|
accounts?: Record<string, string> | undefined;
|
|
1374
1378
|
contracts?: Record<string, {
|
|
@@ -1779,19 +1783,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1779
1783
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1780
1784
|
label: z.ZodString;
|
|
1781
1785
|
rpcUrl: z.ZodString;
|
|
1782
|
-
protocol: z.ZodString;
|
|
1783
1786
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1784
|
-
publicKey: z.ZodString
|
|
1785
|
-
publicKeyHash: z.ZodString
|
|
1786
|
-
privateKey: z.ZodString
|
|
1787
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
1788
|
+
publicKeyHash: z.ZodOptional<z.ZodString>;
|
|
1789
|
+
privateKey: z.ZodOptional<z.ZodString>;
|
|
1790
|
+
mnemonic: z.ZodOptional<z.ZodString>;
|
|
1787
1791
|
}, "strip", z.ZodTypeAny, {
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1792
|
+
mnemonic?: string | undefined;
|
|
1793
|
+
publicKey?: string | undefined;
|
|
1794
|
+
publicKeyHash?: string | undefined;
|
|
1795
|
+
privateKey?: string | undefined;
|
|
1791
1796
|
}, {
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1797
|
+
mnemonic?: string | undefined;
|
|
1798
|
+
publicKey?: string | undefined;
|
|
1799
|
+
publicKeyHash?: string | undefined;
|
|
1800
|
+
privateKey?: string | undefined;
|
|
1795
1801
|
}>>>;
|
|
1796
1802
|
faucet: z.ZodOptional<z.ZodObject<{
|
|
1797
1803
|
pkh: z.ZodString;
|
|
@@ -1817,9 +1823,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1817
1823
|
}>>;
|
|
1818
1824
|
}, "strip", z.ZodTypeAny, {
|
|
1819
1825
|
accounts?: Record<string, {
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1826
|
+
mnemonic?: string | undefined;
|
|
1827
|
+
publicKey?: string | undefined;
|
|
1828
|
+
publicKeyHash?: string | undefined;
|
|
1829
|
+
privateKey?: string | undefined;
|
|
1823
1830
|
}> | undefined;
|
|
1824
1831
|
faucet?: {
|
|
1825
1832
|
pkh: string;
|
|
@@ -1831,12 +1838,12 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1831
1838
|
} | undefined;
|
|
1832
1839
|
label: string;
|
|
1833
1840
|
rpcUrl: string;
|
|
1834
|
-
protocol: string;
|
|
1835
1841
|
}, {
|
|
1836
1842
|
accounts?: Record<string, {
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1843
|
+
mnemonic?: string | undefined;
|
|
1844
|
+
publicKey?: string | undefined;
|
|
1845
|
+
publicKeyHash?: string | undefined;
|
|
1846
|
+
privateKey?: string | undefined;
|
|
1840
1847
|
}> | undefined;
|
|
1841
1848
|
faucet?: {
|
|
1842
1849
|
pkh: string;
|
|
@@ -1848,13 +1855,11 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1848
1855
|
} | undefined;
|
|
1849
1856
|
label: string;
|
|
1850
1857
|
rpcUrl: string;
|
|
1851
|
-
protocol: string;
|
|
1852
1858
|
}>>>;
|
|
1853
1859
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1854
1860
|
label: z.ZodString;
|
|
1855
1861
|
rpcUrl: z.ZodString;
|
|
1856
|
-
protocol: z.ZodString
|
|
1857
|
-
attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1862
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
1858
1863
|
plugin: z.ZodOptional<z.ZodString>;
|
|
1859
1864
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
1860
1865
|
encryptedKey: z.ZodString;
|
|
@@ -1882,6 +1887,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1882
1887
|
postgresqlPort?: number | undefined;
|
|
1883
1888
|
apiPort?: number | undefined;
|
|
1884
1889
|
}>>;
|
|
1890
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1885
1891
|
}, "strip", z.ZodTypeAny, {
|
|
1886
1892
|
plugin?: string | undefined;
|
|
1887
1893
|
accounts?: Record<string, string | {
|
|
@@ -1889,15 +1895,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1889
1895
|
encryptedKey: string;
|
|
1890
1896
|
secretKey: string;
|
|
1891
1897
|
}> | undefined;
|
|
1892
|
-
|
|
1898
|
+
protocol?: string | undefined;
|
|
1893
1899
|
tzkt?: {
|
|
1894
1900
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1895
1901
|
postgresqlPort?: number | undefined;
|
|
1896
1902
|
apiPort?: number | undefined;
|
|
1897
1903
|
} | undefined;
|
|
1904
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1898
1905
|
label: string;
|
|
1899
1906
|
rpcUrl: string;
|
|
1900
|
-
protocol: string;
|
|
1901
1907
|
}, {
|
|
1902
1908
|
plugin?: string | undefined;
|
|
1903
1909
|
accounts?: Record<string, string | {
|
|
@@ -1905,15 +1911,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1905
1911
|
encryptedKey: string;
|
|
1906
1912
|
secretKey: string;
|
|
1907
1913
|
}> | undefined;
|
|
1908
|
-
|
|
1914
|
+
protocol?: string | undefined;
|
|
1909
1915
|
tzkt?: {
|
|
1910
1916
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1911
1917
|
postgresqlPort?: number | undefined;
|
|
1912
1918
|
apiPort?: number | undefined;
|
|
1913
1919
|
} | undefined;
|
|
1920
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1914
1921
|
label: string;
|
|
1915
1922
|
rpcUrl: string;
|
|
1916
|
-
protocol: string;
|
|
1917
1923
|
}>>>;
|
|
1918
1924
|
environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
1919
1925
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
@@ -1973,15 +1979,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1973
1979
|
encryptedKey: string;
|
|
1974
1980
|
secretKey: string;
|
|
1975
1981
|
}> | undefined;
|
|
1976
|
-
|
|
1982
|
+
protocol?: string | undefined;
|
|
1977
1983
|
tzkt?: {
|
|
1978
1984
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1979
1985
|
postgresqlPort?: number | undefined;
|
|
1980
1986
|
apiPort?: number | undefined;
|
|
1981
1987
|
} | undefined;
|
|
1988
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1982
1989
|
label: string;
|
|
1983
1990
|
rpcUrl: string;
|
|
1984
|
-
protocol: string;
|
|
1985
1991
|
}> | undefined;
|
|
1986
1992
|
language?: "en" | "fr" | undefined;
|
|
1987
1993
|
plugins?: {
|
|
@@ -1992,9 +1998,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1992
1998
|
artifactsDir?: string | undefined;
|
|
1993
1999
|
network?: Record<string, {
|
|
1994
2000
|
accounts?: Record<string, {
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
2001
|
+
mnemonic?: string | undefined;
|
|
2002
|
+
publicKey?: string | undefined;
|
|
2003
|
+
publicKeyHash?: string | undefined;
|
|
2004
|
+
privateKey?: string | undefined;
|
|
1998
2005
|
}> | undefined;
|
|
1999
2006
|
faucet?: {
|
|
2000
2007
|
pkh: string;
|
|
@@ -2006,7 +2013,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2006
2013
|
} | undefined;
|
|
2007
2014
|
label: string;
|
|
2008
2015
|
rpcUrl: string;
|
|
2009
|
-
protocol: string;
|
|
2010
2016
|
}> | undefined;
|
|
2011
2017
|
accounts?: Record<string, string> | undefined;
|
|
2012
2018
|
contracts?: Record<string, {
|
|
@@ -2037,15 +2043,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2037
2043
|
encryptedKey: string;
|
|
2038
2044
|
secretKey: string;
|
|
2039
2045
|
}> | undefined;
|
|
2040
|
-
|
|
2046
|
+
protocol?: string | undefined;
|
|
2041
2047
|
tzkt?: {
|
|
2042
2048
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2043
2049
|
postgresqlPort?: number | undefined;
|
|
2044
2050
|
apiPort?: number | undefined;
|
|
2045
2051
|
} | undefined;
|
|
2052
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2046
2053
|
label: string;
|
|
2047
2054
|
rpcUrl: string;
|
|
2048
|
-
protocol: string;
|
|
2049
2055
|
}> | undefined;
|
|
2050
2056
|
language?: "en" | "fr" | undefined;
|
|
2051
2057
|
plugins?: {
|
|
@@ -2056,9 +2062,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2056
2062
|
artifactsDir?: string | undefined;
|
|
2057
2063
|
network?: Record<string, {
|
|
2058
2064
|
accounts?: Record<string, {
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2065
|
+
mnemonic?: string | undefined;
|
|
2066
|
+
publicKey?: string | undefined;
|
|
2067
|
+
publicKeyHash?: string | undefined;
|
|
2068
|
+
privateKey?: string | undefined;
|
|
2062
2069
|
}> | undefined;
|
|
2063
2070
|
faucet?: {
|
|
2064
2071
|
pkh: string;
|
|
@@ -2070,7 +2077,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2070
2077
|
} | undefined;
|
|
2071
2078
|
label: string;
|
|
2072
2079
|
rpcUrl: string;
|
|
2073
|
-
protocol: string;
|
|
2074
2080
|
}> | undefined;
|
|
2075
2081
|
accounts?: Record<string, string> | undefined;
|
|
2076
2082
|
contracts?: Record<string, {
|
|
@@ -2119,15 +2125,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2119
2125
|
encryptedKey: string;
|
|
2120
2126
|
secretKey: string;
|
|
2121
2127
|
}> | undefined;
|
|
2122
|
-
|
|
2128
|
+
protocol?: string | undefined;
|
|
2123
2129
|
tzkt?: {
|
|
2124
2130
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2125
2131
|
postgresqlPort?: number | undefined;
|
|
2126
2132
|
apiPort?: number | undefined;
|
|
2127
2133
|
} | undefined;
|
|
2134
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2128
2135
|
label: string;
|
|
2129
2136
|
rpcUrl: string;
|
|
2130
|
-
protocol: string;
|
|
2131
2137
|
}> | undefined;
|
|
2132
2138
|
language?: "en" | "fr" | undefined;
|
|
2133
2139
|
plugins?: {
|
|
@@ -2138,9 +2144,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2138
2144
|
artifactsDir?: string | undefined;
|
|
2139
2145
|
network?: Record<string, {
|
|
2140
2146
|
accounts?: Record<string, {
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2147
|
+
mnemonic?: string | undefined;
|
|
2148
|
+
publicKey?: string | undefined;
|
|
2149
|
+
publicKeyHash?: string | undefined;
|
|
2150
|
+
privateKey?: string | undefined;
|
|
2144
2151
|
}> | undefined;
|
|
2145
2152
|
faucet?: {
|
|
2146
2153
|
pkh: string;
|
|
@@ -2152,7 +2159,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2152
2159
|
} | undefined;
|
|
2153
2160
|
label: string;
|
|
2154
2161
|
rpcUrl: string;
|
|
2155
|
-
protocol: string;
|
|
2156
2162
|
}> | undefined;
|
|
2157
2163
|
accounts?: Record<string, string> | undefined;
|
|
2158
2164
|
contracts?: Record<string, {
|
|
@@ -2201,15 +2207,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2201
2207
|
encryptedKey: string;
|
|
2202
2208
|
secretKey: string;
|
|
2203
2209
|
}> | undefined;
|
|
2204
|
-
|
|
2210
|
+
protocol?: string | undefined;
|
|
2205
2211
|
tzkt?: {
|
|
2206
2212
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2207
2213
|
postgresqlPort?: number | undefined;
|
|
2208
2214
|
apiPort?: number | undefined;
|
|
2209
2215
|
} | undefined;
|
|
2216
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2210
2217
|
label: string;
|
|
2211
2218
|
rpcUrl: string;
|
|
2212
|
-
protocol: string;
|
|
2213
2219
|
}> | undefined;
|
|
2214
2220
|
language?: "en" | "fr" | undefined;
|
|
2215
2221
|
plugins?: {
|
|
@@ -2220,9 +2226,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2220
2226
|
artifactsDir?: string | undefined;
|
|
2221
2227
|
network?: Record<string, {
|
|
2222
2228
|
accounts?: Record<string, {
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2229
|
+
mnemonic?: string | undefined;
|
|
2230
|
+
publicKey?: string | undefined;
|
|
2231
|
+
publicKeyHash?: string | undefined;
|
|
2232
|
+
privateKey?: string | undefined;
|
|
2226
2233
|
}> | undefined;
|
|
2227
2234
|
faucet?: {
|
|
2228
2235
|
pkh: string;
|
|
@@ -2234,7 +2241,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2234
2241
|
} | undefined;
|
|
2235
2242
|
label: string;
|
|
2236
2243
|
rpcUrl: string;
|
|
2237
|
-
protocol: string;
|
|
2238
2244
|
}> | undefined;
|
|
2239
2245
|
accounts?: Record<string, string> | undefined;
|
|
2240
2246
|
contracts?: Record<string, {
|
|
@@ -2411,19 +2417,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2411
2417
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2412
2418
|
label: z.ZodString;
|
|
2413
2419
|
rpcUrl: z.ZodString;
|
|
2414
|
-
protocol: z.ZodString;
|
|
2415
2420
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2416
|
-
publicKey: z.ZodString
|
|
2417
|
-
publicKeyHash: z.ZodString
|
|
2418
|
-
privateKey: z.ZodString
|
|
2421
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
2422
|
+
publicKeyHash: z.ZodOptional<z.ZodString>;
|
|
2423
|
+
privateKey: z.ZodOptional<z.ZodString>;
|
|
2424
|
+
mnemonic: z.ZodOptional<z.ZodString>;
|
|
2419
2425
|
}, "strip", z.ZodTypeAny, {
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2426
|
+
mnemonic?: string | undefined;
|
|
2427
|
+
publicKey?: string | undefined;
|
|
2428
|
+
publicKeyHash?: string | undefined;
|
|
2429
|
+
privateKey?: string | undefined;
|
|
2423
2430
|
}, {
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2431
|
+
mnemonic?: string | undefined;
|
|
2432
|
+
publicKey?: string | undefined;
|
|
2433
|
+
publicKeyHash?: string | undefined;
|
|
2434
|
+
privateKey?: string | undefined;
|
|
2427
2435
|
}>>>;
|
|
2428
2436
|
faucet: z.ZodOptional<z.ZodObject<{
|
|
2429
2437
|
pkh: z.ZodString;
|
|
@@ -2449,9 +2457,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2449
2457
|
}>>;
|
|
2450
2458
|
}, "strip", z.ZodTypeAny, {
|
|
2451
2459
|
accounts?: Record<string, {
|
|
2452
|
-
|
|
2453
|
-
|
|
2454
|
-
|
|
2460
|
+
mnemonic?: string | undefined;
|
|
2461
|
+
publicKey?: string | undefined;
|
|
2462
|
+
publicKeyHash?: string | undefined;
|
|
2463
|
+
privateKey?: string | undefined;
|
|
2455
2464
|
}> | undefined;
|
|
2456
2465
|
faucet?: {
|
|
2457
2466
|
pkh: string;
|
|
@@ -2463,12 +2472,12 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2463
2472
|
} | undefined;
|
|
2464
2473
|
label: string;
|
|
2465
2474
|
rpcUrl: string;
|
|
2466
|
-
protocol: string;
|
|
2467
2475
|
}, {
|
|
2468
2476
|
accounts?: Record<string, {
|
|
2469
|
-
|
|
2470
|
-
|
|
2471
|
-
|
|
2477
|
+
mnemonic?: string | undefined;
|
|
2478
|
+
publicKey?: string | undefined;
|
|
2479
|
+
publicKeyHash?: string | undefined;
|
|
2480
|
+
privateKey?: string | undefined;
|
|
2472
2481
|
}> | undefined;
|
|
2473
2482
|
faucet?: {
|
|
2474
2483
|
pkh: string;
|
|
@@ -2480,13 +2489,11 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2480
2489
|
} | undefined;
|
|
2481
2490
|
label: string;
|
|
2482
2491
|
rpcUrl: string;
|
|
2483
|
-
protocol: string;
|
|
2484
2492
|
}>>>;
|
|
2485
2493
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2486
2494
|
label: z.ZodString;
|
|
2487
2495
|
rpcUrl: z.ZodString;
|
|
2488
|
-
protocol: z.ZodString
|
|
2489
|
-
attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2496
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
2490
2497
|
plugin: z.ZodOptional<z.ZodString>;
|
|
2491
2498
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
2492
2499
|
encryptedKey: z.ZodString;
|
|
@@ -2514,6 +2521,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2514
2521
|
postgresqlPort?: number | undefined;
|
|
2515
2522
|
apiPort?: number | undefined;
|
|
2516
2523
|
}>>;
|
|
2524
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2517
2525
|
}, "strip", z.ZodTypeAny, {
|
|
2518
2526
|
plugin?: string | undefined;
|
|
2519
2527
|
accounts?: Record<string, string | {
|
|
@@ -2521,15 +2529,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2521
2529
|
encryptedKey: string;
|
|
2522
2530
|
secretKey: string;
|
|
2523
2531
|
}> | undefined;
|
|
2524
|
-
|
|
2532
|
+
protocol?: string | undefined;
|
|
2525
2533
|
tzkt?: {
|
|
2526
2534
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2527
2535
|
postgresqlPort?: number | undefined;
|
|
2528
2536
|
apiPort?: number | undefined;
|
|
2529
2537
|
} | undefined;
|
|
2538
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2530
2539
|
label: string;
|
|
2531
2540
|
rpcUrl: string;
|
|
2532
|
-
protocol: string;
|
|
2533
2541
|
}, {
|
|
2534
2542
|
plugin?: string | undefined;
|
|
2535
2543
|
accounts?: Record<string, string | {
|
|
@@ -2537,15 +2545,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2537
2545
|
encryptedKey: string;
|
|
2538
2546
|
secretKey: string;
|
|
2539
2547
|
}> | undefined;
|
|
2540
|
-
|
|
2548
|
+
protocol?: string | undefined;
|
|
2541
2549
|
tzkt?: {
|
|
2542
2550
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2543
2551
|
postgresqlPort?: number | undefined;
|
|
2544
2552
|
apiPort?: number | undefined;
|
|
2545
2553
|
} | undefined;
|
|
2554
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2546
2555
|
label: string;
|
|
2547
2556
|
rpcUrl: string;
|
|
2548
|
-
protocol: string;
|
|
2549
2557
|
}>>>;
|
|
2550
2558
|
environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
2551
2559
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
@@ -2605,15 +2613,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2605
2613
|
encryptedKey: string;
|
|
2606
2614
|
secretKey: string;
|
|
2607
2615
|
}> | undefined;
|
|
2608
|
-
|
|
2616
|
+
protocol?: string | undefined;
|
|
2609
2617
|
tzkt?: {
|
|
2610
2618
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2611
2619
|
postgresqlPort?: number | undefined;
|
|
2612
2620
|
apiPort?: number | undefined;
|
|
2613
2621
|
} | undefined;
|
|
2622
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2614
2623
|
label: string;
|
|
2615
2624
|
rpcUrl: string;
|
|
2616
|
-
protocol: string;
|
|
2617
2625
|
}> | undefined;
|
|
2618
2626
|
language?: "en" | "fr" | undefined;
|
|
2619
2627
|
plugins?: {
|
|
@@ -2624,9 +2632,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2624
2632
|
artifactsDir?: string | undefined;
|
|
2625
2633
|
network?: Record<string, {
|
|
2626
2634
|
accounts?: Record<string, {
|
|
2627
|
-
|
|
2628
|
-
|
|
2629
|
-
|
|
2635
|
+
mnemonic?: string | undefined;
|
|
2636
|
+
publicKey?: string | undefined;
|
|
2637
|
+
publicKeyHash?: string | undefined;
|
|
2638
|
+
privateKey?: string | undefined;
|
|
2630
2639
|
}> | undefined;
|
|
2631
2640
|
faucet?: {
|
|
2632
2641
|
pkh: string;
|
|
@@ -2638,7 +2647,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2638
2647
|
} | undefined;
|
|
2639
2648
|
label: string;
|
|
2640
2649
|
rpcUrl: string;
|
|
2641
|
-
protocol: string;
|
|
2642
2650
|
}> | undefined;
|
|
2643
2651
|
accounts?: Record<string, string> | undefined;
|
|
2644
2652
|
contracts?: Record<string, {
|
|
@@ -2669,15 +2677,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2669
2677
|
encryptedKey: string;
|
|
2670
2678
|
secretKey: string;
|
|
2671
2679
|
}> | undefined;
|
|
2672
|
-
|
|
2680
|
+
protocol?: string | undefined;
|
|
2673
2681
|
tzkt?: {
|
|
2674
2682
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2675
2683
|
postgresqlPort?: number | undefined;
|
|
2676
2684
|
apiPort?: number | undefined;
|
|
2677
2685
|
} | undefined;
|
|
2686
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2678
2687
|
label: string;
|
|
2679
2688
|
rpcUrl: string;
|
|
2680
|
-
protocol: string;
|
|
2681
2689
|
}> | undefined;
|
|
2682
2690
|
language?: "en" | "fr" | undefined;
|
|
2683
2691
|
plugins?: {
|
|
@@ -2688,9 +2696,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2688
2696
|
artifactsDir?: string | undefined;
|
|
2689
2697
|
network?: Record<string, {
|
|
2690
2698
|
accounts?: Record<string, {
|
|
2691
|
-
|
|
2692
|
-
|
|
2693
|
-
|
|
2699
|
+
mnemonic?: string | undefined;
|
|
2700
|
+
publicKey?: string | undefined;
|
|
2701
|
+
publicKeyHash?: string | undefined;
|
|
2702
|
+
privateKey?: string | undefined;
|
|
2694
2703
|
}> | undefined;
|
|
2695
2704
|
faucet?: {
|
|
2696
2705
|
pkh: string;
|
|
@@ -2702,7 +2711,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2702
2711
|
} | undefined;
|
|
2703
2712
|
label: string;
|
|
2704
2713
|
rpcUrl: string;
|
|
2705
|
-
protocol: string;
|
|
2706
2714
|
}> | undefined;
|
|
2707
2715
|
accounts?: Record<string, string> | undefined;
|
|
2708
2716
|
contracts?: Record<string, {
|
|
@@ -2751,15 +2759,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2751
2759
|
encryptedKey: string;
|
|
2752
2760
|
secretKey: string;
|
|
2753
2761
|
}> | undefined;
|
|
2754
|
-
|
|
2762
|
+
protocol?: string | undefined;
|
|
2755
2763
|
tzkt?: {
|
|
2756
2764
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2757
2765
|
postgresqlPort?: number | undefined;
|
|
2758
2766
|
apiPort?: number | undefined;
|
|
2759
2767
|
} | undefined;
|
|
2768
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2760
2769
|
label: string;
|
|
2761
2770
|
rpcUrl: string;
|
|
2762
|
-
protocol: string;
|
|
2763
2771
|
}> | undefined;
|
|
2764
2772
|
language?: "en" | "fr" | undefined;
|
|
2765
2773
|
plugins?: {
|
|
@@ -2770,9 +2778,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2770
2778
|
artifactsDir?: string | undefined;
|
|
2771
2779
|
network?: Record<string, {
|
|
2772
2780
|
accounts?: Record<string, {
|
|
2773
|
-
|
|
2774
|
-
|
|
2775
|
-
|
|
2781
|
+
mnemonic?: string | undefined;
|
|
2782
|
+
publicKey?: string | undefined;
|
|
2783
|
+
publicKeyHash?: string | undefined;
|
|
2784
|
+
privateKey?: string | undefined;
|
|
2776
2785
|
}> | undefined;
|
|
2777
2786
|
faucet?: {
|
|
2778
2787
|
pkh: string;
|
|
@@ -2784,7 +2793,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2784
2793
|
} | undefined;
|
|
2785
2794
|
label: string;
|
|
2786
2795
|
rpcUrl: string;
|
|
2787
|
-
protocol: string;
|
|
2788
2796
|
}> | undefined;
|
|
2789
2797
|
accounts?: Record<string, string> | undefined;
|
|
2790
2798
|
contracts?: Record<string, {
|
|
@@ -2833,15 +2841,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2833
2841
|
encryptedKey: string;
|
|
2834
2842
|
secretKey: string;
|
|
2835
2843
|
}> | undefined;
|
|
2836
|
-
|
|
2844
|
+
protocol?: string | undefined;
|
|
2837
2845
|
tzkt?: {
|
|
2838
2846
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2839
2847
|
postgresqlPort?: number | undefined;
|
|
2840
2848
|
apiPort?: number | undefined;
|
|
2841
2849
|
} | undefined;
|
|
2850
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2842
2851
|
label: string;
|
|
2843
2852
|
rpcUrl: string;
|
|
2844
|
-
protocol: string;
|
|
2845
2853
|
}> | undefined;
|
|
2846
2854
|
language?: "en" | "fr" | undefined;
|
|
2847
2855
|
plugins?: {
|
|
@@ -2852,9 +2860,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2852
2860
|
artifactsDir?: string | undefined;
|
|
2853
2861
|
network?: Record<string, {
|
|
2854
2862
|
accounts?: Record<string, {
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2863
|
+
mnemonic?: string | undefined;
|
|
2864
|
+
publicKey?: string | undefined;
|
|
2865
|
+
publicKeyHash?: string | undefined;
|
|
2866
|
+
privateKey?: string | undefined;
|
|
2858
2867
|
}> | undefined;
|
|
2859
2868
|
faucet?: {
|
|
2860
2869
|
pkh: string;
|
|
@@ -2866,7 +2875,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2866
2875
|
} | undefined;
|
|
2867
2876
|
label: string;
|
|
2868
2877
|
rpcUrl: string;
|
|
2869
|
-
protocol: string;
|
|
2870
2878
|
}> | undefined;
|
|
2871
2879
|
accounts?: Record<string, string> | undefined;
|
|
2872
2880
|
contracts?: Record<string, {
|
|
@@ -3127,19 +3135,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3127
3135
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3128
3136
|
label: z.ZodString;
|
|
3129
3137
|
rpcUrl: z.ZodString;
|
|
3130
|
-
protocol: z.ZodString;
|
|
3131
3138
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3132
|
-
publicKey: z.ZodString
|
|
3133
|
-
publicKeyHash: z.ZodString
|
|
3134
|
-
privateKey: z.ZodString
|
|
3139
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
3140
|
+
publicKeyHash: z.ZodOptional<z.ZodString>;
|
|
3141
|
+
privateKey: z.ZodOptional<z.ZodString>;
|
|
3142
|
+
mnemonic: z.ZodOptional<z.ZodString>;
|
|
3135
3143
|
}, "strip", z.ZodTypeAny, {
|
|
3136
|
-
|
|
3137
|
-
|
|
3138
|
-
|
|
3144
|
+
mnemonic?: string | undefined;
|
|
3145
|
+
publicKey?: string | undefined;
|
|
3146
|
+
publicKeyHash?: string | undefined;
|
|
3147
|
+
privateKey?: string | undefined;
|
|
3139
3148
|
}, {
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
|
|
3149
|
+
mnemonic?: string | undefined;
|
|
3150
|
+
publicKey?: string | undefined;
|
|
3151
|
+
publicKeyHash?: string | undefined;
|
|
3152
|
+
privateKey?: string | undefined;
|
|
3143
3153
|
}>>>;
|
|
3144
3154
|
faucet: z.ZodOptional<z.ZodObject<{
|
|
3145
3155
|
pkh: z.ZodString;
|
|
@@ -3165,9 +3175,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3165
3175
|
}>>;
|
|
3166
3176
|
}, "strip", z.ZodTypeAny, {
|
|
3167
3177
|
accounts?: Record<string, {
|
|
3168
|
-
|
|
3169
|
-
|
|
3170
|
-
|
|
3178
|
+
mnemonic?: string | undefined;
|
|
3179
|
+
publicKey?: string | undefined;
|
|
3180
|
+
publicKeyHash?: string | undefined;
|
|
3181
|
+
privateKey?: string | undefined;
|
|
3171
3182
|
}> | undefined;
|
|
3172
3183
|
faucet?: {
|
|
3173
3184
|
pkh: string;
|
|
@@ -3179,12 +3190,12 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3179
3190
|
} | undefined;
|
|
3180
3191
|
label: string;
|
|
3181
3192
|
rpcUrl: string;
|
|
3182
|
-
protocol: string;
|
|
3183
3193
|
}, {
|
|
3184
3194
|
accounts?: Record<string, {
|
|
3185
|
-
|
|
3186
|
-
|
|
3187
|
-
|
|
3195
|
+
mnemonic?: string | undefined;
|
|
3196
|
+
publicKey?: string | undefined;
|
|
3197
|
+
publicKeyHash?: string | undefined;
|
|
3198
|
+
privateKey?: string | undefined;
|
|
3188
3199
|
}> | undefined;
|
|
3189
3200
|
faucet?: {
|
|
3190
3201
|
pkh: string;
|
|
@@ -3196,13 +3207,11 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3196
3207
|
} | undefined;
|
|
3197
3208
|
label: string;
|
|
3198
3209
|
rpcUrl: string;
|
|
3199
|
-
protocol: string;
|
|
3200
3210
|
}>>>;
|
|
3201
3211
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3202
3212
|
label: z.ZodString;
|
|
3203
3213
|
rpcUrl: z.ZodString;
|
|
3204
|
-
protocol: z.ZodString
|
|
3205
|
-
attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3214
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
3206
3215
|
plugin: z.ZodOptional<z.ZodString>;
|
|
3207
3216
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
3208
3217
|
encryptedKey: z.ZodString;
|
|
@@ -3230,6 +3239,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3230
3239
|
postgresqlPort?: number | undefined;
|
|
3231
3240
|
apiPort?: number | undefined;
|
|
3232
3241
|
}>>;
|
|
3242
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3233
3243
|
}, "strip", z.ZodTypeAny, {
|
|
3234
3244
|
plugin?: string | undefined;
|
|
3235
3245
|
accounts?: Record<string, string | {
|
|
@@ -3237,15 +3247,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3237
3247
|
encryptedKey: string;
|
|
3238
3248
|
secretKey: string;
|
|
3239
3249
|
}> | undefined;
|
|
3240
|
-
|
|
3250
|
+
protocol?: string | undefined;
|
|
3241
3251
|
tzkt?: {
|
|
3242
3252
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
3243
3253
|
postgresqlPort?: number | undefined;
|
|
3244
3254
|
apiPort?: number | undefined;
|
|
3245
3255
|
} | undefined;
|
|
3256
|
+
annotations?: Record<string, unknown> | undefined;
|
|
3246
3257
|
label: string;
|
|
3247
3258
|
rpcUrl: string;
|
|
3248
|
-
protocol: string;
|
|
3249
3259
|
}, {
|
|
3250
3260
|
plugin?: string | undefined;
|
|
3251
3261
|
accounts?: Record<string, string | {
|
|
@@ -3253,15 +3263,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3253
3263
|
encryptedKey: string;
|
|
3254
3264
|
secretKey: string;
|
|
3255
3265
|
}> | undefined;
|
|
3256
|
-
|
|
3266
|
+
protocol?: string | undefined;
|
|
3257
3267
|
tzkt?: {
|
|
3258
3268
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
3259
3269
|
postgresqlPort?: number | undefined;
|
|
3260
3270
|
apiPort?: number | undefined;
|
|
3261
3271
|
} | undefined;
|
|
3272
|
+
annotations?: Record<string, unknown> | undefined;
|
|
3262
3273
|
label: string;
|
|
3263
3274
|
rpcUrl: string;
|
|
3264
|
-
protocol: string;
|
|
3265
3275
|
}>>>;
|
|
3266
3276
|
environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
3267
3277
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
@@ -3321,15 +3331,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3321
3331
|
encryptedKey: string;
|
|
3322
3332
|
secretKey: string;
|
|
3323
3333
|
}> | undefined;
|
|
3324
|
-
|
|
3334
|
+
protocol?: string | undefined;
|
|
3325
3335
|
tzkt?: {
|
|
3326
3336
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
3327
3337
|
postgresqlPort?: number | undefined;
|
|
3328
3338
|
apiPort?: number | undefined;
|
|
3329
3339
|
} | undefined;
|
|
3340
|
+
annotations?: Record<string, unknown> | undefined;
|
|
3330
3341
|
label: string;
|
|
3331
3342
|
rpcUrl: string;
|
|
3332
|
-
protocol: string;
|
|
3333
3343
|
}> | undefined;
|
|
3334
3344
|
language?: "en" | "fr" | undefined;
|
|
3335
3345
|
plugins?: {
|
|
@@ -3340,9 +3350,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3340
3350
|
artifactsDir?: string | undefined;
|
|
3341
3351
|
network?: Record<string, {
|
|
3342
3352
|
accounts?: Record<string, {
|
|
3343
|
-
|
|
3344
|
-
|
|
3345
|
-
|
|
3353
|
+
mnemonic?: string | undefined;
|
|
3354
|
+
publicKey?: string | undefined;
|
|
3355
|
+
publicKeyHash?: string | undefined;
|
|
3356
|
+
privateKey?: string | undefined;
|
|
3346
3357
|
}> | undefined;
|
|
3347
3358
|
faucet?: {
|
|
3348
3359
|
pkh: string;
|
|
@@ -3354,7 +3365,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3354
3365
|
} | undefined;
|
|
3355
3366
|
label: string;
|
|
3356
3367
|
rpcUrl: string;
|
|
3357
|
-
protocol: string;
|
|
3358
3368
|
}> | undefined;
|
|
3359
3369
|
accounts?: Record<string, string> | undefined;
|
|
3360
3370
|
contracts?: Record<string, {
|
|
@@ -3385,15 +3395,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3385
3395
|
encryptedKey: string;
|
|
3386
3396
|
secretKey: string;
|
|
3387
3397
|
}> | undefined;
|
|
3388
|
-
|
|
3398
|
+
protocol?: string | undefined;
|
|
3389
3399
|
tzkt?: {
|
|
3390
3400
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
3391
3401
|
postgresqlPort?: number | undefined;
|
|
3392
3402
|
apiPort?: number | undefined;
|
|
3393
3403
|
} | undefined;
|
|
3404
|
+
annotations?: Record<string, unknown> | undefined;
|
|
3394
3405
|
label: string;
|
|
3395
3406
|
rpcUrl: string;
|
|
3396
|
-
protocol: string;
|
|
3397
3407
|
}> | undefined;
|
|
3398
3408
|
language?: "en" | "fr" | undefined;
|
|
3399
3409
|
plugins?: {
|
|
@@ -3404,9 +3414,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3404
3414
|
artifactsDir?: string | undefined;
|
|
3405
3415
|
network?: Record<string, {
|
|
3406
3416
|
accounts?: Record<string, {
|
|
3407
|
-
|
|
3408
|
-
|
|
3409
|
-
|
|
3417
|
+
mnemonic?: string | undefined;
|
|
3418
|
+
publicKey?: string | undefined;
|
|
3419
|
+
publicKeyHash?: string | undefined;
|
|
3420
|
+
privateKey?: string | undefined;
|
|
3410
3421
|
}> | undefined;
|
|
3411
3422
|
faucet?: {
|
|
3412
3423
|
pkh: string;
|
|
@@ -3418,7 +3429,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3418
3429
|
} | undefined;
|
|
3419
3430
|
label: string;
|
|
3420
3431
|
rpcUrl: string;
|
|
3421
|
-
protocol: string;
|
|
3422
3432
|
}> | undefined;
|
|
3423
3433
|
accounts?: Record<string, string> | undefined;
|
|
3424
3434
|
contracts?: Record<string, {
|
|
@@ -3467,15 +3477,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3467
3477
|
encryptedKey: string;
|
|
3468
3478
|
secretKey: string;
|
|
3469
3479
|
}> | undefined;
|
|
3470
|
-
|
|
3480
|
+
protocol?: string | undefined;
|
|
3471
3481
|
tzkt?: {
|
|
3472
3482
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
3473
3483
|
postgresqlPort?: number | undefined;
|
|
3474
3484
|
apiPort?: number | undefined;
|
|
3475
3485
|
} | undefined;
|
|
3486
|
+
annotations?: Record<string, unknown> | undefined;
|
|
3476
3487
|
label: string;
|
|
3477
3488
|
rpcUrl: string;
|
|
3478
|
-
protocol: string;
|
|
3479
3489
|
}> | undefined;
|
|
3480
3490
|
language?: "en" | "fr" | undefined;
|
|
3481
3491
|
plugins?: {
|
|
@@ -3486,9 +3496,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3486
3496
|
artifactsDir?: string | undefined;
|
|
3487
3497
|
network?: Record<string, {
|
|
3488
3498
|
accounts?: Record<string, {
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3499
|
+
mnemonic?: string | undefined;
|
|
3500
|
+
publicKey?: string | undefined;
|
|
3501
|
+
publicKeyHash?: string | undefined;
|
|
3502
|
+
privateKey?: string | undefined;
|
|
3492
3503
|
}> | undefined;
|
|
3493
3504
|
faucet?: {
|
|
3494
3505
|
pkh: string;
|
|
@@ -3500,7 +3511,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3500
3511
|
} | undefined;
|
|
3501
3512
|
label: string;
|
|
3502
3513
|
rpcUrl: string;
|
|
3503
|
-
protocol: string;
|
|
3504
3514
|
}> | undefined;
|
|
3505
3515
|
accounts?: Record<string, string> | undefined;
|
|
3506
3516
|
contracts?: Record<string, {
|
|
@@ -3549,15 +3559,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3549
3559
|
encryptedKey: string;
|
|
3550
3560
|
secretKey: string;
|
|
3551
3561
|
}> | undefined;
|
|
3552
|
-
|
|
3562
|
+
protocol?: string | undefined;
|
|
3553
3563
|
tzkt?: {
|
|
3554
3564
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
3555
3565
|
postgresqlPort?: number | undefined;
|
|
3556
3566
|
apiPort?: number | undefined;
|
|
3557
3567
|
} | undefined;
|
|
3568
|
+
annotations?: Record<string, unknown> | undefined;
|
|
3558
3569
|
label: string;
|
|
3559
3570
|
rpcUrl: string;
|
|
3560
|
-
protocol: string;
|
|
3561
3571
|
}> | undefined;
|
|
3562
3572
|
language?: "en" | "fr" | undefined;
|
|
3563
3573
|
plugins?: {
|
|
@@ -3568,9 +3578,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3568
3578
|
artifactsDir?: string | undefined;
|
|
3569
3579
|
network?: Record<string, {
|
|
3570
3580
|
accounts?: Record<string, {
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3581
|
+
mnemonic?: string | undefined;
|
|
3582
|
+
publicKey?: string | undefined;
|
|
3583
|
+
publicKeyHash?: string | undefined;
|
|
3584
|
+
privateKey?: string | undefined;
|
|
3574
3585
|
}> | undefined;
|
|
3575
3586
|
faucet?: {
|
|
3576
3587
|
pkh: string;
|
|
@@ -3582,7 +3593,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3582
3593
|
} | undefined;
|
|
3583
3594
|
label: string;
|
|
3584
3595
|
rpcUrl: string;
|
|
3585
|
-
protocol: string;
|
|
3586
3596
|
}> | undefined;
|
|
3587
3597
|
accounts?: Record<string, string> | undefined;
|
|
3588
3598
|
contracts?: Record<string, {
|