@taqueria/protocol 0.25.19-rc → 0.25.21-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.
Files changed (54) hide show
  1. package/EphemeralState.d.ts +100 -96
  2. package/EphemeralState.d.ts.map +1 -1
  3. package/ParsedPluginInfo.d.ts +250 -240
  4. package/ParsedPluginInfo.d.ts.map +1 -1
  5. package/PluginInfo.d.ts +300 -288
  6. package/PluginInfo.d.ts.map +1 -1
  7. package/PluginSchema.d.ts +578 -558
  8. package/PluginSchema.d.ts.map +1 -1
  9. package/out/types/Config.d.ts +158 -150
  10. package/out/types/Config.d.ts.map +1 -1
  11. package/out/types/EphemeralState.d.ts +800 -768
  12. package/out/types/EphemeralState.d.ts.map +1 -1
  13. package/out/types/LoadedConfig.d.ts +158 -150
  14. package/out/types/LoadedConfig.d.ts.map +1 -1
  15. package/out/types/NetworkAccountConfig.d.ts +52 -39
  16. package/out/types/NetworkAccountConfig.d.ts.map +1 -1
  17. package/out/types/NetworkConfig.d.ts +84 -76
  18. package/out/types/NetworkConfig.d.ts.map +1 -1
  19. package/out/types/Operation.d.ts +254 -246
  20. package/out/types/Operation.d.ts.map +1 -1
  21. package/out/types/ParsedConfig.d.ts +182 -174
  22. package/out/types/ParsedConfig.d.ts.map +1 -1
  23. package/out/types/ParsedOperation.d.ts +200 -192
  24. package/out/types/ParsedOperation.d.ts.map +1 -1
  25. package/out/types/ParsedTemplate.d.ts +200 -192
  26. package/out/types/ParsedTemplate.d.ts.map +1 -1
  27. package/out/types/PluginInfo.d.ts +400 -384
  28. package/out/types/PluginInfo.d.ts.map +1 -1
  29. package/out/types/PluginSchema.d.ts +1366 -1326
  30. package/out/types/PluginSchema.d.ts.map +1 -1
  31. package/out/types/ProxyTaskArgs.d.ts +206 -198
  32. package/out/types/ProxyTaskArgs.d.ts.map +1 -1
  33. package/out/types/ProxyTemplateArgs.d.ts +206 -198
  34. package/out/types/ProxyTemplateArgs.d.ts.map +1 -1
  35. package/out/types/RequestArgs.d.ts +206 -198
  36. package/out/types/RequestArgs.d.ts.map +1 -1
  37. package/out/types/SandboxConfig.d.ts +26 -26
  38. package/out/types/Template.d.ts +254 -246
  39. package/out/types/Template.d.ts.map +1 -1
  40. package/out/types-strict.d.js.map +1 -1
  41. package/out/types-strict.d.ts +6 -6
  42. package/out/types-strict.d.ts.map +1 -1
  43. package/out/types-strict.js.map +1 -1
  44. package/out/types-zod.d.js.map +1 -1
  45. package/out/types-zod.d.ts +1166 -1119
  46. package/out/types-zod.d.ts.map +1 -1
  47. package/out/types-zod.js +7 -7
  48. package/out/types-zod.js.map +1 -1
  49. package/out/types-zod.mjs +7 -7
  50. package/out/types-zod.mjs.map +1 -1
  51. package/package.json +1 -1
  52. package/types.d.ts +6 -6
  53. package/types.d.ts.map +1 -1
  54. package/types.js.map +1 -1
package/PluginInfo.d.ts CHANGED
@@ -286,19 +286,21 @@ export declare const rawSchema: z.ZodObject<{
286
286
  network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
287
287
  label: z.ZodString;
288
288
  rpcUrl: z.ZodString;
289
- protocol: z.ZodString;
290
289
  accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
291
- publicKey: z.ZodString;
292
- publicKeyHash: z.ZodString;
293
- privateKey: z.ZodString;
290
+ publicKey: z.ZodOptional<z.ZodString>;
291
+ publicKeyHash: z.ZodOptional<z.ZodString>;
292
+ privateKey: z.ZodOptional<z.ZodString>;
293
+ mnemonic: z.ZodOptional<z.ZodString>;
294
294
  }, "strip", z.ZodTypeAny, {
295
- publicKey: string;
296
- publicKeyHash: string;
297
- privateKey: string;
295
+ mnemonic?: string | undefined;
296
+ publicKey?: string | undefined;
297
+ publicKeyHash?: string | undefined;
298
+ privateKey?: string | undefined;
298
299
  }, {
299
- publicKey: string;
300
- publicKeyHash: string;
301
- privateKey: string;
300
+ mnemonic?: string | undefined;
301
+ publicKey?: string | undefined;
302
+ publicKeyHash?: string | undefined;
303
+ privateKey?: string | undefined;
302
304
  }>>>;
