@taqueria/protocol 0.25.13-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/PluginSchema.d.ts
CHANGED
|
@@ -285,19 +285,21 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
285
285
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
286
286
|
label: z.ZodString;
|
|
287
287
|
rpcUrl: z.ZodString;
|
|
288
|
-
protocol: z.ZodString;
|
|
289
288
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
290
|
-
publicKey: z.ZodString
|
|
291
|
-
publicKeyHash: z.ZodString
|
|
292
|
-
privateKey: z.ZodString
|
|
289
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
290
|
+
publicKeyHash: z.ZodOptional<z.ZodString>;
|
|
291
|
+
privateKey: z.ZodOptional<z.ZodString>;
|
|
292
|
+
mnemonic: z.ZodOptional<z.ZodString>;
|
|
293
293
|
}, "strip", z.ZodTypeAny, {
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
294
|
+
mnemonic?: string | undefined;
|
|
295
|
+
publicKey?: string | undefined;
|
|
296
|
+
publicKeyHash?: string | undefined;
|
|
297
|
+
privateKey?: string | undefined;
|
|
297
298
|
}, {
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
299
|
+
mnemonic?: string | undefined;
|
|
300
|
+
publicKey?: string | undefined;
|
|
301
|
+
publicKeyHash?: string | undefined;
|
|
302
|
+
privateKey?: string | undefined;
|
|
301
303
|
}>>>;
|
|
302
304
|
faucet: z.ZodOptional<z.ZodObject<{
|
|
303
305
|
pkh: z.ZodString;
|
|
@@ -323,9 +325,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
323
325
|
}>>;
|
|
324
326
|
}, "strip", z.ZodTypeAny, {
|
|
325
327
|
accounts?: Record<string, {
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
328
|
+
mnemonic?: string | undefined;
|
|
329
|
+
publicKey?: string | undefined;
|
|
330
|
+
publicKeyHash?: string | undefined;
|
|
331
|
+
privateKey?: string | undefined;
|
|
329
332
|
}> | undefined;
|
|
330
333
|
faucet?: {
|
|
331
334
|
pkh: string;
|
|
@@ -337,12 +340,12 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
337
340
|
} | undefined;
|
|
338
341
|
label: string;
|
|
339
342
|
rpcUrl: string;
|
|
340
|
-
protocol: string;
|
|
341
343
|
}, {
|
|
342
344
|
accounts?: Record<string, {
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
345
|
+
mnemonic?: string | undefined;
|
|
346
|
+
publicKey?: string | undefined;
|
|
347
|
+
publicKeyHash?: string | undefined;
|
|
348
|
+
privateKey?: string | undefined;
|
|
346
349
|
}> | undefined;
|
|
347
350
|
faucet?: {
|
|
348
351
|
pkh: string;
|
|
@@ -354,13 +357,11 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
354
357
|
} | undefined;
|
|
355
358
|
label: string;
|
|
356
359
|
rpcUrl: string;
|
|
357
|
-
protocol: string;
|
|
358
360
|
}>>>;
|
|
359
361
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
360
362
|
label: z.ZodString;
|
|
361
363
|
rpcUrl: z.ZodString;
|
|
362
|
-
protocol: z.ZodString
|
|
363
|
-
attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
364
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
364
365
|
plugin: z.ZodOptional<z.ZodString>;
|
|
365
366
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
366
367
|
encryptedKey: z.ZodString;
|
|
@@ -388,6 +389,7 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
388
389
|
postgresqlPort?: number | undefined;
|
|
389
390
|
apiPort?: number | undefined;
|
|
390
391
|
}>>;
|
|
392
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
391
393
|
}, "strip", z.ZodTypeAny, {
|
|
392
394
|
plugin?: string | undefined;
|
|
393
395
|
accounts?: Record<string, string | {
|
|
@@ -395,15 +397,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
395
397
|
encryptedKey: string;
|
|
396
398
|
secretKey: string;
|
|
397
399
|
}> | undefined;
|
|
398
|
-
|
|
400
|
+
protocol?: string | undefined;
|
|
399
401
|
tzkt?: {
|
|
400
402
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
401
403
|
postgresqlPort?: number | undefined;
|
|
402
404
|
apiPort?: number | undefined;
|
|
403
405
|
} | undefined;
|
|
406
|
+
annotations?: Record<string, unknown> | undefined;
|
|
404
407
|
label: string;
|
|
405
408
|
rpcUrl: string;
|
|
406
|
-
protocol: string;
|
|
407
409
|
}, {
|
|
408
410
|
plugin?: string | undefined;
|
|
409
411
|
accounts?: Record<string, string | {
|
|
@@ -411,15 +413,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
411
413
|
encryptedKey: string;
|
|
412
414
|
secretKey: string;
|
|
413
415
|
}> | undefined;
|
|
414
|
-
|
|
416
|
+
protocol?: string | undefined;
|
|
415
417
|
tzkt?: {
|
|
416
418
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
417
419
|
postgresqlPort?: number | undefined;
|
|
418
420
|
apiPort?: number | undefined;
|
|
419
421
|
} | undefined;
|
|
422
|
+
annotations?: Record<string, unknown> | undefined;
|
|
420
423
|
label: string;
|
|
421
424
|
rpcUrl: string;
|
|
422
|
-
protocol: string;
|
|
423
425
|
}>>>;
|
|
424
426
|
environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
425
427
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
@@ -479,15 +481,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
479
481
|
encryptedKey: string;
|
|
480
482
|
secretKey: string;
|
|
481
483
|
}> | undefined;
|
|
482
|
-
|
|
484
|
+
protocol?: string | undefined;
|
|
483
485
|
tzkt?: {
|
|
484
486
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
485
487
|
postgresqlPort?: number | undefined;
|
|
486
488
|
apiPort?: number | undefined;
|
|
487
489
|
} | undefined;
|
|
490
|
+
annotations?: Record<string, unknown> | undefined;
|
|
488
491
|
label: string;
|
|
489
492
|
rpcUrl: string;
|
|
490
|
-
protocol: string;
|
|
491
493
|
}> | undefined;
|
|
492
494
|
language?: "en" | "fr" | undefined;
|
|
493
495
|
plugins?: {
|
|
@@ -498,9 +500,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
498
500
|
artifactsDir?: string | undefined;
|
|
499
501
|
network?: Record<string, {
|
|
500
502
|
accounts?: Record<string, {
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
503
|
+
mnemonic?: string | undefined;
|
|
504
|
+
publicKey?: string | undefined;
|
|
505
|
+
publicKeyHash?: string | undefined;
|
|
506
|
+
privateKey?: string | undefined;
|
|
504
507
|
}> | undefined;
|
|
505
508
|
faucet?: {
|
|
506
509
|
pkh: string;
|
|
@@ -512,7 +515,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
512
515
|
} | undefined;
|
|
513
516
|
label: string;
|
|
514
517
|
rpcUrl: string;
|
|
515
|
-
protocol: string;
|
|
516
518
|
}> | undefined;
|
|
517
519
|
accounts?: Record<string, string> | undefined;
|
|
518
520
|
contracts?: Record<string, {
|
|
@@ -543,15 +545,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
543
545
|
encryptedKey: string;
|
|
544
546
|
secretKey: string;
|
|
545
547
|
}> | undefined;
|
|
546
|
-
|
|
548
|
+
protocol?: string | undefined;
|
|
547
549
|
tzkt?: {
|
|
548
550
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
549
551
|
postgresqlPort?: number | undefined;
|
|
550
552
|
apiPort?: number | undefined;
|
|
551
553
|
} | undefined;
|
|
554
|
+
annotations?: Record<string, unknown> | undefined;
|
|
552
555
|
label: string;
|
|
553
556
|
rpcUrl: string;
|
|
554
|
-
protocol: string;
|
|
555
557
|
}> | undefined;
|
|
556
558
|
language?: "en" | "fr" | undefined;
|
|
557
559
|
plugins?: {
|
|
@@ -562,9 +564,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
562
564
|
artifactsDir?: string | undefined;
|
|
563
565
|
network?: Record<string, {
|
|
564
566
|
accounts?: Record<string, {
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
567
|
+
mnemonic?: string | undefined;
|
|
568
|
+
publicKey?: string | undefined;
|
|
569
|
+
publicKeyHash?: string | undefined;
|
|
570
|
+
privateKey?: string | undefined;
|
|
568
571
|
}> | undefined;
|
|
569
572
|
faucet?: {
|
|
570
573
|
pkh: string;
|
|
@@ -576,7 +579,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
576
579
|
} | undefined;
|
|
577
580
|
label: string;
|
|
578
581
|
rpcUrl: string;
|
|
579
|
-
protocol: string;
|
|
580
582
|
}> | undefined;
|
|
581
583
|
accounts?: Record<string, string> | undefined;
|
|
582
584
|
contracts?: Record<string, {
|
|
@@ -625,15 +627,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
625
627
|
encryptedKey: string;
|
|
626
628
|
secretKey: string;
|
|
627
629
|
}> | undefined;
|
|
628
|
-
|
|
630
|
+
protocol?: string | undefined;
|
|
629
631
|
tzkt?: {
|
|
630
632
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
631
633
|
postgresqlPort?: number | undefined;
|
|
632
634
|
apiPort?: number | undefined;
|
|
633
635
|
} | undefined;
|
|
636
|
+
annotations?: Record<string, unknown> | undefined;
|
|
634
637
|
label: string;
|
|
635
638
|
rpcUrl: string;
|
|
636
|
-
protocol: string;
|
|
637
639
|
}> | undefined;
|
|
638
640
|
language?: "en" | "fr" | undefined;
|
|
639
641
|
plugins?: {
|
|
@@ -644,9 +646,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
644
646
|
artifactsDir?: string | undefined;
|
|
645
647
|
network?: Record<string, {
|
|
646
648
|
accounts?: Record<string, {
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
649
|
+
mnemonic?: string | undefined;
|
|
650
|
+
publicKey?: string | undefined;
|
|
651
|
+
publicKeyHash?: string | undefined;
|
|
652
|
+
privateKey?: string | undefined;
|
|
650
653
|
}> | undefined;
|
|
651
654
|
faucet?: {
|
|
652
655
|
pkh: string;
|
|
@@ -658,7 +661,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
658
661
|
} | undefined;
|
|
659
662
|
label: string;
|
|
660
663
|
rpcUrl: string;
|
|
661
|
-
protocol: string;
|
|
662
664
|
}> | undefined;
|
|
663
665
|
accounts?: Record<string, string> | undefined;
|
|
664
666
|
contracts?: Record<string, {
|
|
@@ -707,15 +709,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
707
709
|
encryptedKey: string;
|
|
708
710
|
secretKey: string;
|
|
709
711
|
}> | undefined;
|
|
710
|
-
|
|
712
|
+
protocol?: string | undefined;
|
|
711
713
|
tzkt?: {
|
|
712
714
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
713
715
|
postgresqlPort?: number | undefined;
|
|
714
716
|
apiPort?: number | undefined;
|
|
715
717
|
} | undefined;
|
|
718
|
+
annotations?: Record<string, unknown> | undefined;
|
|
716
719
|
label: string;
|
|
717
720
|
rpcUrl: string;
|
|
718
|
-
protocol: string;
|
|
719
721
|
}> | undefined;
|
|
720
722
|
language?: "en" | "fr" | undefined;
|
|
721
723
|
plugins?: {
|
|
@@ -726,9 +728,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
726
728
|
artifactsDir?: string | undefined;
|
|
727
729
|
network?: Record<string, {
|
|
728
730
|
accounts?: Record<string, {
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
731
|
+
mnemonic?: string | undefined;
|
|
732
|
+
publicKey?: string | undefined;
|
|
733
|
+
publicKeyHash?: string | undefined;
|
|
734
|
+
privateKey?: string | undefined;
|
|
732
735
|
}> | undefined;
|
|
733
736
|
faucet?: {
|
|
734
737
|
pkh: string;
|
|
@@ -740,7 +743,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
740
743
|
} | undefined;
|
|
741
744
|
label: string;
|
|
742
745
|
rpcUrl: string;
|
|
743
|
-
protocol: string;
|
|
744
746
|
}> | undefined;
|
|
745
747
|
accounts?: Record<string, string> | undefined;
|
|
746
748
|
contracts?: Record<string, {
|
|
@@ -917,19 +919,21 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
917
919
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
918
920
|
label: z.ZodString;
|
|
919
921
|
rpcUrl: z.ZodString;
|
|
920
|
-
protocol: z.ZodString;
|
|
921
922
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
922
|
-
publicKey: z.ZodString
|
|
923
|
-
publicKeyHash: z.ZodString
|
|
924
|
-
privateKey: z.ZodString
|
|
923
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
924
|
+
publicKeyHash: z.ZodOptional<z.ZodString>;
|
|
925
|
+
privateKey: z.ZodOptional<z.ZodString>;
|
|
926
|
+
mnemonic: z.ZodOptional<z.ZodString>;
|
|
925
927
|
}, "strip", z.ZodTypeAny, {
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
928
|
+
mnemonic?: string | undefined;
|
|
929
|
+
publicKey?: string | undefined;
|
|
930
|
+
publicKeyHash?: string | undefined;
|
|
931
|
+
privateKey?: string | undefined;
|
|
929
932
|
}, {
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
+
mnemonic?: string | undefined;
|
|
934
|
+
publicKey?: string | undefined;
|
|
935
|
+
publicKeyHash?: string | undefined;
|
|
936
|
+
privateKey?: string | undefined;
|
|
933
937
|
}>>>;
|
|
934
938
|
faucet: z.ZodOptional<z.ZodObject<{
|
|
935
939
|
pkh: z.ZodString;
|
|
@@ -955,9 +959,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
955
959
|
}>>;
|
|
956
960
|
}, "strip", z.ZodTypeAny, {
|
|
957
961
|
accounts?: Record<string, {
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
962
|
+
mnemonic?: string | undefined;
|
|
963
|
+
publicKey?: string | undefined;
|
|
964
|
+
publicKeyHash?: string | undefined;
|
|
965
|
+
privateKey?: string | undefined;
|
|
961
966
|
}> | undefined;
|
|
962
967
|
faucet?: {
|
|
963
968
|
pkh: string;
|
|
@@ -969,12 +974,12 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
969
974
|
} | undefined;
|
|
970
975
|
label: string;
|
|
971
976
|
rpcUrl: string;
|
|
972
|
-
protocol: string;
|
|
973
977
|
}, {
|
|
974
978
|
accounts?: Record<string, {
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
979
|
+
mnemonic?: string | undefined;
|
|
980
|
+
publicKey?: string | undefined;
|
|
981
|
+
publicKeyHash?: string | undefined;
|
|
982
|
+
privateKey?: string | undefined;
|
|
978
983
|
}> | undefined;
|
|
979
984
|
faucet?: {
|
|
980
985
|
pkh: string;
|
|
@@ -986,13 +991,11 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
986
991
|
} | undefined;
|
|
987
992
|
label: string;
|
|
988
993
|
rpcUrl: string;
|
|
989
|
-
protocol: string;
|
|
990
994
|
}>>>;
|
|
991
995
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
992
996
|
label: z.ZodString;
|
|
993
997
|
rpcUrl: z.ZodString;
|
|
994
|
-
protocol: z.ZodString
|
|
995
|
-
attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
998
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
996
999
|
plugin: z.ZodOptional<z.ZodString>;
|
|
997
1000
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
998
1001
|
encryptedKey: z.ZodString;
|
|
@@ -1020,6 +1023,7 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1020
1023
|
postgresqlPort?: number | undefined;
|
|
1021
1024
|
apiPort?: number | undefined;
|
|
1022
1025
|
}>>;
|
|
1026
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1023
1027
|
}, "strip", z.ZodTypeAny, {
|
|
1024
1028
|
plugin?: string | undefined;
|
|
1025
1029
|
accounts?: Record<string, string | {
|
|
@@ -1027,15 +1031,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1027
1031
|
encryptedKey: string;
|
|
1028
1032
|
secretKey: string;
|
|
1029
1033
|
}> | undefined;
|
|
1030
|
-
|
|
1034
|
+
protocol?: string | undefined;
|
|
1031
1035
|
tzkt?: {
|
|
1032
1036
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1033
1037
|
postgresqlPort?: number | undefined;
|
|
1034
1038
|
apiPort?: number | undefined;
|
|
1035
1039
|
} | undefined;
|
|
1040
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1036
1041
|
label: string;
|
|
1037
1042
|
rpcUrl: string;
|
|
1038
|
-
protocol: string;
|
|
1039
1043
|
}, {
|
|
1040
1044
|
plugin?: string | undefined;
|
|
1041
1045
|
accounts?: Record<string, string | {
|
|
@@ -1043,15 +1047,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1043
1047
|
encryptedKey: string;
|
|
1044
1048
|
secretKey: string;
|
|
1045
1049
|
}> | undefined;
|
|
1046
|
-
|
|
1050
|
+
protocol?: string | undefined;
|
|
1047
1051
|
tzkt?: {
|
|
1048
1052
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1049
1053
|
postgresqlPort?: number | undefined;
|
|
1050
1054
|
apiPort?: number | undefined;
|
|
1051
1055
|
} | undefined;
|
|
1056
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1052
1057
|
label: string;
|
|
1053
1058
|
rpcUrl: string;
|
|
1054
|
-
protocol: string;
|
|
1055
1059
|
}>>>;
|
|
1056
1060
|
environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
1057
1061
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
@@ -1111,15 +1115,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1111
1115
|
encryptedKey: string;
|
|
1112
1116
|
secretKey: string;
|
|
1113
1117
|
}> | undefined;
|
|
1114
|
-
|
|
1118
|
+
protocol?: string | undefined;
|
|
1115
1119
|
tzkt?: {
|
|
1116
1120
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1117
1121
|
postgresqlPort?: number | undefined;
|
|
1118
1122
|
apiPort?: number | undefined;
|
|
1119
1123
|
} | undefined;
|
|
1124
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1120
1125
|
label: string;
|
|
1121
1126
|
rpcUrl: string;
|
|
1122
|
-
protocol: string;
|
|
1123
1127
|
}> | undefined;
|
|
1124
1128
|
language?: "en" | "fr" | undefined;
|
|
1125
1129
|
plugins?: {
|
|
@@ -1130,9 +1134,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1130
1134
|
artifactsDir?: string | undefined;
|
|
1131
1135
|
network?: Record<string, {
|
|
1132
1136
|
accounts?: Record<string, {
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1137
|
+
mnemonic?: string | undefined;
|
|
1138
|
+
publicKey?: string | undefined;
|
|
1139
|
+
publicKeyHash?: string | undefined;
|
|
1140
|
+
privateKey?: string | undefined;
|
|
1136
1141
|
}> | undefined;
|
|
1137
1142
|
faucet?: {
|
|
1138
1143
|
pkh: string;
|
|
@@ -1144,7 +1149,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1144
1149
|
} | undefined;
|
|
1145
1150
|
label: string;
|
|
1146
1151
|
rpcUrl: string;
|
|
1147
|
-
protocol: string;
|
|
1148
1152
|
}> | undefined;
|
|
1149
1153
|
accounts?: Record<string, string> | undefined;
|
|
1150
1154
|
contracts?: Record<string, {
|
|
@@ -1175,15 +1179,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1175
1179
|
encryptedKey: string;
|
|
1176
1180
|
secretKey: string;
|
|
1177
1181
|
}> | undefined;
|
|
1178
|
-
|
|
1182
|
+
protocol?: string | undefined;
|
|
1179
1183
|
tzkt?: {
|
|
1180
1184
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1181
1185
|
postgresqlPort?: number | undefined;
|
|
1182
1186
|
apiPort?: number | undefined;
|
|
1183
1187
|
} | undefined;
|
|
1188
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1184
1189
|
label: string;
|
|
1185
1190
|
rpcUrl: string;
|
|
1186
|
-
protocol: string;
|
|
1187
1191
|
}> | undefined;
|
|
1188
1192
|
language?: "en" | "fr" | undefined;
|
|
1189
1193
|
plugins?: {
|
|
@@ -1194,9 +1198,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1194
1198
|
artifactsDir?: string | undefined;
|
|
1195
1199
|
network?: Record<string, {
|
|
1196
1200
|
accounts?: Record<string, {
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1201
|
+
mnemonic?: string | undefined;
|
|
1202
|
+
publicKey?: string | undefined;
|
|
1203
|
+
publicKeyHash?: string | undefined;
|
|
1204
|
+
privateKey?: string | undefined;
|
|
1200
1205
|
}> | undefined;
|
|
1201
1206
|
faucet?: {
|
|
1202
1207
|
pkh: string;
|
|
@@ -1208,7 +1213,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1208
1213
|
} | undefined;
|
|
1209
1214
|
label: string;
|
|
1210
1215
|
rpcUrl: string;
|
|
1211
|
-
protocol: string;
|
|
1212
1216
|
}> | undefined;
|
|
1213
1217
|
accounts?: Record<string, string> | undefined;
|
|
1214
1218
|
contracts?: Record<string, {
|
|
@@ -1257,15 +1261,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1257
1261
|
encryptedKey: string;
|
|
1258
1262
|
secretKey: string;
|
|
1259
1263
|
}> | undefined;
|
|
1260
|
-
|
|
1264
|
+
protocol?: string | undefined;
|
|
1261
1265
|
tzkt?: {
|
|
1262
1266
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1263
1267
|
postgresqlPort?: number | undefined;
|
|
1264
1268
|
apiPort?: number | undefined;
|
|
1265
1269
|
} | undefined;
|
|
1270
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1266
1271
|
label: string;
|
|
1267
1272
|
rpcUrl: string;
|
|
1268
|
-
protocol: string;
|
|
1269
1273
|
}> | undefined;
|
|
1270
1274
|
language?: "en" | "fr" | undefined;
|
|
1271
1275
|
plugins?: {
|
|
@@ -1276,9 +1280,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1276
1280
|
artifactsDir?: string | undefined;
|
|
1277
1281
|
network?: Record<string, {
|
|
1278
1282
|
accounts?: Record<string, {
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1283
|
+
mnemonic?: string | undefined;
|
|
1284
|
+
publicKey?: string | undefined;
|
|
1285
|
+
publicKeyHash?: string | undefined;
|
|
1286
|
+
privateKey?: string | undefined;
|
|
1282
1287
|
}> | undefined;
|
|
1283
1288
|
faucet?: {
|
|
1284
1289
|
pkh: string;
|
|
@@ -1290,7 +1295,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1290
1295
|
} | undefined;
|
|
1291
1296
|
label: string;
|
|
1292
1297
|
rpcUrl: string;
|
|
1293
|
-
protocol: string;
|
|
1294
1298
|
}> | undefined;
|
|
1295
1299
|
accounts?: Record<string, string> | undefined;
|
|
1296
1300
|
contracts?: Record<string, {
|
|
@@ -1339,15 +1343,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1339
1343
|
encryptedKey: string;
|
|
1340
1344
|
secretKey: string;
|
|
1341
1345
|
}> | undefined;
|
|
1342
|
-
|
|
1346
|
+
protocol?: string | undefined;
|
|
1343
1347
|
tzkt?: {
|
|
1344
1348
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1345
1349
|
postgresqlPort?: number | undefined;
|
|
1346
1350
|
apiPort?: number | undefined;
|
|
1347
1351
|
} | undefined;
|
|
1352
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1348
1353
|
label: string;
|
|
1349
1354
|
rpcUrl: string;
|
|
1350
|
-
protocol: string;
|
|
1351
1355
|
}> | undefined;
|
|
1352
1356
|
language?: "en" | "fr" | undefined;
|
|
1353
1357
|
plugins?: {
|
|
@@ -1358,9 +1362,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1358
1362
|
artifactsDir?: string | undefined;
|
|
1359
1363
|
network?: Record<string, {
|
|
1360
1364
|
accounts?: Record<string, {
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1365
|
+
mnemonic?: string | undefined;
|
|
1366
|
+
publicKey?: string | undefined;
|
|
1367
|
+
publicKeyHash?: string | undefined;
|
|
1368
|
+
privateKey?: string | undefined;
|
|
1364
1369
|
}> | undefined;
|
|
1365
1370
|
faucet?: {
|
|
1366
1371
|
pkh: string;
|
|
@@ -1372,7 +1377,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1372
1377
|
} | undefined;
|
|
1373
1378
|
label: string;
|
|
1374
1379
|
rpcUrl: string;
|
|
1375
|
-
protocol: string;
|
|
1376
1380
|
}> | undefined;
|
|
1377
1381
|
accounts?: Record<string, string> | undefined;
|
|
1378
1382
|
contracts?: Record<string, {
|
|
@@ -1783,19 +1787,21 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1783
1787
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1784
1788
|
label: z.ZodString;
|
|
1785
1789
|
rpcUrl: z.ZodString;
|
|
1786
|
-
protocol: z.ZodString;
|
|
1787
1790
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1788
|
-
publicKey: z.ZodString
|
|
1789
|
-
publicKeyHash: z.ZodString
|
|
1790
|
-
privateKey: z.ZodString
|
|
1791
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
1792
|
+
publicKeyHash: z.ZodOptional<z.ZodString>;
|
|
1793
|
+
privateKey: z.ZodOptional<z.ZodString>;
|
|
1794
|
+
mnemonic: z.ZodOptional<z.ZodString>;
|
|
1791
1795
|
}, "strip", z.ZodTypeAny, {
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1796
|
+
mnemonic?: string | undefined;
|
|
1797
|
+
publicKey?: string | undefined;
|
|
1798
|
+
publicKeyHash?: string | undefined;
|
|
1799
|
+
privateKey?: string | undefined;
|
|
1795
1800
|
}, {
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1801
|
+
mnemonic?: string | undefined;
|
|
1802
|
+
publicKey?: string | undefined;
|
|
1803
|
+
publicKeyHash?: string | undefined;
|
|
1804
|
+
privateKey?: string | undefined;
|
|
1799
1805
|
}>>>;
|
|
1800
1806
|
faucet: z.ZodOptional<z.ZodObject<{
|
|
1801
1807
|
pkh: z.ZodString;
|
|
@@ -1821,9 +1827,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1821
1827
|
}>>;
|
|
1822
1828
|
}, "strip", z.ZodTypeAny, {
|
|
1823
1829
|
accounts?: Record<string, {
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1830
|
+
mnemonic?: string | undefined;
|
|
1831
|
+
publicKey?: string | undefined;
|
|
1832
|
+
publicKeyHash?: string | undefined;
|
|
1833
|
+
privateKey?: string | undefined;
|
|
1827
1834
|
}> | undefined;
|
|
1828
1835
|
faucet?: {
|
|
1829
1836
|
pkh: string;
|
|
@@ -1835,12 +1842,12 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1835
1842
|
} | undefined;
|
|
1836
1843
|
label: string;
|
|
1837
1844
|
rpcUrl: string;
|
|
1838
|
-
protocol: string;
|
|
1839
1845
|
}, {
|
|
1840
1846
|
accounts?: Record<string, {
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1847
|
+
mnemonic?: string | undefined;
|
|
1848
|
+
publicKey?: string | undefined;
|
|
1849
|
+
publicKeyHash?: string | undefined;
|
|
1850
|
+
privateKey?: string | undefined;
|
|
1844
1851
|
}> | undefined;
|
|
1845
1852
|
faucet?: {
|
|
1846
1853
|
pkh: string;
|
|
@@ -1852,13 +1859,11 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1852
1859
|
} | undefined;
|
|
1853
1860
|
label: string;
|
|
1854
1861
|
rpcUrl: string;
|
|
1855
|
-
protocol: string;
|
|
1856
1862
|
}>>>;
|
|
1857
1863
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1858
1864
|
label: z.ZodString;
|
|
1859
1865
|
rpcUrl: z.ZodString;
|
|
1860
|
-
protocol: z.ZodString
|
|
1861
|
-
attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1866
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
1862
1867
|
plugin: z.ZodOptional<z.ZodString>;
|
|
1863
1868
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
1864
1869
|
encryptedKey: z.ZodString;
|
|
@@ -1886,6 +1891,7 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1886
1891
|
postgresqlPort?: number | undefined;
|
|
1887
1892
|
apiPort?: number | undefined;
|
|
1888
1893
|
}>>;
|
|
1894
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1889
1895
|
}, "strip", z.ZodTypeAny, {
|
|
1890
1896
|
plugin?: string | undefined;
|
|
1891
1897
|
accounts?: Record<string, string | {
|
|
@@ -1893,15 +1899,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1893
1899
|
encryptedKey: string;
|
|
1894
1900
|
secretKey: string;
|
|
1895
1901
|
}> | undefined;
|
|
1896
|
-
|
|
1902
|
+
protocol?: string | undefined;
|
|
1897
1903
|
tzkt?: {
|
|
1898
1904
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1899
1905
|
postgresqlPort?: number | undefined;
|
|
1900
1906
|
apiPort?: number | undefined;
|
|
1901
1907
|
} | undefined;
|
|
1908
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1902
1909
|
label: string;
|
|
1903
1910
|
rpcUrl: string;
|
|
1904
|
-
protocol: string;
|
|
1905
1911
|
}, {
|
|
1906
1912
|
plugin?: string | undefined;
|
|
1907
1913
|
accounts?: Record<string, string | {
|
|
@@ -1909,15 +1915,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1909
1915
|
encryptedKey: string;
|
|
1910
1916
|
secretKey: string;
|
|
1911
1917
|
}> | undefined;
|
|
1912
|
-
|
|
1918
|
+
protocol?: string | undefined;
|
|
1913
1919
|
tzkt?: {
|
|
1914
1920
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1915
1921
|
postgresqlPort?: number | undefined;
|
|
1916
1922
|
apiPort?: number | undefined;
|
|
1917
1923
|
} | undefined;
|
|
1924
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1918
1925
|
label: string;
|
|
1919
1926
|
rpcUrl: string;
|
|
1920
|
-
protocol: string;
|
|
1921
1927
|
}>>>;
|
|
1922
1928
|
environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
1923
1929
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
@@ -1977,15 +1983,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1977
1983
|
encryptedKey: string;
|
|
1978
1984
|
secretKey: string;
|
|
1979
1985
|
}> | undefined;
|
|
1980
|
-
|
|
1986
|
+
protocol?: string | undefined;
|
|
1981
1987
|
tzkt?: {
|
|
1982
1988
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1983
1989
|
postgresqlPort?: number | undefined;
|
|
1984
1990
|
apiPort?: number | undefined;
|
|
1985
1991
|
} | undefined;
|
|
1992
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1986
1993
|
label: string;
|
|
1987
1994
|
rpcUrl: string;
|
|
1988
|
-
protocol: string;
|
|
1989
1995
|
}> | undefined;
|
|
1990
1996
|
language?: "en" | "fr" | undefined;
|
|
1991
1997
|
plugins?: {
|
|
@@ -1996,9 +2002,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
1996
2002
|
artifactsDir?: string | undefined;
|
|
1997
2003
|
network?: Record<string, {
|
|
1998
2004
|
accounts?: Record<string, {
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2005
|
+
mnemonic?: string | undefined;
|
|
2006
|
+
publicKey?: string | undefined;
|
|
2007
|
+
publicKeyHash?: string | undefined;
|
|
2008
|
+
privateKey?: string | undefined;
|
|
2002
2009
|
}> | undefined;
|
|
2003
2010
|
faucet?: {
|
|
2004
2011
|
pkh: string;
|
|
@@ -2010,7 +2017,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2010
2017
|
} | undefined;
|
|
2011
2018
|
label: string;
|
|
2012
2019
|
rpcUrl: string;
|
|
2013
|
-
protocol: string;
|
|
2014
2020
|
}> | undefined;
|
|
2015
2021
|
accounts?: Record<string, string> | undefined;
|
|
2016
2022
|
contracts?: Record<string, {
|
|
@@ -2041,15 +2047,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2041
2047
|
encryptedKey: string;
|
|
2042
2048
|
secretKey: string;
|
|
2043
2049
|
}> | undefined;
|
|
2044
|
-
|
|
2050
|
+
protocol?: string | undefined;
|
|
2045
2051
|
tzkt?: {
|
|
2046
2052
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2047
2053
|
postgresqlPort?: number | undefined;
|
|
2048
2054
|
apiPort?: number | undefined;
|
|
2049
2055
|
} | undefined;
|
|
2056
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2050
2057
|
label: string;
|
|
2051
2058
|
rpcUrl: string;
|
|
2052
|
-
protocol: string;
|
|
2053
2059
|
}> | undefined;
|
|
2054
2060
|
language?: "en" | "fr" | undefined;
|
|
2055
2061
|
plugins?: {
|
|
@@ -2060,9 +2066,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2060
2066
|
artifactsDir?: string | undefined;
|
|
2061
2067
|
network?: Record<string, {
|
|
2062
2068
|
accounts?: Record<string, {
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2069
|
+
mnemonic?: string | undefined;
|
|
2070
|
+
publicKey?: string | undefined;
|
|
2071
|
+
publicKeyHash?: string | undefined;
|
|
2072
|
+
privateKey?: string | undefined;
|
|
2066
2073
|
}> | undefined;
|
|
2067
2074
|
faucet?: {
|
|
2068
2075
|
pkh: string;
|
|
@@ -2074,7 +2081,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2074
2081
|
} | undefined;
|
|
2075
2082
|
label: string;
|
|
2076
2083
|
rpcUrl: string;
|
|
2077
|
-
protocol: string;
|
|
2078
2084
|
}> | undefined;
|
|
2079
2085
|
accounts?: Record<string, string> | undefined;
|
|
2080
2086
|
contracts?: Record<string, {
|
|
@@ -2123,15 +2129,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2123
2129
|
encryptedKey: string;
|
|
2124
2130
|
secretKey: string;
|
|
2125
2131
|
}> | undefined;
|
|
2126
|
-
|
|
2132
|
+
protocol?: string | undefined;
|
|
2127
2133
|
tzkt?: {
|
|
2128
2134
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2129
2135
|
postgresqlPort?: number | undefined;
|
|
2130
2136
|
apiPort?: number | undefined;
|
|
2131
2137
|
} | undefined;
|
|
2138
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2132
2139
|
label: string;
|
|
2133
2140
|
rpcUrl: string;
|
|
2134
|
-
protocol: string;
|
|
2135
2141
|
}> | undefined;
|
|
2136
2142
|
language?: "en" | "fr" | undefined;
|
|
2137
2143
|
plugins?: {
|
|
@@ -2142,9 +2148,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2142
2148
|
artifactsDir?: string | undefined;
|
|
2143
2149
|
network?: Record<string, {
|
|
2144
2150
|
accounts?: Record<string, {
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2151
|
+
mnemonic?: string | undefined;
|
|
2152
|
+
publicKey?: string | undefined;
|
|
2153
|
+
publicKeyHash?: string | undefined;
|
|
2154
|
+
privateKey?: string | undefined;
|
|
2148
2155
|
}> | undefined;
|
|
2149
2156
|
faucet?: {
|
|
2150
2157
|
pkh: string;
|
|
@@ -2156,7 +2163,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2156
2163
|
} | undefined;
|
|
2157
2164
|
label: string;
|
|
2158
2165
|
rpcUrl: string;
|
|
2159
|
-
protocol: string;
|
|
2160
2166
|
}> | undefined;
|
|
2161
2167
|
accounts?: Record<string, string> | undefined;
|
|
2162
2168
|
contracts?: Record<string, {
|
|
@@ -2205,15 +2211,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2205
2211
|
encryptedKey: string;
|
|
2206
2212
|
secretKey: string;
|
|
2207
2213
|
}> | undefined;
|
|
2208
|
-
|
|
2214
|
+
protocol?: string | undefined;
|
|
2209
2215
|
tzkt?: {
|
|
2210
2216
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2211
2217
|
postgresqlPort?: number | undefined;
|
|
2212
2218
|
apiPort?: number | undefined;
|
|
2213
2219
|
} | undefined;
|
|
2220
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2214
2221
|
label: string;
|
|
2215
2222
|
rpcUrl: string;
|
|
2216
|
-
protocol: string;
|
|
2217
2223
|
}> | undefined;
|
|
2218
2224
|
language?: "en" | "fr" | undefined;
|
|
2219
2225
|
plugins?: {
|
|
@@ -2224,9 +2230,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2224
2230
|
artifactsDir?: string | undefined;
|
|
2225
2231
|
network?: Record<string, {
|
|
2226
2232
|
accounts?: Record<string, {
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2233
|
+
mnemonic?: string | undefined;
|
|
2234
|
+
publicKey?: string | undefined;
|
|
2235
|
+
publicKeyHash?: string | undefined;
|
|
2236
|
+
privateKey?: string | undefined;
|
|
2230
2237
|
}> | undefined;
|
|
2231
2238
|
faucet?: {
|
|
2232
2239
|
pkh: string;
|
|
@@ -2238,7 +2245,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2238
2245
|
} | undefined;
|
|
2239
2246
|
label: string;
|
|
2240
2247
|
rpcUrl: string;
|
|
2241
|
-
protocol: string;
|
|
2242
2248
|
}> | undefined;
|
|
2243
2249
|
accounts?: Record<string, string> | undefined;
|
|
2244
2250
|
contracts?: Record<string, {
|
|
@@ -2415,19 +2421,21 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2415
2421
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2416
2422
|
label: z.ZodString;
|
|
2417
2423
|
rpcUrl: z.ZodString;
|
|
2418
|
-
protocol: z.ZodString;
|
|
2419
2424
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2420
|
-
publicKey: z.ZodString
|
|
2421
|
-
publicKeyHash: z.ZodString
|
|
2422
|
-
privateKey: z.ZodString
|
|
2425
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
2426
|
+
publicKeyHash: z.ZodOptional<z.ZodString>;
|
|
2427
|
+
privateKey: z.ZodOptional<z.ZodString>;
|
|
2428
|
+
mnemonic: z.ZodOptional<z.ZodString>;
|
|
2423
2429
|
}, "strip", z.ZodTypeAny, {
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2430
|
+
mnemonic?: string | undefined;
|
|
2431
|
+
publicKey?: string | undefined;
|
|
2432
|
+
publicKeyHash?: string | undefined;
|
|
2433
|
+
privateKey?: string | undefined;
|
|
2427
2434
|
}, {
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2435
|
+
mnemonic?: string | undefined;
|
|
2436
|
+
publicKey?: string | undefined;
|
|
2437
|
+
publicKeyHash?: string | undefined;
|
|
2438
|
+
privateKey?: string | undefined;
|
|
2431
2439
|
}>>>;
|
|
2432
2440
|
faucet: z.ZodOptional<z.ZodObject<{
|
|
2433
2441
|
pkh: z.ZodString;
|
|
@@ -2453,9 +2461,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2453
2461
|
}>>;
|
|
2454
2462
|
}, "strip", z.ZodTypeAny, {
|
|
2455
2463
|
accounts?: Record<string, {
|
|
2456
|
-
|
|
2457
|
-
|
|
2458
|
-
|
|
2464
|
+
mnemonic?: string | undefined;
|
|
2465
|
+
publicKey?: string | undefined;
|
|
2466
|
+
publicKeyHash?: string | undefined;
|
|
2467
|
+
privateKey?: string | undefined;
|
|
2459
2468
|
}> | undefined;
|
|
2460
2469
|
faucet?: {
|
|
2461
2470
|
pkh: string;
|
|
@@ -2467,12 +2476,12 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2467
2476
|
} | undefined;
|
|
2468
2477
|
label: string;
|
|
2469
2478
|
rpcUrl: string;
|
|
2470
|
-
protocol: string;
|
|
2471
2479
|
}, {
|
|
2472
2480
|
accounts?: Record<string, {
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2481
|
+
mnemonic?: string | undefined;
|
|
2482
|
+
publicKey?: string | undefined;
|
|
2483
|
+
publicKeyHash?: string | undefined;
|
|
2484
|
+
privateKey?: string | undefined;
|
|
2476
2485
|
}> | undefined;
|
|
2477
2486
|
faucet?: {
|
|
2478
2487
|
pkh: string;
|
|
@@ -2484,13 +2493,11 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2484
2493
|
} | undefined;
|
|
2485
2494
|
label: string;
|
|
2486
2495
|
rpcUrl: string;
|
|
2487
|
-
protocol: string;
|
|
2488
2496
|
}>>>;
|
|
2489
2497
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
2490
2498
|
label: z.ZodString;
|
|
2491
2499
|
rpcUrl: z.ZodString;
|
|
2492
|
-
protocol: z.ZodString
|
|
2493
|
-
attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
2500
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
2494
2501
|
plugin: z.ZodOptional<z.ZodString>;
|
|
2495
2502
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
2496
2503
|
encryptedKey: z.ZodString;
|
|
@@ -2518,6 +2525,7 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2518
2525
|
postgresqlPort?: number | undefined;
|
|
2519
2526
|
apiPort?: number | undefined;
|
|
2520
2527
|
}>>;
|
|
2528
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2521
2529
|
}, "strip", z.ZodTypeAny, {
|
|
2522
2530
|
plugin?: string | undefined;
|
|
2523
2531
|
accounts?: Record<string, string | {
|
|
@@ -2525,15 +2533,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2525
2533
|
encryptedKey: string;
|
|
2526
2534
|
secretKey: string;
|
|
2527
2535
|
}> | undefined;
|
|
2528
|
-
|
|
2536
|
+
protocol?: string | undefined;
|
|
2529
2537
|
tzkt?: {
|
|
2530
2538
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2531
2539
|
postgresqlPort?: number | undefined;
|
|
2532
2540
|
apiPort?: number | undefined;
|
|
2533
2541
|
} | undefined;
|
|
2542
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2534
2543
|
label: string;
|
|
2535
2544
|
rpcUrl: string;
|
|
2536
|
-
protocol: string;
|
|
2537
2545
|
}, {
|
|
2538
2546
|
plugin?: string | undefined;
|
|
2539
2547
|
accounts?: Record<string, string | {
|
|
@@ -2541,15 +2549,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2541
2549
|
encryptedKey: string;
|
|
2542
2550
|
secretKey: string;
|
|
2543
2551
|
}> | undefined;
|
|
2544
|
-
|
|
2552
|
+
protocol?: string | undefined;
|
|
2545
2553
|
tzkt?: {
|
|
2546
2554
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2547
2555
|
postgresqlPort?: number | undefined;
|
|
2548
2556
|
apiPort?: number | undefined;
|
|
2549
2557
|
} | undefined;
|
|
2558
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2550
2559
|
label: string;
|
|
2551
2560
|
rpcUrl: string;
|
|
2552
|
-
protocol: string;
|
|
2553
2561
|
}>>>;
|
|
2554
2562
|
environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
2555
2563
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
@@ -2609,15 +2617,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2609
2617
|
encryptedKey: string;
|
|
2610
2618
|
secretKey: string;
|
|
2611
2619
|
}> | undefined;
|
|
2612
|
-
|
|
2620
|
+
protocol?: string | undefined;
|
|
2613
2621
|
tzkt?: {
|
|
2614
2622
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2615
2623
|
postgresqlPort?: number | undefined;
|
|
2616
2624
|
apiPort?: number | undefined;
|
|
2617
2625
|
} | undefined;
|
|
2626
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2618
2627
|
label: string;
|
|
2619
2628
|
rpcUrl: string;
|
|
2620
|
-
protocol: string;
|
|
2621
2629
|
}> | undefined;
|
|
2622
2630
|
language?: "en" | "fr" | undefined;
|
|
2623
2631
|
plugins?: {
|
|
@@ -2628,9 +2636,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2628
2636
|
artifactsDir?: string | undefined;
|
|
2629
2637
|
network?: Record<string, {
|
|
2630
2638
|
accounts?: Record<string, {
|
|
2631
|
-
|
|
2632
|
-
|
|
2633
|
-
|
|
2639
|
+
mnemonic?: string | undefined;
|
|
2640
|
+
publicKey?: string | undefined;
|
|
2641
|
+
publicKeyHash?: string | undefined;
|
|
2642
|
+
privateKey?: string | undefined;
|
|
2634
2643
|
}> | undefined;
|
|
2635
2644
|
faucet?: {
|
|
2636
2645
|
pkh: string;
|
|
@@ -2642,7 +2651,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2642
2651
|
} | undefined;
|
|
2643
2652
|
label: string;
|
|
2644
2653
|
rpcUrl: string;
|
|
2645
|
-
protocol: string;
|
|
2646
2654
|
}> | undefined;
|
|
2647
2655
|
accounts?: Record<string, string> | undefined;
|
|
2648
2656
|
contracts?: Record<string, {
|
|
@@ -2673,15 +2681,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2673
2681
|
encryptedKey: string;
|
|
2674
2682
|
secretKey: string;
|
|
2675
2683
|
}> | undefined;
|
|
2676
|
-
|
|
2684
|
+
protocol?: string | undefined;
|
|
2677
2685
|
tzkt?: {
|
|
2678
2686
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2679
2687
|
postgresqlPort?: number | undefined;
|
|
2680
2688
|
apiPort?: number | undefined;
|
|
2681
2689
|
} | undefined;
|
|
2690
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2682
2691
|
label: string;
|
|
2683
2692
|
rpcUrl: string;
|
|
2684
|
-
protocol: string;
|
|
2685
2693
|
}> | undefined;
|
|
2686
2694
|
language?: "en" | "fr" | undefined;
|
|
2687
2695
|
plugins?: {
|
|
@@ -2692,9 +2700,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2692
2700
|
artifactsDir?: string | undefined;
|
|
2693
2701
|
network?: Record<string, {
|
|
2694
2702
|
accounts?: Record<string, {
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2703
|
+
mnemonic?: string | undefined;
|
|
2704
|
+
publicKey?: string | undefined;
|
|
2705
|
+
publicKeyHash?: string | undefined;
|
|
2706
|
+
privateKey?: string | undefined;
|
|
2698
2707
|
}> | undefined;
|
|
2699
2708
|
faucet?: {
|
|
2700
2709
|
pkh: string;
|
|
@@ -2706,7 +2715,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2706
2715
|
} | undefined;
|
|
2707
2716
|
label: string;
|
|
2708
2717
|
rpcUrl: string;
|
|
2709
|
-
protocol: string;
|
|
2710
2718
|
}> | undefined;
|
|
2711
2719
|
accounts?: Record<string, string> | undefined;
|
|
2712
2720
|
contracts?: Record<string, {
|
|
@@ -2755,15 +2763,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2755
2763
|
encryptedKey: string;
|
|
2756
2764
|
secretKey: string;
|
|
2757
2765
|
}> | undefined;
|
|
2758
|
-
|
|
2766
|
+
protocol?: string | undefined;
|
|
2759
2767
|
tzkt?: {
|
|
2760
2768
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2761
2769
|
postgresqlPort?: number | undefined;
|
|
2762
2770
|
apiPort?: number | undefined;
|
|
2763
2771
|
} | undefined;
|
|
2772
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2764
2773
|
label: string;
|
|
2765
2774
|
rpcUrl: string;
|
|
2766
|
-
protocol: string;
|
|
2767
2775
|
}> | undefined;
|
|
2768
2776
|
language?: "en" | "fr" | undefined;
|
|
2769
2777
|
plugins?: {
|
|
@@ -2774,9 +2782,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2774
2782
|
artifactsDir?: string | undefined;
|
|
2775
2783
|
network?: Record<string, {
|
|
2776
2784
|
accounts?: Record<string, {
|
|
2777
|
-
|
|
2778
|
-
|
|
2779
|
-
|
|
2785
|
+
mnemonic?: string | undefined;
|
|
2786
|
+
publicKey?: string | undefined;
|
|
2787
|
+
publicKeyHash?: string | undefined;
|
|
2788
|
+
privateKey?: string | undefined;
|
|
2780
2789
|
}> | undefined;
|
|
2781
2790
|
faucet?: {
|
|
2782
2791
|
pkh: string;
|
|
@@ -2788,7 +2797,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2788
2797
|
} | undefined;
|
|
2789
2798
|
label: string;
|
|
2790
2799
|
rpcUrl: string;
|
|
2791
|
-
protocol: string;
|
|
2792
2800
|
}> | undefined;
|
|
2793
2801
|
accounts?: Record<string, string> | undefined;
|
|
2794
2802
|
contracts?: Record<string, {
|
|
@@ -2837,15 +2845,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2837
2845
|
encryptedKey: string;
|
|
2838
2846
|
secretKey: string;
|
|
2839
2847
|
}> | undefined;
|
|
2840
|
-
|
|
2848
|
+
protocol?: string | undefined;
|
|
2841
2849
|
tzkt?: {
|
|
2842
2850
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
2843
2851
|
postgresqlPort?: number | undefined;
|
|
2844
2852
|
apiPort?: number | undefined;
|
|
2845
2853
|
} | undefined;
|
|
2854
|
+
annotations?: Record<string, unknown> | undefined;
|
|
2846
2855
|
label: string;
|
|
2847
2856
|
rpcUrl: string;
|
|
2848
|
-
protocol: string;
|
|
2849
2857
|
}> | undefined;
|
|
2850
2858
|
language?: "en" | "fr" | undefined;
|
|
2851
2859
|
plugins?: {
|
|
@@ -2856,9 +2864,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2856
2864
|
artifactsDir?: string | undefined;
|
|
2857
2865
|
network?: Record<string, {
|
|
2858
2866
|
accounts?: Record<string, {
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2867
|
+
mnemonic?: string | undefined;
|
|
2868
|
+
publicKey?: string | undefined;
|
|
2869
|
+
publicKeyHash?: string | undefined;
|
|
2870
|
+
privateKey?: string | undefined;
|
|
2862
2871
|
}> | undefined;
|
|
2863
2872
|
faucet?: {
|
|
2864
2873
|
pkh: string;
|
|
@@ -2870,7 +2879,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
2870
2879
|
} | undefined;
|
|
2871
2880
|
label: string;
|
|
2872
2881
|
rpcUrl: string;
|
|
2873
|
-
protocol: string;
|
|
2874
2882
|
}> | undefined;
|
|
2875
2883
|
accounts?: Record<string, string> | undefined;
|
|
2876
2884
|
contracts?: Record<string, {
|
|
@@ -3131,19 +3139,21 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3131
3139
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3132
3140
|
label: z.ZodString;
|
|
3133
3141
|
rpcUrl: z.ZodString;
|
|
3134
|
-
protocol: z.ZodString;
|
|
3135
3142
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3136
|
-
publicKey: z.ZodString
|
|
3137
|
-
publicKeyHash: z.ZodString
|
|
3138
|
-
privateKey: z.ZodString
|
|
3143
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
3144
|
+
publicKeyHash: z.ZodOptional<z.ZodString>;
|
|
3145
|
+
privateKey: z.ZodOptional<z.ZodString>;
|
|
3146
|
+
mnemonic: z.ZodOptional<z.ZodString>;
|
|
3139
3147
|
}, "strip", z.ZodTypeAny, {
|
|
3140
|
-
|
|
3141
|
-
|
|
3142
|
-
|
|
3148
|
+
mnemonic?: string | undefined;
|
|
3149
|
+
publicKey?: string | undefined;
|
|
3150
|
+
publicKeyHash?: string | undefined;
|
|
3151
|
+
privateKey?: string | undefined;
|
|
3143
3152
|
}, {
|
|
3144
|
-
|
|
3145
|
-
|
|
3146
|
-
|
|
3153
|
+
mnemonic?: string | undefined;
|
|
3154
|
+
publicKey?: string | undefined;
|
|
3155
|
+
publicKeyHash?: string | undefined;
|
|
3156
|
+
privateKey?: string | undefined;
|
|
3147
3157
|
}>>>;
|
|
3148
3158
|
faucet: z.ZodOptional<z.ZodObject<{
|
|
3149
3159
|
pkh: z.ZodString;
|
|
@@ -3169,9 +3179,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3169
3179
|
}>>;
|
|
3170
3180
|
}, "strip", z.ZodTypeAny, {
|
|
3171
3181
|
accounts?: Record<string, {
|
|
3172
|
-
|
|
3173
|
-
|
|
3174
|
-
|
|
3182
|
+
mnemonic?: string | undefined;
|
|
3183
|
+
publicKey?: string | undefined;
|
|
3184
|
+
publicKeyHash?: string | undefined;
|
|
3185
|
+
privateKey?: string | undefined;
|
|
3175
3186
|
}> | undefined;
|
|
3176
3187
|
faucet?: {
|
|
3177
3188
|
pkh: string;
|
|
@@ -3183,12 +3194,12 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3183
3194
|
} | undefined;
|
|
3184
3195
|
label: string;
|
|
3185
3196
|
rpcUrl: string;
|
|
3186
|
-
protocol: string;
|
|
3187
3197
|
}, {
|
|
3188
3198
|
accounts?: Record<string, {
|
|
3189
|
-
|
|
3190
|
-
|
|
3191
|
-
|
|
3199
|
+
mnemonic?: string | undefined;
|
|
3200
|
+
publicKey?: string | undefined;
|
|
3201
|
+
publicKeyHash?: string | undefined;
|
|
3202
|
+
privateKey?: string | undefined;
|
|
3192
3203
|
}> | undefined;
|
|
3193
3204
|
faucet?: {
|
|
3194
3205
|
pkh: string;
|
|
@@ -3200,13 +3211,11 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3200
3211
|
} | undefined;
|
|
3201
3212
|
label: string;
|
|
3202
3213
|
rpcUrl: string;
|
|
3203
|
-
protocol: string;
|
|
3204
3214
|
}>>>;
|
|
3205
3215
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
3206
3216
|
label: z.ZodString;
|
|
3207
3217
|
rpcUrl: z.ZodString;
|
|
3208
|
-
protocol: z.ZodString
|
|
3209
|
-
attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
3218
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
3210
3219
|
plugin: z.ZodOptional<z.ZodString>;
|
|
3211
3220
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
3212
3221
|
encryptedKey: z.ZodString;
|
|
@@ -3234,6 +3243,7 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3234
3243
|
postgresqlPort?: number | undefined;
|
|
3235
3244
|
apiPort?: number | undefined;
|
|
3236
3245
|
}>>;
|
|
3246
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3237
3247
|
}, "strip", z.ZodTypeAny, {
|
|
3238
3248
|
plugin?: string | undefined;
|
|
3239
3249
|
accounts?: Record<string, string | {
|
|
@@ -3241,15 +3251,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3241
3251
|
encryptedKey: string;
|
|
3242
3252
|
secretKey: string;
|
|
3243
3253
|
}> | undefined;
|
|
3244
|
-
|
|
3254
|
+
protocol?: string | undefined;
|
|
3245
3255
|
tzkt?: {
|
|
3246
3256
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
3247
3257
|
postgresqlPort?: number | undefined;
|
|
3248
3258
|
apiPort?: number | undefined;
|
|
3249
3259
|
} | undefined;
|
|
3260
|
+
annotations?: Record<string, unknown> | undefined;
|
|
3250
3261
|
label: string;
|
|
3251
3262
|
rpcUrl: string;
|
|
3252
|
-
protocol: string;
|
|
3253
3263
|
}, {
|
|
3254
3264
|
plugin?: string | undefined;
|
|
3255
3265
|
accounts?: Record<string, string | {
|
|
@@ -3257,15 +3267,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3257
3267
|
encryptedKey: string;
|
|
3258
3268
|
secretKey: string;
|
|
3259
3269
|
}> | undefined;
|
|
3260
|
-
|
|
3270
|
+
protocol?: string | undefined;
|
|
3261
3271
|
tzkt?: {
|
|
3262
3272
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
3263
3273
|
postgresqlPort?: number | undefined;
|
|
3264
3274
|
apiPort?: number | undefined;
|
|
3265
3275
|
} | undefined;
|
|
3276
|
+
annotations?: Record<string, unknown> | undefined;
|
|
3266
3277
|
label: string;
|
|
3267
3278
|
rpcUrl: string;
|
|
3268
|
-
protocol: string;
|
|
3269
3279
|
}>>>;
|
|
3270
3280
|
environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
3271
3281
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
@@ -3325,15 +3335,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3325
3335
|
encryptedKey: string;
|
|
3326
3336
|
secretKey: string;
|
|
3327
3337
|
}> | undefined;
|
|
3328
|
-
|
|
3338
|
+
protocol?: string | undefined;
|
|
3329
3339
|
tzkt?: {
|
|
3330
3340
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
3331
3341
|
postgresqlPort?: number | undefined;
|
|
3332
3342
|
apiPort?: number | undefined;
|
|
3333
3343
|
} | undefined;
|
|
3344
|
+
annotations?: Record<string, unknown> | undefined;
|
|
3334
3345
|
label: string;
|
|
3335
3346
|
rpcUrl: string;
|
|
3336
|
-
protocol: string;
|
|
3337
3347
|
}> | undefined;
|
|
3338
3348
|
language?: "en" | "fr" | undefined;
|
|
3339
3349
|
plugins?: {
|
|
@@ -3344,9 +3354,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3344
3354
|
artifactsDir?: string | undefined;
|
|
3345
3355
|
network?: Record<string, {
|
|
3346
3356
|
accounts?: Record<string, {
|
|
3347
|
-
|
|
3348
|
-
|
|
3349
|
-
|
|
3357
|
+
mnemonic?: string | undefined;
|
|
3358
|
+
publicKey?: string | undefined;
|
|
3359
|
+
publicKeyHash?: string | undefined;
|
|
3360
|
+
privateKey?: string | undefined;
|
|
3350
3361
|
}> | undefined;
|
|
3351
3362
|
faucet?: {
|
|
3352
3363
|
pkh: string;
|
|
@@ -3358,7 +3369,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3358
3369
|
} | undefined;
|
|
3359
3370
|
label: string;
|
|
3360
3371
|
rpcUrl: string;
|
|
3361
|
-
protocol: string;
|
|
3362
3372
|
}> | undefined;
|
|
3363
3373
|
accounts?: Record<string, string> | undefined;
|
|
3364
3374
|
contracts?: Record<string, {
|
|
@@ -3389,15 +3399,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3389
3399
|
encryptedKey: string;
|
|
3390
3400
|
secretKey: string;
|
|
3391
3401
|
}> | undefined;
|
|
3392
|
-
|
|
3402
|
+
protocol?: string | undefined;
|
|
3393
3403
|
tzkt?: {
|
|
3394
3404
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
3395
3405
|
postgresqlPort?: number | undefined;
|
|
3396
3406
|
apiPort?: number | undefined;
|
|
3397
3407
|
} | undefined;
|
|
3408
|
+
annotations?: Record<string, unknown> | undefined;
|
|
3398
3409
|
label: string;
|
|
3399
3410
|
rpcUrl: string;
|
|
3400
|
-
protocol: string;
|
|
3401
3411
|
}> | undefined;
|
|
3402
3412
|
language?: "en" | "fr" | undefined;
|
|
3403
3413
|
plugins?: {
|
|
@@ -3408,9 +3418,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3408
3418
|
artifactsDir?: string | undefined;
|
|
3409
3419
|
network?: Record<string, {
|
|
3410
3420
|
accounts?: Record<string, {
|
|
3411
|
-
|
|
3412
|
-
|
|
3413
|
-
|
|
3421
|
+
mnemonic?: string | undefined;
|
|
3422
|
+
publicKey?: string | undefined;
|
|
3423
|
+
publicKeyHash?: string | undefined;
|
|
3424
|
+
privateKey?: string | undefined;
|
|
3414
3425
|
}> | undefined;
|
|
3415
3426
|
faucet?: {
|
|
3416
3427
|
pkh: string;
|
|
@@ -3422,7 +3433,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3422
3433
|
} | undefined;
|
|
3423
3434
|
label: string;
|
|
3424
3435
|
rpcUrl: string;
|
|
3425
|
-
protocol: string;
|
|
3426
3436
|
}> | undefined;
|
|
3427
3437
|
accounts?: Record<string, string> | undefined;
|
|
3428
3438
|
contracts?: Record<string, {
|
|
@@ -3471,15 +3481,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3471
3481
|
encryptedKey: string;
|
|
3472
3482
|
secretKey: string;
|
|
3473
3483
|
}> | undefined;
|
|
3474
|
-
|
|
3484
|
+
protocol?: string | undefined;
|
|
3475
3485
|
tzkt?: {
|
|
3476
3486
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
3477
3487
|
postgresqlPort?: number | undefined;
|
|
3478
3488
|
apiPort?: number | undefined;
|
|
3479
3489
|
} | undefined;
|
|
3490
|
+
annotations?: Record<string, unknown> | undefined;
|
|
3480
3491
|
label: string;
|
|
3481
3492
|
rpcUrl: string;
|
|
3482
|
-
protocol: string;
|
|
3483
3493
|
}> | undefined;
|
|
3484
3494
|
language?: "en" | "fr" | undefined;
|
|
3485
3495
|
plugins?: {
|
|
@@ -3490,9 +3500,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3490
3500
|
artifactsDir?: string | undefined;
|
|
3491
3501
|
network?: Record<string, {
|
|
3492
3502
|
accounts?: Record<string, {
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3503
|
+
mnemonic?: string | undefined;
|
|
3504
|
+
publicKey?: string | undefined;
|
|
3505
|
+
publicKeyHash?: string | undefined;
|
|
3506
|
+
privateKey?: string | undefined;
|
|
3496
3507
|
}> | undefined;
|
|
3497
3508
|
faucet?: {
|
|
3498
3509
|
pkh: string;
|
|
@@ -3504,7 +3515,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3504
3515
|
} | undefined;
|
|
3505
3516
|
label: string;
|
|
3506
3517
|
rpcUrl: string;
|
|
3507
|
-
protocol: string;
|
|
3508
3518
|
}> | undefined;
|
|
3509
3519
|
accounts?: Record<string, string> | undefined;
|
|
3510
3520
|
contracts?: Record<string, {
|
|
@@ -3553,15 +3563,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3553
3563
|
encryptedKey: string;
|
|
3554
3564
|
secretKey: string;
|
|
3555
3565
|
}> | undefined;
|
|
3556
|
-
|
|
3566
|
+
protocol?: string | undefined;
|
|
3557
3567
|
tzkt?: {
|
|
3558
3568
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
3559
3569
|
postgresqlPort?: number | undefined;
|
|
3560
3570
|
apiPort?: number | undefined;
|
|
3561
3571
|
} | undefined;
|
|
3572
|
+
annotations?: Record<string, unknown> | undefined;
|
|
3562
3573
|
label: string;
|
|
3563
3574
|
rpcUrl: string;
|
|
3564
|
-
protocol: string;
|
|
3565
3575
|
}> | undefined;
|
|
3566
3576
|
language?: "en" | "fr" | undefined;
|
|
3567
3577
|
plugins?: {
|
|
@@ -3572,9 +3582,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3572
3582
|
artifactsDir?: string | undefined;
|
|
3573
3583
|
network?: Record<string, {
|
|
3574
3584
|
accounts?: Record<string, {
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3585
|
+
mnemonic?: string | undefined;
|
|
3586
|
+
publicKey?: string | undefined;
|
|
3587
|
+
publicKeyHash?: string | undefined;
|
|
3588
|
+
privateKey?: string | undefined;
|
|
3578
3589
|
}> | undefined;
|
|
3579
3590
|
faucet?: {
|
|
3580
3591
|
pkh: string;
|
|
@@ -3586,7 +3597,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3586
3597
|
} | undefined;
|
|
3587
3598
|
label: string;
|
|
3588
3599
|
rpcUrl: string;
|
|
3589
|
-
protocol: string;
|
|
3590
3600
|
}> | undefined;
|
|
3591
3601
|
accounts?: Record<string, string> | undefined;
|
|
3592
3602
|
contracts?: Record<string, {
|
|
@@ -3649,15 +3659,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3649
3659
|
encryptedKey: string;
|
|
3650
3660
|
secretKey: string;
|
|
3651
3661
|
}> | undefined;
|
|
3652
|
-
|
|
3662
|
+
protocol?: string | undefined;
|
|
3653
3663
|
tzkt?: {
|
|
3654
3664
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
3655
3665
|
postgresqlPort?: number | undefined;
|
|
3656
3666
|
apiPort?: number | undefined;
|
|
3657
3667
|
} | undefined;
|
|
3668
|
+
annotations?: Record<string, unknown> | undefined;
|
|
3658
3669
|
label: string;
|
|
3659
3670
|
rpcUrl: string;
|
|
3660
|
-
protocol: string;
|
|
3661
3671
|
}> | undefined;
|
|
3662
3672
|
language?: "en" | "fr" | undefined;
|
|
3663
3673
|
plugins?: {
|
|
@@ -3668,9 +3678,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3668
3678
|
artifactsDir?: string | undefined;
|
|
3669
3679
|
network?: Record<string, {
|
|
3670
3680
|
accounts?: Record<string, {
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
|
|
3681
|
+
mnemonic?: string | undefined;
|
|
3682
|
+
publicKey?: string | undefined;
|
|
3683
|
+
publicKeyHash?: string | undefined;
|
|
3684
|
+
privateKey?: string | undefined;
|
|
3674
3685
|
}> | undefined;
|
|
3675
3686
|
faucet?: {
|
|
3676
3687
|
pkh: string;
|
|
@@ -3682,7 +3693,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3682
3693
|
} | undefined;
|
|
3683
3694
|
label: string;
|
|
3684
3695
|
rpcUrl: string;
|
|
3685
|
-
protocol: string;
|
|
3686
3696
|
}> | undefined;
|
|
3687
3697
|
accounts?: Record<string, string> | undefined;
|
|
3688
3698
|
contracts?: Record<string, {
|
|
@@ -3765,15 +3775,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3765
3775
|
encryptedKey: string;
|
|
3766
3776
|
secretKey: string;
|
|
3767
3777
|
}> | undefined;
|
|
3768
|
-
|
|
3778
|
+
protocol?: string | undefined;
|
|
3769
3779
|
tzkt?: {
|
|
3770
3780
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
3771
3781
|
postgresqlPort?: number | undefined;
|
|
3772
3782
|
apiPort?: number | undefined;
|
|
3773
3783
|
} | undefined;
|
|
3784
|
+
annotations?: Record<string, unknown> | undefined;
|
|
3774
3785
|
label: string;
|
|
3775
3786
|
rpcUrl: string;
|
|
3776
|
-
protocol: string;
|
|
3777
3787
|
}> | undefined;
|
|
3778
3788
|
language?: "en" | "fr" | undefined;
|
|
3779
3789
|
plugins?: {
|
|
@@ -3784,9 +3794,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3784
3794
|
artifactsDir?: string | undefined;
|
|
3785
3795
|
network?: Record<string, {
|
|
3786
3796
|
accounts?: Record<string, {
|
|
3787
|
-
|
|
3788
|
-
|
|
3789
|
-
|
|
3797
|
+
mnemonic?: string | undefined;
|
|
3798
|
+
publicKey?: string | undefined;
|
|
3799
|
+
publicKeyHash?: string | undefined;
|
|
3800
|
+
privateKey?: string | undefined;
|
|
3790
3801
|
}> | undefined;
|
|
3791
3802
|
faucet?: {
|
|
3792
3803
|
pkh: string;
|
|
@@ -3798,7 +3809,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3798
3809
|
} | undefined;
|
|
3799
3810
|
label: string;
|
|
3800
3811
|
rpcUrl: string;
|
|
3801
|
-
protocol: string;
|
|
3802
3812
|
}> | undefined;
|
|
3803
3813
|
accounts?: Record<string, string> | undefined;
|
|
3804
3814
|
contracts?: Record<string, {
|
|
@@ -3881,15 +3891,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3881
3891
|
encryptedKey: string;
|
|
3882
3892
|
secretKey: string;
|
|
3883
3893
|
}> | undefined;
|
|
3884
|
-
|
|
3894
|
+
protocol?: string | undefined;
|
|
3885
3895
|
tzkt?: {
|
|
3886
3896
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
3887
3897
|
postgresqlPort?: number | undefined;
|
|
3888
3898
|
apiPort?: number | undefined;
|
|
3889
3899
|
} | undefined;
|
|
3900
|
+
annotations?: Record<string, unknown> | undefined;
|
|
3890
3901
|
label: string;
|
|
3891
3902
|
rpcUrl: string;
|
|
3892
|
-
protocol: string;
|
|
3893
3903
|
}> | undefined;
|
|
3894
3904
|
language?: "en" | "fr" | undefined;
|
|
3895
3905
|
plugins?: {
|
|
@@ -3900,9 +3910,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3900
3910
|
artifactsDir?: string | undefined;
|
|
3901
3911
|
network?: Record<string, {
|
|
3902
3912
|
accounts?: Record<string, {
|
|
3903
|
-
|
|
3904
|
-
|
|
3905
|
-
|
|
3913
|
+
mnemonic?: string | undefined;
|
|
3914
|
+
publicKey?: string | undefined;
|
|
3915
|
+
publicKeyHash?: string | undefined;
|
|
3916
|
+
privateKey?: string | undefined;
|
|
3906
3917
|
}> | undefined;
|
|
3907
3918
|
faucet?: {
|
|
3908
3919
|
pkh: string;
|
|
@@ -3914,7 +3925,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
3914
3925
|
} | undefined;
|
|
3915
3926
|
label: string;
|
|
3916
3927
|
rpcUrl: string;
|
|
3917
|
-
protocol: string;
|
|
3918
3928
|
}> | undefined;
|
|
3919
3929
|
accounts?: Record<string, string> | undefined;
|
|
3920
3930
|
contracts?: Record<string, {
|
|
@@ -4048,19 +4058,21 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4048
4058
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4049
4059
|
label: z.ZodString;
|
|
4050
4060
|
rpcUrl: z.ZodString;
|
|
4051
|
-
protocol: z.ZodString;
|
|
4052
4061
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4053
|
-
publicKey: z.ZodString
|
|
4054
|
-
publicKeyHash: z.ZodString
|
|
4055
|
-
privateKey: z.ZodString
|
|
4062
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
4063
|
+
publicKeyHash: z.ZodOptional<z.ZodString>;
|
|
4064
|
+
privateKey: z.ZodOptional<z.ZodString>;
|
|
4065
|
+
mnemonic: z.ZodOptional<z.ZodString>;
|
|
4056
4066
|
}, "strip", z.ZodTypeAny, {
|
|
4057
|
-
|
|
4058
|
-
|
|
4059
|
-
|
|
4067
|
+
mnemonic?: string | undefined;
|
|
4068
|
+
publicKey?: string | undefined;
|
|
4069
|
+
publicKeyHash?: string | undefined;
|
|
4070
|
+
privateKey?: string | undefined;
|
|
4060
4071
|
}, {
|
|
4061
|
-
|
|
4062
|
-
|
|
4063
|
-
|
|
4072
|
+
mnemonic?: string | undefined;
|
|
4073
|
+
publicKey?: string | undefined;
|
|
4074
|
+
publicKeyHash?: string | undefined;
|
|
4075
|
+
privateKey?: string | undefined;
|
|
4064
4076
|
}>>>;
|
|
4065
4077
|
faucet: z.ZodOptional<z.ZodObject<{
|
|
4066
4078
|
pkh: z.ZodString;
|
|
@@ -4086,9 +4098,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4086
4098
|
}>>;
|
|
4087
4099
|
}, "strip", z.ZodTypeAny, {
|
|
4088
4100
|
accounts?: Record<string, {
|
|
4089
|
-
|
|
4090
|
-
|
|
4091
|
-
|
|
4101
|
+
mnemonic?: string | undefined;
|
|
4102
|
+
publicKey?: string | undefined;
|
|
4103
|
+
publicKeyHash?: string | undefined;
|
|
4104
|
+
privateKey?: string | undefined;
|
|
4092
4105
|
}> | undefined;
|
|
4093
4106
|
faucet?: {
|
|
4094
4107
|
pkh: string;
|
|
@@ -4100,12 +4113,12 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4100
4113
|
} | undefined;
|
|
4101
4114
|
label: string;
|
|
4102
4115
|
rpcUrl: string;
|
|
4103
|
-
protocol: string;
|
|
4104
4116
|
}, {
|
|
4105
4117
|
accounts?: Record<string, {
|
|
4106
|
-
|
|
4107
|
-
|
|
4108
|
-
|
|
4118
|
+
mnemonic?: string | undefined;
|
|
4119
|
+
publicKey?: string | undefined;
|
|
4120
|
+
publicKeyHash?: string | undefined;
|
|
4121
|
+
privateKey?: string | undefined;
|
|
4109
4122
|
}> | undefined;
|
|
4110
4123
|
faucet?: {
|
|
4111
4124
|
pkh: string;
|
|
@@ -4117,13 +4130,11 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4117
4130
|
} | undefined;
|
|
4118
4131
|
label: string;
|
|
4119
4132
|
rpcUrl: string;
|
|
4120
|
-
protocol: string;
|
|
4121
4133
|
}>>>;
|
|
4122
4134
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
4123
4135
|
label: z.ZodString;
|
|
4124
4136
|
rpcUrl: z.ZodString;
|
|
4125
|
-
protocol: z.ZodString
|
|
4126
|
-
attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
4137
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
4127
4138
|
plugin: z.ZodOptional<z.ZodString>;
|
|
4128
4139
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
4129
4140
|
encryptedKey: z.ZodString;
|
|
@@ -4151,6 +4162,7 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4151
4162
|
postgresqlPort?: number | undefined;
|
|
4152
4163
|
apiPort?: number | undefined;
|
|
4153
4164
|
}>>;
|
|
4165
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
4154
4166
|
}, "strip", z.ZodTypeAny, {
|
|
4155
4167
|
plugin?: string | undefined;
|
|
4156
4168
|
accounts?: Record<string, string | {
|
|
@@ -4158,15 +4170,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4158
4170
|
encryptedKey: string;
|
|
4159
4171
|
secretKey: string;
|
|
4160
4172
|
}> | undefined;
|
|
4161
|
-
|
|
4173
|
+
protocol?: string | undefined;
|
|
4162
4174
|
tzkt?: {
|
|
4163
4175
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
4164
4176
|
postgresqlPort?: number | undefined;
|
|
4165
4177
|
apiPort?: number | undefined;
|
|
4166
4178
|
} | undefined;
|
|
4179
|
+
annotations?: Record<string, unknown> | undefined;
|
|
4167
4180
|
label: string;
|
|
4168
4181
|
rpcUrl: string;
|
|
4169
|
-
protocol: string;
|
|
4170
4182
|
}, {
|
|
4171
4183
|
plugin?: string | undefined;
|
|
4172
4184
|
accounts?: Record<string, string | {
|
|
@@ -4174,15 +4186,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4174
4186
|
encryptedKey: string;
|
|
4175
4187
|
secretKey: string;
|
|
4176
4188
|
}> | undefined;
|
|
4177
|
-
|
|
4189
|
+
protocol?: string | undefined;
|
|
4178
4190
|
tzkt?: {
|
|
4179
4191
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
4180
4192
|
postgresqlPort?: number | undefined;
|
|
4181
4193
|
apiPort?: number | undefined;
|
|
4182
4194
|
} | undefined;
|
|
4195
|
+
annotations?: Record<string, unknown> | undefined;
|
|
4183
4196
|
label: string;
|
|
4184
4197
|
rpcUrl: string;
|
|
4185
|
-
protocol: string;
|
|
4186
4198
|
}>>>;
|
|
4187
4199
|
environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
4188
4200
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
@@ -4242,15 +4254,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4242
4254
|
encryptedKey: string;
|
|
4243
4255
|
secretKey: string;
|
|
4244
4256
|
}> | undefined;
|
|
4245
|
-
|
|
4257
|
+
protocol?: string | undefined;
|
|
4246
4258
|
tzkt?: {
|
|
4247
4259
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
4248
4260
|
postgresqlPort?: number | undefined;
|
|
4249
4261
|
apiPort?: number | undefined;
|
|
4250
4262
|
} | undefined;
|
|
4263
|
+
annotations?: Record<string, unknown> | undefined;
|
|
4251
4264
|
label: string;
|
|
4252
4265
|
rpcUrl: string;
|
|
4253
|
-
protocol: string;
|
|
4254
4266
|
}> | undefined;
|
|
4255
4267
|
language?: "en" | "fr" | undefined;
|
|
4256
4268
|
plugins?: {
|
|
@@ -4261,9 +4273,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4261
4273
|
artifactsDir?: string | undefined;
|
|
4262
4274
|
network?: Record<string, {
|
|
4263
4275
|
accounts?: Record<string, {
|
|
4264
|
-
|
|
4265
|
-
|
|
4266
|
-
|
|
4276
|
+
mnemonic?: string | undefined;
|
|
4277
|
+
publicKey?: string | undefined;
|
|
4278
|
+
publicKeyHash?: string | undefined;
|
|
4279
|
+
privateKey?: string | undefined;
|
|
4267
4280
|
}> | undefined;
|
|
4268
4281
|
faucet?: {
|
|
4269
4282
|
pkh: string;
|
|
@@ -4275,7 +4288,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4275
4288
|
} | undefined;
|
|
4276
4289
|
label: string;
|
|
4277
4290
|
rpcUrl: string;
|
|
4278
|
-
protocol: string;
|
|
4279
4291
|
}> | undefined;
|
|
4280
4292
|
accounts?: Record<string, string> | undefined;
|
|
4281
4293
|
contracts?: Record<string, {
|
|
@@ -4306,15 +4318,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4306
4318
|
encryptedKey: string;
|
|
4307
4319
|
secretKey: string;
|
|
4308
4320
|
}> | undefined;
|
|
4309
|
-
|
|
4321
|
+
protocol?: string | undefined;
|
|
4310
4322
|
tzkt?: {
|
|
4311
4323
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
4312
4324
|
postgresqlPort?: number | undefined;
|
|
4313
4325
|
apiPort?: number | undefined;
|
|
4314
4326
|
} | undefined;
|
|
4327
|
+
annotations?: Record<string, unknown> | undefined;
|
|
4315
4328
|
label: string;
|
|
4316
4329
|
rpcUrl: string;
|
|
4317
|
-
protocol: string;
|
|
4318
4330
|
}> | undefined;
|
|
4319
4331
|
language?: "en" | "fr" | undefined;
|
|
4320
4332
|
plugins?: {
|
|
@@ -4325,9 +4337,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4325
4337
|
artifactsDir?: string | undefined;
|
|
4326
4338
|
network?: Record<string, {
|
|
4327
4339
|
accounts?: Record<string, {
|
|
4328
|
-
|
|
4329
|
-
|
|
4330
|
-
|
|
4340
|
+
mnemonic?: string | undefined;
|
|
4341
|
+
publicKey?: string | undefined;
|
|
4342
|
+
publicKeyHash?: string | undefined;
|
|
4343
|
+
privateKey?: string | undefined;
|
|
4331
4344
|
}> | undefined;
|
|
4332
4345
|
faucet?: {
|
|
4333
4346
|
pkh: string;
|
|
@@ -4339,7 +4352,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4339
4352
|
} | undefined;
|
|
4340
4353
|
label: string;
|
|
4341
4354
|
rpcUrl: string;
|
|
4342
|
-
protocol: string;
|
|
4343
4355
|
}> | undefined;
|
|
4344
4356
|
accounts?: Record<string, string> | undefined;
|
|
4345
4357
|
contracts?: Record<string, {
|
|
@@ -4388,15 +4400,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4388
4400
|
encryptedKey: string;
|
|
4389
4401
|
secretKey: string;
|
|
4390
4402
|
}> | undefined;
|
|
4391
|
-
|
|
4403
|
+
protocol?: string | undefined;
|
|
4392
4404
|
tzkt?: {
|
|
4393
4405
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
4394
4406
|
postgresqlPort?: number | undefined;
|
|
4395
4407
|
apiPort?: number | undefined;
|
|
4396
4408
|
} | undefined;
|
|
4409
|
+
annotations?: Record<string, unknown> | undefined;
|
|
4397
4410
|
label: string;
|
|
4398
4411
|
rpcUrl: string;
|
|
4399
|
-
protocol: string;
|
|
4400
4412
|
}> | undefined;
|
|
4401
4413
|
language?: "en" | "fr" | undefined;
|
|
4402
4414
|
plugins?: {
|
|
@@ -4407,9 +4419,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4407
4419
|
artifactsDir?: string | undefined;
|
|
4408
4420
|
network?: Record<string, {
|
|
4409
4421
|
accounts?: Record<string, {
|
|
4410
|
-
|
|
4411
|
-
|
|
4412
|
-
|
|
4422
|
+
mnemonic?: string | undefined;
|
|
4423
|
+
publicKey?: string | undefined;
|
|
4424
|
+
publicKeyHash?: string | undefined;
|
|
4425
|
+
privateKey?: string | undefined;
|
|
4413
4426
|
}> | undefined;
|
|
4414
4427
|
faucet?: {
|
|
4415
4428
|
pkh: string;
|
|
@@ -4421,7 +4434,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4421
4434
|
} | undefined;
|
|
4422
4435
|
label: string;
|
|
4423
4436
|
rpcUrl: string;
|
|
4424
|
-
protocol: string;
|
|
4425
4437
|
}> | undefined;
|
|
4426
4438
|
accounts?: Record<string, string> | undefined;
|
|
4427
4439
|
contracts?: Record<string, {
|
|
@@ -4470,15 +4482,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4470
4482
|
encryptedKey: string;
|
|
4471
4483
|
secretKey: string;
|
|
4472
4484
|
}> | undefined;
|
|
4473
|
-
|
|
4485
|
+
protocol?: string | undefined;
|
|
4474
4486
|
tzkt?: {
|
|
4475
4487
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
4476
4488
|
postgresqlPort?: number | undefined;
|
|
4477
4489
|
apiPort?: number | undefined;
|
|
4478
4490
|
} | undefined;
|
|
4491
|
+
annotations?: Record<string, unknown> | undefined;
|
|
4479
4492
|
label: string;
|
|
4480
4493
|
rpcUrl: string;
|
|
4481
|
-
protocol: string;
|
|
4482
4494
|
}> | undefined;
|
|
4483
4495
|
language?: "en" | "fr" | undefined;
|
|
4484
4496
|
plugins?: {
|
|
@@ -4489,9 +4501,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4489
4501
|
artifactsDir?: string | undefined;
|
|
4490
4502
|
network?: Record<string, {
|
|
4491
4503
|
accounts?: Record<string, {
|
|
4492
|
-
|
|
4493
|
-
|
|
4494
|
-
|
|
4504
|
+
mnemonic?: string | undefined;
|
|
4505
|
+
publicKey?: string | undefined;
|
|
4506
|
+
publicKeyHash?: string | undefined;
|
|
4507
|
+
privateKey?: string | undefined;
|
|
4495
4508
|
}> | undefined;
|
|
4496
4509
|
faucet?: {
|
|
4497
4510
|
pkh: string;
|
|
@@ -4503,7 +4516,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4503
4516
|
} | undefined;
|
|
4504
4517
|
label: string;
|
|
4505
4518
|
rpcUrl: string;
|
|
4506
|
-
protocol: string;
|
|
4507
4519
|
}> | undefined;
|
|
4508
4520
|
accounts?: Record<string, string> | undefined;
|
|
4509
4521
|
contracts?: Record<string, {
|
|
@@ -4592,15 +4604,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4592
4604
|
encryptedKey: string;
|
|
4593
4605
|
secretKey: string;
|
|
4594
4606
|
}> | undefined;
|
|
4595
|
-
|
|
4607
|
+
protocol?: string | undefined;
|
|
4596
4608
|
tzkt?: {
|
|
4597
4609
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
4598
4610
|
postgresqlPort?: number | undefined;
|
|
4599
4611
|
apiPort?: number | undefined;
|
|
4600
4612
|
} | undefined;
|
|
4613
|
+
annotations?: Record<string, unknown> | undefined;
|
|
4601
4614
|
label: string;
|
|
4602
4615
|
rpcUrl: string;
|
|
4603
|
-
protocol: string;
|
|
4604
4616
|
}> | undefined;
|
|
4605
4617
|
language?: "en" | "fr" | undefined;
|
|
4606
4618
|
plugins?: {
|
|
@@ -4611,9 +4623,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4611
4623
|
artifactsDir?: string | undefined;
|
|
4612
4624
|
network?: Record<string, {
|
|
4613
4625
|
accounts?: Record<string, {
|
|
4614
|
-
|
|
4615
|
-
|
|
4616
|
-
|
|
4626
|
+
mnemonic?: string | undefined;
|
|
4627
|
+
publicKey?: string | undefined;
|
|
4628
|
+
publicKeyHash?: string | undefined;
|
|
4629
|
+
privateKey?: string | undefined;
|
|
4617
4630
|
}> | undefined;
|
|
4618
4631
|
faucet?: {
|
|
4619
4632
|
pkh: string;
|
|
@@ -4625,7 +4638,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4625
4638
|
} | undefined;
|
|
4626
4639
|
label: string;
|
|
4627
4640
|
rpcUrl: string;
|
|
4628
|
-
protocol: string;
|
|
4629
4641
|
}> | undefined;
|
|
4630
4642
|
accounts?: Record<string, string> | undefined;
|
|
4631
4643
|
contracts?: Record<string, {
|
|
@@ -4704,15 +4716,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4704
4716
|
encryptedKey: string;
|
|
4705
4717
|
secretKey: string;
|
|
4706
4718
|
}> | undefined;
|
|
4707
|
-
|
|
4719
|
+
protocol?: string | undefined;
|
|
4708
4720
|
tzkt?: {
|
|
4709
4721
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
4710
4722
|
postgresqlPort?: number | undefined;
|
|
4711
4723
|
apiPort?: number | undefined;
|
|
4712
4724
|
} | undefined;
|
|
4725
|
+
annotations?: Record<string, unknown> | undefined;
|
|
4713
4726
|
label: string;
|
|
4714
4727
|
rpcUrl: string;
|
|
4715
|
-
protocol: string;
|
|
4716
4728
|
}> | undefined;
|
|
4717
4729
|
language?: "en" | "fr" | undefined;
|
|
4718
4730
|
plugins?: {
|
|
@@ -4723,9 +4735,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4723
4735
|
artifactsDir?: string | undefined;
|
|
4724
4736
|
network?: Record<string, {
|
|
4725
4737
|
accounts?: Record<string, {
|
|
4726
|
-
|
|
4727
|
-
|
|
4728
|
-
|
|
4738
|
+
mnemonic?: string | undefined;
|
|
4739
|
+
publicKey?: string | undefined;
|
|
4740
|
+
publicKeyHash?: string | undefined;
|
|
4741
|
+
privateKey?: string | undefined;
|
|
4729
4742
|
}> | undefined;
|
|
4730
4743
|
faucet?: {
|
|
4731
4744
|
pkh: string;
|
|
@@ -4737,7 +4750,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4737
4750
|
} | undefined;
|
|
4738
4751
|
label: string;
|
|
4739
4752
|
rpcUrl: string;
|
|
4740
|
-
protocol: string;
|
|
4741
4753
|
}> | undefined;
|
|
4742
4754
|
accounts?: Record<string, string> | undefined;
|
|
4743
4755
|
contracts?: Record<string, {
|
|
@@ -4816,15 +4828,15 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4816
4828
|
encryptedKey: string;
|
|
4817
4829
|
secretKey: string;
|
|
4818
4830
|
}> | undefined;
|
|
4819
|
-
|
|
4831
|
+
protocol?: string | undefined;
|
|
4820
4832
|
tzkt?: {
|
|
4821
4833
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
4822
4834
|
postgresqlPort?: number | undefined;
|
|
4823
4835
|
apiPort?: number | undefined;
|
|
4824
4836
|
} | undefined;
|
|
4837
|
+
annotations?: Record<string, unknown> | undefined;
|
|
4825
4838
|
label: string;
|
|
4826
4839
|
rpcUrl: string;
|
|
4827
|
-
protocol: string;
|
|
4828
4840
|
}> | undefined;
|
|
4829
4841
|
language?: "en" | "fr" | undefined;
|
|
4830
4842
|
plugins?: {
|
|
@@ -4835,9 +4847,10 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4835
4847
|
artifactsDir?: string | undefined;
|
|
4836
4848
|
network?: Record<string, {
|
|
4837
4849
|
accounts?: Record<string, {
|
|
4838
|
-
|
|
4839
|
-
|
|
4840
|
-
|
|
4850
|
+
mnemonic?: string | undefined;
|
|
4851
|
+
publicKey?: string | undefined;
|
|
4852
|
+
publicKeyHash?: string | undefined;
|
|
4853
|
+
privateKey?: string | undefined;
|
|
4841
4854
|
}> | undefined;
|
|
4842
4855
|
faucet?: {
|
|
4843
4856
|
pkh: string;
|
|
@@ -4849,7 +4862,6 @@ declare const internalSchema: z.ZodObject<z.extendShape<z.extendShape<{
|
|
|
4849
4862
|
} | undefined;
|
|
4850
4863
|
label: string;
|
|
4851
4864
|
rpcUrl: string;
|
|
4852
|
-
protocol: string;
|
|
4853
4865
|
}> | undefined;
|
|
4854
4866
|
accounts?: Record<string, string> | undefined;
|
|
4855
4867
|
contracts?: Record<string, {
|
|
@@ -5194,19 +5206,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5194
5206
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5195
5207
|
label: z.ZodString;
|
|
5196
5208
|
rpcUrl: z.ZodString;
|
|
5197
|
-
protocol: z.ZodString;
|
|
5198
5209
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5199
|
-
publicKey: z.ZodString
|
|
5200
|
-
publicKeyHash: z.ZodString
|
|
5201
|
-
privateKey: z.ZodString
|
|
5210
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
5211
|
+
publicKeyHash: z.ZodOptional<z.ZodString>;
|
|
5212
|
+
privateKey: z.ZodOptional<z.ZodString>;
|
|
5213
|
+
mnemonic: z.ZodOptional<z.ZodString>;
|
|
5202
5214
|
}, "strip", z.ZodTypeAny, {
|
|
5203
|
-
|
|
5204
|
-
|
|
5205
|
-
|
|
5215
|
+
mnemonic?: string | undefined;
|
|
5216
|
+
publicKey?: string | undefined;
|
|
5217
|
+
publicKeyHash?: string | undefined;
|
|
5218
|
+
privateKey?: string | undefined;
|
|
5206
5219
|
}, {
|
|
5207
|
-
|
|
5208
|
-
|
|
5209
|
-
|
|
5220
|
+
mnemonic?: string | undefined;
|
|
5221
|
+
publicKey?: string | undefined;
|
|
5222
|
+
publicKeyHash?: string | undefined;
|
|
5223
|
+
privateKey?: string | undefined;
|
|
5210
5224
|
}>>>;
|
|
5211
5225
|
faucet: z.ZodOptional<z.ZodObject<{
|
|
5212
5226
|
pkh: z.ZodString;
|
|
@@ -5232,9 +5246,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5232
5246
|
}>>;
|
|
5233
5247
|
}, "strip", z.ZodTypeAny, {
|
|
5234
5248
|
accounts?: Record<string, {
|
|
5235
|
-
|
|
5236
|
-
|
|
5237
|
-
|
|
5249
|
+
mnemonic?: string | undefined;
|
|
5250
|
+
publicKey?: string | undefined;
|
|
5251
|
+
publicKeyHash?: string | undefined;
|
|
5252
|
+
privateKey?: string | undefined;
|
|
5238
5253
|
}> | undefined;
|
|
5239
5254
|
faucet?: {
|
|
5240
5255
|
pkh: string;
|
|
@@ -5246,12 +5261,12 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5246
5261
|
} | undefined;
|
|
5247
5262
|
label: string;
|
|
5248
5263
|
rpcUrl: string;
|
|
5249
|
-
protocol: string;
|
|
5250
5264
|
}, {
|
|
5251
5265
|
accounts?: Record<string, {
|
|
5252
|
-
|
|
5253
|
-
|
|
5254
|
-
|
|
5266
|
+
mnemonic?: string | undefined;
|
|
5267
|
+
publicKey?: string | undefined;
|
|
5268
|
+
publicKeyHash?: string | undefined;
|
|
5269
|
+
privateKey?: string | undefined;
|
|
5255
5270
|
}> | undefined;
|
|
5256
5271
|
faucet?: {
|
|
5257
5272
|
pkh: string;
|
|
@@ -5263,13 +5278,11 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5263
5278
|
} | undefined;
|
|
5264
5279
|
label: string;
|
|
5265
5280
|
rpcUrl: string;
|
|
5266
|
-
protocol: string;
|
|
5267
5281
|
}>>>;
|
|
5268
5282
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5269
5283
|
label: z.ZodString;
|
|
5270
5284
|
rpcUrl: z.ZodString;
|
|
5271
|
-
protocol: z.ZodString
|
|
5272
|
-
attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
5285
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
5273
5286
|
plugin: z.ZodOptional<z.ZodString>;
|
|
5274
5287
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
5275
5288
|
encryptedKey: z.ZodString;
|
|
@@ -5297,6 +5310,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5297
5310
|
postgresqlPort?: number | undefined;
|
|
5298
5311
|
apiPort?: number | undefined;
|
|
5299
5312
|
}>>;
|
|
5313
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5300
5314
|
}, "strip", z.ZodTypeAny, {
|
|
5301
5315
|
plugin?: string | undefined;
|
|
5302
5316
|
accounts?: Record<string, string | {
|
|
@@ -5304,15 +5318,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5304
5318
|
encryptedKey: string;
|
|
5305
5319
|
secretKey: string;
|
|
5306
5320
|
}> | undefined;
|
|
5307
|
-
|
|
5321
|
+
protocol?: string | undefined;
|
|
5308
5322
|
tzkt?: {
|
|
5309
5323
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
5310
5324
|
postgresqlPort?: number | undefined;
|
|
5311
5325
|
apiPort?: number | undefined;
|
|
5312
5326
|
} | undefined;
|
|
5327
|
+
annotations?: Record<string, unknown> | undefined;
|
|
5313
5328
|
label: string;
|
|
5314
5329
|
rpcUrl: string;
|
|
5315
|
-
protocol: string;
|
|
5316
5330
|
}, {
|
|
5317
5331
|
plugin?: string | undefined;
|
|
5318
5332
|
accounts?: Record<string, string | {
|
|
@@ -5320,15 +5334,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5320
5334
|
encryptedKey: string;
|
|
5321
5335
|
secretKey: string;
|
|
5322
5336
|
}> | undefined;
|
|
5323
|
-
|
|
5337
|
+
protocol?: string | undefined;
|
|
5324
5338
|
tzkt?: {
|
|
5325
5339
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
5326
5340
|
postgresqlPort?: number | undefined;
|
|
5327
5341
|
apiPort?: number | undefined;
|
|
5328
5342
|
} | undefined;
|
|
5343
|
+
annotations?: Record<string, unknown> | undefined;
|
|
5329
5344
|
label: string;
|
|
5330
5345
|
rpcUrl: string;
|
|
5331
|
-
protocol: string;
|
|
5332
5346
|
}>>>;
|
|
5333
5347
|
environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
5334
5348
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
@@ -5388,15 +5402,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5388
5402
|
encryptedKey: string;
|
|
5389
5403
|
secretKey: string;
|
|
5390
5404
|
}> | undefined;
|
|
5391
|
-
|
|
5405
|
+
protocol?: string | undefined;
|
|
5392
5406
|
tzkt?: {
|
|
5393
5407
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
5394
5408
|
postgresqlPort?: number | undefined;
|
|
5395
5409
|
apiPort?: number | undefined;
|
|
5396
5410
|
} | undefined;
|
|
5411
|
+
annotations?: Record<string, unknown> | undefined;
|
|
5397
5412
|
label: string;
|
|
5398
5413
|
rpcUrl: string;
|
|
5399
|
-
protocol: string;
|
|
5400
5414
|
}> | undefined;
|
|
5401
5415
|
language?: "en" | "fr" | undefined;
|
|
5402
5416
|
plugins?: {
|
|
@@ -5407,9 +5421,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5407
5421
|
artifactsDir?: string | undefined;
|
|
5408
5422
|
network?: Record<string, {
|
|
5409
5423
|
accounts?: Record<string, {
|
|
5410
|
-
|
|
5411
|
-
|
|
5412
|
-
|
|
5424
|
+
mnemonic?: string | undefined;
|
|
5425
|
+
publicKey?: string | undefined;
|
|
5426
|
+
publicKeyHash?: string | undefined;
|
|
5427
|
+
privateKey?: string | undefined;
|
|
5413
5428
|
}> | undefined;
|
|
5414
5429
|
faucet?: {
|
|
5415
5430
|
pkh: string;
|
|
@@ -5421,7 +5436,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5421
5436
|
} | undefined;
|
|
5422
5437
|
label: string;
|
|
5423
5438
|
rpcUrl: string;
|
|
5424
|
-
protocol: string;
|
|
5425
5439
|
}> | undefined;
|
|
5426
5440
|
accounts?: Record<string, string> | undefined;
|
|
5427
5441
|
contracts?: Record<string, {
|
|
@@ -5452,15 +5466,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5452
5466
|
encryptedKey: string;
|
|
5453
5467
|
secretKey: string;
|
|
5454
5468
|
}> | undefined;
|
|
5455
|
-
|
|
5469
|
+
protocol?: string | undefined;
|
|
5456
5470
|
tzkt?: {
|
|
5457
5471
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
5458
5472
|
postgresqlPort?: number | undefined;
|
|
5459
5473
|
apiPort?: number | undefined;
|
|
5460
5474
|
} | undefined;
|
|
5475
|
+
annotations?: Record<string, unknown> | undefined;
|
|
5461
5476
|
label: string;
|
|
5462
5477
|
rpcUrl: string;
|
|
5463
|
-
protocol: string;
|
|
5464
5478
|
}> | undefined;
|
|
5465
5479
|
language?: "en" | "fr" | undefined;
|
|
5466
5480
|
plugins?: {
|
|
@@ -5471,9 +5485,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5471
5485
|
artifactsDir?: string | undefined;
|
|
5472
5486
|
network?: Record<string, {
|
|
5473
5487
|
accounts?: Record<string, {
|
|
5474
|
-
|
|
5475
|
-
|
|
5476
|
-
|
|
5488
|
+
mnemonic?: string | undefined;
|
|
5489
|
+
publicKey?: string | undefined;
|
|
5490
|
+
publicKeyHash?: string | undefined;
|
|
5491
|
+
privateKey?: string | undefined;
|
|
5477
5492
|
}> | undefined;
|
|
5478
5493
|
faucet?: {
|
|
5479
5494
|
pkh: string;
|
|
@@ -5485,7 +5500,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5485
5500
|
} | undefined;
|
|
5486
5501
|
label: string;
|
|
5487
5502
|
rpcUrl: string;
|
|
5488
|
-
protocol: string;
|
|
5489
5503
|
}> | undefined;
|
|
5490
5504
|
accounts?: Record<string, string> | undefined;
|
|
5491
5505
|
contracts?: Record<string, {
|
|
@@ -5534,15 +5548,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5534
5548
|
encryptedKey: string;
|
|
5535
5549
|
secretKey: string;
|
|
5536
5550
|
}> | undefined;
|
|
5537
|
-
|
|
5551
|
+
protocol?: string | undefined;
|
|
5538
5552
|
tzkt?: {
|
|
5539
5553
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
5540
5554
|
postgresqlPort?: number | undefined;
|
|
5541
5555
|
apiPort?: number | undefined;
|
|
5542
5556
|
} | undefined;
|
|
5557
|
+
annotations?: Record<string, unknown> | undefined;
|
|
5543
5558
|
label: string;
|
|
5544
5559
|
rpcUrl: string;
|
|
5545
|
-
protocol: string;
|
|
5546
5560
|
}> | undefined;
|
|
5547
5561
|
language?: "en" | "fr" | undefined;
|
|
5548
5562
|
plugins?: {
|
|
@@ -5553,9 +5567,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5553
5567
|
artifactsDir?: string | undefined;
|
|
5554
5568
|
network?: Record<string, {
|
|
5555
5569
|
accounts?: Record<string, {
|
|
5556
|
-
|
|
5557
|
-
|
|
5558
|
-
|
|
5570
|
+
mnemonic?: string | undefined;
|
|
5571
|
+
publicKey?: string | undefined;
|
|
5572
|
+
publicKeyHash?: string | undefined;
|
|
5573
|
+
privateKey?: string | undefined;
|
|
5559
5574
|
}> | undefined;
|
|
5560
5575
|
faucet?: {
|
|
5561
5576
|
pkh: string;
|
|
@@ -5567,7 +5582,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5567
5582
|
} | undefined;
|
|
5568
5583
|
label: string;
|
|
5569
5584
|
rpcUrl: string;
|
|
5570
|
-
protocol: string;
|
|
5571
5585
|
}> | undefined;
|
|
5572
5586
|
accounts?: Record<string, string> | undefined;
|
|
5573
5587
|
contracts?: Record<string, {
|
|
@@ -5616,15 +5630,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5616
5630
|
encryptedKey: string;
|
|
5617
5631
|
secretKey: string;
|
|
5618
5632
|
}> | undefined;
|
|
5619
|
-
|
|
5633
|
+
protocol?: string | undefined;
|
|
5620
5634
|
tzkt?: {
|
|
5621
5635
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
5622
5636
|
postgresqlPort?: number | undefined;
|
|
5623
5637
|
apiPort?: number | undefined;
|
|
5624
5638
|
} | undefined;
|
|
5639
|
+
annotations?: Record<string, unknown> | undefined;
|
|
5625
5640
|
label: string;
|
|
5626
5641
|
rpcUrl: string;
|
|
5627
|
-
protocol: string;
|
|
5628
5642
|
}> | undefined;
|
|
5629
5643
|
language?: "en" | "fr" | undefined;
|
|
5630
5644
|
plugins?: {
|
|
@@ -5635,9 +5649,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5635
5649
|
artifactsDir?: string | undefined;
|
|
5636
5650
|
network?: Record<string, {
|
|
5637
5651
|
accounts?: Record<string, {
|
|
5638
|
-
|
|
5639
|
-
|
|
5640
|
-
|
|
5652
|
+
mnemonic?: string | undefined;
|
|
5653
|
+
publicKey?: string | undefined;
|
|
5654
|
+
publicKeyHash?: string | undefined;
|
|
5655
|
+
privateKey?: string | undefined;
|
|
5641
5656
|
}> | undefined;
|
|
5642
5657
|
faucet?: {
|
|
5643
5658
|
pkh: string;
|
|
@@ -5649,7 +5664,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5649
5664
|
} | undefined;
|
|
5650
5665
|
label: string;
|
|
5651
5666
|
rpcUrl: string;
|
|
5652
|
-
protocol: string;
|
|
5653
5667
|
}> | undefined;
|
|
5654
5668
|
accounts?: Record<string, string> | undefined;
|
|
5655
5669
|
contracts?: Record<string, {
|
|
@@ -5826,19 +5840,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5826
5840
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5827
5841
|
label: z.ZodString;
|
|
5828
5842
|
rpcUrl: z.ZodString;
|
|
5829
|
-
protocol: z.ZodString;
|
|
5830
5843
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5831
|
-
publicKey: z.ZodString
|
|
5832
|
-
publicKeyHash: z.ZodString
|
|
5833
|
-
privateKey: z.ZodString
|
|
5844
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
5845
|
+
publicKeyHash: z.ZodOptional<z.ZodString>;
|
|
5846
|
+
privateKey: z.ZodOptional<z.ZodString>;
|
|
5847
|
+
mnemonic: z.ZodOptional<z.ZodString>;
|
|
5834
5848
|
}, "strip", z.ZodTypeAny, {
|
|
5835
|
-
|
|
5836
|
-
|
|
5837
|
-
|
|
5849
|
+
mnemonic?: string | undefined;
|
|
5850
|
+
publicKey?: string | undefined;
|
|
5851
|
+
publicKeyHash?: string | undefined;
|
|
5852
|
+
privateKey?: string | undefined;
|
|
5838
5853
|
}, {
|
|
5839
|
-
|
|
5840
|
-
|
|
5841
|
-
|
|
5854
|
+
mnemonic?: string | undefined;
|
|
5855
|
+
publicKey?: string | undefined;
|
|
5856
|
+
publicKeyHash?: string | undefined;
|
|
5857
|
+
privateKey?: string | undefined;
|
|
5842
5858
|
}>>>;
|
|
5843
5859
|
faucet: z.ZodOptional<z.ZodObject<{
|
|
5844
5860
|
pkh: z.ZodString;
|
|
@@ -5864,9 +5880,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5864
5880
|
}>>;
|
|
5865
5881
|
}, "strip", z.ZodTypeAny, {
|
|
5866
5882
|
accounts?: Record<string, {
|
|
5867
|
-
|
|
5868
|
-
|
|
5869
|
-
|
|
5883
|
+
mnemonic?: string | undefined;
|
|
5884
|
+
publicKey?: string | undefined;
|
|
5885
|
+
publicKeyHash?: string | undefined;
|
|
5886
|
+
privateKey?: string | undefined;
|
|
5870
5887
|
}> | undefined;
|
|
5871
5888
|
faucet?: {
|
|
5872
5889
|
pkh: string;
|
|
@@ -5878,12 +5895,12 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5878
5895
|
} | undefined;
|
|
5879
5896
|
label: string;
|
|
5880
5897
|
rpcUrl: string;
|
|
5881
|
-
protocol: string;
|
|
5882
5898
|
}, {
|
|
5883
5899
|
accounts?: Record<string, {
|
|
5884
|
-
|
|
5885
|
-
|
|
5886
|
-
|
|
5900
|
+
mnemonic?: string | undefined;
|
|
5901
|
+
publicKey?: string | undefined;
|
|
5902
|
+
publicKeyHash?: string | undefined;
|
|
5903
|
+
privateKey?: string | undefined;
|
|
5887
5904
|
}> | undefined;
|
|
5888
5905
|
faucet?: {
|
|
5889
5906
|
pkh: string;
|
|
@@ -5895,13 +5912,11 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5895
5912
|
} | undefined;
|
|
5896
5913
|
label: string;
|
|
5897
5914
|
rpcUrl: string;
|
|
5898
|
-
protocol: string;
|
|
5899
5915
|
}>>>;
|
|
5900
5916
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
5901
5917
|
label: z.ZodString;
|
|
5902
5918
|
rpcUrl: z.ZodString;
|
|
5903
|
-
protocol: z.ZodString
|
|
5904
|
-
attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
5919
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
5905
5920
|
plugin: z.ZodOptional<z.ZodString>;
|
|
5906
5921
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
5907
5922
|
encryptedKey: z.ZodString;
|
|
@@ -5929,6 +5944,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5929
5944
|
postgresqlPort?: number | undefined;
|
|
5930
5945
|
apiPort?: number | undefined;
|
|
5931
5946
|
}>>;
|
|
5947
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
5932
5948
|
}, "strip", z.ZodTypeAny, {
|
|
5933
5949
|
plugin?: string | undefined;
|
|
5934
5950
|
accounts?: Record<string, string | {
|
|
@@ -5936,15 +5952,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5936
5952
|
encryptedKey: string;
|
|
5937
5953
|
secretKey: string;
|
|
5938
5954
|
}> | undefined;
|
|
5939
|
-
|
|
5955
|
+
protocol?: string | undefined;
|
|
5940
5956
|
tzkt?: {
|
|
5941
5957
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
5942
5958
|
postgresqlPort?: number | undefined;
|
|
5943
5959
|
apiPort?: number | undefined;
|
|
5944
5960
|
} | undefined;
|
|
5961
|
+
annotations?: Record<string, unknown> | undefined;
|
|
5945
5962
|
label: string;
|
|
5946
5963
|
rpcUrl: string;
|
|
5947
|
-
protocol: string;
|
|
5948
5964
|
}, {
|
|
5949
5965
|
plugin?: string | undefined;
|
|
5950
5966
|
accounts?: Record<string, string | {
|
|
@@ -5952,15 +5968,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
5952
5968
|
encryptedKey: string;
|
|
5953
5969
|
secretKey: string;
|
|
5954
5970
|
}> | undefined;
|
|
5955
|
-
|
|
5971
|
+
protocol?: string | undefined;
|
|
5956
5972
|
tzkt?: {
|
|
5957
5973
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
5958
5974
|
postgresqlPort?: number | undefined;
|
|
5959
5975
|
apiPort?: number | undefined;
|
|
5960
5976
|
} | undefined;
|
|
5977
|
+
annotations?: Record<string, unknown> | undefined;
|
|
5961
5978
|
label: string;
|
|
5962
5979
|
rpcUrl: string;
|
|
5963
|
-
protocol: string;
|
|
5964
5980
|
}>>>;
|
|
5965
5981
|
environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
5966
5982
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
@@ -6020,15 +6036,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6020
6036
|
encryptedKey: string;
|
|
6021
6037
|
secretKey: string;
|
|
6022
6038
|
}> | undefined;
|
|
6023
|
-
|
|
6039
|
+
protocol?: string | undefined;
|
|
6024
6040
|
tzkt?: {
|
|
6025
6041
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
6026
6042
|
postgresqlPort?: number | undefined;
|
|
6027
6043
|
apiPort?: number | undefined;
|
|
6028
6044
|
} | undefined;
|
|
6045
|
+
annotations?: Record<string, unknown> | undefined;
|
|
6029
6046
|
label: string;
|
|
6030
6047
|
rpcUrl: string;
|
|
6031
|
-
protocol: string;
|
|
6032
6048
|
}> | undefined;
|
|
6033
6049
|
language?: "en" | "fr" | undefined;
|
|
6034
6050
|
plugins?: {
|
|
@@ -6039,9 +6055,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6039
6055
|
artifactsDir?: string | undefined;
|
|
6040
6056
|
network?: Record<string, {
|
|
6041
6057
|
accounts?: Record<string, {
|
|
6042
|
-
|
|
6043
|
-
|
|
6044
|
-
|
|
6058
|
+
mnemonic?: string | undefined;
|
|
6059
|
+
publicKey?: string | undefined;
|
|
6060
|
+
publicKeyHash?: string | undefined;
|
|
6061
|
+
privateKey?: string | undefined;
|
|
6045
6062
|
}> | undefined;
|
|
6046
6063
|
faucet?: {
|
|
6047
6064
|
pkh: string;
|
|
@@ -6053,7 +6070,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6053
6070
|
} | undefined;
|
|
6054
6071
|
label: string;
|
|
6055
6072
|
rpcUrl: string;
|
|
6056
|
-
protocol: string;
|
|
6057
6073
|
}> | undefined;
|
|
6058
6074
|
accounts?: Record<string, string> | undefined;
|
|
6059
6075
|
contracts?: Record<string, {
|
|
@@ -6084,15 +6100,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6084
6100
|
encryptedKey: string;
|
|
6085
6101
|
secretKey: string;
|
|
6086
6102
|
}> | undefined;
|
|
6087
|
-
|
|
6103
|
+
protocol?: string | undefined;
|
|
6088
6104
|
tzkt?: {
|
|
6089
6105
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
6090
6106
|
postgresqlPort?: number | undefined;
|
|
6091
6107
|
apiPort?: number | undefined;
|
|
6092
6108
|
} | undefined;
|
|
6109
|
+
annotations?: Record<string, unknown> | undefined;
|
|
6093
6110
|
label: string;
|
|
6094
6111
|
rpcUrl: string;
|
|
6095
|
-
protocol: string;
|
|
6096
6112
|
}> | undefined;
|
|
6097
6113
|
language?: "en" | "fr" | undefined;
|
|
6098
6114
|
plugins?: {
|
|
@@ -6103,9 +6119,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6103
6119
|
artifactsDir?: string | undefined;
|
|
6104
6120
|
network?: Record<string, {
|
|
6105
6121
|
accounts?: Record<string, {
|
|
6106
|
-
|
|
6107
|
-
|
|
6108
|
-
|
|
6122
|
+
mnemonic?: string | undefined;
|
|
6123
|
+
publicKey?: string | undefined;
|
|
6124
|
+
publicKeyHash?: string | undefined;
|
|
6125
|
+
privateKey?: string | undefined;
|
|
6109
6126
|
}> | undefined;
|
|
6110
6127
|
faucet?: {
|
|
6111
6128
|
pkh: string;
|
|
@@ -6117,7 +6134,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6117
6134
|
} | undefined;
|
|
6118
6135
|
label: string;
|
|
6119
6136
|
rpcUrl: string;
|
|
6120
|
-
protocol: string;
|
|
6121
6137
|
}> | undefined;
|
|
6122
6138
|
accounts?: Record<string, string> | undefined;
|
|
6123
6139
|
contracts?: Record<string, {
|
|
@@ -6166,15 +6182,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6166
6182
|
encryptedKey: string;
|
|
6167
6183
|
secretKey: string;
|
|
6168
6184
|
}> | undefined;
|
|
6169
|
-
|
|
6185
|
+
protocol?: string | undefined;
|
|
6170
6186
|
tzkt?: {
|
|
6171
6187
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
6172
6188
|
postgresqlPort?: number | undefined;
|
|
6173
6189
|
apiPort?: number | undefined;
|
|
6174
6190
|
} | undefined;
|
|
6191
|
+
annotations?: Record<string, unknown> | undefined;
|
|
6175
6192
|
label: string;
|
|
6176
6193
|
rpcUrl: string;
|
|
6177
|
-
protocol: string;
|
|
6178
6194
|
}> | undefined;
|
|
6179
6195
|
language?: "en" | "fr" | undefined;
|
|
6180
6196
|
plugins?: {
|
|
@@ -6185,9 +6201,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6185
6201
|
artifactsDir?: string | undefined;
|
|
6186
6202
|
network?: Record<string, {
|
|
6187
6203
|
accounts?: Record<string, {
|
|
6188
|
-
|
|
6189
|
-
|
|
6190
|
-
|
|
6204
|
+
mnemonic?: string | undefined;
|
|
6205
|
+
publicKey?: string | undefined;
|
|
6206
|
+
publicKeyHash?: string | undefined;
|
|
6207
|
+
privateKey?: string | undefined;
|
|
6191
6208
|
}> | undefined;
|
|
6192
6209
|
faucet?: {
|
|
6193
6210
|
pkh: string;
|
|
@@ -6199,7 +6216,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6199
6216
|
} | undefined;
|
|
6200
6217
|
label: string;
|
|
6201
6218
|
rpcUrl: string;
|
|
6202
|
-
protocol: string;
|
|
6203
6219
|
}> | undefined;
|
|
6204
6220
|
accounts?: Record<string, string> | undefined;
|
|
6205
6221
|
contracts?: Record<string, {
|
|
@@ -6248,15 +6264,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6248
6264
|
encryptedKey: string;
|
|
6249
6265
|
secretKey: string;
|
|
6250
6266
|
}> | undefined;
|
|
6251
|
-
|
|
6267
|
+
protocol?: string | undefined;
|
|
6252
6268
|
tzkt?: {
|
|
6253
6269
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
6254
6270
|
postgresqlPort?: number | undefined;
|
|
6255
6271
|
apiPort?: number | undefined;
|
|
6256
6272
|
} | undefined;
|
|
6273
|
+
annotations?: Record<string, unknown> | undefined;
|
|
6257
6274
|
label: string;
|
|
6258
6275
|
rpcUrl: string;
|
|
6259
|
-
protocol: string;
|
|
6260
6276
|
}> | undefined;
|
|
6261
6277
|
language?: "en" | "fr" | undefined;
|
|
6262
6278
|
plugins?: {
|
|
@@ -6267,9 +6283,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6267
6283
|
artifactsDir?: string | undefined;
|
|
6268
6284
|
network?: Record<string, {
|
|
6269
6285
|
accounts?: Record<string, {
|
|
6270
|
-
|
|
6271
|
-
|
|
6272
|
-
|
|
6286
|
+
mnemonic?: string | undefined;
|
|
6287
|
+
publicKey?: string | undefined;
|
|
6288
|
+
publicKeyHash?: string | undefined;
|
|
6289
|
+
privateKey?: string | undefined;
|
|
6273
6290
|
}> | undefined;
|
|
6274
6291
|
faucet?: {
|
|
6275
6292
|
pkh: string;
|
|
@@ -6281,7 +6298,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6281
6298
|
} | undefined;
|
|
6282
6299
|
label: string;
|
|
6283
6300
|
rpcUrl: string;
|
|
6284
|
-
protocol: string;
|
|
6285
6301
|
}> | undefined;
|
|
6286
6302
|
accounts?: Record<string, string> | undefined;
|
|
6287
6303
|
contracts?: Record<string, {
|
|
@@ -6543,19 +6559,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6543
6559
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6544
6560
|
label: z.ZodString;
|
|
6545
6561
|
rpcUrl: z.ZodString;
|
|
6546
|
-
protocol: z.ZodString;
|
|
6547
6562
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6548
|
-
publicKey: z.ZodString
|
|
6549
|
-
publicKeyHash: z.ZodString
|
|
6550
|
-
privateKey: z.ZodString
|
|
6563
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
6564
|
+
publicKeyHash: z.ZodOptional<z.ZodString>;
|
|
6565
|
+
privateKey: z.ZodOptional<z.ZodString>;
|
|
6566
|
+
mnemonic: z.ZodOptional<z.ZodString>;
|
|
6551
6567
|
}, "strip", z.ZodTypeAny, {
|
|
6552
|
-
|
|
6553
|
-
|
|
6554
|
-
|
|
6568
|
+
mnemonic?: string | undefined;
|
|
6569
|
+
publicKey?: string | undefined;
|
|
6570
|
+
publicKeyHash?: string | undefined;
|
|
6571
|
+
privateKey?: string | undefined;
|
|
6555
6572
|
}, {
|
|
6556
|
-
|
|
6557
|
-
|
|
6558
|
-
|
|
6573
|
+
mnemonic?: string | undefined;
|
|
6574
|
+
publicKey?: string | undefined;
|
|
6575
|
+
publicKeyHash?: string | undefined;
|
|
6576
|
+
privateKey?: string | undefined;
|
|
6559
6577
|
}>>>;
|
|
6560
6578
|
faucet: z.ZodOptional<z.ZodObject<{
|
|
6561
6579
|
pkh: z.ZodString;
|
|
@@ -6581,9 +6599,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6581
6599
|
}>>;
|
|
6582
6600
|
}, "strip", z.ZodTypeAny, {
|
|
6583
6601
|
accounts?: Record<string, {
|
|
6584
|
-
|
|
6585
|
-
|
|
6586
|
-
|
|
6602
|
+
mnemonic?: string | undefined;
|
|
6603
|
+
publicKey?: string | undefined;
|
|
6604
|
+
publicKeyHash?: string | undefined;
|
|
6605
|
+
privateKey?: string | undefined;
|
|
6587
6606
|
}> | undefined;
|
|
6588
6607
|
faucet?: {
|
|
6589
6608
|
pkh: string;
|
|
@@ -6595,12 +6614,12 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6595
6614
|
} | undefined;
|
|
6596
6615
|
label: string;
|
|
6597
6616
|
rpcUrl: string;
|
|
6598
|
-
protocol: string;
|
|
6599
6617
|
}, {
|
|
6600
6618
|
accounts?: Record<string, {
|
|
6601
|
-
|
|
6602
|
-
|
|
6603
|
-
|
|
6619
|
+
mnemonic?: string | undefined;
|
|
6620
|
+
publicKey?: string | undefined;
|
|
6621
|
+
publicKeyHash?: string | undefined;
|
|
6622
|
+
privateKey?: string | undefined;
|
|
6604
6623
|
}> | undefined;
|
|
6605
6624
|
faucet?: {
|
|
6606
6625
|
pkh: string;
|
|
@@ -6612,13 +6631,11 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6612
6631
|
} | undefined;
|
|
6613
6632
|
label: string;
|
|
6614
6633
|
rpcUrl: string;
|
|
6615
|
-
protocol: string;
|
|
6616
6634
|
}>>>;
|
|
6617
6635
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
6618
6636
|
label: z.ZodString;
|
|
6619
6637
|
rpcUrl: z.ZodString;
|
|
6620
|
-
protocol: z.ZodString
|
|
6621
|
-
attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
6638
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
6622
6639
|
plugin: z.ZodOptional<z.ZodString>;
|
|
6623
6640
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
6624
6641
|
encryptedKey: z.ZodString;
|
|
@@ -6646,6 +6663,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6646
6663
|
postgresqlPort?: number | undefined;
|
|
6647
6664
|
apiPort?: number | undefined;
|
|
6648
6665
|
}>>;
|
|
6666
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
6649
6667
|
}, "strip", z.ZodTypeAny, {
|
|
6650
6668
|
plugin?: string | undefined;
|
|
6651
6669
|
accounts?: Record<string, string | {
|
|
@@ -6653,15 +6671,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6653
6671
|
encryptedKey: string;
|
|
6654
6672
|
secretKey: string;
|
|
6655
6673
|
}> | undefined;
|
|
6656
|
-
|
|
6674
|
+
protocol?: string | undefined;
|
|
6657
6675
|
tzkt?: {
|
|
6658
6676
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
6659
6677
|
postgresqlPort?: number | undefined;
|
|
6660
6678
|
apiPort?: number | undefined;
|
|
6661
6679
|
} | undefined;
|
|
6680
|
+
annotations?: Record<string, unknown> | undefined;
|
|
6662
6681
|
label: string;
|
|
6663
6682
|
rpcUrl: string;
|
|
6664
|
-
protocol: string;
|
|
6665
6683
|
}, {
|
|
6666
6684
|
plugin?: string | undefined;
|
|
6667
6685
|
accounts?: Record<string, string | {
|
|
@@ -6669,15 +6687,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6669
6687
|
encryptedKey: string;
|
|
6670
6688
|
secretKey: string;
|
|
6671
6689
|
}> | undefined;
|
|
6672
|
-
|
|
6690
|
+
protocol?: string | undefined;
|
|
6673
6691
|
tzkt?: {
|
|
6674
6692
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
6675
6693
|
postgresqlPort?: number | undefined;
|
|
6676
6694
|
apiPort?: number | undefined;
|
|
6677
6695
|
} | undefined;
|
|
6696
|
+
annotations?: Record<string, unknown> | undefined;
|
|
6678
6697
|
label: string;
|
|
6679
6698
|
rpcUrl: string;
|
|
6680
|
-
protocol: string;
|
|
6681
6699
|
}>>>;
|
|
6682
6700
|
environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
6683
6701
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
@@ -6737,15 +6755,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6737
6755
|
encryptedKey: string;
|
|
6738
6756
|
secretKey: string;
|
|
6739
6757
|
}> | undefined;
|
|
6740
|
-
|
|
6758
|
+
protocol?: string | undefined;
|
|
6741
6759
|
tzkt?: {
|
|
6742
6760
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
6743
6761
|
postgresqlPort?: number | undefined;
|
|
6744
6762
|
apiPort?: number | undefined;
|
|
6745
6763
|
} | undefined;
|
|
6764
|
+
annotations?: Record<string, unknown> | undefined;
|
|
6746
6765
|
label: string;
|
|
6747
6766
|
rpcUrl: string;
|
|
6748
|
-
protocol: string;
|
|
6749
6767
|
}> | undefined;
|
|
6750
6768
|
language?: "en" | "fr" | undefined;
|
|
6751
6769
|
plugins?: {
|
|
@@ -6756,9 +6774,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6756
6774
|
artifactsDir?: string | undefined;
|
|
6757
6775
|
network?: Record<string, {
|
|
6758
6776
|
accounts?: Record<string, {
|
|
6759
|
-
|
|
6760
|
-
|
|
6761
|
-
|
|
6777
|
+
mnemonic?: string | undefined;
|
|
6778
|
+
publicKey?: string | undefined;
|
|
6779
|
+
publicKeyHash?: string | undefined;
|
|
6780
|
+
privateKey?: string | undefined;
|
|
6762
6781
|
}> | undefined;
|
|
6763
6782
|
faucet?: {
|
|
6764
6783
|
pkh: string;
|
|
@@ -6770,7 +6789,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6770
6789
|
} | undefined;
|
|
6771
6790
|
label: string;
|
|
6772
6791
|
rpcUrl: string;
|
|
6773
|
-
protocol: string;
|
|
6774
6792
|
}> | undefined;
|
|
6775
6793
|
accounts?: Record<string, string> | undefined;
|
|
6776
6794
|
contracts?: Record<string, {
|
|
@@ -6801,15 +6819,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6801
6819
|
encryptedKey: string;
|
|
6802
6820
|
secretKey: string;
|
|
6803
6821
|
}> | undefined;
|
|
6804
|
-
|
|
6822
|
+
protocol?: string | undefined;
|
|
6805
6823
|
tzkt?: {
|
|
6806
6824
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
6807
6825
|
postgresqlPort?: number | undefined;
|
|
6808
6826
|
apiPort?: number | undefined;
|
|
6809
6827
|
} | undefined;
|
|
6828
|
+
annotations?: Record<string, unknown> | undefined;
|
|
6810
6829
|
label: string;
|
|
6811
6830
|
rpcUrl: string;
|
|
6812
|
-
protocol: string;
|
|
6813
6831
|
}> | undefined;
|
|
6814
6832
|
language?: "en" | "fr" | undefined;
|
|
6815
6833
|
plugins?: {
|
|
@@ -6820,9 +6838,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6820
6838
|
artifactsDir?: string | undefined;
|
|
6821
6839
|
network?: Record<string, {
|
|
6822
6840
|
accounts?: Record<string, {
|
|
6823
|
-
|
|
6824
|
-
|
|
6825
|
-
|
|
6841
|
+
mnemonic?: string | undefined;
|
|
6842
|
+
publicKey?: string | undefined;
|
|
6843
|
+
publicKeyHash?: string | undefined;
|
|
6844
|
+
privateKey?: string | undefined;
|
|
6826
6845
|
}> | undefined;
|
|
6827
6846
|
faucet?: {
|
|
6828
6847
|
pkh: string;
|
|
@@ -6834,7 +6853,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6834
6853
|
} | undefined;
|
|
6835
6854
|
label: string;
|
|
6836
6855
|
rpcUrl: string;
|
|
6837
|
-
protocol: string;
|
|
6838
6856
|
}> | undefined;
|
|
6839
6857
|
accounts?: Record<string, string> | undefined;
|
|
6840
6858
|
contracts?: Record<string, {
|
|
@@ -6883,15 +6901,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6883
6901
|
encryptedKey: string;
|
|
6884
6902
|
secretKey: string;
|
|
6885
6903
|
}> | undefined;
|
|
6886
|
-
|
|
6904
|
+
protocol?: string | undefined;
|
|
6887
6905
|
tzkt?: {
|
|
6888
6906
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
6889
6907
|
postgresqlPort?: number | undefined;
|
|
6890
6908
|
apiPort?: number | undefined;
|
|
6891
6909
|
} | undefined;
|
|
6910
|
+
annotations?: Record<string, unknown> | undefined;
|
|
6892
6911
|
label: string;
|
|
6893
6912
|
rpcUrl: string;
|
|
6894
|
-
protocol: string;
|
|
6895
6913
|
}> | undefined;
|
|
6896
6914
|
language?: "en" | "fr" | undefined;
|
|
6897
6915
|
plugins?: {
|
|
@@ -6902,9 +6920,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6902
6920
|
artifactsDir?: string | undefined;
|
|
6903
6921
|
network?: Record<string, {
|
|
6904
6922
|
accounts?: Record<string, {
|
|
6905
|
-
|
|
6906
|
-
|
|
6907
|
-
|
|
6923
|
+
mnemonic?: string | undefined;
|
|
6924
|
+
publicKey?: string | undefined;
|
|
6925
|
+
publicKeyHash?: string | undefined;
|
|
6926
|
+
privateKey?: string | undefined;
|
|
6908
6927
|
}> | undefined;
|
|
6909
6928
|
faucet?: {
|
|
6910
6929
|
pkh: string;
|
|
@@ -6916,7 +6935,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6916
6935
|
} | undefined;
|
|
6917
6936
|
label: string;
|
|
6918
6937
|
rpcUrl: string;
|
|
6919
|
-
protocol: string;
|
|
6920
6938
|
}> | undefined;
|
|
6921
6939
|
accounts?: Record<string, string> | undefined;
|
|
6922
6940
|
contracts?: Record<string, {
|
|
@@ -6965,15 +6983,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6965
6983
|
encryptedKey: string;
|
|
6966
6984
|
secretKey: string;
|
|
6967
6985
|
}> | undefined;
|
|
6968
|
-
|
|
6986
|
+
protocol?: string | undefined;
|
|
6969
6987
|
tzkt?: {
|
|
6970
6988
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
6971
6989
|
postgresqlPort?: number | undefined;
|
|
6972
6990
|
apiPort?: number | undefined;
|
|
6973
6991
|
} | undefined;
|
|
6992
|
+
annotations?: Record<string, unknown> | undefined;
|
|
6974
6993
|
label: string;
|
|
6975
6994
|
rpcUrl: string;
|
|
6976
|
-
protocol: string;
|
|
6977
6995
|
}> | undefined;
|
|
6978
6996
|
language?: "en" | "fr" | undefined;
|
|
6979
6997
|
plugins?: {
|
|
@@ -6984,9 +7002,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6984
7002
|
artifactsDir?: string | undefined;
|
|
6985
7003
|
network?: Record<string, {
|
|
6986
7004
|
accounts?: Record<string, {
|
|
6987
|
-
|
|
6988
|
-
|
|
6989
|
-
|
|
7005
|
+
mnemonic?: string | undefined;
|
|
7006
|
+
publicKey?: string | undefined;
|
|
7007
|
+
publicKeyHash?: string | undefined;
|
|
7008
|
+
privateKey?: string | undefined;
|
|
6990
7009
|
}> | undefined;
|
|
6991
7010
|
faucet?: {
|
|
6992
7011
|
pkh: string;
|
|
@@ -6998,7 +7017,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
6998
7017
|
} | undefined;
|
|
6999
7018
|
label: string;
|
|
7000
7019
|
rpcUrl: string;
|
|
7001
|
-
protocol: string;
|
|
7002
7020
|
}> | undefined;
|
|
7003
7021
|
accounts?: Record<string, string> | undefined;
|
|
7004
7022
|
contracts?: Record<string, {
|
|
@@ -7061,15 +7079,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7061
7079
|
encryptedKey: string;
|
|
7062
7080
|
secretKey: string;
|
|
7063
7081
|
}> | undefined;
|
|
7064
|
-
|
|
7082
|
+
protocol?: string | undefined;
|
|
7065
7083
|
tzkt?: {
|
|
7066
7084
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
7067
7085
|
postgresqlPort?: number | undefined;
|
|
7068
7086
|
apiPort?: number | undefined;
|
|
7069
7087
|
} | undefined;
|
|
7088
|
+
annotations?: Record<string, unknown> | undefined;
|
|
7070
7089
|
label: string;
|
|
7071
7090
|
rpcUrl: string;
|
|
7072
|
-
protocol: string;
|
|
7073
7091
|
}> | undefined;
|
|
7074
7092
|
language?: "en" | "fr" | undefined;
|
|
7075
7093
|
plugins?: {
|
|
@@ -7080,9 +7098,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7080
7098
|
artifactsDir?: string | undefined;
|
|
7081
7099
|
network?: Record<string, {
|
|
7082
7100
|
accounts?: Record<string, {
|
|
7083
|
-
|
|
7084
|
-
|
|
7085
|
-
|
|
7101
|
+
mnemonic?: string | undefined;
|
|
7102
|
+
publicKey?: string | undefined;
|
|
7103
|
+
publicKeyHash?: string | undefined;
|
|
7104
|
+
privateKey?: string | undefined;
|
|
7086
7105
|
}> | undefined;
|
|
7087
7106
|
faucet?: {
|
|
7088
7107
|
pkh: string;
|
|
@@ -7094,7 +7113,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7094
7113
|
} | undefined;
|
|
7095
7114
|
label: string;
|
|
7096
7115
|
rpcUrl: string;
|
|
7097
|
-
protocol: string;
|
|
7098
7116
|
}> | undefined;
|
|
7099
7117
|
accounts?: Record<string, string> | undefined;
|
|
7100
7118
|
contracts?: Record<string, {
|
|
@@ -7177,15 +7195,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7177
7195
|
encryptedKey: string;
|
|
7178
7196
|
secretKey: string;
|
|
7179
7197
|
}> | undefined;
|
|
7180
|
-
|
|
7198
|
+
protocol?: string | undefined;
|
|
7181
7199
|
tzkt?: {
|
|
7182
7200
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
7183
7201
|
postgresqlPort?: number | undefined;
|
|
7184
7202
|
apiPort?: number | undefined;
|
|
7185
7203
|
} | undefined;
|
|
7204
|
+
annotations?: Record<string, unknown> | undefined;
|
|
7186
7205
|
label: string;
|
|
7187
7206
|
rpcUrl: string;
|
|
7188
|
-
protocol: string;
|
|
7189
7207
|
}> | undefined;
|
|
7190
7208
|
language?: "en" | "fr" | undefined;
|
|
7191
7209
|
plugins?: {
|
|
@@ -7196,9 +7214,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7196
7214
|
artifactsDir?: string | undefined;
|
|
7197
7215
|
network?: Record<string, {
|
|
7198
7216
|
accounts?: Record<string, {
|
|
7199
|
-
|
|
7200
|
-
|
|
7201
|
-
|
|
7217
|
+
mnemonic?: string | undefined;
|
|
7218
|
+
publicKey?: string | undefined;
|
|
7219
|
+
publicKeyHash?: string | undefined;
|
|
7220
|
+
privateKey?: string | undefined;
|
|
7202
7221
|
}> | undefined;
|
|
7203
7222
|
faucet?: {
|
|
7204
7223
|
pkh: string;
|
|
@@ -7210,7 +7229,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7210
7229
|
} | undefined;
|
|
7211
7230
|
label: string;
|
|
7212
7231
|
rpcUrl: string;
|
|
7213
|
-
protocol: string;
|
|
7214
7232
|
}> | undefined;
|
|
7215
7233
|
accounts?: Record<string, string> | undefined;
|
|
7216
7234
|
contracts?: Record<string, {
|
|
@@ -7293,15 +7311,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7293
7311
|
encryptedKey: string;
|
|
7294
7312
|
secretKey: string;
|
|
7295
7313
|
}> | undefined;
|
|
7296
|
-
|
|
7314
|
+
protocol?: string | undefined;
|
|
7297
7315
|
tzkt?: {
|
|
7298
7316
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
7299
7317
|
postgresqlPort?: number | undefined;
|
|
7300
7318
|
apiPort?: number | undefined;
|
|
7301
7319
|
} | undefined;
|
|
7320
|
+
annotations?: Record<string, unknown> | undefined;
|
|
7302
7321
|
label: string;
|
|
7303
7322
|
rpcUrl: string;
|
|
7304
|
-
protocol: string;
|
|
7305
7323
|
}> | undefined;
|
|
7306
7324
|
language?: "en" | "fr" | undefined;
|
|
7307
7325
|
plugins?: {
|
|
@@ -7312,9 +7330,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7312
7330
|
artifactsDir?: string | undefined;
|
|
7313
7331
|
network?: Record<string, {
|
|
7314
7332
|
accounts?: Record<string, {
|
|
7315
|
-
|
|
7316
|
-
|
|
7317
|
-
|
|
7333
|
+
mnemonic?: string | undefined;
|
|
7334
|
+
publicKey?: string | undefined;
|
|
7335
|
+
publicKeyHash?: string | undefined;
|
|
7336
|
+
privateKey?: string | undefined;
|
|
7318
7337
|
}> | undefined;
|
|
7319
7338
|
faucet?: {
|
|
7320
7339
|
pkh: string;
|
|
@@ -7326,7 +7345,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7326
7345
|
} | undefined;
|
|
7327
7346
|
label: string;
|
|
7328
7347
|
rpcUrl: string;
|
|
7329
|
-
protocol: string;
|
|
7330
7348
|
}> | undefined;
|
|
7331
7349
|
accounts?: Record<string, string> | undefined;
|
|
7332
7350
|
contracts?: Record<string, {
|
|
@@ -7460,19 +7478,21 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7460
7478
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7461
7479
|
label: z.ZodString;
|
|
7462
7480
|
rpcUrl: z.ZodString;
|
|
7463
|
-
protocol: z.ZodString;
|
|
7464
7481
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7465
|
-
publicKey: z.ZodString
|
|
7466
|
-
publicKeyHash: z.ZodString
|
|
7467
|
-
privateKey: z.ZodString
|
|
7482
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
7483
|
+
publicKeyHash: z.ZodOptional<z.ZodString>;
|
|
7484
|
+
privateKey: z.ZodOptional<z.ZodString>;
|
|
7485
|
+
mnemonic: z.ZodOptional<z.ZodString>;
|
|
7468
7486
|
}, "strip", z.ZodTypeAny, {
|
|
7469
|
-
|
|
7470
|
-
|
|
7471
|
-
|
|
7487
|
+
mnemonic?: string | undefined;
|
|
7488
|
+
publicKey?: string | undefined;
|
|
7489
|
+
publicKeyHash?: string | undefined;
|
|
7490
|
+
privateKey?: string | undefined;
|
|
7472
7491
|
}, {
|
|
7473
|
-
|
|
7474
|
-
|
|
7475
|
-
|
|
7492
|
+
mnemonic?: string | undefined;
|
|
7493
|
+
publicKey?: string | undefined;
|
|
7494
|
+
publicKeyHash?: string | undefined;
|
|
7495
|
+
privateKey?: string | undefined;
|
|
7476
7496
|
}>>>;
|
|
7477
7497
|
faucet: z.ZodOptional<z.ZodObject<{
|
|
7478
7498
|
pkh: z.ZodString;
|
|
@@ -7498,9 +7518,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7498
7518
|
}>>;
|
|
7499
7519
|
}, "strip", z.ZodTypeAny, {
|
|
7500
7520
|
accounts?: Record<string, {
|
|
7501
|
-
|
|
7502
|
-
|
|
7503
|
-
|
|
7521
|
+
mnemonic?: string | undefined;
|
|
7522
|
+
publicKey?: string | undefined;
|
|
7523
|
+
publicKeyHash?: string | undefined;
|
|
7524
|
+
privateKey?: string | undefined;
|
|
7504
7525
|
}> | undefined;
|
|
7505
7526
|
faucet?: {
|
|
7506
7527
|
pkh: string;
|
|
@@ -7512,12 +7533,12 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7512
7533
|
} | undefined;
|
|
7513
7534
|
label: string;
|
|
7514
7535
|
rpcUrl: string;
|
|
7515
|
-
protocol: string;
|
|
7516
7536
|
}, {
|
|
7517
7537
|
accounts?: Record<string, {
|
|
7518
|
-
|
|
7519
|
-
|
|
7520
|
-
|
|
7538
|
+
mnemonic?: string | undefined;
|
|
7539
|
+
publicKey?: string | undefined;
|
|
7540
|
+
publicKeyHash?: string | undefined;
|
|
7541
|
+
privateKey?: string | undefined;
|
|
7521
7542
|
}> | undefined;
|
|
7522
7543
|
faucet?: {
|
|
7523
7544
|
pkh: string;
|
|
@@ -7529,13 +7550,11 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7529
7550
|
} | undefined;
|
|
7530
7551
|
label: string;
|
|
7531
7552
|
rpcUrl: string;
|
|
7532
|
-
protocol: string;
|
|
7533
7553
|
}>>>;
|
|
7534
7554
|
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
7535
7555
|
label: z.ZodString;
|
|
7536
7556
|
rpcUrl: z.ZodString;
|
|
7537
|
-
protocol: z.ZodString
|
|
7538
|
-
attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
7557
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
7539
7558
|
plugin: z.ZodOptional<z.ZodString>;
|
|
7540
7559
|
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
7541
7560
|
encryptedKey: z.ZodString;
|
|
@@ -7563,6 +7582,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7563
7582
|
postgresqlPort?: number | undefined;
|
|
7564
7583
|
apiPort?: number | undefined;
|
|
7565
7584
|
}>>;
|
|
7585
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
7566
7586
|
}, "strip", z.ZodTypeAny, {
|
|
7567
7587
|
plugin?: string | undefined;
|
|
7568
7588
|
accounts?: Record<string, string | {
|
|
@@ -7570,15 +7590,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7570
7590
|
encryptedKey: string;
|
|
7571
7591
|
secretKey: string;
|
|
7572
7592
|
}> | undefined;
|
|
7573
|
-
|
|
7593
|
+
protocol?: string | undefined;
|
|
7574
7594
|
tzkt?: {
|
|
7575
7595
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
7576
7596
|
postgresqlPort?: number | undefined;
|
|
7577
7597
|
apiPort?: number | undefined;
|
|
7578
7598
|
} | undefined;
|
|
7599
|
+
annotations?: Record<string, unknown> | undefined;
|
|
7579
7600
|
label: string;
|
|
7580
7601
|
rpcUrl: string;
|
|
7581
|
-
protocol: string;
|
|
7582
7602
|
}, {
|
|
7583
7603
|
plugin?: string | undefined;
|
|
7584
7604
|
accounts?: Record<string, string | {
|
|
@@ -7586,15 +7606,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7586
7606
|
encryptedKey: string;
|
|
7587
7607
|
secretKey: string;
|
|
7588
7608
|
}> | undefined;
|
|
7589
|
-
|
|
7609
|
+
protocol?: string | undefined;
|
|
7590
7610
|
tzkt?: {
|
|
7591
7611
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
7592
7612
|
postgresqlPort?: number | undefined;
|
|
7593
7613
|
apiPort?: number | undefined;
|
|
7594
7614
|
} | undefined;
|
|
7615
|
+
annotations?: Record<string, unknown> | undefined;
|
|
7595
7616
|
label: string;
|
|
7596
7617
|
rpcUrl: string;
|
|
7597
|
-
protocol: string;
|
|
7598
7618
|
}>>>;
|
|
7599
7619
|
environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
7600
7620
|
networks: z.ZodArray<z.ZodString, "many">;
|
|
@@ -7654,15 +7674,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7654
7674
|
encryptedKey: string;
|
|
7655
7675
|
secretKey: string;
|
|
7656
7676
|
}> | undefined;
|
|
7657
|
-
|
|
7677
|
+
protocol?: string | undefined;
|
|
7658
7678
|
tzkt?: {
|
|
7659
7679
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
7660
7680
|
postgresqlPort?: number | undefined;
|
|
7661
7681
|
apiPort?: number | undefined;
|
|
7662
7682
|
} | undefined;
|
|
7683
|
+
annotations?: Record<string, unknown> | undefined;
|
|
7663
7684
|
label: string;
|
|
7664
7685
|
rpcUrl: string;
|
|
7665
|
-
protocol: string;
|
|
7666
7686
|
}> | undefined;
|
|
7667
7687
|
language?: "en" | "fr" | undefined;
|
|
7668
7688
|
plugins?: {
|
|
@@ -7673,9 +7693,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7673
7693
|
artifactsDir?: string | undefined;
|
|
7674
7694
|
network?: Record<string, {
|
|
7675
7695
|
accounts?: Record<string, {
|
|
7676
|
-
|
|
7677
|
-
|
|
7678
|
-
|
|
7696
|
+
mnemonic?: string | undefined;
|
|
7697
|
+
publicKey?: string | undefined;
|
|
7698
|
+
publicKeyHash?: string | undefined;
|
|
7699
|
+
privateKey?: string | undefined;
|
|
7679
7700
|
}> | undefined;
|
|
7680
7701
|
faucet?: {
|
|
7681
7702
|
pkh: string;
|
|
@@ -7687,7 +7708,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7687
7708
|
} | undefined;
|
|
7688
7709
|
label: string;
|
|
7689
7710
|
rpcUrl: string;
|
|
7690
|
-
protocol: string;
|
|
7691
7711
|
}> | undefined;
|
|
7692
7712
|
accounts?: Record<string, string> | undefined;
|
|
7693
7713
|
contracts?: Record<string, {
|
|
@@ -7718,15 +7738,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7718
7738
|
encryptedKey: string;
|
|
7719
7739
|
secretKey: string;
|
|
7720
7740
|
}> | undefined;
|
|
7721
|
-
|
|
7741
|
+
protocol?: string | undefined;
|
|
7722
7742
|
tzkt?: {
|
|
7723
7743
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
7724
7744
|
postgresqlPort?: number | undefined;
|
|
7725
7745
|
apiPort?: number | undefined;
|
|
7726
7746
|
} | undefined;
|
|
7747
|
+
annotations?: Record<string, unknown> | undefined;
|
|
7727
7748
|
label: string;
|
|
7728
7749
|
rpcUrl: string;
|
|
7729
|
-
protocol: string;
|
|
7730
7750
|
}> | undefined;
|
|
7731
7751
|
language?: "en" | "fr" | undefined;
|
|
7732
7752
|
plugins?: {
|
|
@@ -7737,9 +7757,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7737
7757
|
artifactsDir?: string | undefined;
|
|
7738
7758
|
network?: Record<string, {
|
|
7739
7759
|
accounts?: Record<string, {
|
|
7740
|
-
|
|
7741
|
-
|
|
7742
|
-
|
|
7760
|
+
mnemonic?: string | undefined;
|
|
7761
|
+
publicKey?: string | undefined;
|
|
7762
|
+
publicKeyHash?: string | undefined;
|
|
7763
|
+
privateKey?: string | undefined;
|
|
7743
7764
|
}> | undefined;
|
|
7744
7765
|
faucet?: {
|
|
7745
7766
|
pkh: string;
|
|
@@ -7751,7 +7772,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7751
7772
|
} | undefined;
|
|
7752
7773
|
label: string;
|
|
7753
7774
|
rpcUrl: string;
|
|
7754
|
-
protocol: string;
|
|
7755
7775
|
}> | undefined;
|
|
7756
7776
|
accounts?: Record<string, string> | undefined;
|
|
7757
7777
|
contracts?: Record<string, {
|
|
@@ -7800,15 +7820,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7800
7820
|
encryptedKey: string;
|
|
7801
7821
|
secretKey: string;
|
|
7802
7822
|
}> | undefined;
|
|
7803
|
-
|
|
7823
|
+
protocol?: string | undefined;
|
|
7804
7824
|
tzkt?: {
|
|
7805
7825
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
7806
7826
|
postgresqlPort?: number | undefined;
|
|
7807
7827
|
apiPort?: number | undefined;
|
|
7808
7828
|
} | undefined;
|
|
7829
|
+
annotations?: Record<string, unknown> | undefined;
|
|
7809
7830
|
label: string;
|
|
7810
7831
|
rpcUrl: string;
|
|
7811
|
-
protocol: string;
|
|
7812
7832
|
}> | undefined;
|
|
7813
7833
|
language?: "en" | "fr" | undefined;
|
|
7814
7834
|
plugins?: {
|
|
@@ -7819,9 +7839,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7819
7839
|
artifactsDir?: string | undefined;
|
|
7820
7840
|
network?: Record<string, {
|
|
7821
7841
|
accounts?: Record<string, {
|
|
7822
|
-
|
|
7823
|
-
|
|
7824
|
-
|
|
7842
|
+
mnemonic?: string | undefined;
|
|
7843
|
+
publicKey?: string | undefined;
|
|
7844
|
+
publicKeyHash?: string | undefined;
|
|
7845
|
+
privateKey?: string | undefined;
|
|
7825
7846
|
}> | undefined;
|
|
7826
7847
|
faucet?: {
|
|
7827
7848
|
pkh: string;
|
|
@@ -7833,7 +7854,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7833
7854
|
} | undefined;
|
|
7834
7855
|
label: string;
|
|
7835
7856
|
rpcUrl: string;
|
|
7836
|
-
protocol: string;
|
|
7837
7857
|
}> | undefined;
|
|
7838
7858
|
accounts?: Record<string, string> | undefined;
|
|
7839
7859
|
contracts?: Record<string, {
|
|
@@ -7882,15 +7902,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7882
7902
|
encryptedKey: string;
|
|
7883
7903
|
secretKey: string;
|
|
7884
7904
|
}> | undefined;
|
|
7885
|
-
|
|
7905
|
+
protocol?: string | undefined;
|
|
7886
7906
|
tzkt?: {
|
|
7887
7907
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
7888
7908
|
postgresqlPort?: number | undefined;
|
|
7889
7909
|
apiPort?: number | undefined;
|
|
7890
7910
|
} | undefined;
|
|
7911
|
+
annotations?: Record<string, unknown> | undefined;
|
|
7891
7912
|
label: string;
|
|
7892
7913
|
rpcUrl: string;
|
|
7893
|
-
protocol: string;
|
|
7894
7914
|
}> | undefined;
|
|
7895
7915
|
language?: "en" | "fr" | undefined;
|
|
7896
7916
|
plugins?: {
|
|
@@ -7901,9 +7921,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7901
7921
|
artifactsDir?: string | undefined;
|
|
7902
7922
|
network?: Record<string, {
|
|
7903
7923
|
accounts?: Record<string, {
|
|
7904
|
-
|
|
7905
|
-
|
|
7906
|
-
|
|
7924
|
+
mnemonic?: string | undefined;
|
|
7925
|
+
publicKey?: string | undefined;
|
|
7926
|
+
publicKeyHash?: string | undefined;
|
|
7927
|
+
privateKey?: string | undefined;
|
|
7907
7928
|
}> | undefined;
|
|
7908
7929
|
faucet?: {
|
|
7909
7930
|
pkh: string;
|
|
@@ -7915,7 +7936,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
7915
7936
|
} | undefined;
|
|
7916
7937
|
label: string;
|
|
7917
7938
|
rpcUrl: string;
|
|
7918
|
-
protocol: string;
|
|
7919
7939
|
}> | undefined;
|
|
7920
7940
|
accounts?: Record<string, string> | undefined;
|
|
7921
7941
|
contracts?: Record<string, {
|
|
@@ -8004,15 +8024,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
8004
8024
|
encryptedKey: string;
|
|
8005
8025
|
secretKey: string;
|
|
8006
8026
|
}> | undefined;
|
|
8007
|
-
|
|
8027
|
+
protocol?: string | undefined;
|
|
8008
8028
|
tzkt?: {
|
|
8009
8029
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
8010
8030
|
postgresqlPort?: number | undefined;
|
|
8011
8031
|
apiPort?: number | undefined;
|
|
8012
8032
|
} | undefined;
|
|
8033
|
+
annotations?: Record<string, unknown> | undefined;
|
|
8013
8034
|
label: string;
|
|
8014
8035
|
rpcUrl: string;
|
|
8015
|
-
protocol: string;
|
|
8016
8036
|
}> | undefined;
|
|
8017
8037
|
language?: "en" | "fr" | undefined;
|
|
8018
8038
|
plugins?: {
|
|
@@ -8023,9 +8043,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
8023
8043
|
artifactsDir?: string | undefined;
|
|
8024
8044
|
network?: Record<string, {
|
|
8025
8045
|
accounts?: Record<string, {
|
|
8026
|
-
|
|
8027
|
-
|
|
8028
|
-
|
|
8046
|
+
mnemonic?: string | undefined;
|
|
8047
|
+
publicKey?: string | undefined;
|
|
8048
|
+
publicKeyHash?: string | undefined;
|
|
8049
|
+
privateKey?: string | undefined;
|
|
8029
8050
|
}> | undefined;
|
|
8030
8051
|
faucet?: {
|
|
8031
8052
|
pkh: string;
|
|
@@ -8037,7 +8058,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
8037
8058
|
} | undefined;
|
|
8038
8059
|
label: string;
|
|
8039
8060
|
rpcUrl: string;
|
|
8040
|
-
protocol: string;
|
|
8041
8061
|
}> | undefined;
|
|
8042
8062
|
accounts?: Record<string, string> | undefined;
|
|
8043
8063
|
contracts?: Record<string, {
|
|
@@ -8116,15 +8136,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
8116
8136
|
encryptedKey: string;
|
|
8117
8137
|
secretKey: string;
|
|
8118
8138
|
}> | undefined;
|
|
8119
|
-
|
|
8139
|
+
protocol?: string | undefined;
|
|
8120
8140
|
tzkt?: {
|
|
8121
8141
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
8122
8142
|
postgresqlPort?: number | undefined;
|
|
8123
8143
|
apiPort?: number | undefined;
|
|
8124
8144
|
} | undefined;
|
|
8145
|
+
annotations?: Record<string, unknown> | undefined;
|
|
8125
8146
|
label: string;
|
|
8126
8147
|
rpcUrl: string;
|
|
8127
|
-
protocol: string;
|
|
8128
8148
|
}> | undefined;
|
|
8129
8149
|
language?: "en" | "fr" | undefined;
|
|
8130
8150
|
plugins?: {
|
|
@@ -8135,9 +8155,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
8135
8155
|
artifactsDir?: string | undefined;
|
|
8136
8156
|
network?: Record<string, {
|
|
8137
8157
|
accounts?: Record<string, {
|
|
8138
|
-
|
|
8139
|
-
|
|
8140
|
-
|
|
8158
|
+
mnemonic?: string | undefined;
|
|
8159
|
+
publicKey?: string | undefined;
|
|
8160
|
+
publicKeyHash?: string | undefined;
|
|
8161
|
+
privateKey?: string | undefined;
|
|
8141
8162
|
}> | undefined;
|
|
8142
8163
|
faucet?: {
|
|
8143
8164
|
pkh: string;
|
|
@@ -8149,7 +8170,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
8149
8170
|
} | undefined;
|
|
8150
8171
|
label: string;
|
|
8151
8172
|
rpcUrl: string;
|
|
8152
|
-
protocol: string;
|
|
8153
8173
|
}> | undefined;
|
|
8154
8174
|
accounts?: Record<string, string> | undefined;
|
|
8155
8175
|
contracts?: Record<string, {
|
|
@@ -8228,15 +8248,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
8228
8248
|
encryptedKey: string;
|
|
8229
8249
|
secretKey: string;
|
|
8230
8250
|
}> | undefined;
|
|
8231
|
-
|
|
8251
|
+
protocol?: string | undefined;
|
|
8232
8252
|
tzkt?: {
|
|
8233
8253
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
8234
8254
|
postgresqlPort?: number | undefined;
|
|
8235
8255
|
apiPort?: number | undefined;
|
|
8236
8256
|
} | undefined;
|
|
8257
|
+
annotations?: Record<string, unknown> | undefined;
|
|
8237
8258
|
label: string;
|
|
8238
8259
|
rpcUrl: string;
|
|
8239
|
-
protocol: string;
|
|
8240
8260
|
}> | undefined;
|
|
8241
8261
|
language?: "en" | "fr" | undefined;
|
|
8242
8262
|
plugins?: {
|
|
@@ -8247,9 +8267,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
8247
8267
|
artifactsDir?: string | undefined;
|
|
8248
8268
|
network?: Record<string, {
|
|
8249
8269
|
accounts?: Record<string, {
|
|
8250
|
-
|
|
8251
|
-
|
|
8252
|
-
|
|
8270
|
+
mnemonic?: string | undefined;
|
|
8271
|
+
publicKey?: string | undefined;
|
|
8272
|
+
publicKeyHash?: string | undefined;
|
|
8273
|
+
privateKey?: string | undefined;
|
|
8253
8274
|
}> | undefined;
|
|
8254
8275
|
faucet?: {
|
|
8255
8276
|
pkh: string;
|
|
@@ -8261,7 +8282,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
8261
8282
|
} | undefined;
|
|
8262
8283
|
label: string;
|
|
8263
8284
|
rpcUrl: string;
|
|
8264
|
-
protocol: string;
|
|
8265
8285
|
}> | undefined;
|
|
8266
8286
|
accounts?: Record<string, string> | undefined;
|
|
8267
8287
|
contracts?: Record<string, {
|
|
@@ -8336,15 +8356,15 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
8336
8356
|
encryptedKey: string;
|
|
8337
8357
|
secretKey: string;
|
|
8338
8358
|
}> | undefined;
|
|
8339
|
-
|
|
8359
|
+
protocol?: string | undefined;
|
|
8340
8360
|
tzkt?: {
|
|
8341
8361
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
8342
8362
|
postgresqlPort?: number | undefined;
|
|
8343
8363
|
apiPort?: number | undefined;
|
|
8344
8364
|
} | undefined;
|
|
8365
|
+
annotations?: Record<string, unknown> | undefined;
|
|
8345
8366
|
label: string;
|
|
8346
8367
|
rpcUrl: string;
|
|
8347
|
-
protocol: string;
|
|
8348
8368
|
}> | undefined;
|
|
8349
8369
|
language?: "en" | "fr" | undefined;
|
|
8350
8370
|
plugins?: {
|
|
@@ -8355,9 +8375,10 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
8355
8375
|
artifactsDir?: string | undefined;
|
|
8356
8376
|
network?: Record<string, {
|
|
8357
8377
|
accounts?: Record<string, {
|
|
8358
|
-
|
|
8359
|
-
|
|
8360
|
-
|
|
8378
|
+
mnemonic?: string | undefined;
|
|
8379
|
+
publicKey?: string | undefined;
|
|
8380
|
+
publicKeyHash?: string | undefined;
|
|
8381
|
+
privateKey?: string | undefined;
|
|
8361
8382
|
}> | undefined;
|
|
8362
8383
|
faucet?: {
|
|
8363
8384
|
pkh: string;
|
|
@@ -8369,7 +8390,6 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
8369
8390
|
} | undefined;
|
|
8370
8391
|
label: string;
|
|
8371
8392
|
rpcUrl: string;
|
|
8372
|
-
protocol: string;
|
|
8373
8393
|
}> | undefined;
|
|
8374
8394
|
accounts?: Record<string, string> | undefined;
|
|
8375
8395
|
contracts?: Record<string, {
|