@taqueria/protocol 0.19.6 → 0.19.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Base.d.ts +1 -1
- package/Base.d.ts.map +1 -1
- package/Base.js +1 -1
- package/Base.js.map +1 -1
- package/Base.mjs +1 -1
- package/Base.mjs.map +1 -1
- package/Config.d.ts +194 -193
- package/Config.d.ts.map +1 -1
- package/Config.js +18 -21
- package/Config.js.map +1 -1
- package/Config.mjs +19 -22
- package/Config.mjs.map +1 -1
- package/EphemeralState.d.ts +1 -3
- package/EphemeralState.d.ts.map +1 -1
- package/Faucet.d.ts +98 -97
- package/Faucet.d.ts.map +1 -1
- package/Faucet.js +32 -20
- package/Faucet.js.map +1 -1
- package/Faucet.mjs +32 -20
- package/Faucet.mjs.map +1 -1
- package/LoadedConfig.d.ts +202 -201
- package/LoadedConfig.d.ts.map +1 -1
- package/NetworkConfig.d.ts +108 -107
- package/NetworkConfig.d.ts.map +1 -1
- package/Operation.d.ts +32 -32
- package/ParsedOperation.d.ts +8 -8
- package/ParsedTemplate.d.ts +16 -16
- package/PluginSchema.d.ts +224 -224
- package/RequestArgs.d.ts +376 -376
- package/Template.d.ts +48 -48
- package/package.json +1 -1
package/Template.d.ts
CHANGED
|
@@ -82,7 +82,7 @@ export declare const rawSchema: z.ZodObject<{
|
|
|
82
82
|
readonly __kind: any;
|
|
83
83
|
};
|
|
84
84
|
}> | undefined;
|
|
85
|
-
network?: Record<string,
|
|
85
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
86
86
|
label: string & {
|
|
87
87
|
readonly __kind: any;
|
|
88
88
|
};
|
|
@@ -93,21 +93,21 @@ export declare const rawSchema: z.ZodObject<{
|
|
|
93
93
|
readonly __kind: any;
|
|
94
94
|
};
|
|
95
95
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
96
|
+
email?: string | undefined;
|
|
97
|
+
password?: string | undefined;
|
|
98
|
+
amount?: string | undefined;
|
|
99
|
+
activation_code?: string | undefined;
|
|
100
|
+
mnemonic: string[];
|
|
96
101
|
pkh: string & {
|
|
97
102
|
readonly __kind: any;
|
|
98
103
|
};
|
|
99
|
-
mnemonic: string[];
|
|
100
|
-
email: string;
|
|
101
|
-
password: string;
|
|
102
|
-
amount: string;
|
|
103
|
-
activation_code: string;
|
|
104
104
|
} & {
|
|
105
105
|
readonly __kind: any;
|
|
106
106
|
}>;
|
|
107
107
|
} & {
|
|
108
108
|
readonly __kind: any;
|
|
109
109
|
}>> | undefined;
|
|
110
|
-
sandbox?: Record<string,
|
|
110
|
+
sandbox?: Record<string, {
|
|
111
111
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
112
112
|
plugin?: (string & {
|
|
113
113
|
readonly __kind: any;
|
|
@@ -137,7 +137,7 @@ export declare const rawSchema: z.ZodObject<{
|
|
|
137
137
|
};
|
|
138
138
|
} & {
|
|
139
139
|
readonly __kind: any;
|
|
140
|
-
}
|
|
140
|
+
}> | undefined;
|
|
141
141
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
142
142
|
storage?: Record<string, any> | undefined;
|
|
143
143
|
aliases?: Record<string, any> | undefined;
|
|
@@ -207,7 +207,7 @@ export declare const rawSchema: z.ZodObject<{
|
|
|
207
207
|
readonly __kind: any;
|
|
208
208
|
};
|
|
209
209
|
}> | undefined;
|
|
210
|
-
network?: Record<string,
|
|
210
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
211
211
|
label: string & {
|
|
212
212
|
readonly __kind: any;
|
|
213
213
|
};
|
|
@@ -218,21 +218,21 @@ export declare const rawSchema: z.ZodObject<{
|
|
|
218
218
|
readonly __kind: any;
|
|
219
219
|
};
|
|
220
220
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
221
|
+
email?: string | undefined;
|
|
222
|
+
password?: string | undefined;
|
|
223
|
+
amount?: string | undefined;
|
|
224
|
+
activation_code?: string | undefined;
|
|
225
|
+
mnemonic: string[];
|
|
221
226
|
pkh: string & {
|
|
222
227
|
readonly __kind: any;
|
|
223
228
|
};
|
|
224
|
-
mnemonic: string[];
|
|
225
|
-
email: string;
|
|
226
|
-
password: string;
|
|
227
|
-
amount: string;
|
|
228
|
-
activation_code: string;
|
|
229
229
|
} & {
|
|
230
230
|
readonly __kind: any;
|
|
231
231
|
}>;
|
|
232
232
|
} & {
|
|
233
233
|
readonly __kind: any;
|
|
234
234
|
}>> | undefined;
|
|
235
|
-
sandbox?: Record<string,
|
|
235
|
+
sandbox?: Record<string, {
|
|
236
236
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
237
237
|
plugin?: (string & {
|
|
238
238
|
readonly __kind: any;
|
|
@@ -262,7 +262,7 @@ export declare const rawSchema: z.ZodObject<{
|
|
|
262
262
|
};
|
|
263
263
|
} & {
|
|
264
264
|
readonly __kind: any;
|
|
265
|
-
}
|
|
265
|
+
}> | undefined;
|
|
266
266
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
267
267
|
storage?: Record<string, any> | undefined;
|
|
268
268
|
aliases?: Record<string, any> | undefined;
|
|
@@ -380,7 +380,7 @@ export declare const rawSchema: z.ZodObject<{
|
|
|
380
380
|
readonly __kind: any;
|
|
381
381
|
};
|
|
382
382
|
}> | undefined;
|
|
383
|
-
network?: Record<string,
|
|
383
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
384
384
|
label: string & {
|
|
385
385
|
readonly __kind: any;
|
|
386
386
|
};
|
|
@@ -391,21 +391,21 @@ export declare const rawSchema: z.ZodObject<{
|
|
|
391
391
|
readonly __kind: any;
|
|
392
392
|
};
|
|
393
393
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
394
|
+
email?: string | undefined;
|
|
395
|
+
password?: string | undefined;
|
|
396
|
+
amount?: string | undefined;
|
|
397
|
+
activation_code?: string | undefined;
|
|
398
|
+
mnemonic: string[];
|
|
394
399
|
pkh: string & {
|
|
395
400
|
readonly __kind: any;
|
|
396
401
|
};
|
|
397
|
-
mnemonic: string[];
|
|
398
|
-
email: string;
|
|
399
|
-
password: string;
|
|
400
|
-
amount: string;
|
|
401
|
-
activation_code: string;
|
|
402
402
|
} & {
|
|
403
403
|
readonly __kind: any;
|
|
404
404
|
}>;
|
|
405
405
|
} & {
|
|
406
406
|
readonly __kind: any;
|
|
407
407
|
}>> | undefined;
|
|
408
|
-
sandbox?: Record<string,
|
|
408
|
+
sandbox?: Record<string, {
|
|
409
409
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
410
410
|
plugin?: (string & {
|
|
411
411
|
readonly __kind: any;
|
|
@@ -435,7 +435,7 @@ export declare const rawSchema: z.ZodObject<{
|
|
|
435
435
|
};
|
|
436
436
|
} & {
|
|
437
437
|
readonly __kind: any;
|
|
438
|
-
}
|
|
438
|
+
}> | undefined;
|
|
439
439
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
440
440
|
storage?: Record<string, any> | undefined;
|
|
441
441
|
aliases?: Record<string, any> | undefined;
|
|
@@ -574,7 +574,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
574
574
|
readonly __kind: any;
|
|
575
575
|
};
|
|
576
576
|
}> | undefined;
|
|
577
|
-
network?: Record<string,
|
|
577
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
578
578
|
label: string & {
|
|
579
579
|
readonly __kind: any;
|
|
580
580
|
};
|
|
@@ -585,21 +585,21 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
585
585
|
readonly __kind: any;
|
|
586
586
|
};
|
|
587
587
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
588
|
+
email?: string | undefined;
|
|
589
|
+
password?: string | undefined;
|
|
590
|
+
amount?: string | undefined;
|
|
591
|
+
activation_code?: string | undefined;
|
|
592
|
+
mnemonic: string[];
|
|
588
593
|
pkh: string & {
|
|
589
594
|
readonly __kind: any;
|
|
590
595
|
};
|
|
591
|
-
mnemonic: string[];
|
|
592
|
-
email: string;
|
|
593
|
-
password: string;
|
|
594
|
-
amount: string;
|
|
595
|
-
activation_code: string;
|
|
596
596
|
} & {
|
|
597
597
|
readonly __kind: any;
|
|
598
598
|
}>;
|
|
599
599
|
} & {
|
|
600
600
|
readonly __kind: any;
|
|
601
601
|
}>> | undefined;
|
|
602
|
-
sandbox?: Record<string,
|
|
602
|
+
sandbox?: Record<string, {
|
|
603
603
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
604
604
|
plugin?: (string & {
|
|
605
605
|
readonly __kind: any;
|
|
@@ -629,7 +629,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
629
629
|
};
|
|
630
630
|
} & {
|
|
631
631
|
readonly __kind: any;
|
|
632
|
-
}
|
|
632
|
+
}> | undefined;
|
|
633
633
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
634
634
|
storage?: Record<string, any> | undefined;
|
|
635
635
|
aliases?: Record<string, any> | undefined;
|
|
@@ -699,7 +699,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
699
699
|
readonly __kind: any;
|
|
700
700
|
};
|
|
701
701
|
}> | undefined;
|
|
702
|
-
network?: Record<string,
|
|
702
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
703
703
|
label: string & {
|
|
704
704
|
readonly __kind: any;
|
|
705
705
|
};
|
|
@@ -710,21 +710,21 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
710
710
|
readonly __kind: any;
|
|
711
711
|
};
|
|
712
712
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
713
|
+
email?: string | undefined;
|
|
714
|
+
password?: string | undefined;
|
|
715
|
+
amount?: string | undefined;
|
|
716
|
+
activation_code?: string | undefined;
|
|
717
|
+
mnemonic: string[];
|
|
713
718
|
pkh: string & {
|
|
714
719
|
readonly __kind: any;
|
|
715
720
|
};
|
|
716
|
-
mnemonic: string[];
|
|
717
|
-
email: string;
|
|
718
|
-
password: string;
|
|
719
|
-
amount: string;
|
|
720
|
-
activation_code: string;
|
|
721
721
|
} & {
|
|
722
722
|
readonly __kind: any;
|
|
723
723
|
}>;
|
|
724
724
|
} & {
|
|
725
725
|
readonly __kind: any;
|
|
726
726
|
}>> | undefined;
|
|
727
|
-
sandbox?: Record<string,
|
|
727
|
+
sandbox?: Record<string, {
|
|
728
728
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
729
729
|
plugin?: (string & {
|
|
730
730
|
readonly __kind: any;
|
|
@@ -754,7 +754,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
754
754
|
};
|
|
755
755
|
} & {
|
|
756
756
|
readonly __kind: any;
|
|
757
|
-
}
|
|
757
|
+
}> | undefined;
|
|
758
758
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
759
759
|
storage?: Record<string, any> | undefined;
|
|
760
760
|
aliases?: Record<string, any> | undefined;
|
|
@@ -974,7 +974,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
974
974
|
readonly __kind: any;
|
|
975
975
|
};
|
|
976
976
|
}> | undefined;
|
|
977
|
-
network?: Record<string,
|
|
977
|
+
network?: Record<string, import("@taqueria/protocol/Base").Flatten<{
|
|
978
978
|
label: string & {
|
|
979
979
|
readonly __kind: any;
|
|
980
980
|
};
|
|
@@ -985,21 +985,21 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
985
985
|
readonly __kind: any;
|
|
986
986
|
};
|
|
987
987
|
faucet: import("@taqueria/protocol/Base").Flatten<{
|
|
988
|
+
email?: string | undefined;
|
|
989
|
+
password?: string | undefined;
|
|
990
|
+
amount?: string | undefined;
|
|
991
|
+
activation_code?: string | undefined;
|
|
992
|
+
mnemonic: string[];
|
|
988
993
|
pkh: string & {
|
|
989
994
|
readonly __kind: any;
|
|
990
995
|
};
|
|
991
|
-
mnemonic: string[];
|
|
992
|
-
email: string;
|
|
993
|
-
password: string;
|
|
994
|
-
amount: string;
|
|
995
|
-
activation_code: string;
|
|
996
996
|
} & {
|
|
997
997
|
readonly __kind: any;
|
|
998
998
|
}>;
|
|
999
999
|
} & {
|
|
1000
1000
|
readonly __kind: any;
|
|
1001
1001
|
}>> | undefined;
|
|
1002
|
-
sandbox?: Record<string,
|
|
1002
|
+
sandbox?: Record<string, {
|
|
1003
1003
|
attributes?: Record<string, string | number | boolean> | undefined;
|
|
1004
1004
|
plugin?: (string & {
|
|
1005
1005
|
readonly __kind: any;
|
|
@@ -1029,7 +1029,7 @@ export declare const internalSchema: z.ZodObject<z.extendShape<{
|
|
|
1029
1029
|
};
|
|
1030
1030
|
} & {
|
|
1031
1031
|
readonly __kind: any;
|
|
1032
|
-
}
|
|
1032
|
+
}> | undefined;
|
|
1033
1033
|
environment?: Record<string, string | import("@taqueria/protocol/Base").Flatten<{
|
|
1034
1034
|
storage?: Record<string, any> | undefined;
|
|
1035
1035
|
aliases?: Record<string, any> | undefined;
|
package/package.json
CHANGED