@taqueria/protocol 0.19.6 → 0.20.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/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/ParsedTemplate.d.ts
CHANGED
|
@@ -82,7 +82,7 @@ export declare const rawSchema: z.ZodObject<z.extendShape<{
|
|
|
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<z.extendShape<{
|
|
|
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<z.extendShape<{
|
|
|
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<z.extendShape<{
|
|
|
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<z.extendShape<{
|
|
|
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<z.extendShape<{
|
|
|
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;
|