303
305
  faucet: z.ZodOptional<z.ZodObject<{
304
306
  pkh: z.ZodString;
@@ -324,9 +326,10 @@ export declare const rawSchema: z.ZodObject<{
324
326
  }>>;
325
327
  }, "strip", z.ZodTypeAny, {
326
328
  accounts?: Record<string, {
327
- publicKey: string;
328
- publicKeyHash: string;
329
- privateKey: string;
329
+ mnemonic?: string | undefined;
330
+ publicKey?: string | undefined;
331
+ publicKeyHash?: string | undefined;
332
+ privateKey?: string | undefined;
330
333
  }> | undefined;
331
334
  faucet?: {
332
335
  pkh: string;
@@ -338,12 +341,12 @@ export declare const rawSchema: z.ZodObject<{
338
341
  } | undefined;
339
342
  label: string;
340
343
  rpcUrl: string;
341
- protocol: string;
342
344
  }, {
343
345
  accounts?: Record<string, {
344
- publicKey: string;
345
- publicKeyHash: string;
346
- privateKey: string;
346
+ mnemonic?: string | undefined;
347
+ publicKey?: string | undefined;
348
+ publicKeyHash?: string | undefined;
349
+ privateKey?: string | undefined;
347
350
  }> | undefined;
348
351
  faucet?: {
349
352
  pkh: string;
@@ -355,13 +358,11 @@ export declare const rawSchema: z.ZodObject<{
355
358
  } | undefined;
356
359
  label: string;
357
360
  rpcUrl: string;
358
- protocol: string;
359
361
  }>>>;
360
362
  sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
361
363
  label: z.ZodString;
362
364
  rpcUrl: z.ZodString;
363
- protocol: z.ZodString;
364
- attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
365
+ protocol: z.ZodOptional<z.ZodString>;
365
366
  plugin: z.ZodOptional<z.ZodString>;
366
367
  accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
367
368
  encryptedKey: z.ZodString;
@@ -389,6 +390,7 @@ export declare const rawSchema: z.ZodObject<{
389
390
  postgresqlPort?: number | undefined;
390
391
  apiPort?: number | undefined;
391
392
  }>>;
393
+ annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
392
394
  }, "strip", z.ZodTypeAny, {
393
395
  plugin?: string | undefined;
394
396
  accounts?: Record<string, string | {
@@ -396,15 +398,15 @@ export declare const rawSchema: z.ZodObject<{
396
398
  encryptedKey: string;
397
399
  secretKey: string;
398
400
  }> | undefined;
399
- attributes?: string | number | boolean | undefined;
401
+ protocol?: string | undefined;
400
402
  tzkt?: {
401
403
  disableAutostartWithSandbox?: boolean | undefined;
402
404
  postgresqlPort?: number | undefined;
403
405
  apiPort?: number | undefined;
404
406
  } | undefined;
407
+ annotations?: Record<string, unknown> | undefined;
405
408
  label: string;
406
409
  rpcUrl: string;
407
- protocol: string;
408
410
  }, {
409
411
  plugin?: string | undefined;
410
412
  accounts?: Record<string, string | {
@@ -412,15 +414,15 @@ export declare const rawSchema: z.ZodObject<{
412
414
  encryptedKey: string;
413
415
  secretKey: string;
414
416
  }> | undefined;
415
- attributes?: string | number | boolean | undefined;
417
+ protocol?: string | undefined;
416
418
  tzkt?: {
417
419
  disableAutostartWithSandbox?: boolean | undefined;
418
420
  postgresqlPort?: number | undefined;
419
421
  apiPort?: number | undefined;
420
422
  } | undefined;
423
+ annotations?: Record<string, unknown> | undefined;
421
424
  label: string;
422
425
  rpcUrl: string;
423
- protocol: string;
424
426
  }>>>;
425
427
  environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
426
428
  networks: z.ZodArray<z.ZodString, "many">;
@@ -480,15 +482,15 @@ export declare const rawSchema: z.ZodObject<{
480
482
  encryptedKey: string;
481
483
  secretKey: string;
482
484
  }> | undefined;
483
- attributes?: string | number | boolean | undefined;
485
+ protocol?: string | undefined;
484
486
  tzkt?: {
485
487
  disableAutostartWithSandbox?: boolean | undefined;
486
488
  postgresqlPort?: number | undefined;
487
489
  apiPort?: number | undefined;
488
490
  } | undefined;
491
+ annotations?: Record<string, unknown> | undefined;
489
492
  label: string;
490
493
  rpcUrl: string;
491
- protocol: string;
492
494
  }> | undefined;
493
495
  language?: "en" | "fr" | undefined;
494
496
  plugins?: {
@@ -499,9 +501,10 @@ export declare const rawSchema: z.ZodObject<{
499
501
  artifactsDir?: string | undefined;
500
502
  network?: Record<string, {
501
503
  accounts?: Record<string, {
502
- publicKey: string;
503
- publicKeyHash: string;
504
- privateKey: string;
504
+ mnemonic?: string | undefined;
505
+ publicKey?: string | undefined;
506
+ publicKeyHash?: string | undefined;
507
+ privateKey?: string | undefined;
505
508
  }> | undefined;
506
509
  faucet?: {
507
510
  pkh: string;
@@ -513,7 +516,6 @@ export declare const rawSchema: z.ZodObject<{
513
516
  } | undefined;
514
517
  label: string;
515
518
  rpcUrl: string;
516
- protocol: string;
517
519
  }> | undefined;
518
520
  accounts?: Record<string, string> | undefined;
519
521
  contracts?: Record<string, {
@@ -544,15 +546,15 @@ export declare const rawSchema: z.ZodObject<{
544
546
  encryptedKey: string;
545
547
  secretKey: string;
546
548
  }> | undefined;
547
- attributes?: string | number | boolean | undefined;
549
+ protocol?: string | undefined;
548
550
  tzkt?: {
549
551
  disableAutostartWithSandbox?: boolean | undefined;
550
552
  postgresqlPort?: number | undefined;
551
553
  apiPort?: number | undefined;
552
554
  } | undefined;
555
+ annotations?: Record<string, unknown> | undefined;
553
556
  label: string;
554
557
  rpcUrl: string;
555
- protocol: string;
556
558
  }> | undefined;
557
559
  language?: "en" | "fr" | undefined;
558
560
  plugins?: {
@@ -563,9 +565,10 @@ export declare const rawSchema: z.ZodObject<{
563
565
  artifactsDir?: string | undefined;
564
566
  network?: Record<string, {
565
567
  accounts?: Record<string, {
566
- publicKey: string;
567
- publicKeyHash: string;
568
- privateKey: string;
568
+ mnemonic?: string | undefined;
569
+ publicKey?: string | undefined;
570
+ publicKeyHash?: string | undefined;
571
+ privateKey?: string | undefined;
569
572
  }> | undefined;
570
573
  faucet?: {
571
574
  pkh: string;
@@ -577,7 +580,6 @@ export declare const rawSchema: z.ZodObject<{
577
580
  } | undefined;
578
581
  label: string;
579
582
  rpcUrl: string;
580
- protocol: string;
581
583
  }> | undefined;
582
584
  accounts?: Record<string, string> | undefined;
583
585
  contracts?: Record<string, {
@@ -626,15 +628,15 @@ export declare const rawSchema: z.ZodObject<{
626
628
  encryptedKey: string;
627
629
  secretKey: string;
628
630
  }> | undefined;
629
- attributes?: string | number | boolean | undefined;
631
+ protocol?: string | undefined;
630
632
  tzkt?: {
631
633
  disableAutostartWithSandbox?: boolean | undefined;
632
634
  postgresqlPort?: number | undefined;
633
635
  apiPort?: number | undefined;
634
636
  } | undefined;
637
+ annotations?: Record<string, unknown> | undefined;
635
638
  label: string;
636
639
  rpcUrl: string;
637
- protocol: string;
638
640
  }> | undefined;
639
641
  language?: "en" | "fr" | undefined;
640
642
  plugins?: {
@@ -645,9 +647,10 @@ export declare const rawSchema: z.ZodObject<{
645
647
  artifactsDir?: string | undefined;
646
648
  network?: Record<string, {
647
649
  accounts?: Record<string, {
648
- publicKey: string;
649
- publicKeyHash: string;
650
- privateKey: string;
650
+ mnemonic?: string | undefined;
651
+ publicKey?: string | undefined;
652
+ publicKeyHash?: string | undefined;
653
+ privateKey?: string | undefined;
651
654
  }> | undefined;
652
655
  faucet?: {
653
656
  pkh: string;
@@ -659,7 +662,6 @@ export declare const rawSchema: z.ZodObject<{
659
662
  } | undefined;
660
663
  label: string;
661
664
  rpcUrl: string;
662
- protocol: string;
663
665
  }> | undefined;
664
666
  accounts?: Record<string, string> | undefined;
665
667
  contracts?: Record<string, {
@@ -708,15 +710,15 @@ export declare const rawSchema: z.ZodObject<{
708
710
  encryptedKey: string;
709
711
  secretKey: string;
710
712
  }> | undefined;
711
- attributes?: string | number | boolean | undefined;
713
+ protocol?: string | undefined;
712
714
  tzkt?: {
713
715
  disableAutostartWithSandbox?: boolean | undefined;
714
716
  postgresqlPort?: number | undefined;
715
717
  apiPort?: number | undefined;
716
718
  } | undefined;
719
+ annotations?: Record<string, unknown> | undefined;
717
720
  label: string;
718
721
  rpcUrl: string;
719
- protocol: string;
720
722
  }> | undefined;
721
723
  language?: "en" | "fr" | undefined;
722
724
  plugins?: {
@@ -727,9 +729,10 @@ export declare const rawSchema: z.ZodObject<{
727
729
  artifactsDir?: string | undefined;
728
730
  network?: Record<string, {
729
731
  accounts?: Record<string, {
730
- publicKey: string;
731
- publicKeyHash: string;
732
- privateKey: string;
732
+ mnemonic?: string | undefined;
733
+ publicKey?: string | undefined;
734
+ publicKeyHash?: string | undefined;
735
+ privateKey?: string | undefined;
733
736
  }> | undefined;
734
737
  faucet?: {
735
738
  pkh: string;
@@ -741,7 +744,6 @@ export declare const rawSchema: z.ZodObject<{
741
744
  } | undefined;
742
745
  label: string;
743
746
  rpcUrl: string;
744
- protocol: string;
745
747
  }> | undefined;
746
748
  accounts?: Record<string, string> | undefined;
747
749
  contracts?: Record<string, {
@@ -918,19 +920,21 @@ export declare const rawSchema: z.ZodObject<{
918
920
  network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
919
921
  label: z.ZodString;
920
922
  rpcUrl: z.ZodString;
921
- protocol: z.ZodString;
922
923
  accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
923
- publicKey: z.ZodString;
924
- publicKeyHash: z.ZodString;
925
- privateKey: z.ZodString;
924
+ publicKey: z.ZodOptional<z.ZodString>;
925
+ publicKeyHash: z.ZodOptional<z.ZodString>;
926
+ privateKey: z.ZodOptional<z.ZodString>;
927
+ mnemonic: z.ZodOptional<z.ZodString>;
926
928
  }, "strip", z.ZodTypeAny, {
927
- publicKey: string;
928
- publicKeyHash: string;
929
- privateKey: string;
929
+ mnemonic?: string | undefined;
930
+ publicKey?: string | undefined;
931
+ publicKeyHash?: string | undefined;
932
+ privateKey?: string | undefined;
930
933
  }, {
931
- publicKey: string;
932
- publicKeyHash: string;
933
- privateKey: string;
934
+ mnemonic?: string | undefined;
935
+ publicKey?: string | undefined;
936
+ publicKeyHash?: string | undefined;
937
+ privateKey?: string | undefined;
934
938
  }>>>;
935
939
  faucet: z.ZodOptional<z.ZodObject<{
936
940
  pkh: z.ZodString;
@@ -956,9 +960,10 @@ export declare const rawSchema: z.ZodObject<{
956
960
  }>>;
957
961
  }, "strip", z.ZodTypeAny, {
958
962
  accounts?: Record<string, {
959
- publicKey: string;
960
- publicKeyHash: string;
961
- privateKey: string;
963
+ mnemonic?: string | undefined;
964
+ publicKey?: string | undefined;
965
+ publicKeyHash?: string | undefined;
966
+ privateKey?: string | undefined;
962
967
  }> | undefined;
963
968
  faucet?: {
964
969
  pkh: string;
@@ -970,12 +975,12 @@ export declare const rawSchema: z.ZodObject<{
970
975
  } | undefined;
971
976
  label: string;
972
977
  rpcUrl: string;
973
- protocol: string;
974
978
  }, {
975
979
  accounts?: Record<string, {
976
- publicKey: string;
977
- publicKeyHash: string;
978
- privateKey: string;
980
+ mnemonic?: string | undefined;
981
+ publicKey?: string | undefined;
982
+ publicKeyHash?: string | undefined;
983
+ privateKey?: string | undefined;
979
984
  }> | undefined;
980
985
  faucet?: {
981
986
  pkh: string;
@@ -987,13 +992,11 @@ export declare const rawSchema: z.ZodObject<{
987
992
  } | undefined;
988
993
  label: string;
989
994
  rpcUrl: string;
990
- protocol: string;
991
995
  }>>>;
992
996
  sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
993
997
  label: z.ZodString;
994
998
  rpcUrl: z.ZodString;
995
- protocol: z.ZodString;
996
- attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
999
+ protocol: z.ZodOptional<z.ZodString>;
997
1000
  plugin: z.ZodOptional<z.ZodString>;
998
1001
  accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
999
1002
  encryptedKey: z.ZodString;
@@ -1021,6 +1024,7 @@ export declare const rawSchema: z.ZodObject<{
1021
1024
  postgresqlPort?: number | undefined;
1022
1025
  apiPort?: number | undefined;
1023
1026
  }>>;
1027
+ annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1024
1028
  }, "strip", z.ZodTypeAny, {
1025
1029
  plugin?: string | undefined;
1026
1030
  accounts?: Record<string, string | {
@@ -1028,15 +1032,15 @@ export declare const rawSchema: z.ZodObject<{
1028
1032
  encryptedKey: string;
1029
1033
  secretKey: string;
1030
1034
  }> | undefined;
1031
- attributes?: string | number | boolean | undefined;
1035
+ protocol?: string | undefined;
1032
1036
  tzkt?: {
1033
1037
  disableAutostartWithSandbox?: boolean | undefined;
1034
1038
  postgresqlPort?: number | undefined;
1035
1039
  apiPort?: number | undefined;
1036
1040
  } | undefined;
1041
+ annotations?: Record<string, unknown> | undefined;
1037
1042
  label: string;
1038
1043
  rpcUrl: string;
1039
- protocol: string;
1040
1044
  }, {
1041
1045
  plugin?: string | undefined;
1042
1046
  accounts?: Record<string, string | {
@@ -1044,15 +1048,15 @@ export declare const rawSchema: z.ZodObject<{
1044
1048
  encryptedKey: string;
1045
1049
  secretKey: string;
1046
1050
  }> | undefined;
1047
- attributes?: string | number | boolean | undefined;
1051
+ protocol?: string | undefined;
1048
1052
  tzkt?: {
1049
1053
  disableAutostartWithSandbox?: boolean | undefined;
1050
1054
  postgresqlPort?: number | undefined;
1051
1055
  apiPort?: number | undefined;
1052
1056
  } | undefined;
1057
+ annotations?: Record<string, unknown> | undefined;
1053
1058
  label: string;
1054
1059
  rpcUrl: string;
1055
- protocol: string;
1056
1060
  }>>>;
1057
1061
  environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
1058
1062
  networks: z.ZodArray<z.ZodString, "many">;
@@ -1112,15 +1116,15 @@ export declare const rawSchema: z.ZodObject<{
1112
1116
  encryptedKey: string;
1113
1117
  secretKey: string;
1114
1118
  }> | undefined;
1115
- attributes?: string | number | boolean | undefined;
1119
+ protocol?: string | undefined;
1116
1120
  tzkt?: {
1117
1121
  disableAutostartWithSandbox?: boolean | undefined;
1118
1122
  postgresqlPort?: number | undefined;
1119
1123
  apiPort?: number | undefined;
1120
1124
  } | undefined;
1125
+ annotations?: Record<string, unknown> | undefined;
1121
1126
  label: string;
1122
1127
  rpcUrl: string;
1123
- protocol: string;
1124
1128
  }> | undefined;
1125
1129
  language?: "en" | "fr" | undefined;
1126
1130
  plugins?: {
@@ -1131,9 +1135,10 @@ export declare const rawSchema: z.ZodObject<{
1131
1135
  artifactsDir?: string | undefined;
1132
1136
  network?: Record<string, {
1133
1137
  accounts?: Record<string, {
1134
- publicKey: string;
1135
- publicKeyHash: string;
1136
- privateKey: string;
1138
+ mnemonic?: string | undefined;
1139
+ publicKey?: string | undefined;
1140
+ publicKeyHash?: string | undefined;
1141
+ privateKey?: string | undefined;
1137
1142
  }> | undefined;
1138
1143
  faucet?: {
1139
1144
  pkh: string;
@@ -1145,7 +1150,6 @@ export declare const rawSchema: z.ZodObject<{
1145
1150
  } | undefined;
1146
1151
  label: string;
1147
1152
  rpcUrl: string;
1148
- protocol: string;
1149
1153
  }> | undefined;
1150
1154
  accounts?: Record<string, string> | undefined;
1151
1155
  contracts?: Record<string, {
@@ -1176,15 +1180,15 @@ export declare const rawSchema: z.ZodObject<{
1176
1180
  encryptedKey: string;
1177
1181
  secretKey: string;
1178
1182
  }> | undefined;
1179
- attributes?: string | number | boolean | undefined;
1183
+ protocol?: string | undefined;
1180
1184
  tzkt?: {
1181
1185
  disableAutostartWithSandbox?: boolean | undefined;
1182
1186
  postgresqlPort?: number | undefined;
1183
1187
  apiPort?: number | undefined;
1184
1188
  } | undefined;
1189
+ annotations?: Record<string, unknown> | undefined;
1185
1190
  label: string;
1186
1191
  rpcUrl: string;
1187
- protocol: string;
1188
1192
  }> | undefined;
1189
1193
  language?: "en" | "fr" | undefined;
1190
1194
  plugins?: {
@@ -1195,9 +1199,10 @@ export declare const rawSchema: z.ZodObject<{
1195
1199
  artifactsDir?: string | undefined;
1196
1200
  network?: Record<string, {
1197
1201
  accounts?: Record<string, {
1198
- publicKey: string;
1199
- publicKeyHash: string;
1200
- privateKey: string;
1202
+ mnemonic?: string | undefined;
1203
+ publicKey?: string | undefined;
1204
+ publicKeyHash?: string | undefined;
1205
+ privateKey?: string | undefined;
1201
1206
  }> | undefined;
1202
1207
  faucet?: {
1203
1208
  pkh: string;
@@ -1209,7 +1214,6 @@ export declare const rawSchema: z.ZodObject<{
1209
1214
  } | undefined;
1210
1215
  label: string;
1211
1216
  rpcUrl: string;
1212
- protocol: string;
1213
1217
  }> | undefined;
1214
1218
  accounts?: Record<string, string> | undefined;
1215
1219
  contracts?: Record<string, {
@@ -1258,15 +1262,15 @@ export declare const rawSchema: z.ZodObject<{
1258
1262
  encryptedKey: string;
1259
1263
  secretKey: string;
1260
1264
  }> | undefined;
1261
- attributes?: string | number | boolean | undefined;
1265
+ protocol?: string | undefined;
1262
1266
  tzkt?: {
1263
1267
  disableAutostartWithSandbox?: boolean | undefined;
1264
1268
  postgresqlPort?: number | undefined;
1265
1269
  apiPort?: number | undefined;
1266
1270
  } | undefined;
1271
+ annotations?: Record<string, unknown> | undefined;
1267
1272
  label: string;
1268
1273
  rpcUrl: string;
1269
- protocol: string;
1270
1274
  }> | undefined;
1271
1275
  language?: "en" | "fr" | undefined;
1272
1276
  plugins?: {
@@ -1277,9 +1281,10 @@ export declare const rawSchema: z.ZodObject<{
1277
1281
  artifactsDir?: string | undefined;
1278
1282
  network?: Record<string, {
1279
1283
  accounts?: Record<string, {
1280
- publicKey: string;
1281
- publicKeyHash: string;
1282
- privateKey: string;
1284
+ mnemonic?: string | undefined;
1285
+ publicKey?: string | undefined;
1286
+ publicKeyHash?: string | undefined;
1287
+ privateKey?: string | undefined;
1283
1288
  }> | undefined;
1284
1289
  faucet?: {
1285
1290
  pkh: string;
@@ -1291,7 +1296,6 @@ export declare const rawSchema: z.ZodObject<{
1291
1296
  } | undefined;
1292
1297
  label: string;
1293
1298
  rpcUrl: string;
1294
- protocol: string;
1295
1299
  }> | undefined;
1296
1300
  accounts?: Record<string, string> | undefined;
1297
1301
  contracts?: Record<string, {
@@ -1340,15 +1344,15 @@ export declare const rawSchema: z.ZodObject<{
1340
1344
  encryptedKey: string;
1341
1345
  secretKey: string;
1342
1346
  }> | undefined;
1343
- attributes?: string | number | boolean | undefined;
1347
+ protocol?: string | undefined;
1344
1348
  tzkt?: {
1345
1349
  disableAutostartWithSandbox?: boolean | undefined;
1346
1350
  postgresqlPort?: number | undefined;
1347
1351
  apiPort?: number | undefined;
1348
1352
  } | undefined;
1353
+ annotations?: Record<string, unknown> | undefined;
1349
1354
  label: string;
1350
1355
  rpcUrl: string;
1351
- protocol: string;
1352
1356
  }> | undefined;
1353
1357
  language?: "en" | "fr" | undefined;
1354
1358
  plugins?: {
@@ -1359,9 +1363,10 @@ export declare const rawSchema: z.ZodObject<{
1359
1363
  artifactsDir?: string | undefined;
1360
1364
  network?: Record<string, {
1361
1365
  accounts?: Record<string, {
1362
- publicKey: string;
1363
- publicKeyHash: string;
1364
- privateKey: string;
1366
+ mnemonic?: string | undefined;
1367
+ publicKey?: string | undefined;
1368
+ publicKeyHash?: string | undefined;
1369
+ privateKey?: string | undefined;
1365
1370
  }> | undefined;
1366
1371
  faucet?: {
1367
1372
  pkh: string;
@@ -1373,7 +1378,6 @@ export declare const rawSchema: z.ZodObject<{
1373
1378
  } | undefined;
1374
1379
  label: string;
1375
1380
  rpcUrl: string;
1376
- protocol: string;
1377
1381
  }> | undefined;
1378
1382
  accounts?: Record<string, string> | undefined;
1379
1383
  contracts?: Record<string, {
@@ -1790,19 +1794,21 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
1790
1794
  network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1791
1795
  label: z.ZodString;
1792
1796
  rpcUrl: z.ZodString;
1793
- protocol: z.ZodString;
1794
1797
  accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1795
- publicKey: z.ZodString;
1796
- publicKeyHash: z.ZodString;
1797
- privateKey: z.ZodString;
1798
+ publicKey: z.ZodOptional<z.ZodString>;
1799
+ publicKeyHash: z.ZodOptional<z.ZodString>;
1800
+ privateKey: z.ZodOptional<z.ZodString>;
1801
+ mnemonic: z.ZodOptional<z.ZodString>;
1798
1802
  }, "strip", z.ZodTypeAny, {
1799
- publicKey: string;
1800
- publicKeyHash: string;
1801
- privateKey: string;
1803
+ mnemonic?: string | undefined;
1804
+ publicKey?: string | undefined;
1805
+ publicKeyHash?: string | undefined;
1806
+ privateKey?: string | undefined;
1802
1807
  }, {
1803
- publicKey: string;
1804
- publicKeyHash: string;
1805
- privateKey: string;
1808
+ mnemonic?: string | undefined;
1809
+ publicKey?: string | undefined;
1810
+ publicKeyHash?: string | undefined;
1811
+ privateKey?: string | undefined;
1806
1812
  }>>>;
1807
1813
  faucet: z.ZodOptional<z.ZodObject<{
1808
1814
  pkh: z.ZodString;
@@ -1828,9 +1834,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
1828
1834
  }>>;
1829
1835
  }, "strip", z.ZodTypeAny, {
1830
1836
  accounts?: Record<string, {
1831
- publicKey: string;
1832
- publicKeyHash: string;
1833
- privateKey: string;
1837
+ mnemonic?: string | undefined;
1838
+ publicKey?: string | undefined;
1839
+ publicKeyHash?: string | undefined;
1840
+ privateKey?: string | undefined;
1834
1841
  }> | undefined;
1835
1842
  faucet?: {
1836
1843
  pkh: string;
@@ -1842,12 +1849,12 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
1842
1849
  } | undefined;
1843
1850
  label: string;
1844
1851
  rpcUrl: string;
1845
- protocol: string;
1846
1852
  }, {
1847
1853
  accounts?: Record<string, {
1848
- publicKey: string;
1849
- publicKeyHash: string;
1850
- privateKey: string;
1854
+ mnemonic?: string | undefined;
1855
+ publicKey?: string | undefined;
1856
+ publicKeyHash?: string | undefined;
1857
+ privateKey?: string | undefined;
1851
1858
  }> | undefined;
1852
1859
  faucet?: {
1853
1860
  pkh: string;
@@ -1859,13 +1866,11 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
1859
1866
  } | undefined;
1860
1867
  label: string;
1861
1868
  rpcUrl: string;
1862
- protocol: string;
1863
1869
  }>>>;
1864
1870
  sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
1865
1871
  label: z.ZodString;
1866
1872
  rpcUrl: z.ZodString;
1867
- protocol: z.ZodString;
1868
- attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
1873
+ protocol: z.ZodOptional<z.ZodString>;
1869
1874
  plugin: z.ZodOptional<z.ZodString>;
1870
1875
  accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
1871
1876
  encryptedKey: z.ZodString;
@@ -1893,6 +1898,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
1893
1898
  postgresqlPort?: number | undefined;
1894
1899
  apiPort?: number | undefined;
1895
1900
  }>>;
1901
+ annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
1896
1902
  }, "strip", z.ZodTypeAny, {
1897
1903
  plugin?: string | undefined;
1898
1904
  accounts?: Record<string, string | {
@@ -1900,15 +1906,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
1900
1906
  encryptedKey: string;
1901
1907
  secretKey: string;
1902
1908
  }> | undefined;
1903
- attributes?: string | number | boolean | undefined;
1909
+ protocol?: string | undefined;
1904
1910
  tzkt?: {
1905
1911
  disableAutostartWithSandbox?: boolean | undefined;
1906
1912
  postgresqlPort?: number | undefined;
1907
1913
  apiPort?: number | undefined;
1908
1914
  } | undefined;
1915
+ annotations?: Record<string, unknown> | undefined;
1909
1916
  label: string;
1910
1917
  rpcUrl: string;
1911
- protocol: string;
1912
1918
  }, {
1913
1919
  plugin?: string | undefined;
1914
1920
  accounts?: Record<string, string | {
@@ -1916,15 +1922,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
1916
1922
  encryptedKey: string;
1917
1923
  secretKey: string;
1918
1924
  }> | undefined;
1919
- attributes?: string | number | boolean | undefined;
1925
+ protocol?: string | undefined;
1920
1926
  tzkt?: {
1921
1927
  disableAutostartWithSandbox?: boolean | undefined;
1922
1928
  postgresqlPort?: number | undefined;
1923
1929
  apiPort?: number | undefined;
1924
1930
  } | undefined;
1931
+ annotations?: Record<string, unknown> | undefined;
1925
1932
  label: string;
1926
1933
  rpcUrl: string;
1927
- protocol: string;
1928
1934
  }>>>;
1929
1935
  environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
1930
1936
  networks: z.ZodArray<z.ZodString, "many">;
@@ -1984,15 +1990,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
1984
1990
  encryptedKey: string;
1985
1991
  secretKey: string;
1986
1992
  }> | undefined;
1987
- attributes?: string | number | boolean | undefined;
1993
+ protocol?: string | undefined;
1988
1994
  tzkt?: {
1989
1995
  disableAutostartWithSandbox?: boolean | undefined;
1990
1996
  postgresqlPort?: number | undefined;
1991
1997
  apiPort?: number | undefined;
1992
1998
  } | undefined;
1999
+ annotations?: Record<string, unknown> | undefined;
1993
2000
  label: string;
1994
2001
  rpcUrl: string;
1995
- protocol: string;
1996
2002
  }> | undefined;
1997
2003
  language?: "en" | "fr" | undefined;
1998
2004
  plugins?: {
@@ -2003,9 +2009,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2003
2009
  artifactsDir?: string | undefined;
2004
2010
  network?: Record<string, {
2005
2011
  accounts?: Record<string, {
2006
- publicKey: string;
2007
- publicKeyHash: string;
2008
- privateKey: string;
2012
+ mnemonic?: string | undefined;
2013
+ publicKey?: string | undefined;
2014
+ publicKeyHash?: string | undefined;
2015
+ privateKey?: string | undefined;
2009
2016
  }> | undefined;
2010
2017
  faucet?: {
2011
2018
  pkh: string;
@@ -2017,7 +2024,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2017
2024
  } | undefined;
2018
2025
  label: string;
2019
2026
  rpcUrl: string;
2020
- protocol: string;
2021
2027
  }> | undefined;
2022
2028
  accounts?: Record<string, string> | undefined;
2023
2029
  contracts?: Record<string, {
@@ -2048,15 +2054,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2048
2054
  encryptedKey: string;
2049
2055
  secretKey: string;
2050
2056
  }> | undefined;
2051
- attributes?: string | number | boolean | undefined;
2057
+ protocol?: string | undefined;
2052
2058
  tzkt?: {
2053
2059
  disableAutostartWithSandbox?: boolean | undefined;
2054
2060
  postgresqlPort?: number | undefined;
2055
2061
  apiPort?: number | undefined;
2056
2062
  } | undefined;
2063
+ annotations?: Record<string, unknown> | undefined;
2057
2064
  label: string;
2058
2065
  rpcUrl: string;
2059
- protocol: string;
2060
2066
  }> | undefined;
2061
2067
  language?: "en" | "fr" | undefined;
2062
2068
  plugins?: {
@@ -2067,9 +2073,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2067
2073
  artifactsDir?: string | undefined;
2068
2074
  network?: Record<string, {
2069
2075
  accounts?: Record<string, {
2070
- publicKey: string;
2071
- publicKeyHash: string;
2072
- privateKey: string;
2076
+ mnemonic?: string | undefined;
2077
+ publicKey?: string | undefined;
2078
+ publicKeyHash?: string | undefined;
2079
+ privateKey?: string | undefined;
2073
2080
  }> | undefined;
2074
2081
  faucet?: {
2075
2082
  pkh: string;
@@ -2081,7 +2088,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2081
2088
  } | undefined;
2082
2089
  label: string;
2083
2090
  rpcUrl: string;
2084
- protocol: string;
2085
2091
  }> | undefined;
2086
2092
  accounts?: Record<string, string> | undefined;
2087
2093
  contracts?: Record<string, {
@@ -2130,15 +2136,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2130
2136
  encryptedKey: string;
2131
2137
  secretKey: string;
2132
2138
  }> | undefined;
2133
- attributes?: string | number | boolean | undefined;
2139
+ protocol?: string | undefined;
2134
2140
  tzkt?: {
2135
2141
  disableAutostartWithSandbox?: boolean | undefined;
2136
2142
  postgresqlPort?: number | undefined;
2137
2143
  apiPort?: number | undefined;
2138
2144
  } | undefined;
2145
+ annotations?: Record<string, unknown> | undefined;
2139
2146
  label: string;
2140
2147
  rpcUrl: string;
2141
- protocol: string;
2142
2148
  }> | undefined;
2143
2149
  language?: "en" | "fr" | undefined;
2144
2150
  plugins?: {
@@ -2149,9 +2155,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2149
2155
  artifactsDir?: string | undefined;
2150
2156
  network?: Record<string, {
2151
2157
  accounts?: Record<string, {
2152
- publicKey: string;
2153
- publicKeyHash: string;
2154
- privateKey: string;
2158
+ mnemonic?: string | undefined;
2159
+ publicKey?: string | undefined;
2160
+ publicKeyHash?: string | undefined;
2161
+ privateKey?: string | undefined;
2155
2162
  }> | undefined;
2156
2163
  faucet?: {
2157
2164
  pkh: string;
@@ -2163,7 +2170,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2163
2170
  } | undefined;
2164
2171
  label: string;
2165
2172
  rpcUrl: string;
2166
- protocol: string;
2167
2173
  }> | undefined;
2168
2174
  accounts?: Record<string, string> | undefined;
2169
2175
  contracts?: Record<string, {
@@ -2212,15 +2218,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2212
2218
  encryptedKey: string;
2213
2219
  secretKey: string;
2214
2220
  }> | undefined;
2215
- attributes?: string | number | boolean | undefined;
2221
+ protocol?: string | undefined;
2216
2222
  tzkt?: {
2217
2223
  disableAutostartWithSandbox?: boolean | undefined;
2218
2224
  postgresqlPort?: number | undefined;
2219
2225
  apiPort?: number | undefined;
2220
2226
  } | undefined;
2227
+ annotations?: Record<string, unknown> | undefined;
2221
2228
  label: string;
2222
2229
  rpcUrl: string;
2223
- protocol: string;
2224
2230
  }> | undefined;
2225
2231
  language?: "en" | "fr" | undefined;
2226
2232
  plugins?: {
@@ -2231,9 +2237,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2231
2237
  artifactsDir?: string | undefined;
2232
2238
  network?: Record<string, {
2233
2239
  accounts?: Record<string, {
2234
- publicKey: string;
2235
- publicKeyHash: string;
2236
- privateKey: string;
2240
+ mnemonic?: string | undefined;
2241
+ publicKey?: string | undefined;
2242
+ publicKeyHash?: string | undefined;
2243
+ privateKey?: string | undefined;
2237
2244
  }> | undefined;
2238
2245
  faucet?: {
2239
2246
  pkh: string;
@@ -2245,7 +2252,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2245
2252
  } | undefined;
2246
2253
  label: string;
2247
2254
  rpcUrl: string;
2248
- protocol: string;
2249
2255
  }> | undefined;
2250
2256
  accounts?: Record<string, string> | undefined;
2251
2257
  contracts?: Record<string, {
@@ -2422,19 +2428,21 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2422
2428
  network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
2423
2429
  label: z.ZodString;
2424
2430
  rpcUrl: z.ZodString;
2425
- protocol: z.ZodString;
2426
2431
  accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
2427
- publicKey: z.ZodString;
2428
- publicKeyHash: z.ZodString;
2429
- privateKey: z.ZodString;
2432
+ publicKey: z.ZodOptional<z.ZodString>;
2433
+ publicKeyHash: z.ZodOptional<z.ZodString>;
2434
+ privateKey: z.ZodOptional<z.ZodString>;
2435
+ mnemonic: z.ZodOptional<z.ZodString>;
2430
2436
  }, "strip", z.ZodTypeAny, {
2431
- publicKey: string;
2432
- publicKeyHash: string;
2433
- privateKey: string;
2437
+ mnemonic?: string | undefined;
2438
+ publicKey?: string | undefined;
2439
+ publicKeyHash?: string | undefined;
2440
+ privateKey?: string | undefined;
2434
2441
  }, {
2435
- publicKey: string;
2436
- publicKeyHash: string;
2437
- privateKey: string;
2442
+ mnemonic?: string | undefined;
2443
+ publicKey?: string | undefined;
2444
+ publicKeyHash?: string | undefined;
2445
+ privateKey?: string | undefined;
2438
2446
  }>>>;
2439
2447
  faucet: z.ZodOptional<z.ZodObject<{
2440
2448
  pkh: z.ZodString;
@@ -2460,9 +2468,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2460
2468
  }>>;
2461
2469
  }, "strip", z.ZodTypeAny, {
2462
2470
  accounts?: Record<string, {
2463
- publicKey: string;
2464
- publicKeyHash: string;
2465
- privateKey: string;
2471
+ mnemonic?: string | undefined;
2472
+ publicKey?: string | undefined;
2473
+ publicKeyHash?: string | undefined;
2474
+ privateKey?: string | undefined;
2466
2475
  }> | undefined;
2467
2476
  faucet?: {
2468
2477
  pkh: string;
@@ -2474,12 +2483,12 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2474
2483
  } | undefined;
2475
2484
  label: string;
2476
2485
  rpcUrl: string;
2477
- protocol: string;
2478
2486
  }, {
2479
2487
  accounts?: Record<string, {
2480
- publicKey: string;
2481
- publicKeyHash: string;
2482
- privateKey: string;
2488
+ mnemonic?: string | undefined;
2489
+ publicKey?: string | undefined;
2490
+ publicKeyHash?: string | undefined;
2491
+ privateKey?: string | undefined;
2483
2492
  }> | undefined;
2484
2493
  faucet?: {
2485
2494
  pkh: string;
@@ -2491,13 +2500,11 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2491
2500
  } | undefined;
2492
2501
  label: string;
2493
2502
  rpcUrl: string;
2494
- protocol: string;
2495
2503
  }>>>;
2496
2504
  sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
2497
2505
  label: z.ZodString;
2498
2506
  rpcUrl: z.ZodString;
2499
- protocol: z.ZodString;
2500
- attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
2507
+ protocol: z.ZodOptional<z.ZodString>;
2501
2508
  plugin: z.ZodOptional<z.ZodString>;
2502
2509
  accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
2503
2510
  encryptedKey: z.ZodString;
@@ -2525,6 +2532,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2525
2532
  postgresqlPort?: number | undefined;
2526
2533
  apiPort?: number | undefined;
2527
2534
  }>>;
2535
+ annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
2528
2536
  }, "strip", z.ZodTypeAny, {
2529
2537
  plugin?: string | undefined;
2530
2538
  accounts?: Record<string, string | {
@@ -2532,15 +2540,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2532
2540
  encryptedKey: string;
2533
2541
  secretKey: string;
2534
2542
  }> | undefined;
2535
- attributes?: string | number | boolean | undefined;
2543
+ protocol?: string | undefined;
2536
2544
  tzkt?: {
2537
2545
  disableAutostartWithSandbox?: boolean | undefined;
2538
2546
  postgresqlPort?: number | undefined;
2539
2547
  apiPort?: number | undefined;
2540
2548
  } | undefined;
2549
+ annotations?: Record<string, unknown> | undefined;
2541
2550
  label: string;
2542
2551
  rpcUrl: string;
2543
- protocol: string;
2544
2552
  }, {
2545
2553
  plugin?: string | undefined;
2546
2554
  accounts?: Record<string, string | {
@@ -2548,15 +2556,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2548
2556
  encryptedKey: string;
2549
2557
  secretKey: string;
2550
2558
  }> | undefined;
2551
- attributes?: string | number | boolean | undefined;
2559
+ protocol?: string | undefined;
2552
2560
  tzkt?: {
2553
2561
  disableAutostartWithSandbox?: boolean | undefined;
2554
2562
  postgresqlPort?: number | undefined;
2555
2563
  apiPort?: number | undefined;
2556
2564
  } | undefined;
2565
+ annotations?: Record<string, unknown> | undefined;
2557
2566
  label: string;
2558
2567
  rpcUrl: string;
2559
- protocol: string;
2560
2568
  }>>>;
2561
2569
  environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
2562
2570
  networks: z.ZodArray<z.ZodString, "many">;
@@ -2616,15 +2624,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2616
2624
  encryptedKey: string;
2617
2625
  secretKey: string;
2618
2626
  }> | undefined;
2619
- attributes?: string | number | boolean | undefined;
2627
+ protocol?: string | undefined;
2620
2628
  tzkt?: {
2621
2629
  disableAutostartWithSandbox?: boolean | undefined;
2622
2630
  postgresqlPort?: number | undefined;
2623
2631
  apiPort?: number | undefined;
2624
2632
  } | undefined;
2633
+ annotations?: Record<string, unknown> | undefined;
2625
2634
  label: string;
2626
2635
  rpcUrl: string;
2627
- protocol: string;
2628
2636
  }> | undefined;
2629
2637
  language?: "en" | "fr" | undefined;
2630
2638
  plugins?: {
@@ -2635,9 +2643,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2635
2643
  artifactsDir?: string | undefined;
2636
2644
  network?: Record<string, {
2637
2645
  accounts?: Record<string, {
2638
- publicKey: string;
2639
- publicKeyHash: string;
2640
- privateKey: string;
2646
+ mnemonic?: string | undefined;
2647
+ publicKey?: string | undefined;
2648
+ publicKeyHash?: string | undefined;
2649
+ privateKey?: string | undefined;
2641
2650
  }> | undefined;
2642
2651
  faucet?: {
2643
2652
  pkh: string;
@@ -2649,7 +2658,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2649
2658
  } | undefined;
2650
2659
  label: string;
2651
2660
  rpcUrl: string;
2652
- protocol: string;
2653
2661
  }> | undefined;
2654
2662
  accounts?: Record<string, string> | undefined;
2655
2663
  contracts?: Record<string, {
@@ -2680,15 +2688,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2680
2688
  encryptedKey: string;
2681
2689
  secretKey: string;
2682
2690
  }> | undefined;
2683
- attributes?: string | number | boolean | undefined;
2691
+ protocol?: string | undefined;
2684
2692
  tzkt?: {
2685
2693
  disableAutostartWithSandbox?: boolean | undefined;
2686
2694
  postgresqlPort?: number | undefined;
2687
2695
  apiPort?: number | undefined;
2688
2696
  } | undefined;
2697
+ annotations?: Record<string, unknown> | undefined;
2689
2698
  label: string;
2690
2699
  rpcUrl: string;
2691
- protocol: string;
2692
2700
  }> | undefined;
2693
2701
  language?: "en" | "fr" | undefined;
2694
2702
  plugins?: {
@@ -2699,9 +2707,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2699
2707
  artifactsDir?: string | undefined;
2700
2708
  network?: Record<string, {
2701
2709
  accounts?: Record<string, {
2702
- publicKey: string;
2703
- publicKeyHash: string;
2704
- privateKey: string;
2710
+ mnemonic?: string | undefined;
2711
+ publicKey?: string | undefined;
2712
+ publicKeyHash?: string | undefined;
2713
+ privateKey?: string | undefined;
2705
2714
  }> | undefined;
2706
2715
  faucet?: {
2707
2716
  pkh: string;
@@ -2713,7 +2722,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2713
2722
  } | undefined;
2714
2723
  label: string;
2715
2724
  rpcUrl: string;
2716
- protocol: string;
2717
2725
  }> | undefined;
2718
2726
  accounts?: Record<string, string> | undefined;
2719
2727
  contracts?: Record<string, {
@@ -2762,15 +2770,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2762
2770
  encryptedKey: string;
2763
2771
  secretKey: string;
2764
2772
  }> | undefined;
2765
- attributes?: string | number | boolean | undefined;
2773
+ protocol?: string | undefined;
2766
2774
  tzkt?: {
2767
2775
  disableAutostartWithSandbox?: boolean | undefined;
2768
2776
  postgresqlPort?: number | undefined;
2769
2777
  apiPort?: number | undefined;
2770
2778
  } | undefined;
2779
+ annotations?: Record<string, unknown> | undefined;
2771
2780
  label: string;
2772
2781
  rpcUrl: string;
2773
- protocol: string;
2774
2782
  }> | undefined;
2775
2783
  language?: "en" | "fr" | undefined;
2776
2784
  plugins?: {
@@ -2781,9 +2789,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2781
2789
  artifactsDir?: string | undefined;
2782
2790
  network?: Record<string, {
2783
2791
  accounts?: Record<string, {
2784
- publicKey: string;
2785
- publicKeyHash: string;
2786
- privateKey: string;
2792
+ mnemonic?: string | undefined;
2793
+ publicKey?: string | undefined;
2794
+ publicKeyHash?: string | undefined;
2795
+ privateKey?: string | undefined;
2787
2796
  }> | undefined;
2788
2797
  faucet?: {
2789
2798
  pkh: string;
@@ -2795,7 +2804,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2795
2804
  } | undefined;
2796
2805
  label: string;
2797
2806
  rpcUrl: string;
2798
- protocol: string;
2799
2807
  }> | undefined;
2800
2808
  accounts?: Record<string, string> | undefined;
2801
2809
  contracts?: Record<string, {
@@ -2844,15 +2852,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2844
2852
  encryptedKey: string;
2845
2853
  secretKey: string;
2846
2854
  }> | undefined;
2847
- attributes?: string | number | boolean | undefined;
2855
+ protocol?: string | undefined;
2848
2856
  tzkt?: {
2849
2857
  disableAutostartWithSandbox?: boolean | undefined;
2850
2858
  postgresqlPort?: number | undefined;
2851
2859
  apiPort?: number | undefined;
2852
2860
  } | undefined;
2861
+ annotations?: Record<string, unknown> | undefined;
2853
2862
  label: string;
2854
2863
  rpcUrl: string;
2855
- protocol: string;
2856
2864
  }> | undefined;
2857
2865
  language?: "en" | "fr" | undefined;
2858
2866
  plugins?: {
@@ -2863,9 +2871,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2863
2871
  artifactsDir?: string | undefined;
2864
2872
  network?: Record<string, {
2865
2873
  accounts?: Record<string, {
2866
- publicKey: string;
2867
- publicKeyHash: string;
2868
- privateKey: string;
2874
+ mnemonic?: string | undefined;
2875
+ publicKey?: string | undefined;
2876
+ publicKeyHash?: string | undefined;
2877
+ privateKey?: string | undefined;
2869
2878
  }> | undefined;
2870
2879
  faucet?: {
2871
2880
  pkh: string;
@@ -2877,7 +2886,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
2877
2886
  } | undefined;
2878
2887
  label: string;
2879
2888
  rpcUrl: string;
2880
- protocol: string;
2881
2889
  }> | undefined;
2882
2890
  accounts?: Record<string, string> | undefined;
2883
2891
  contracts?: Record<string, {
@@ -3288,19 +3296,21 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3288
3296
  network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
3289
3297
  label: z.ZodString;
3290
3298
  rpcUrl: z.ZodString;
3291
- protocol: z.ZodString;
3292
3299
  accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
3293
- publicKey: z.ZodString;
3294
- publicKeyHash: z.ZodString;
3295
- privateKey: z.ZodString;
3300
+ publicKey: z.ZodOptional<z.ZodString>;
3301
+ publicKeyHash: z.ZodOptional<z.ZodString>;
3302
+ privateKey: z.ZodOptional<z.ZodString>;
3303
+ mnemonic: z.ZodOptional<z.ZodString>;
3296
3304
  }, "strip", z.ZodTypeAny, {
3297
- publicKey: string;
3298
- publicKeyHash: string;
3299
- privateKey: string;
3305
+ mnemonic?: string | undefined;
3306
+ publicKey?: string | undefined;
3307
+ publicKeyHash?: string | undefined;
3308
+ privateKey?: string | undefined;
3300
3309
  }, {
3301
- publicKey: string;
3302
- publicKeyHash: string;
3303
- privateKey: string;
3310
+ mnemonic?: string | undefined;
3311
+ publicKey?: string | undefined;
3312
+ publicKeyHash?: string | undefined;
3313
+ privateKey?: string | undefined;
3304
3314
  }>>>;
3305
3315
  faucet: z.ZodOptional<z.ZodObject<{
3306
3316
  pkh: z.ZodString;
@@ -3326,9 +3336,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3326
3336
  }>>;
3327
3337
  }, "strip", z.ZodTypeAny, {
3328
3338
  accounts?: Record<string, {
3329
- publicKey: string;
3330
- publicKeyHash: string;
3331
- privateKey: string;
3339
+ mnemonic?: string | undefined;
3340
+ publicKey?: string | undefined;
3341
+ publicKeyHash?: string | undefined;
3342
+ privateKey?: string | undefined;
3332
3343
  }> | undefined;
3333
3344
  faucet?: {
3334
3345
  pkh: string;
@@ -3340,12 +3351,12 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3340
3351
  } | undefined;
3341
3352
  label: string;
3342
3353
  rpcUrl: string;
3343
- protocol: string;
3344
3354
  }, {
3345
3355
  accounts?: Record<string, {
3346
- publicKey: string;
3347
- publicKeyHash: string;
3348
- privateKey: string;
3356
+ mnemonic?: string | undefined;
3357
+ publicKey?: string | undefined;
3358
+ publicKeyHash?: string | undefined;
3359
+ privateKey?: string | undefined;
3349
3360
  }> | undefined;
3350
3361
  faucet?: {
3351
3362
  pkh: string;
@@ -3357,13 +3368,11 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3357
3368
  } | undefined;
3358
3369
  label: string;
3359
3370
  rpcUrl: string;
3360
- protocol: string;
3361
3371
  }>>>;
3362
3372
  sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
3363
3373
  label: z.ZodString;
3364
3374
  rpcUrl: z.ZodString;
3365
- protocol: z.ZodString;
3366
- attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
3375
+ protocol: z.ZodOptional<z.ZodString>;
3367
3376
  plugin: z.ZodOptional<z.ZodString>;
3368
3377
  accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
3369
3378
  encryptedKey: z.ZodString;
@@ -3391,6 +3400,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3391
3400
  postgresqlPort?: number | undefined;
3392
3401
  apiPort?: number | undefined;
3393
3402
  }>>;
3403
+ annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
3394
3404
  }, "strip", z.ZodTypeAny, {
3395
3405
  plugin?: string | undefined;
3396
3406
  accounts?: Record<string, string | {
@@ -3398,15 +3408,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3398
3408
  encryptedKey: string;
3399
3409
  secretKey: string;
3400
3410
  }> | undefined;
3401
- attributes?: string | number | boolean | undefined;
3411
+ protocol?: string | undefined;
3402
3412
  tzkt?: {
3403
3413
  disableAutostartWithSandbox?: boolean | undefined;
3404
3414
  postgresqlPort?: number | undefined;
3405
3415
  apiPort?: number | undefined;
3406
3416
  } | undefined;
3417
+ annotations?: Record<string, unknown> | undefined;
3407
3418
  label: string;
3408
3419
  rpcUrl: string;
3409
- protocol: string;
3410
3420
  }, {
3411
3421
  plugin?: string | undefined;
3412
3422
  accounts?: Record<string, string | {
@@ -3414,15 +3424,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3414
3424
  encryptedKey: string;
3415
3425
  secretKey: string;
3416
3426
  }> | undefined;
3417
- attributes?: string | number | boolean | undefined;
3427
+ protocol?: string | undefined;
3418
3428
  tzkt?: {
3419
3429
  disableAutostartWithSandbox?: boolean | undefined;
3420
3430
  postgresqlPort?: number | undefined;
3421
3431
  apiPort?: number | undefined;
3422
3432
  } | undefined;
3433
+ annotations?: Record<string, unknown> | undefined;
3423
3434
  label: string;
3424
3435
  rpcUrl: string;
3425
- protocol: string;
3426
3436
  }>>>;
3427
3437
  environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
3428
3438
  networks: z.ZodArray<z.ZodString, "many">;
@@ -3482,15 +3492,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3482
3492
  encryptedKey: string;
3483
3493
  secretKey: string;
3484
3494
  }> | undefined;
3485
- attributes?: string | number | boolean | undefined;
3495
+ protocol?: string | undefined;
3486
3496
  tzkt?: {
3487
3497
  disableAutostartWithSandbox?: boolean | undefined;
3488
3498
  postgresqlPort?: number | undefined;
3489
3499
  apiPort?: number | undefined;
3490
3500
  } | undefined;
3501
+ annotations?: Record<string, unknown> | undefined;
3491
3502
  label: string;
3492
3503
  rpcUrl: string;
3493
- protocol: string;
3494
3504
  }> | undefined;
3495
3505
  language?: "en" | "fr" | undefined;
3496
3506
  plugins?: {
@@ -3501,9 +3511,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3501
3511
  artifactsDir?: string | undefined;
3502
3512
  network?: Record<string, {
3503
3513
  accounts?: Record<string, {
3504
- publicKey: string;
3505
- publicKeyHash: string;
3506
- privateKey: string;
3514
+ mnemonic?: string | undefined;
3515
+ publicKey?: string | undefined;
3516
+ publicKeyHash?: string | undefined;
3517
+ privateKey?: string | undefined;
3507
3518
  }> | undefined;
3508
3519
  faucet?: {
3509
3520
  pkh: string;
@@ -3515,7 +3526,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3515
3526
  } | undefined;
3516
3527
  label: string;
3517
3528
  rpcUrl: string;
3518
- protocol: string;
3519
3529
  }> | undefined;
3520
3530
  accounts?: Record<string, string> | undefined;
3521
3531
  contracts?: Record<string, {
@@ -3546,15 +3556,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3546
3556
  encryptedKey: string;
3547
3557
  secretKey: string;
3548
3558
  }> | undefined;
3549
- attributes?: string | number | boolean | undefined;
3559
+ protocol?: string | undefined;
3550
3560
  tzkt?: {
3551
3561
  disableAutostartWithSandbox?: boolean | undefined;
3552
3562
  postgresqlPort?: number | undefined;
3553
3563
  apiPort?: number | undefined;
3554
3564
  } | undefined;
3565
+ annotations?: Record<string, unknown> | undefined;
3555
3566
  label: string;
3556
3567
  rpcUrl: string;
3557
- protocol: string;
3558
3568
  }> | undefined;
3559
3569
  language?: "en" | "fr" | undefined;
3560
3570
  plugins?: {
@@ -3565,9 +3575,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3565
3575
  artifactsDir?: string | undefined;
3566
3576
  network?: Record<string, {
3567
3577
  accounts?: Record<string, {
3568
- publicKey: string;
3569
- publicKeyHash: string;
3570
- privateKey: string;
3578
+ mnemonic?: string | undefined;
3579
+ publicKey?: string | undefined;
3580
+ publicKeyHash?: string | undefined;
3581
+ privateKey?: string | undefined;
3571
3582
  }> | undefined;
3572
3583
  faucet?: {
3573
3584
  pkh: string;
@@ -3579,7 +3590,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3579
3590
  } | undefined;
3580
3591
  label: string;
3581
3592
  rpcUrl: string;
3582
- protocol: string;
3583
3593
  }> | undefined;
3584
3594
  accounts?: Record<string, string> | undefined;
3585
3595
  contracts?: Record<string, {
@@ -3628,15 +3638,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3628
3638
  encryptedKey: string;
3629
3639
  secretKey: string;
3630
3640
  }> | undefined;
3631
- attributes?: string | number | boolean | undefined;
3641
+ protocol?: string | undefined;
3632
3642
  tzkt?: {
3633
3643
  disableAutostartWithSandbox?: boolean | undefined;
3634
3644
  postgresqlPort?: number | undefined;
3635
3645
  apiPort?: number | undefined;
3636
3646
  } | undefined;
3647
+ annotations?: Record<string, unknown> | undefined;
3637
3648
  label: string;
3638
3649
  rpcUrl: string;
3639
- protocol: string;
3640
3650
  }> | undefined;
3641
3651
  language?: "en" | "fr" | undefined;
3642
3652
  plugins?: {
@@ -3647,9 +3657,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3647
3657
  artifactsDir?: string | undefined;
3648
3658
  network?: Record<string, {
3649
3659
  accounts?: Record<string, {
3650
- publicKey: string;
3651
- publicKeyHash: string;
3652
- privateKey: string;
3660
+ mnemonic?: string | undefined;
3661
+ publicKey?: string | undefined;
3662
+ publicKeyHash?: string | undefined;
3663
+ privateKey?: string | undefined;
3653
3664
  }> | undefined;
3654
3665
  faucet?: {
3655
3666
  pkh: string;
@@ -3661,7 +3672,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3661
3672
  } | undefined;
3662
3673
  label: string;
3663
3674
  rpcUrl: string;
3664
- protocol: string;
3665
3675
  }> | undefined;
3666
3676
  accounts?: Record<string, string> | undefined;
3667
3677
  contracts?: Record<string, {
@@ -3710,15 +3720,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3710
3720
  encryptedKey: string;
3711
3721
  secretKey: string;
3712
3722
  }> | undefined;
3713
- attributes?: string | number | boolean | undefined;
3723
+ protocol?: string | undefined;
3714
3724
  tzkt?: {
3715
3725
  disableAutostartWithSandbox?: boolean | undefined;
3716
3726
  postgresqlPort?: number | undefined;
3717
3727
  apiPort?: number | undefined;
3718
3728
  } | undefined;
3729
+ annotations?: Record<string, unknown> | undefined;
3719
3730
  label: string;
3720
3731
  rpcUrl: string;
3721
- protocol: string;
3722
3732
  }> | undefined;
3723
3733
  language?: "en" | "fr" | undefined;
3724
3734
  plugins?: {
@@ -3729,9 +3739,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3729
3739
  artifactsDir?: string | undefined;
3730
3740
  network?: Record<string, {
3731
3741
  accounts?: Record<string, {
3732
- publicKey: string;
3733
- publicKeyHash: string;
3734
- privateKey: string;
3742
+ mnemonic?: string | undefined;
3743
+ publicKey?: string | undefined;
3744
+ publicKeyHash?: string | undefined;
3745
+ privateKey?: string | undefined;
3735
3746
  }> | undefined;
3736
3747
  faucet?: {
3737
3748
  pkh: string;
@@ -3743,7 +3754,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3743
3754
  } | undefined;
3744
3755
  label: string;
3745
3756
  rpcUrl: string;
3746
- protocol: string;
3747
3757
  }> | undefined;
3748
3758
  accounts?: Record<string, string> | undefined;
3749
3759
  contracts?: Record<string, {
@@ -3920,19 +3930,21 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3920
3930
  network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
3921
3931
  label: z.ZodString;
3922
3932
  rpcUrl: z.ZodString;
3923
- protocol: z.ZodString;
3924
3933
  accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
3925
- publicKey: z.ZodString;
3926
- publicKeyHash: z.ZodString;
3927
- privateKey: z.ZodString;
3934
+ publicKey: z.ZodOptional<z.ZodString>;
3935
+ publicKeyHash: z.ZodOptional<z.ZodString>;
3936
+ privateKey: z.ZodOptional<z.ZodString>;
3937
+ mnemonic: z.ZodOptional<z.ZodString>;
3928
3938
  }, "strip", z.ZodTypeAny, {
3929
- publicKey: string;
3930
- publicKeyHash: string;
3931
- privateKey: string;
3939
+ mnemonic?: string | undefined;
3940
+ publicKey?: string | undefined;
3941
+ publicKeyHash?: string | undefined;
3942
+ privateKey?: string | undefined;
3932
3943
  }, {
3933
- publicKey: string;
3934
- publicKeyHash: string;
3935
- privateKey: string;
3944
+ mnemonic?: string | undefined;
3945
+ publicKey?: string | undefined;
3946
+ publicKeyHash?: string | undefined;
3947
+ privateKey?: string | undefined;
3936
3948
  }>>>;
3937
3949
  faucet: z.ZodOptional<z.ZodObject<{
3938
3950
  pkh: z.ZodString;
@@ -3958,9 +3970,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3958
3970
  }>>;
3959
3971
  }, "strip", z.ZodTypeAny, {
3960
3972
  accounts?: Record<string, {
3961
- publicKey: string;
3962
- publicKeyHash: string;
3963
- privateKey: string;
3973
+ mnemonic?: string | undefined;
3974
+ publicKey?: string | undefined;
3975
+ publicKeyHash?: string | undefined;
3976
+ privateKey?: string | undefined;
3964
3977
  }> | undefined;
3965
3978
  faucet?: {
3966
3979
  pkh: string;
@@ -3972,12 +3985,12 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3972
3985
  } | undefined;
3973
3986
  label: string;
3974
3987
  rpcUrl: string;
3975
- protocol: string;
3976
3988
  }, {
3977
3989
  accounts?: Record<string, {
3978
- publicKey: string;
3979
- publicKeyHash: string;
3980
- privateKey: string;
3990
+ mnemonic?: string | undefined;
3991
+ publicKey?: string | undefined;
3992
+ publicKeyHash?: string | undefined;
3993
+ privateKey?: string | undefined;
3981
3994
  }> | undefined;
3982
3995
  faucet?: {
3983
3996
  pkh: string;
@@ -3989,13 +4002,11 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
3989
4002
  } | undefined;
3990
4003
  label: string;
3991
4004
  rpcUrl: string;
3992
- protocol: string;
3993
4005
  }>>>;
3994
4006
  sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
3995
4007
  label: z.ZodString;
3996
4008
  rpcUrl: z.ZodString;
3997
- protocol: z.ZodString;
3998
- attributes: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
4009
+ protocol: z.ZodOptional<z.ZodString>;
3999
4010
  plugin: z.ZodOptional<z.ZodString>;
4000
4011
  accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
4001
4012
  encryptedKey: z.ZodString;
@@ -4023,6 +4034,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
4023
4034
  postgresqlPort?: number | undefined;
4024
4035
  apiPort?: number | undefined;
4025
4036
  }>>;
4037
+ annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
4026
4038
  }, "strip", z.ZodTypeAny, {
4027
4039
  plugin?: string | undefined;
4028
4040
  accounts?: Record<string, string | {
@@ -4030,15 +4042,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
4030
4042
  encryptedKey: string;
4031
4043
  secretKey: string;
4032
4044
  }> | undefined;
4033
- attributes?: string | number | boolean | undefined;
4045
+ protocol?: string | undefined;
4034
4046
  tzkt?: {
4035
4047
  disableAutostartWithSandbox?: boolean | undefined;
4036
4048
  postgresqlPort?: number | undefined;
4037
4049
  apiPort?: number | undefined;
4038
4050
  } | undefined;
4051
+ annotations?: Record<string, unknown> | undefined;
4039
4052
  label: string;
4040
4053
  rpcUrl: string;
4041
- protocol: string;
4042
4054
  }, {
4043
4055
  plugin?: string | undefined;
4044
4056
  accounts?: Record<string, string | {
@@ -4046,15 +4058,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
4046
4058
  encryptedKey: string;
4047
4059
  secretKey: string;
4048
4060
  }> | undefined;
4049
- attributes?: string | number | boolean | undefined;
4061
+ protocol?: string | undefined;
4050
4062
  tzkt?: {
4051
4063
  disableAutostartWithSandbox?: boolean | undefined;
4052
4064
  postgresqlPort?: number | undefined;
4053
4065
  apiPort?: number | undefined;
4054
4066
  } | undefined;
4067
+ annotations?: Record<string, unknown> | undefined;
4055
4068
  label: string;
4056
4069
  rpcUrl: string;
4057
- protocol: string;
4058
4070
  }>>>;
4059
4071
  environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
4060
4072
  networks: z.ZodArray<z.ZodString, "many">;
@@ -4114,15 +4126,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
4114
4126
  encryptedKey: string;
4115
4127
  secretKey: string;
4116
4128
  }> | undefined;
4117
- attributes?: string | number | boolean | undefined;
4129
+ protocol?: string | undefined;
4118
4130
  tzkt?: {
4119
4131
  disableAutostartWithSandbox?: boolean | undefined;
4120
4132
  postgresqlPort?: number | undefined;
4121
4133
  apiPort?: number | undefined;
4122
4134
  } | undefined;
4135
+ annotations?: Record<string, unknown> | undefined;
4123
4136
  label: string;
4124
4137
  rpcUrl: string;
4125
- protocol: string;
4126
4138
  }> | undefined;
4127
4139
  language?: "en" | "fr" | undefined;
4128
4140
  plugins?: {
@@ -4133,9 +4145,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
4133
4145
  artifactsDir?: string | undefined;
4134
4146
  network?: Record<string, {
4135
4147
  accounts?: Record<string, {
4136
- publicKey: string;
4137
- publicKeyHash: string;
4138
- privateKey: string;
4148
+ mnemonic?: string | undefined;
4149
+ publicKey?: string | undefined;
4150
+ publicKeyHash?: string | undefined;
4151
+ privateKey?: string | undefined;
4139
4152
  }> | undefined;
4140
4153
  faucet?: {
4141
4154
  pkh: string;
@@ -4147,7 +4160,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
4147
4160
  } | undefined;
4148
4161
  label: string;
4149
4162
  rpcUrl: string;
4150
- protocol: string;
4151
4163
  }> | undefined;
4152
4164
  accounts?: Record<string, string> | undefined;
4153
4165
  contracts?: Record<string, {
@@ -4178,15 +4190,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
4178
4190
  encryptedKey: string;
4179
4191
  secretKey: string;
4180
4192
  }> | undefined;
4181
- attributes?: string | number | boolean | undefined;
4193
+ protocol?: string | undefined;
4182
4194
  tzkt?: {
4183
4195
  disableAutostartWithSandbox?: boolean | undefined;
4184
4196
  postgresqlPort?: number | undefined;
4185
4197
  apiPort?: number | undefined;
4186
4198
  } | undefined;
4199
+ annotations?: Record<string, unknown> | undefined;
4187
4200
  label: string;
4188
4201
  rpcUrl: string;
4189
- protocol: string;
4190
4202
  }> | undefined;
4191
4203
  language?: "en" | "fr" | undefined;
4192
4204
  plugins?: {
@@ -4197,9 +4209,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
4197
4209
  artifactsDir?: string | undefined;
4198
4210
  network?: Record<string, {
4199
4211
  accounts?: Record<string, {
4200
- publicKey: string;
4201
- publicKeyHash: string;
4202
- privateKey: string;
4212
+ mnemonic?: string | undefined;
4213
+ publicKey?: string | undefined;
4214
+ publicKeyHash?: string | undefined;
4215
+ privateKey?: string | undefined;
4203
4216
  }> | undefined;
4204
4217
  faucet?: {
4205
4218
  pkh: string;
@@ -4211,7 +4224,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
4211
4224
  } | undefined;
4212
4225
  label: string;
4213
4226
  rpcUrl: string;
4214
- protocol: string;
4215
4227
  }> | undefined;
4216
4228
  accounts?: Record<string, string> | undefined;
4217
4229
  contracts?: Record<string, {
@@ -4260,15 +4272,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
4260
4272
  encryptedKey: string;
4261
4273
  secretKey: string;
4262
4274
  }> | undefined;
4263
- attributes?: string | number | boolean | undefined;
4275
+ protocol?: string | undefined;
4264
4276
  tzkt?: {
4265
4277
  disableAutostartWithSandbox?: boolean | undefined;
4266
4278
  postgresqlPort?: number | undefined;
4267
4279
  apiPort?: number | undefined;
4268
4280
  } | undefined;
4281
+ annotations?: Record<string, unknown> | undefined;
4269
4282
  label: string;
4270
4283
  rpcUrl: string;
4271
- protocol: string;
4272
4284
  }> | undefined;
4273
4285
  language?: "en" | "fr" | undefined;
4274
4286
  plugins?: {
@@ -4279,9 +4291,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
4279
4291
  artifactsDir?: string | undefined;
4280
4292
  network?: Record<string, {
4281
4293
  accounts?: Record<string, {
4282
- publicKey: string;
4283
- publicKeyHash: string;
4284
- privateKey: string;
4294
+ mnemonic?: string | undefined;
4295
+ publicKey?: string | undefined;
4296
+ publicKeyHash?: string | undefined;
4297
+ privateKey?: string | undefined;
4285
4298
  }> | undefined;
4286
4299
  faucet?: {
4287
4300
  pkh: string;
@@ -4293,7 +4306,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
4293
4306
  } | undefined;
4294
4307
  label: string;
4295
4308
  rpcUrl: string;
4296
- protocol: string;
4297
4309
  }> | undefined;
4298
4310
  accounts?: Record<string, string> | undefined;
4299
4311
  contracts?: Record<string, {
@@ -4342,15 +4354,15 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
4342
4354
  encryptedKey: string;
4343
4355
  secretKey: string;
4344
4356
  }> | undefined;
4345
- attributes?: string | number | boolean | undefined;
4357
+ protocol?: string | undefined;
4346
4358
  tzkt?: {
4347
4359
  disableAutostartWithSandbox?: boolean | undefined;
4348
4360
  postgresqlPort?: number | undefined;
4349
4361
  apiPort?: number | undefined;
4350
4362
  } | undefined;
4363
+ annotations?: Record<string, unknown> | undefined;
4351
4364
  label: string;
4352
4365
  rpcUrl: string;
4353
- protocol: string;
4354
4366
  }> | undefined;
4355
4367
  language?: "en" | "fr" | undefined;
4356
4368
  plugins?: {
@@ -4361,9 +4373,10 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
4361
4373
  artifactsDir?: string | undefined;
4362
4374
  network?: Record<string, {
4363
4375
  accounts?: Record<string, {
4364
- publicKey: string;
4365
- publicKeyHash: string;
4366
- privateKey: string;
4376
+ mnemonic?: string | undefined;
4377
+ publicKey?: string | undefined;
4378
+ publicKeyHash?: string | undefined;
4379
+ privateKey?: string | undefined;
4367
4380
  }> | undefined;
4368
4381
  faucet?: {
4369
4382
  pkh: string;
@@ -4375,7 +4388,6 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
4375
4388
  } | undefined;
4376
4389
  label: string;
4377
4390
  rpcUrl: string;
4378
- protocol: string;
4379
4391
  }> | undefined;
4380
4392
  accounts?: Record<string, string> | undefined;
4381
4393
  contracts?: Record<string, {