@taqueria/protocol 0.28.3 → 0.28.5
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 +1112 -836
- package/EphemeralState.d.ts.map +1 -1
- package/EphemeralState.js.map +1 -1
- package/ParsedPluginInfo.d.ts +1169 -3011
- package/ParsedPluginInfo.d.ts.map +1 -1
- package/PersistentState.d.ts +254 -110
- package/PersistentState.d.ts.map +1 -1
- package/PluginInfo.d.ts +1840 -3078
- package/PluginInfo.d.ts.map +1 -1
- package/PluginSchema.d.ts +31266 -4773
- package/PluginSchema.d.ts.map +1 -1
- package/SHA256.js +4 -0
- package/SHA256.js.map +1 -1
- package/SanitizedAbsPath.js +4 -0
- package/SanitizedAbsPath.js.map +1 -1
- package/SanitizedArgs.d.ts +1634 -1395
- package/SanitizedArgs.d.ts.map +1 -1
- package/SanitizedArgs.js +4 -0
- package/SanitizedArgs.js.map +1 -1
- package/i18n.js +5 -0
- package/i18n.js.map +1 -1
- package/index.js +5 -0
- package/index.js.map +1 -1
- package/out/types/Config.d.ts +221 -221
- package/out/types/ConfigEnvironmentFileV2.d.ts +160 -88
- package/out/types/ConfigEnvironmentFileV2.d.ts.map +1 -1
- package/out/types/ConfigFileV1.d.ts +321 -321
- package/out/types/ConfigFileV2.d.ts +378 -242
- package/out/types/ConfigFileV2.d.ts.map +1 -1
- package/out/types/Environment.d.ts +13 -13
- package/out/types/EphemeralState.d.ts +6709 -6745
- package/out/types/EphemeralState.d.ts.map +1 -1
- package/out/types/LoadedConfig.d.ts +435 -439
- package/out/types/LoadedConfig.d.ts.map +1 -1
- package/out/types/NetworkAccountConfig.d.ts +9 -9
- package/out/types/NetworkConfig.d.ts +30 -30
- package/out/types/Operation.d.ts +6307 -1763
- package/out/types/Operation.d.ts.map +1 -1
- package/out/types/Option.d.ts +40 -40
- package/out/types/ParsedConfig.d.ts +161 -425
- package/out/types/ParsedConfig.d.ts.map +1 -1
- package/out/types/ParsedOperation.d.ts +3414 -1282
- package/out/types/ParsedOperation.d.ts.map +1 -1
- package/out/types/ParsedTemplate.d.ts +217 -2365
- package/out/types/ParsedTemplate.d.ts.map +1 -1
- package/out/types/PersistedOperation.d.ts +9 -9
- package/out/types/PersistedTask.d.ts +9 -9
- package/out/types/PersistentState.d.ts +34 -34
- package/out/types/PluginDependenciesResponse.d.ts +16 -20
- package/out/types/PluginDependenciesResponse.d.ts.map +1 -1
- package/out/types/PluginInfo.d.ts +3014 -3034
- package/out/types/PluginInfo.d.ts.map +1 -1
- package/out/types/PluginJsonResponse.d.ts +4 -4
- package/out/types/PluginProxyResponse.d.ts +4 -4
- package/out/types/PluginSchema.d.ts +46162 -13114
- package/out/types/PluginSchema.d.ts.map +1 -1
- package/out/types/PositionalArg.d.ts +27 -27
- package/out/types/Provisioner.d.ts +17 -17
- package/out/types/Provisions.d.ts +17 -17
- package/out/types/ProxyTaskArgs.d.ts +3318 -922
- package/out/types/ProxyTaskArgs.d.ts.map +1 -1
- package/out/types/ProxyTemplateArgs.d.ts +3318 -922
- package/out/types/ProxyTemplateArgs.d.ts.map +1 -1
- package/out/types/RequestArgs.d.ts +3288 -888
- package/out/types/RequestArgs.d.ts.map +1 -1
- package/out/types/RuntimeDependencyReport.d.ts +16 -20
- package/out/types/RuntimeDependencyReport.d.ts.map +1 -1
- package/out/types/SandboxAccount.d.ts +22 -22
- package/out/types/SandboxAccount.d.ts.map +1 -1
- package/out/types/SandboxAccounts.d.ts +22 -22
- package/out/types/SandboxAccounts.d.ts.map +1 -1
- package/out/types/SandboxConfig.d.ts +22 -22
- package/out/types/SanitizedArgs.d.ts +157 -157
- package/out/types/SanitizedArgs.d.ts.map +1 -1
- package/out/types/Task.d.ts +212 -212
- package/out/types/Template.d.ts +9547 -1799
- package/out/types/Template.d.ts.map +1 -1
- package/out/types-zod.d.ts +22716 -10470
- package/out/types-zod.d.ts.map +1 -1
- package/package.json +1 -1
- package/taqueria-protocol-types.js +5 -0
- package/taqueria-protocol-types.js.map +1 -1
- package/types-config-files.js +20 -0
- package/types-config-files.js.map +1 -1
package/EphemeralState.d.ts
CHANGED
|
@@ -34,23 +34,23 @@ declare const taskToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEffects
|
|
|
34
34
|
boolean: z.ZodOptional<z.ZodBoolean>;
|
|
35
35
|
choices: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
36
36
|
}, "strip", z.ZodTypeAny, {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
37
|
+
description: string;
|
|
38
|
+
flag: string;
|
|
40
39
|
shortFlag?: string | undefined;
|
|
41
40
|
defaultValue?: string | number | boolean | undefined;
|
|
41
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
42
|
+
required?: boolean | undefined;
|
|
43
|
+
boolean?: boolean | undefined;
|
|
42
44
|
choices?: string[] | undefined;
|
|
45
|
+
}, {
|
|
43
46
|
description: string;
|
|
44
47
|
flag: string;
|
|
45
|
-
}, {
|
|
46
|
-
boolean?: boolean | undefined;
|
|
47
|
-
required?: boolean | undefined;
|
|
48
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
49
48
|
shortFlag?: string | undefined;
|
|
50
49
|
defaultValue?: string | number | boolean | undefined;
|
|
50
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
51
|
+
required?: boolean | undefined;
|
|
52
|
+
boolean?: boolean | undefined;
|
|
51
53
|
choices?: string[] | undefined;
|
|
52
|
-
description: string;
|
|
53
|
-
flag: string;
|
|
54
54
|
}>, "many">>;
|
|
55
55
|
positionals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
56
56
|
placeholder: z.ZodString;
|
|
@@ -59,96 +59,96 @@ declare const taskToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEffects
|
|
|
59
59
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"boolean">]>>;
|
|
60
60
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
61
61
|
}, "strip", z.ZodTypeAny, {
|
|
62
|
-
required?: boolean | undefined;
|
|
63
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
64
|
-
defaultValue?: string | number | boolean | undefined;
|
|
65
62
|
description: string;
|
|
66
63
|
placeholder: string;
|
|
67
|
-
}, {
|
|
68
|
-
required?: boolean | undefined;
|
|
69
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
70
64
|
defaultValue?: string | number | boolean | undefined;
|
|
65
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
66
|
+
required?: boolean | undefined;
|
|
67
|
+
}, {
|
|
71
68
|
description: string;
|
|
72
69
|
placeholder: string;
|
|
70
|
+
defaultValue?: string | number | boolean | undefined;
|
|
71
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
72
|
+
required?: boolean | undefined;
|
|
73
73
|
}>, "many">>;
|
|
74
74
|
}, "strip", z.ZodTypeAny, {
|
|
75
|
+
handler: string;
|
|
76
|
+
command: string;
|
|
77
|
+
task: string;
|
|
78
|
+
aliases?: string[] | undefined;
|
|
75
79
|
description?: string | undefined;
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
defaultValue?: string | number | boolean | undefined;
|
|
80
|
-
description: string;
|
|
81
|
-
placeholder: string;
|
|
82
|
-
}[] | undefined;
|
|
80
|
+
example?: string | undefined;
|
|
81
|
+
hidden?: boolean | undefined;
|
|
82
|
+
encoding?: "none" | "json" | "application/json" | undefined;
|
|
83
83
|
options?: {
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
84
|
+
description: string;
|
|
85
|
+
flag: string;
|
|
87
86
|
shortFlag?: string | undefined;
|
|
88
87
|
defaultValue?: string | number | boolean | undefined;
|
|
88
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
89
|
+
required?: boolean | undefined;
|
|
90
|
+
boolean?: boolean | undefined;
|
|
89
91
|
choices?: string[] | undefined;
|
|
92
|
+
}[] | undefined;
|
|
93
|
+
positionals?: {
|
|
90
94
|
description: string;
|
|
91
|
-
|
|
95
|
+
placeholder: string;
|
|
96
|
+
defaultValue?: string | number | boolean | undefined;
|
|
97
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
98
|
+
required?: boolean | undefined;
|
|
92
99
|
}[] | undefined;
|
|
93
|
-
|
|
94
|
-
encoding?: "none" | "json" | "application/json" | undefined;
|
|
95
|
-
aliases?: string[] | undefined;
|
|
96
|
-
example?: string | undefined;
|
|
100
|
+
}, {
|
|
97
101
|
handler: string;
|
|
98
102
|
command: string;
|
|
99
103
|
task: string;
|
|
100
|
-
|
|
104
|
+
aliases?: string[] | undefined;
|
|
101
105
|
description?: string | undefined;
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
defaultValue?: string | number | boolean | undefined;
|
|
106
|
-
description: string;
|
|
107
|
-
placeholder: string;
|
|
108
|
-
}[] | undefined;
|
|
106
|
+
example?: string | undefined;
|
|
107
|
+
hidden?: boolean | undefined;
|
|
108
|
+
encoding?: "none" | "json" | "application/json" | undefined;
|
|
109
109
|
options?: {
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
110
|
+
description: string;
|
|
111
|
+
flag: string;
|
|
113
112
|
shortFlag?: string | undefined;
|
|
114
113
|
defaultValue?: string | number | boolean | undefined;
|
|
114
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
115
|
+
required?: boolean | undefined;
|
|
116
|
+
boolean?: boolean | undefined;
|
|
115
117
|
choices?: string[] | undefined;
|
|
118
|
+
}[] | undefined;
|
|
119
|
+
positionals?: {
|
|
116
120
|
description: string;
|
|
117
|
-
|
|
121
|
+
placeholder: string;
|
|
122
|
+
defaultValue?: string | number | boolean | undefined;
|
|
123
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
124
|
+
required?: boolean | undefined;
|
|
118
125
|
}[] | undefined;
|
|
119
|
-
|
|
120
|
-
encoding?: "none" | "json" | "application/json" | undefined;
|
|
121
|
-
aliases?: string[] | undefined;
|
|
122
|
-
example?: string | undefined;
|
|
126
|
+
}>, Task.Task, {
|
|
123
127
|
handler: string;
|
|
124
128
|
command: string;
|
|
125
129
|
task: string;
|
|
126
|
-
|
|
130
|
+
aliases?: string[] | undefined;
|
|
127
131
|
description?: string | undefined;
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
defaultValue?: string | number | boolean | undefined;
|
|
132
|
-
description: string;
|
|
133
|
-
placeholder: string;
|
|
134
|
-
}[] | undefined;
|
|
132
|
+
example?: string | undefined;
|
|
133
|
+
hidden?: boolean | undefined;
|
|
134
|
+
encoding?: "none" | "json" | "application/json" | undefined;
|
|
135
135
|
options?: {
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
136
|
+
description: string;
|
|
137
|
+
flag: string;
|
|
139
138
|
shortFlag?: string | undefined;
|
|
140
139
|
defaultValue?: string | number | boolean | undefined;
|
|
140
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
141
|
+
required?: boolean | undefined;
|
|
142
|
+
boolean?: boolean | undefined;
|
|
141
143
|
choices?: string[] | undefined;
|
|
144
|
+
}[] | undefined;
|
|
145
|
+
positionals?: {
|
|
142
146
|
description: string;
|
|
143
|
-
|
|
147
|
+
placeholder: string;
|
|
148
|
+
defaultValue?: string | number | boolean | undefined;
|
|
149
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
150
|
+
required?: boolean | undefined;
|
|
144
151
|
}[] | undefined;
|
|
145
|
-
hidden?: boolean | undefined;
|
|
146
|
-
encoding?: "none" | "json" | "application/json" | undefined;
|
|
147
|
-
aliases?: string[] | undefined;
|
|
148
|
-
example?: string | undefined;
|
|
149
|
-
handler: string;
|
|
150
|
-
command: string;
|
|
151
|
-
task: string;
|
|
152
152
|
}>]>>;
|
|
153
153
|
declare const operationToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
154
154
|
type: z.ZodUnion<[z.ZodLiteral<"npm">, z.ZodLiteral<"binary">, z.ZodLiteral<"deno">]>;
|
|
@@ -173,17 +173,17 @@ declare const operationToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEf
|
|
|
173
173
|
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"boolean">]>>;
|
|
174
174
|
required: z.ZodOptional<z.ZodBoolean>;
|
|
175
175
|
}, "strip", z.ZodTypeAny, {
|
|
176
|
-
required?: boolean | undefined;
|
|
177
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
178
|
-
defaultValue?: string | number | boolean | undefined;
|
|
179
176
|
description: string;
|
|
180
177
|
placeholder: string;
|
|
181
|
-
}, {
|
|
182
|
-
required?: boolean | undefined;
|
|
183
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
184
178
|
defaultValue?: string | number | boolean | undefined;
|
|
179
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
180
|
+
required?: boolean | undefined;
|
|
181
|
+
}, {
|
|
185
182
|
description: string;
|
|
186
183
|
placeholder: string;
|
|
184
|
+
defaultValue?: string | number | boolean | undefined;
|
|
185
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
186
|
+
required?: boolean | undefined;
|
|
187
187
|
}>, "many">>;
|
|
188
188
|
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
189
189
|
shortFlag: z.ZodOptional<z.ZodString>;
|
|
@@ -195,23 +195,23 @@ declare const operationToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEf
|
|
|
195
195
|
boolean: z.ZodOptional<z.ZodBoolean>;
|
|
196
196
|
choices: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
197
197
|
}, "strip", z.ZodTypeAny, {
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
198
|
+
description: string;
|
|
199
|
+
flag: string;
|
|
201
200
|
shortFlag?: string | undefined;
|
|
202
201
|
defaultValue?: string | number | boolean | undefined;
|
|
202
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
203
|
+
required?: boolean | undefined;
|
|
204
|
+
boolean?: boolean | undefined;
|
|
203
205
|
choices?: string[] | undefined;
|
|
206
|
+
}, {
|
|
204
207
|
description: string;
|
|
205
208
|
flag: string;
|
|
206
|
-
}, {
|
|
207
|
-
boolean?: boolean | undefined;
|
|
208
|
-
required?: boolean | undefined;
|
|
209
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
210
209
|
shortFlag?: string | undefined;
|
|
211
210
|
defaultValue?: string | number | boolean | undefined;
|
|
211
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
212
|
+
required?: boolean | undefined;
|
|
213
|
+
boolean?: boolean | undefined;
|
|
212
214
|
choices?: string[] | undefined;
|
|
213
|
-
description: string;
|
|
214
|
-
flag: string;
|
|
215
215
|
}>, "many">>;
|
|
216
216
|
handler: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
217
217
|
operations: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
@@ -219,13 +219,13 @@ declare const operationToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEf
|
|
|
219
219
|
time: z.ZodNumber;
|
|
220
220
|
output: z.ZodOptional<z.ZodUnknown>;
|
|
221
221
|
}, "strip", z.ZodTypeAny, {
|
|
222
|
-
output?: unknown;
|
|
223
222
|
hash: string;
|
|
224
223
|
time: number;
|
|
225
|
-
}, {
|
|
226
224
|
output?: unknown;
|
|
225
|
+
}, {
|
|
227
226
|
hash: string;
|
|
228
227
|
time: number;
|
|
228
|
+
output?: unknown;
|
|
229
229
|
}>>;
|
|
230
230
|
tasks: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
231
231
|
task: z.ZodString;
|
|
@@ -233,41 +233,41 @@ declare const operationToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEf
|
|
|
233
233
|
time: z.ZodNumber;
|
|
234
234
|
output: z.ZodOptional<z.ZodUnknown>;
|
|
235
235
|
}, "strip", z.ZodTypeAny, {
|
|
236
|
-
output?: unknown;
|
|
237
236
|
plugin: string;
|
|
238
237
|
task: string;
|
|
239
238
|
time: number;
|
|
240
|
-
}, {
|
|
241
239
|
output?: unknown;
|
|
240
|
+
}, {
|
|
242
241
|
plugin: string;
|
|
243
242
|
task: string;
|
|
244
243
|
time: number;
|
|
244
|
+
output?: unknown;
|
|
245
245
|
}>>;
|
|
246
246
|
}, "strip", z.ZodTypeAny, {
|
|
247
247
|
operations: Record<string, {
|
|
248
|
-
output?: unknown;
|
|
249
248
|
hash: string;
|
|
250
249
|
time: number;
|
|
250
|
+
output?: unknown;
|
|
251
251
|
}>;
|
|
252
252
|
tasks: Record<string, {
|
|
253
|
-
output?: unknown;
|
|
254
253
|
plugin: string;
|
|
255
254
|
task: string;
|
|
256
255
|
time: number;
|
|
256
|
+
output?: unknown;
|
|
257
257
|
}>;
|
|
258
258
|
}, {
|
|
259
259
|
operations: Record<string, {
|
|
260
|
-
output?: unknown;
|
|
261
260
|
hash: string;
|
|
262
261
|
time: number;
|
|
262
|
+
output?: unknown;
|
|
263
263
|
}>;
|
|
264
264
|
tasks: Record<string, {
|
|
265
|
-
output?: unknown;
|
|
266
265
|
plugin: string;
|
|
267
266
|
task: string;
|
|
268
267
|
time: number;
|
|
268
|
+
output?: unknown;
|
|
269
269
|
}>;
|
|
270
|
-
}>], z.ZodUnknown>, z.ZodFunction<z.ZodTuple<[z.ZodObject<
|
|
270
|
+
}>], z.ZodUnknown>, z.ZodFunction<z.ZodTuple<[z.ZodObject<{
|
|
271
271
|
_: z.ZodArray<z.ZodString, "many">;
|
|
272
272
|
projectDir: z.ZodString;
|
|
273
273
|
maxConcurrency: z.ZodNumber;
|
|
@@ -281,12 +281,75 @@ declare const operationToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEf
|
|
|
281
281
|
yes: z.ZodBoolean;
|
|
282
282
|
plugin: z.ZodOptional<z.ZodString>;
|
|
283
283
|
env: z.ZodString;
|
|
284
|
-
quickstart: z.ZodString;
|
|
285
284
|
setBuild: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
286
285
|
setVersion: z.ZodString;
|
|
287
|
-
}, "quickstart">, {
|
|
288
286
|
taqRun: z.ZodUnion<[z.ZodLiteral<"proxy">, z.ZodLiteral<"pluginInfo">, z.ZodLiteral<"checkRuntimeDependencies">, z.ZodLiteral<"installRuntimeDependencies">, z.ZodLiteral<"proxyTemplate">]>;
|
|
289
|
-
config: z.ZodObject<
|
|
287
|
+
config: z.ZodObject<{
|
|
288
|
+
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
289
|
+
label: z.ZodString;
|
|
290
|
+
rpcUrl: z.ZodString;
|
|
291
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
292
|
+
plugin: z.ZodOptional<z.ZodString>;
|
|
293
|
+
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
294
|
+
encryptedKey: z.ZodString;
|
|
295
|
+
publicKeyHash: z.ZodString;
|
|
296
|
+
secretKey: z.ZodString;
|
|
297
|
+
}, "strip", z.ZodTypeAny, {
|
|
298
|
+
publicKeyHash: string;
|
|
299
|
+
encryptedKey: string;
|
|
300
|
+
secretKey: string;
|
|
301
|
+
}, {
|
|
302
|
+
publicKeyHash: string;
|
|
303
|
+
encryptedKey: string;
|
|
304
|
+
secretKey: string;
|
|
305
|
+
}>, z.ZodString]>>>;
|
|
306
|
+
tzkt: z.ZodOptional<z.ZodObject<{
|
|
307
|
+
disableAutostartWithSandbox: z.ZodOptional<z.ZodBoolean>;
|
|
308
|
+
postgresqlPort: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
309
|
+
apiPort: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
310
|
+
}, "strip", z.ZodTypeAny, {
|
|
311
|
+
disableAutostartWithSandbox?: boolean | undefined;
|
|
312
|
+
postgresqlPort?: number | undefined;
|
|
313
|
+
apiPort?: number | undefined;
|
|
314
|
+
}, {
|
|
315
|
+
disableAutostartWithSandbox?: boolean | undefined;
|
|
316
|
+
postgresqlPort?: number | undefined;
|
|
317
|
+
apiPort?: number | undefined;
|
|
318
|
+
}>>;
|
|
319
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
320
|
+
}, "strip", z.ZodTypeAny, {
|
|
321
|
+
label: string;
|
|
322
|
+
rpcUrl: string;
|
|
323
|
+
protocol?: string | undefined;
|
|
324
|
+
plugin?: string | undefined;
|
|
325
|
+
accounts?: Record<string, string | {
|
|
326
|
+
publicKeyHash: string;
|
|
327
|
+
encryptedKey: string;
|
|
328
|
+
secretKey: string;
|
|
329
|
+
}> | undefined;
|
|
330
|
+
tzkt?: {
|
|
331
|
+
disableAutostartWithSandbox?: boolean | undefined;
|
|
332
|
+
postgresqlPort?: number | undefined;
|
|
333
|
+
apiPort?: number | undefined;
|
|
334
|
+
} | undefined;
|
|
335
|
+
annotations?: Record<string, unknown> | undefined;
|
|
336
|
+
}, {
|
|
337
|
+
label: string;
|
|
338
|
+
rpcUrl: string;
|
|
339
|
+
protocol?: string | undefined;
|
|
340
|
+
plugin?: string | undefined;
|
|
341
|
+
accounts?: Record<string, string | {
|
|
342
|
+
publicKeyHash: string;
|
|
343
|
+
encryptedKey: string;
|
|
344
|
+
secretKey: string;
|
|
345
|
+
}> | undefined;
|
|
346
|
+
tzkt?: {
|
|
347
|
+
disableAutostartWithSandbox?: boolean | undefined;
|
|
348
|
+
postgresqlPort?: number | undefined;
|
|
349
|
+
apiPort?: number | undefined;
|
|
350
|
+
} | undefined;
|
|
351
|
+
annotations?: Record<string, unknown> | undefined;
|
|
352
|
+
}>>>;
|
|
290
353
|
language: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"en">, z.ZodLiteral<"fr">]>>>;
|
|
291
354
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
292
355
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -336,15 +399,15 @@ declare const operationToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEf
|
|
|
336
399
|
storage: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
337
400
|
aliases: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
338
401
|
}, "strip", z.ZodTypeAny, {
|
|
339
|
-
storage?: Record<string, string> | undefined;
|
|
340
|
-
aliases?: Record<string, Record<string, string>> | undefined;
|
|
341
402
|
networks: string[];
|
|
342
403
|
sandboxes: string[];
|
|
343
|
-
}, {
|
|
344
404
|
storage?: Record<string, string> | undefined;
|
|
345
405
|
aliases?: Record<string, Record<string, string>> | undefined;
|
|
406
|
+
}, {
|
|
346
407
|
networks: string[];
|
|
347
408
|
sandboxes: string[];
|
|
409
|
+
storage?: Record<string, string> | undefined;
|
|
410
|
+
aliases?: Record<string, Record<string, string>> | undefined;
|
|
348
411
|
}>, z.ZodString]>>;
|
|
349
412
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
350
413
|
label: z.ZodString;
|
|
@@ -355,15 +418,15 @@ declare const operationToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEf
|
|
|
355
418
|
privateKey: z.ZodOptional<z.ZodString>;
|
|
356
419
|
mnemonic: z.ZodOptional<z.ZodString>;
|
|
357
420
|
}, "strip", z.ZodTypeAny, {
|
|
358
|
-
mnemonic?: string | undefined;
|
|
359
421
|
publicKey?: string | undefined;
|
|
360
422
|
publicKeyHash?: string | undefined;
|
|
361
423
|
privateKey?: string | undefined;
|
|
362
|
-
}, {
|
|
363
424
|
mnemonic?: string | undefined;
|
|
425
|
+
}, {
|
|
364
426
|
publicKey?: string | undefined;
|
|
365
427
|
publicKeyHash?: string | undefined;
|
|
366
428
|
privateKey?: string | undefined;
|
|
429
|
+
mnemonic?: string | undefined;
|
|
367
430
|
}>>>;
|
|
368
431
|
faucet: z.ZodOptional<z.ZodObject<{
|
|
369
432
|
pkh: z.ZodString;
|
|
@@ -388,11 +451,13 @@ declare const operationToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEf
|
|
|
388
451
|
activation_code: string;
|
|
389
452
|
}>>;
|
|
390
453
|
}, "strip", z.ZodTypeAny, {
|
|
454
|
+
label: string;
|
|
455
|
+
rpcUrl: string;
|
|
391
456
|
accounts?: Record<string, {
|
|
392
|
-
mnemonic?: string | undefined;
|
|
393
457
|
publicKey?: string | undefined;
|
|
394
458
|
publicKeyHash?: string | undefined;
|
|
395
459
|
privateKey?: string | undefined;
|
|
460
|
+
mnemonic?: string | undefined;
|
|
396
461
|
}> | undefined;
|
|
397
462
|
faucet?: {
|
|
398
463
|
pkh: string;
|
|
@@ -402,14 +467,14 @@ declare const operationToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEf
|
|
|
402
467
|
amount: string;
|
|
403
468
|
activation_code: string;
|
|
404
469
|
} | undefined;
|
|
470
|
+
}, {
|
|
405
471
|
label: string;
|
|
406
472
|
rpcUrl: string;
|
|
407
|
-
}, {
|
|
408
473
|
accounts?: Record<string, {
|
|
409
|
-
mnemonic?: string | undefined;
|
|
410
474
|
publicKey?: string | undefined;
|
|
411
475
|
publicKeyHash?: string | undefined;
|
|
412
476
|
privateKey?: string | undefined;
|
|
477
|
+
mnemonic?: string | undefined;
|
|
413
478
|
}> | undefined;
|
|
414
479
|
faucet?: {
|
|
415
480
|
pkh: string;
|
|
@@ -419,95 +484,36 @@ declare const operationToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEf
|
|
|
419
484
|
amount: string;
|
|
420
485
|
activation_code: string;
|
|
421
486
|
} | undefined;
|
|
422
|
-
label: string;
|
|
423
|
-
rpcUrl: string;
|
|
424
|
-
}>>>;
|
|
425
|
-
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
426
|
-
label: z.ZodString;
|
|
427
|
-
rpcUrl: z.ZodString;
|
|
428
|
-
protocol: z.ZodOptional<z.ZodString>;
|
|
429
|
-
plugin: z.ZodOptional<z.ZodString>;
|
|
430
|
-
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
431
|
-
encryptedKey: z.ZodString;
|
|
432
|
-
publicKeyHash: z.ZodString;
|
|
433
|
-
secretKey: z.ZodString;
|
|
434
|
-
}, "strip", z.ZodTypeAny, {
|
|
435
|
-
publicKeyHash: string;
|
|
436
|
-
encryptedKey: string;
|
|
437
|
-
secretKey: string;
|
|
438
|
-
}, {
|
|
439
|
-
publicKeyHash: string;
|
|
440
|
-
encryptedKey: string;
|
|
441
|
-
secretKey: string;
|
|
442
|
-
}>, z.ZodString]>>>;
|
|
443
|
-
tzkt: z.ZodOptional<z.ZodObject<{
|
|
444
|
-
disableAutostartWithSandbox: z.ZodOptional<z.ZodBoolean>;
|
|
445
|
-
postgresqlPort: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
446
|
-
apiPort: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
447
|
-
}, "strip", z.ZodTypeAny, {
|
|
448
|
-
disableAutostartWithSandbox?: boolean | undefined;
|
|
449
|
-
postgresqlPort?: number | undefined;
|
|
450
|
-
apiPort?: number | undefined;
|
|
451
|
-
}, {
|
|
452
|
-
disableAutostartWithSandbox?: boolean | undefined;
|
|
453
|
-
postgresqlPort?: number | undefined;
|
|
454
|
-
apiPort?: number | undefined;
|
|
455
|
-
}>>;
|
|
456
|
-
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
457
|
-
}, "strip", z.ZodTypeAny, {
|
|
458
|
-
plugin?: string | undefined;
|
|
459
|
-
accounts?: Record<string, string | {
|
|
460
|
-
publicKeyHash: string;
|
|
461
|
-
encryptedKey: string;
|
|
462
|
-
secretKey: string;
|
|
463
|
-
}> | undefined;
|
|
464
|
-
protocol?: string | undefined;
|
|
465
|
-
tzkt?: {
|
|
466
|
-
disableAutostartWithSandbox?: boolean | undefined;
|
|
467
|
-
postgresqlPort?: number | undefined;
|
|
468
|
-
apiPort?: number | undefined;
|
|
469
|
-
} | undefined;
|
|
470
|
-
annotations?: Record<string, unknown> | undefined;
|
|
471
|
-
label: string;
|
|
472
|
-
rpcUrl: string;
|
|
473
|
-
}, {
|
|
474
|
-
plugin?: string | undefined;
|
|
475
|
-
accounts?: Record<string, string | {
|
|
476
|
-
publicKeyHash: string;
|
|
477
|
-
encryptedKey: string;
|
|
478
|
-
secretKey: string;
|
|
479
|
-
}> | undefined;
|
|
480
|
-
protocol?: string | undefined;
|
|
481
|
-
tzkt?: {
|
|
482
|
-
disableAutostartWithSandbox?: boolean | undefined;
|
|
483
|
-
postgresqlPort?: number | undefined;
|
|
484
|
-
apiPort?: number | undefined;
|
|
485
|
-
} | undefined;
|
|
486
|
-
annotations?: Record<string, unknown> | undefined;
|
|
487
|
-
label: string;
|
|
488
|
-
rpcUrl: string;
|
|
489
487
|
}>>>;
|
|
490
|
-
}, {
|
|
491
488
|
projectDir: z.ZodString;
|
|
492
489
|
configFile: z.ZodString;
|
|
493
490
|
hash: z.ZodString;
|
|
494
|
-
}
|
|
491
|
+
}, "strip", z.ZodTypeAny, {
|
|
492
|
+
projectDir: string;
|
|
493
|
+
environment: Record<string, string | {
|
|
494
|
+
networks: string[];
|
|
495
|
+
sandboxes: string[];
|
|
496
|
+
storage?: Record<string, string> | undefined;
|
|
497
|
+
aliases?: Record<string, Record<string, string>> | undefined;
|
|
498
|
+
}>;
|
|
499
|
+
hash: string;
|
|
500
|
+
configFile: string;
|
|
495
501
|
sandbox?: Record<string, {
|
|
502
|
+
label: string;
|
|
503
|
+
rpcUrl: string;
|
|
504
|
+
protocol?: string | undefined;
|
|
496
505
|
plugin?: string | undefined;
|
|
497
506
|
accounts?: Record<string, string | {
|
|
498
507
|
publicKeyHash: string;
|
|
499
508
|
encryptedKey: string;
|
|
500
509
|
secretKey: string;
|
|
501
510
|
}> | undefined;
|
|
502
|
-
protocol?: string | undefined;
|
|
503
511
|
tzkt?: {
|
|
504
512
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
505
513
|
postgresqlPort?: number | undefined;
|
|
506
514
|
apiPort?: number | undefined;
|
|
507
515
|
} | undefined;
|
|
508
516
|
annotations?: Record<string, unknown> | undefined;
|
|
509
|
-
label: string;
|
|
510
|
-
rpcUrl: string;
|
|
511
517
|
}> | undefined;
|
|
512
518
|
language?: "en" | "fr" | undefined;
|
|
513
519
|
metadata?: {
|
|
@@ -529,11 +535,13 @@ declare const operationToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEf
|
|
|
529
535
|
}[] | undefined;
|
|
530
536
|
accounts?: Record<string, string> | undefined;
|
|
531
537
|
network?: Record<string, {
|
|
538
|
+
label: string;
|
|
539
|
+
rpcUrl: string;
|
|
532
540
|
accounts?: Record<string, {
|
|
533
|
-
mnemonic?: string | undefined;
|
|
534
541
|
publicKey?: string | undefined;
|
|
535
542
|
publicKeyHash?: string | undefined;
|
|
536
543
|
privateKey?: string | undefined;
|
|
544
|
+
mnemonic?: string | undefined;
|
|
537
545
|
}> | undefined;
|
|
538
546
|
faucet?: {
|
|
539
547
|
pkh: string;
|
|
@@ -543,35 +551,33 @@ declare const operationToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEf
|
|
|
543
551
|
amount: string;
|
|
544
552
|
activation_code: string;
|
|
545
553
|
} | undefined;
|
|
546
|
-
label: string;
|
|
547
|
-
rpcUrl: string;
|
|
548
554
|
}> | undefined;
|
|
555
|
+
}, {
|
|
549
556
|
projectDir: string;
|
|
550
557
|
environment: Record<string, string | {
|
|
551
|
-
storage?: Record<string, string> | undefined;
|
|
552
|
-
aliases?: Record<string, Record<string, string>> | undefined;
|
|
553
558
|
networks: string[];
|
|
554
559
|
sandboxes: string[];
|
|
560
|
+
storage?: Record<string, string> | undefined;
|
|
561
|
+
aliases?: Record<string, Record<string, string>> | undefined;
|
|
555
562
|
}>;
|
|
556
563
|
hash: string;
|
|
557
564
|
configFile: string;
|
|
558
|
-
}, {
|
|
559
565
|
sandbox?: Record<string, {
|
|
566
|
+
label: string;
|
|
567
|
+
rpcUrl: string;
|
|
568
|
+
protocol?: string | undefined;
|
|
560
569
|
plugin?: string | undefined;
|
|
561
570
|
accounts?: Record<string, string | {
|
|
562
571
|
publicKeyHash: string;
|
|
563
572
|
encryptedKey: string;
|
|
564
573
|
secretKey: string;
|
|
565
574
|
}> | undefined;
|
|
566
|
-
protocol?: string | undefined;
|
|
567
575
|
tzkt?: {
|
|
568
576
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
569
577
|
postgresqlPort?: number | undefined;
|
|
570
578
|
apiPort?: number | undefined;
|
|
571
579
|
} | undefined;
|
|
572
580
|
annotations?: Record<string, unknown> | undefined;
|
|
573
|
-
label: string;
|
|
574
|
-
rpcUrl: string;
|
|
575
581
|
}> | undefined;
|
|
576
582
|
language?: "en" | "fr" | undefined;
|
|
577
583
|
metadata?: {
|
|
@@ -593,11 +599,13 @@ declare const operationToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEf
|
|
|
593
599
|
}[] | undefined;
|
|
594
600
|
accounts?: Record<string, string> | undefined;
|
|
595
601
|
network?: Record<string, {
|
|
602
|
+
label: string;
|
|
603
|
+
rpcUrl: string;
|
|
596
604
|
accounts?: Record<string, {
|
|
597
|
-
mnemonic?: string | undefined;
|
|
598
605
|
publicKey?: string | undefined;
|
|
599
606
|
publicKeyHash?: string | undefined;
|
|
600
607
|
privateKey?: string | undefined;
|
|
608
|
+
mnemonic?: string | undefined;
|
|
601
609
|
}> | undefined;
|
|
602
610
|
faucet?: {
|
|
603
611
|
pkh: string;
|
|
@@ -607,161 +615,199 @@ declare const operationToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEf
|
|
|
607
615
|
amount: string;
|
|
608
616
|
activation_code: string;
|
|
609
617
|
} | undefined;
|
|
610
|
-
label: string;
|
|
611
|
-
rpcUrl: string;
|
|
612
618
|
}> | undefined;
|
|
613
|
-
projectDir: string;
|
|
614
|
-
environment: Record<string, string | {
|
|
615
|
-
storage?: Record<string, string> | undefined;
|
|
616
|
-
aliases?: Record<string, Record<string, string>> | undefined;
|
|
617
|
-
networks: string[];
|
|
618
|
-
sandboxes: string[];
|
|
619
|
-
}>;
|
|
620
|
-
hash: string;
|
|
621
|
-
configFile: string;
|
|
622
619
|
}>;
|
|
623
|
-
}
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
env:
|
|
637
|
-
setBuild:
|
|
638
|
-
setVersion:
|
|
639
|
-
taqRun: "proxy"
|
|
640
|
-
config: {
|
|
641
|
-
sandbox
|
|
620
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
621
|
+
_: z.ZodArray<z.ZodString, "many">;
|
|
622
|
+
projectDir: z.ZodString;
|
|
623
|
+
maxConcurrency: z.ZodNumber;
|
|
624
|
+
debug: z.ZodBoolean;
|
|
625
|
+
disableState: z.ZodBoolean;
|
|
626
|
+
logPluginRequests: z.ZodBoolean;
|
|
627
|
+
fromVsCode: z.ZodBoolean;
|
|
628
|
+
version: z.ZodBoolean;
|
|
629
|
+
build: z.ZodBoolean;
|
|
630
|
+
help: z.ZodBoolean;
|
|
631
|
+
yes: z.ZodBoolean;
|
|
632
|
+
plugin: z.ZodOptional<z.ZodString>;
|
|
633
|
+
env: z.ZodString;
|
|
634
|
+
setBuild: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
635
|
+
setVersion: z.ZodString;
|
|
636
|
+
taqRun: z.ZodUnion<[z.ZodLiteral<"proxy">, z.ZodLiteral<"pluginInfo">, z.ZodLiteral<"checkRuntimeDependencies">, z.ZodLiteral<"installRuntimeDependencies">, z.ZodLiteral<"proxyTemplate">]>;
|
|
637
|
+
config: z.ZodObject<{
|
|
638
|
+
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
639
|
+
label: z.ZodString;
|
|
640
|
+
rpcUrl: z.ZodString;
|
|
641
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
642
|
+
plugin: z.ZodOptional<z.ZodString>;
|
|
643
|
+
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
644
|
+
encryptedKey: z.ZodString;
|
|
645
|
+
publicKeyHash: z.ZodString;
|
|
646
|
+
secretKey: z.ZodString;
|
|
647
|
+
}, "strip", z.ZodTypeAny, {
|
|
648
|
+
publicKeyHash: string;
|
|
649
|
+
encryptedKey: string;
|
|
650
|
+
secretKey: string;
|
|
651
|
+
}, {
|
|
652
|
+
publicKeyHash: string;
|
|
653
|
+
encryptedKey: string;
|
|
654
|
+
secretKey: string;
|
|
655
|
+
}>, z.ZodString]>>>;
|
|
656
|
+
tzkt: z.ZodOptional<z.ZodObject<{
|
|
657
|
+
disableAutostartWithSandbox: z.ZodOptional<z.ZodBoolean>;
|
|
658
|
+
postgresqlPort: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
659
|
+
apiPort: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
660
|
+
}, "strip", z.ZodTypeAny, {
|
|
661
|
+
disableAutostartWithSandbox?: boolean | undefined;
|
|
662
|
+
postgresqlPort?: number | undefined;
|
|
663
|
+
apiPort?: number | undefined;
|
|
664
|
+
}, {
|
|
665
|
+
disableAutostartWithSandbox?: boolean | undefined;
|
|
666
|
+
postgresqlPort?: number | undefined;
|
|
667
|
+
apiPort?: number | undefined;
|
|
668
|
+
}>>;
|
|
669
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
670
|
+
}, "strip", z.ZodTypeAny, {
|
|
671
|
+
label: string;
|
|
672
|
+
rpcUrl: string;
|
|
673
|
+
protocol?: string | undefined;
|
|
642
674
|
plugin?: string | undefined;
|
|
643
675
|
accounts?: Record<string, string | {
|
|
644
676
|
publicKeyHash: string;
|
|
645
677
|
encryptedKey: string;
|
|
646
678
|
secretKey: string;
|
|
647
679
|
}> | undefined;
|
|
648
|
-
protocol?: string | undefined;
|
|
649
680
|
tzkt?: {
|
|
650
681
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
651
682
|
postgresqlPort?: number | undefined;
|
|
652
683
|
apiPort?: number | undefined;
|
|
653
684
|
} | undefined;
|
|
654
685
|
annotations?: Record<string, unknown> | undefined;
|
|
686
|
+
}, {
|
|
655
687
|
label: string;
|
|
656
688
|
rpcUrl: string;
|
|
657
|
-
|
|
658
|
-
language?: "en" | "fr" | undefined;
|
|
659
|
-
metadata?: {
|
|
660
|
-
name?: string | undefined;
|
|
661
|
-
projectDescription?: string | undefined;
|
|
662
|
-
authors?: string[] | undefined;
|
|
663
|
-
license?: string | undefined;
|
|
664
|
-
homepage?: string | undefined;
|
|
665
|
-
} | undefined;
|
|
666
|
-
artifactsDir?: string | undefined;
|
|
667
|
-
contractsDir?: string | undefined;
|
|
668
|
-
contracts?: Record<string, {
|
|
669
|
-
sourceFile: string;
|
|
670
|
-
hash: string;
|
|
671
|
-
}> | undefined;
|
|
672
|
-
plugins?: {
|
|
673
|
-
type: "npm" | "binary" | "deno";
|
|
674
|
-
name: string;
|
|
675
|
-
}[] | undefined;
|
|
676
|
-
accounts?: Record<string, string> | undefined;
|
|
677
|
-
network?: Record<string, {
|
|
678
|
-
accounts?: Record<string, {
|
|
679
|
-
mnemonic?: string | undefined;
|
|
680
|
-
publicKey?: string | undefined;
|
|
681
|
-
publicKeyHash?: string | undefined;
|
|
682
|
-
privateKey?: string | undefined;
|
|
683
|
-
}> | undefined;
|
|
684
|
-
faucet?: {
|
|
685
|
-
pkh: string;
|
|
686
|
-
mnemonic: string[];
|
|
687
|
-
email: string;
|
|
688
|
-
password: string;
|
|
689
|
-
amount: string;
|
|
690
|
-
activation_code: string;
|
|
691
|
-
} | undefined;
|
|
692
|
-
label: string;
|
|
693
|
-
rpcUrl: string;
|
|
694
|
-
}> | undefined;
|
|
695
|
-
projectDir: string;
|
|
696
|
-
environment: Record<string, string | {
|
|
697
|
-
storage?: Record<string, string> | undefined;
|
|
698
|
-
aliases?: Record<string, Record<string, string>> | undefined;
|
|
699
|
-
networks: string[];
|
|
700
|
-
sandboxes: string[];
|
|
701
|
-
}>;
|
|
702
|
-
hash: string;
|
|
703
|
-
configFile: string;
|
|
704
|
-
};
|
|
705
|
-
}, {
|
|
706
|
-
plugin?: string | undefined;
|
|
707
|
-
_: string[];
|
|
708
|
-
projectDir: string;
|
|
709
|
-
maxConcurrency: number;
|
|
710
|
-
debug: boolean;
|
|
711
|
-
disableState: boolean;
|
|
712
|
-
logPluginRequests: boolean;
|
|
713
|
-
fromVsCode: boolean;
|
|
714
|
-
version: boolean;
|
|
715
|
-
build: boolean;
|
|
716
|
-
help: boolean;
|
|
717
|
-
yes: boolean;
|
|
718
|
-
env: string;
|
|
719
|
-
setBuild: string | number;
|
|
720
|
-
setVersion: string;
|
|
721
|
-
taqRun: "proxy" | "pluginInfo" | "checkRuntimeDependencies" | "installRuntimeDependencies" | "proxyTemplate";
|
|
722
|
-
config: {
|
|
723
|
-
sandbox?: Record<string, {
|
|
689
|
+
protocol?: string | undefined;
|
|
724
690
|
plugin?: string | undefined;
|
|
725
691
|
accounts?: Record<string, string | {
|
|
726
692
|
publicKeyHash: string;
|
|
727
693
|
encryptedKey: string;
|
|
728
694
|
secretKey: string;
|
|
729
695
|
}> | undefined;
|
|
730
|
-
protocol?: string | undefined;
|
|
731
696
|
tzkt?: {
|
|
732
697
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
733
698
|
postgresqlPort?: number | undefined;
|
|
734
699
|
apiPort?: number | undefined;
|
|
735
700
|
} | undefined;
|
|
736
701
|
annotations?: Record<string, unknown> | undefined;
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
702
|
+
}>>>;
|
|
703
|
+
language: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"en">, z.ZodLiteral<"fr">]>>>;
|
|
704
|
+
metadata: z.ZodOptional<z.ZodObject<{
|
|
705
|
+
name: z.ZodOptional<z.ZodString>;
|
|
706
|
+
projectDescription: z.ZodOptional<z.ZodString>;
|
|
707
|
+
authors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
708
|
+
license: z.ZodOptional<z.ZodString>;
|
|
709
|
+
homepage: z.ZodOptional<z.ZodString>;
|
|
710
|
+
}, "strip", z.ZodTypeAny, {
|
|
742
711
|
name?: string | undefined;
|
|
743
712
|
projectDescription?: string | undefined;
|
|
744
713
|
authors?: string[] | undefined;
|
|
745
714
|
license?: string | undefined;
|
|
746
715
|
homepage?: string | undefined;
|
|
747
|
-
}
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
}
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
716
|
+
}, {
|
|
717
|
+
name?: string | undefined;
|
|
718
|
+
projectDescription?: string | undefined;
|
|
719
|
+
authors?: string[] | undefined;
|
|
720
|
+
license?: string | undefined;
|
|
721
|
+
homepage?: string | undefined;
|
|
722
|
+
}>>;
|
|
723
|
+
artifactsDir: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
724
|
+
contractsDir: z.ZodOptional<z.ZodDefault<z.ZodString>>;
|
|
725
|
+
contracts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
726
|
+
sourceFile: z.ZodString;
|
|
727
|
+
hash: z.ZodString;
|
|
728
|
+
}, "strip", z.ZodTypeAny, {
|
|
729
|
+
sourceFile: string;
|
|
730
|
+
hash: string;
|
|
731
|
+
}, {
|
|
732
|
+
sourceFile: string;
|
|
733
|
+
hash: string;
|
|
734
|
+
}>>>;
|
|
735
|
+
plugins: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
736
|
+
type: z.ZodUnion<[z.ZodLiteral<"npm">, z.ZodLiteral<"binary">, z.ZodLiteral<"deno">]>;
|
|
737
|
+
name: z.ZodString;
|
|
738
|
+
}, "strip", z.ZodTypeAny, {
|
|
739
|
+
type: "npm" | "binary" | "deno";
|
|
740
|
+
name: string;
|
|
741
|
+
}, {
|
|
742
|
+
type: "npm" | "binary" | "deno";
|
|
743
|
+
name: string;
|
|
744
|
+
}>, "many">>;
|
|
745
|
+
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
746
|
+
environment: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
747
|
+
networks: z.ZodArray<z.ZodString, "many">;
|
|
748
|
+
sandboxes: z.ZodArray<z.ZodString, "many">;
|
|
749
|
+
storage: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
750
|
+
aliases: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
751
|
+
}, "strip", z.ZodTypeAny, {
|
|
752
|
+
networks: string[];
|
|
753
|
+
sandboxes: string[];
|
|
754
|
+
storage?: Record<string, string> | undefined;
|
|
755
|
+
aliases?: Record<string, Record<string, string>> | undefined;
|
|
756
|
+
}, {
|
|
757
|
+
networks: string[];
|
|
758
|
+
sandboxes: string[];
|
|
759
|
+
storage?: Record<string, string> | undefined;
|
|
760
|
+
aliases?: Record<string, Record<string, string>> | undefined;
|
|
761
|
+
}>, z.ZodString]>>;
|
|
762
|
+
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
763
|
+
label: z.ZodString;
|
|
764
|
+
rpcUrl: z.ZodString;
|
|
765
|
+
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
766
|
+
publicKey: z.ZodOptional<z.ZodString>;
|
|
767
|
+
publicKeyHash: z.ZodOptional<z.ZodString>;
|
|
768
|
+
privateKey: z.ZodOptional<z.ZodString>;
|
|
769
|
+
mnemonic: z.ZodOptional<z.ZodString>;
|
|
770
|
+
}, "strip", z.ZodTypeAny, {
|
|
771
|
+
publicKey?: string | undefined;
|
|
772
|
+
publicKeyHash?: string | undefined;
|
|
773
|
+
privateKey?: string | undefined;
|
|
774
|
+
mnemonic?: string | undefined;
|
|
775
|
+
}, {
|
|
776
|
+
publicKey?: string | undefined;
|
|
763
777
|
publicKeyHash?: string | undefined;
|
|
764
778
|
privateKey?: string | undefined;
|
|
779
|
+
mnemonic?: string | undefined;
|
|
780
|
+
}>>>;
|
|
781
|
+
faucet: z.ZodOptional<z.ZodObject<{
|
|
782
|
+
pkh: z.ZodString;
|
|
783
|
+
mnemonic: z.ZodArray<z.ZodString, "many">;
|
|
784
|
+
email: z.ZodString;
|
|
785
|
+
password: z.ZodString;
|
|
786
|
+
amount: z.ZodString;
|
|
787
|
+
activation_code: z.ZodString;
|
|
788
|
+
}, "strip", z.ZodTypeAny, {
|
|
789
|
+
pkh: string;
|
|
790
|
+
mnemonic: string[];
|
|
791
|
+
email: string;
|
|
792
|
+
password: string;
|
|
793
|
+
amount: string;
|
|
794
|
+
activation_code: string;
|
|
795
|
+
}, {
|
|
796
|
+
pkh: string;
|
|
797
|
+
mnemonic: string[];
|
|
798
|
+
email: string;
|
|
799
|
+
password: string;
|
|
800
|
+
amount: string;
|
|
801
|
+
activation_code: string;
|
|
802
|
+
}>>;
|
|
803
|
+
}, "strip", z.ZodTypeAny, {
|
|
804
|
+
label: string;
|
|
805
|
+
rpcUrl: string;
|
|
806
|
+
accounts?: Record<string, {
|
|
807
|
+
publicKey?: string | undefined;
|
|
808
|
+
publicKeyHash?: string | undefined;
|
|
809
|
+
privateKey?: string | undefined;
|
|
810
|
+
mnemonic?: string | undefined;
|
|
765
811
|
}> | undefined;
|
|
766
812
|
faucet?: {
|
|
767
813
|
pkh: string;
|
|
@@ -771,149 +817,157 @@ declare const operationToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEf
|
|
|
771
817
|
amount: string;
|
|
772
818
|
activation_code: string;
|
|
773
819
|
} | undefined;
|
|
820
|
+
}, {
|
|
774
821
|
label: string;
|
|
775
822
|
rpcUrl: string;
|
|
776
|
-
|
|
823
|
+
accounts?: Record<string, {
|
|
824
|
+
publicKey?: string | undefined;
|
|
825
|
+
publicKeyHash?: string | undefined;
|
|
826
|
+
privateKey?: string | undefined;
|
|
827
|
+
mnemonic?: string | undefined;
|
|
828
|
+
}> | undefined;
|
|
829
|
+
faucet?: {
|
|
830
|
+
pkh: string;
|
|
831
|
+
mnemonic: string[];
|
|
832
|
+
email: string;
|
|
833
|
+
password: string;
|
|
834
|
+
amount: string;
|
|
835
|
+
activation_code: string;
|
|
836
|
+
} | undefined;
|
|
837
|
+
}>>>;
|
|
838
|
+
projectDir: z.ZodString;
|
|
839
|
+
configFile: z.ZodString;
|
|
840
|
+
hash: z.ZodString;
|
|
841
|
+
}, "strip", z.ZodTypeAny, {
|
|
777
842
|
projectDir: string;
|
|
778
843
|
environment: Record<string, string | {
|
|
844
|
+
networks: string[];
|
|
845
|
+
sandboxes: string[];
|
|
779
846
|
storage?: Record<string, string> | undefined;
|
|
780
847
|
aliases?: Record<string, Record<string, string>> | undefined;
|
|
848
|
+
}>;
|
|
849
|
+
hash: string;
|
|
850
|
+
configFile: string;
|
|
851
|
+
sandbox?: Record<string, {
|
|
852
|
+
label: string;
|
|
853
|
+
rpcUrl: string;
|
|
854
|
+
protocol?: string | undefined;
|
|
855
|
+
plugin?: string | undefined;
|
|
856
|
+
accounts?: Record<string, string | {
|
|
857
|
+
publicKeyHash: string;
|
|
858
|
+
encryptedKey: string;
|
|
859
|
+
secretKey: string;
|
|
860
|
+
}> | undefined;
|
|
861
|
+
tzkt?: {
|
|
862
|
+
disableAutostartWithSandbox?: boolean | undefined;
|
|
863
|
+
postgresqlPort?: number | undefined;
|
|
864
|
+
apiPort?: number | undefined;
|
|
865
|
+
} | undefined;
|
|
866
|
+
annotations?: Record<string, unknown> | undefined;
|
|
867
|
+
}> | undefined;
|
|
868
|
+
language?: "en" | "fr" | undefined;
|
|
869
|
+
metadata?: {
|
|
870
|
+
name?: string | undefined;
|
|
871
|
+
projectDescription?: string | undefined;
|
|
872
|
+
authors?: string[] | undefined;
|
|
873
|
+
license?: string | undefined;
|
|
874
|
+
homepage?: string | undefined;
|
|
875
|
+
} | undefined;
|
|
876
|
+
artifactsDir?: string | undefined;
|
|
877
|
+
contractsDir?: string | undefined;
|
|
878
|
+
contracts?: Record<string, {
|
|
879
|
+
sourceFile: string;
|
|
880
|
+
hash: string;
|
|
881
|
+
}> | undefined;
|
|
882
|
+
plugins?: {
|
|
883
|
+
type: "npm" | "binary" | "deno";
|
|
884
|
+
name: string;
|
|
885
|
+
}[] | undefined;
|
|
886
|
+
accounts?: Record<string, string> | undefined;
|
|
887
|
+
network?: Record<string, {
|
|
888
|
+
label: string;
|
|
889
|
+
rpcUrl: string;
|
|
890
|
+
accounts?: Record<string, {
|
|
891
|
+
publicKey?: string | undefined;
|
|
892
|
+
publicKeyHash?: string | undefined;
|
|
893
|
+
privateKey?: string | undefined;
|
|
894
|
+
mnemonic?: string | undefined;
|
|
895
|
+
}> | undefined;
|
|
896
|
+
faucet?: {
|
|
897
|
+
pkh: string;
|
|
898
|
+
mnemonic: string[];
|
|
899
|
+
email: string;
|
|
900
|
+
password: string;
|
|
901
|
+
amount: string;
|
|
902
|
+
activation_code: string;
|
|
903
|
+
} | undefined;
|
|
904
|
+
}> | undefined;
|
|
905
|
+
}, {
|
|
906
|
+
projectDir: string;
|
|
907
|
+
environment: Record<string, string | {
|
|
781
908
|
networks: string[];
|
|
782
909
|
sandboxes: string[];
|
|
910
|
+
storage?: Record<string, string> | undefined;
|
|
911
|
+
aliases?: Record<string, Record<string, string>> | undefined;
|
|
783
912
|
}>;
|
|
784
913
|
hash: string;
|
|
785
914
|
configFile: string;
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
}
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
843
|
-
shortFlag?: string | undefined;
|
|
844
|
-
defaultValue?: string | number | boolean | undefined;
|
|
845
|
-
choices?: string[] | undefined;
|
|
846
|
-
description: string;
|
|
847
|
-
flag: string;
|
|
848
|
-
}[] | undefined;
|
|
849
|
-
operation: string;
|
|
850
|
-
command: string;
|
|
851
|
-
}>]>>;
|
|
852
|
-
declare const templateToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
853
|
-
type: z.ZodUnion<[z.ZodLiteral<"npm">, z.ZodLiteral<"binary">, z.ZodLiteral<"deno">]>;
|
|
854
|
-
name: z.ZodString;
|
|
855
|
-
}, "strip", z.ZodTypeAny, {
|
|
856
|
-
type: "npm" | "binary" | "deno";
|
|
857
|
-
name: string;
|
|
858
|
-
}, {
|
|
859
|
-
type: "npm" | "binary" | "deno";
|
|
860
|
-
name: string;
|
|
861
|
-
}>, InstalledPlugin.InstalledPlugin, {
|
|
862
|
-
type: "npm" | "binary" | "deno";
|
|
863
|
-
name: string;
|
|
864
|
-
}>, z.ZodEffects<z.ZodObject<z.extendShape<Omit<{
|
|
865
|
-
template: z.ZodString;
|
|
866
|
-
command: z.ZodString;
|
|
867
|
-
description: z.ZodString;
|
|
868
|
-
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
869
|
-
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
870
|
-
shortFlag: z.ZodOptional<z.ZodString>;
|
|
871
|
-
flag: z.ZodString;
|
|
872
|
-
description: z.ZodString;
|
|
873
|
-
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
874
|
-
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"boolean">]>>;
|
|
875
|
-
required: z.ZodOptional<z.ZodBoolean>;
|
|
876
|
-
boolean: z.ZodOptional<z.ZodBoolean>;
|
|
877
|
-
choices: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
878
|
-
}, "strip", z.ZodTypeAny, {
|
|
879
|
-
boolean?: boolean | undefined;
|
|
880
|
-
required?: boolean | undefined;
|
|
881
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
882
|
-
shortFlag?: string | undefined;
|
|
883
|
-
defaultValue?: string | number | boolean | undefined;
|
|
884
|
-
choices?: string[] | undefined;
|
|
885
|
-
description: string;
|
|
886
|
-
flag: string;
|
|
887
|
-
}, {
|
|
888
|
-
boolean?: boolean | undefined;
|
|
889
|
-
required?: boolean | undefined;
|
|
890
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
891
|
-
shortFlag?: string | undefined;
|
|
892
|
-
defaultValue?: string | number | boolean | undefined;
|
|
893
|
-
choices?: string[] | undefined;
|
|
894
|
-
description: string;
|
|
895
|
-
flag: string;
|
|
896
|
-
}>, "many">>;
|
|
897
|
-
positionals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
898
|
-
placeholder: z.ZodString;
|
|
899
|
-
description: z.ZodString;
|
|
900
|
-
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
901
|
-
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"boolean">]>>;
|
|
902
|
-
required: z.ZodOptional<z.ZodBoolean>;
|
|
903
|
-
}, "strip", z.ZodTypeAny, {
|
|
904
|
-
required?: boolean | undefined;
|
|
905
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
906
|
-
defaultValue?: string | number | boolean | undefined;
|
|
907
|
-
description: string;
|
|
908
|
-
placeholder: string;
|
|
909
|
-
}, {
|
|
910
|
-
required?: boolean | undefined;
|
|
911
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
912
|
-
defaultValue?: string | number | boolean | undefined;
|
|
913
|
-
description: string;
|
|
914
|
-
placeholder: string;
|
|
915
|
-
}>, "many">>;
|
|
916
|
-
handler: z.ZodUnion<[z.ZodString, z.ZodFunction<z.ZodTuple<[z.ZodObject<z.extendShape<Omit<{
|
|
915
|
+
sandbox?: Record<string, {
|
|
916
|
+
label: string;
|
|
917
|
+
rpcUrl: string;
|
|
918
|
+
protocol?: string | undefined;
|
|
919
|
+
plugin?: string | undefined;
|
|
920
|
+
accounts?: Record<string, string | {
|
|
921
|
+
publicKeyHash: string;
|
|
922
|
+
encryptedKey: string;
|
|
923
|
+
secretKey: string;
|
|
924
|
+
}> | undefined;
|
|
925
|
+
tzkt?: {
|
|
926
|
+
disableAutostartWithSandbox?: boolean | undefined;
|
|
927
|
+
postgresqlPort?: number | undefined;
|
|
928
|
+
apiPort?: number | undefined;
|
|
929
|
+
} | undefined;
|
|
930
|
+
annotations?: Record<string, unknown> | undefined;
|
|
931
|
+
}> | undefined;
|
|
932
|
+
language?: "en" | "fr" | undefined;
|
|
933
|
+
metadata?: {
|
|
934
|
+
name?: string | undefined;
|
|
935
|
+
projectDescription?: string | undefined;
|
|
936
|
+
authors?: string[] | undefined;
|
|
937
|
+
license?: string | undefined;
|
|
938
|
+
homepage?: string | undefined;
|
|
939
|
+
} | undefined;
|
|
940
|
+
artifactsDir?: string | undefined;
|
|
941
|
+
contractsDir?: string | undefined;
|
|
942
|
+
contracts?: Record<string, {
|
|
943
|
+
sourceFile: string;
|
|
944
|
+
hash: string;
|
|
945
|
+
}> | undefined;
|
|
946
|
+
plugins?: {
|
|
947
|
+
type: "npm" | "binary" | "deno";
|
|
948
|
+
name: string;
|
|
949
|
+
}[] | undefined;
|
|
950
|
+
accounts?: Record<string, string> | undefined;
|
|
951
|
+
network?: Record<string, {
|
|
952
|
+
label: string;
|
|
953
|
+
rpcUrl: string;
|
|
954
|
+
accounts?: Record<string, {
|
|
955
|
+
publicKey?: string | undefined;
|
|
956
|
+
publicKeyHash?: string | undefined;
|
|
957
|
+
privateKey?: string | undefined;
|
|
958
|
+
mnemonic?: string | undefined;
|
|
959
|
+
}> | undefined;
|
|
960
|
+
faucet?: {
|
|
961
|
+
pkh: string;
|
|
962
|
+
mnemonic: string[];
|
|
963
|
+
email: string;
|
|
964
|
+
password: string;
|
|
965
|
+
amount: string;
|
|
966
|
+
activation_code: string;
|
|
967
|
+
} | undefined;
|
|
968
|
+
}> | undefined;
|
|
969
|
+
}>;
|
|
970
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
917
971
|
_: z.ZodArray<z.ZodString, "many">;
|
|
918
972
|
projectDir: z.ZodString;
|
|
919
973
|
maxConcurrency: z.ZodNumber;
|
|
@@ -927,12 +981,75 @@ declare const templateToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEff
|
|
|
927
981
|
yes: z.ZodBoolean;
|
|
928
982
|
plugin: z.ZodOptional<z.ZodString>;
|
|
929
983
|
env: z.ZodString;
|
|
930
|
-
quickstart: z.ZodString;
|
|
931
984
|
setBuild: z.ZodUnion<[z.ZodString, z.ZodNumber]>;
|
|
932
985
|
setVersion: z.ZodString;
|
|
933
|
-
}, "quickstart">, {
|
|
934
986
|
taqRun: z.ZodUnion<[z.ZodLiteral<"proxy">, z.ZodLiteral<"pluginInfo">, z.ZodLiteral<"checkRuntimeDependencies">, z.ZodLiteral<"installRuntimeDependencies">, z.ZodLiteral<"proxyTemplate">]>;
|
|
935
|
-
config: z.ZodObject<
|
|
987
|
+
config: z.ZodObject<{
|
|
988
|
+
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
989
|
+
label: z.ZodString;
|
|
990
|
+
rpcUrl: z.ZodString;
|
|
991
|
+
protocol: z.ZodOptional<z.ZodString>;
|
|
992
|
+
plugin: z.ZodOptional<z.ZodString>;
|
|
993
|
+
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
994
|
+
encryptedKey: z.ZodString;
|
|
995
|
+
publicKeyHash: z.ZodString;
|
|
996
|
+
secretKey: z.ZodString;
|
|
997
|
+
}, "strip", z.ZodTypeAny, {
|
|
998
|
+
publicKeyHash: string;
|
|
999
|
+
encryptedKey: string;
|
|
1000
|
+
secretKey: string;
|
|
1001
|
+
}, {
|
|
1002
|
+
publicKeyHash: string;
|
|
1003
|
+
encryptedKey: string;
|
|
1004
|
+
secretKey: string;
|
|
1005
|
+
}>, z.ZodString]>>>;
|
|
1006
|
+
tzkt: z.ZodOptional<z.ZodObject<{
|
|
1007
|
+
disableAutostartWithSandbox: z.ZodOptional<z.ZodBoolean>;
|
|
1008
|
+
postgresqlPort: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1009
|
+
apiPort: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1010
|
+
}, "strip", z.ZodTypeAny, {
|
|
1011
|
+
disableAutostartWithSandbox?: boolean | undefined;
|
|
1012
|
+
postgresqlPort?: number | undefined;
|
|
1013
|
+
apiPort?: number | undefined;
|
|
1014
|
+
}, {
|
|
1015
|
+
disableAutostartWithSandbox?: boolean | undefined;
|
|
1016
|
+
postgresqlPort?: number | undefined;
|
|
1017
|
+
apiPort?: number | undefined;
|
|
1018
|
+
}>>;
|
|
1019
|
+
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1020
|
+
}, "strip", z.ZodTypeAny, {
|
|
1021
|
+
label: string;
|
|
1022
|
+
rpcUrl: string;
|
|
1023
|
+
protocol?: string | undefined;
|
|
1024
|
+
plugin?: string | undefined;
|
|
1025
|
+
accounts?: Record<string, string | {
|
|
1026
|
+
publicKeyHash: string;
|
|
1027
|
+
encryptedKey: string;
|
|
1028
|
+
secretKey: string;
|
|
1029
|
+
}> | undefined;
|
|
1030
|
+
tzkt?: {
|
|
1031
|
+
disableAutostartWithSandbox?: boolean | undefined;
|
|
1032
|
+
postgresqlPort?: number | undefined;
|
|
1033
|
+
apiPort?: number | undefined;
|
|
1034
|
+
} | undefined;
|
|
1035
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1036
|
+
}, {
|
|
1037
|
+
label: string;
|
|
1038
|
+
rpcUrl: string;
|
|
1039
|
+
protocol?: string | undefined;
|
|
1040
|
+
plugin?: string | undefined;
|
|
1041
|
+
accounts?: Record<string, string | {
|
|
1042
|
+
publicKeyHash: string;
|
|
1043
|
+
encryptedKey: string;
|
|
1044
|
+
secretKey: string;
|
|
1045
|
+
}> | undefined;
|
|
1046
|
+
tzkt?: {
|
|
1047
|
+
disableAutostartWithSandbox?: boolean | undefined;
|
|
1048
|
+
postgresqlPort?: number | undefined;
|
|
1049
|
+
apiPort?: number | undefined;
|
|
1050
|
+
} | undefined;
|
|
1051
|
+
annotations?: Record<string, unknown> | undefined;
|
|
1052
|
+
}>>>;
|
|
936
1053
|
language: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"en">, z.ZodLiteral<"fr">]>>>;
|
|
937
1054
|
metadata: z.ZodOptional<z.ZodObject<{
|
|
938
1055
|
name: z.ZodOptional<z.ZodString>;
|
|
@@ -982,15 +1099,15 @@ declare const templateToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEff
|
|
|
982
1099
|
storage: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
|
|
983
1100
|
aliases: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodRecord<z.ZodString, z.ZodString>>>;
|
|
984
1101
|
}, "strip", z.ZodTypeAny, {
|
|
985
|
-
storage?: Record<string, string> | undefined;
|
|
986
|
-
aliases?: Record<string, Record<string, string>> | undefined;
|
|
987
1102
|
networks: string[];
|
|
988
1103
|
sandboxes: string[];
|
|
989
|
-
}, {
|
|
990
1104
|
storage?: Record<string, string> | undefined;
|
|
991
1105
|
aliases?: Record<string, Record<string, string>> | undefined;
|
|
1106
|
+
}, {
|
|
992
1107
|
networks: string[];
|
|
993
1108
|
sandboxes: string[];
|
|
1109
|
+
storage?: Record<string, string> | undefined;
|
|
1110
|
+
aliases?: Record<string, Record<string, string>> | undefined;
|
|
994
1111
|
}>, z.ZodString]>>;
|
|
995
1112
|
network: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
996
1113
|
label: z.ZodString;
|
|
@@ -1001,15 +1118,15 @@ declare const templateToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEff
|
|
|
1001
1118
|
privateKey: z.ZodOptional<z.ZodString>;
|
|
1002
1119
|
mnemonic: z.ZodOptional<z.ZodString>;
|
|
1003
1120
|
}, "strip", z.ZodTypeAny, {
|
|
1004
|
-
mnemonic?: string | undefined;
|
|
1005
1121
|
publicKey?: string | undefined;
|
|
1006
1122
|
publicKeyHash?: string | undefined;
|
|
1007
1123
|
privateKey?: string | undefined;
|
|
1008
|
-
}, {
|
|
1009
1124
|
mnemonic?: string | undefined;
|
|
1125
|
+
}, {
|
|
1010
1126
|
publicKey?: string | undefined;
|
|
1011
1127
|
publicKeyHash?: string | undefined;
|
|
1012
1128
|
privateKey?: string | undefined;
|
|
1129
|
+
mnemonic?: string | undefined;
|
|
1013
1130
|
}>>>;
|
|
1014
1131
|
faucet: z.ZodOptional<z.ZodObject<{
|
|
1015
1132
|
pkh: z.ZodString;
|
|
@@ -1034,11 +1151,13 @@ declare const templateToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEff
|
|
|
1034
1151
|
activation_code: string;
|
|
1035
1152
|
}>>;
|
|
1036
1153
|
}, "strip", z.ZodTypeAny, {
|
|
1154
|
+
label: string;
|
|
1155
|
+
rpcUrl: string;
|
|
1037
1156
|
accounts?: Record<string, {
|
|
1038
|
-
mnemonic?: string | undefined;
|
|
1039
1157
|
publicKey?: string | undefined;
|
|
1040
1158
|
publicKeyHash?: string | undefined;
|
|
1041
1159
|
privateKey?: string | undefined;
|
|
1160
|
+
mnemonic?: string | undefined;
|
|
1042
1161
|
}> | undefined;
|
|
1043
1162
|
faucet?: {
|
|
1044
1163
|
pkh: string;
|
|
@@ -1048,14 +1167,14 @@ declare const templateToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEff
|
|
|
1048
1167
|
amount: string;
|
|
1049
1168
|
activation_code: string;
|
|
1050
1169
|
} | undefined;
|
|
1170
|
+
}, {
|
|
1051
1171
|
label: string;
|
|
1052
1172
|
rpcUrl: string;
|
|
1053
|
-
}, {
|
|
1054
1173
|
accounts?: Record<string, {
|
|
1055
|
-
mnemonic?: string | undefined;
|
|
1056
1174
|
publicKey?: string | undefined;
|
|
1057
1175
|
publicKeyHash?: string | undefined;
|
|
1058
1176
|
privateKey?: string | undefined;
|
|
1177
|
+
mnemonic?: string | undefined;
|
|
1059
1178
|
}> | undefined;
|
|
1060
1179
|
faucet?: {
|
|
1061
1180
|
pkh: string;
|
|
@@ -1065,241 +1184,36 @@ declare const templateToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEff
|
|
|
1065
1184
|
amount: string;
|
|
1066
1185
|
activation_code: string;
|
|
1067
1186
|
} | undefined;
|
|
1068
|
-
label: string;
|
|
1069
|
-
rpcUrl: string;
|
|
1070
|
-
}>>>;
|
|
1071
|
-
sandbox: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1072
|
-
label: z.ZodString;
|
|
1073
|
-
rpcUrl: z.ZodString;
|
|
1074
|
-
protocol: z.ZodOptional<z.ZodString>;
|
|
1075
|
-
plugin: z.ZodOptional<z.ZodString>;
|
|
1076
|
-
accounts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodObject<{
|
|
1077
|
-
encryptedKey: z.ZodString;
|
|
1078
|
-
publicKeyHash: z.ZodString;
|
|
1079
|
-
secretKey: z.ZodString;
|
|
1080
|
-
}, "strip", z.ZodTypeAny, {
|
|
1081
|
-
publicKeyHash: string;
|
|
1082
|
-
encryptedKey: string;
|
|
1083
|
-
secretKey: string;
|
|
1084
|
-
}, {
|
|
1085
|
-
publicKeyHash: string;
|
|
1086
|
-
encryptedKey: string;
|
|
1087
|
-
secretKey: string;
|
|
1088
|
-
}>, z.ZodString]>>>;
|
|
1089
|
-
tzkt: z.ZodOptional<z.ZodObject<{
|
|
1090
|
-
disableAutostartWithSandbox: z.ZodOptional<z.ZodBoolean>;
|
|
1091
|
-
postgresqlPort: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1092
|
-
apiPort: z.ZodOptional<z.ZodDefault<z.ZodNumber>>;
|
|
1093
|
-
}, "strip", z.ZodTypeAny, {
|
|
1094
|
-
disableAutostartWithSandbox?: boolean | undefined;
|
|
1095
|
-
postgresqlPort?: number | undefined;
|
|
1096
|
-
apiPort?: number | undefined;
|
|
1097
|
-
}, {
|
|
1098
|
-
disableAutostartWithSandbox?: boolean | undefined;
|
|
1099
|
-
postgresqlPort?: number | undefined;
|
|
1100
|
-
apiPort?: number | undefined;
|
|
1101
|
-
}>>;
|
|
1102
|
-
annotations: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1103
|
-
}, "strip", z.ZodTypeAny, {
|
|
1104
|
-
plugin?: string | undefined;
|
|
1105
|
-
accounts?: Record<string, string | {
|
|
1106
|
-
publicKeyHash: string;
|
|
1107
|
-
encryptedKey: string;
|
|
1108
|
-
secretKey: string;
|
|
1109
|
-
}> | undefined;
|
|
1110
|
-
protocol?: string | undefined;
|
|
1111
|
-
tzkt?: {
|
|
1112
|
-
disableAutostartWithSandbox?: boolean | undefined;
|
|
1113
|
-
postgresqlPort?: number | undefined;
|
|
1114
|
-
apiPort?: number | undefined;
|
|
1115
|
-
} | undefined;
|
|
1116
|
-
annotations?: Record<string, unknown> | undefined;
|
|
1117
|
-
label: string;
|
|
1118
|
-
rpcUrl: string;
|
|
1119
|
-
}, {
|
|
1120
|
-
plugin?: string | undefined;
|
|
1121
|
-
accounts?: Record<string, string | {
|
|
1122
|
-
publicKeyHash: string;
|
|
1123
|
-
encryptedKey: string;
|
|
1124
|
-
secretKey: string;
|
|
1125
|
-
}> | undefined;
|
|
1126
|
-
protocol?: string | undefined;
|
|
1127
|
-
tzkt?: {
|
|
1128
|
-
disableAutostartWithSandbox?: boolean | undefined;
|
|
1129
|
-
postgresqlPort?: number | undefined;
|
|
1130
|
-
apiPort?: number | undefined;
|
|
1131
|
-
} | undefined;
|
|
1132
|
-
annotations?: Record<string, unknown> | undefined;
|
|
1133
|
-
label: string;
|
|
1134
|
-
rpcUrl: string;
|
|
1135
1187
|
}>>>;
|
|
1136
|
-
}, {
|
|
1137
1188
|
projectDir: z.ZodString;
|
|
1138
1189
|
configFile: z.ZodString;
|
|
1139
1190
|
hash: z.ZodString;
|
|
1140
|
-
}
|
|
1141
|
-
sandbox?: Record<string, {
|
|
1142
|
-
plugin?: string | undefined;
|
|
1143
|
-
accounts?: Record<string, string | {
|
|
1144
|
-
publicKeyHash: string;
|
|
1145
|
-
encryptedKey: string;
|
|
1146
|
-
secretKey: string;
|
|
1147
|
-
}> | undefined;
|
|
1148
|
-
protocol?: string | undefined;
|
|
1149
|
-
tzkt?: {
|
|
1150
|
-
disableAutostartWithSandbox?: boolean | undefined;
|
|
1151
|
-
postgresqlPort?: number | undefined;
|
|
1152
|
-
apiPort?: number | undefined;
|
|
1153
|
-
} | undefined;
|
|
1154
|
-
annotations?: Record<string, unknown> | undefined;
|
|
1155
|
-
label: string;
|
|
1156
|
-
rpcUrl: string;
|
|
1157
|
-
}> | undefined;
|
|
1158
|
-
language?: "en" | "fr" | undefined;
|
|
1159
|
-
metadata?: {
|
|
1160
|
-
name?: string | undefined;
|
|
1161
|
-
projectDescription?: string | undefined;
|
|
1162
|
-
authors?: string[] | undefined;
|
|
1163
|
-
license?: string | undefined;
|
|
1164
|
-
homepage?: string | undefined;
|
|
1165
|
-
} | undefined;
|
|
1166
|
-
artifactsDir?: string | undefined;
|
|
1167
|
-
contractsDir?: string | undefined;
|
|
1168
|
-
contracts?: Record<string, {
|
|
1169
|
-
sourceFile: string;
|
|
1170
|
-
hash: string;
|
|
1171
|
-
}> | undefined;
|
|
1172
|
-
plugins?: {
|
|
1173
|
-
type: "npm" | "binary" | "deno";
|
|
1174
|
-
name: string;
|
|
1175
|
-
}[] | undefined;
|
|
1176
|
-
accounts?: Record<string, string> | undefined;
|
|
1177
|
-
network?: Record<string, {
|
|
1178
|
-
accounts?: Record<string, {
|
|
1179
|
-
mnemonic?: string | undefined;
|
|
1180
|
-
publicKey?: string | undefined;
|
|
1181
|
-
publicKeyHash?: string | undefined;
|
|
1182
|
-
privateKey?: string | undefined;
|
|
1183
|
-
}> | undefined;
|
|
1184
|
-
faucet?: {
|
|
1185
|
-
pkh: string;
|
|
1186
|
-
mnemonic: string[];
|
|
1187
|
-
email: string;
|
|
1188
|
-
password: string;
|
|
1189
|
-
amount: string;
|
|
1190
|
-
activation_code: string;
|
|
1191
|
-
} | undefined;
|
|
1192
|
-
label: string;
|
|
1193
|
-
rpcUrl: string;
|
|
1194
|
-
}> | undefined;
|
|
1191
|
+
}, "strip", z.ZodTypeAny, {
|
|
1195
1192
|
projectDir: string;
|
|
1196
1193
|
environment: Record<string, string | {
|
|
1197
|
-
storage?: Record<string, string> | undefined;
|
|
1198
|
-
aliases?: Record<string, Record<string, string>> | undefined;
|
|
1199
1194
|
networks: string[];
|
|
1200
1195
|
sandboxes: string[];
|
|
1201
|
-
}>;
|
|
1202
|
-
hash: string;
|
|
1203
|
-
configFile: string;
|
|
1204
|
-
}, {
|
|
1205
|
-
sandbox?: Record<string, {
|
|
1206
|
-
plugin?: string | undefined;
|
|
1207
|
-
accounts?: Record<string, string | {
|
|
1208
|
-
publicKeyHash: string;
|
|
1209
|
-
encryptedKey: string;
|
|
1210
|
-
secretKey: string;
|
|
1211
|
-
}> | undefined;
|
|
1212
|
-
protocol?: string | undefined;
|
|
1213
|
-
tzkt?: {
|
|
1214
|
-
disableAutostartWithSandbox?: boolean | undefined;
|
|
1215
|
-
postgresqlPort?: number | undefined;
|
|
1216
|
-
apiPort?: number | undefined;
|
|
1217
|
-
} | undefined;
|
|
1218
|
-
annotations?: Record<string, unknown> | undefined;
|
|
1219
|
-
label: string;
|
|
1220
|
-
rpcUrl: string;
|
|
1221
|
-
}> | undefined;
|
|
1222
|
-
language?: "en" | "fr" | undefined;
|
|
1223
|
-
metadata?: {
|
|
1224
|
-
name?: string | undefined;
|
|
1225
|
-
projectDescription?: string | undefined;
|
|
1226
|
-
authors?: string[] | undefined;
|
|
1227
|
-
license?: string | undefined;
|
|
1228
|
-
homepage?: string | undefined;
|
|
1229
|
-
} | undefined;
|
|
1230
|
-
artifactsDir?: string | undefined;
|
|
1231
|
-
contractsDir?: string | undefined;
|
|
1232
|
-
contracts?: Record<string, {
|
|
1233
|
-
sourceFile: string;
|
|
1234
|
-
hash: string;
|
|
1235
|
-
}> | undefined;
|
|
1236
|
-
plugins?: {
|
|
1237
|
-
type: "npm" | "binary" | "deno";
|
|
1238
|
-
name: string;
|
|
1239
|
-
}[] | undefined;
|
|
1240
|
-
accounts?: Record<string, string> | undefined;
|
|
1241
|
-
network?: Record<string, {
|
|
1242
|
-
accounts?: Record<string, {
|
|
1243
|
-
mnemonic?: string | undefined;
|
|
1244
|
-
publicKey?: string | undefined;
|
|
1245
|
-
publicKeyHash?: string | undefined;
|
|
1246
|
-
privateKey?: string | undefined;
|
|
1247
|
-
}> | undefined;
|
|
1248
|
-
faucet?: {
|
|
1249
|
-
pkh: string;
|
|
1250
|
-
mnemonic: string[];
|
|
1251
|
-
email: string;
|
|
1252
|
-
password: string;
|
|
1253
|
-
amount: string;
|
|
1254
|
-
activation_code: string;
|
|
1255
|
-
} | undefined;
|
|
1256
|
-
label: string;
|
|
1257
|
-
rpcUrl: string;
|
|
1258
|
-
}> | undefined;
|
|
1259
|
-
projectDir: string;
|
|
1260
|
-
environment: Record<string, string | {
|
|
1261
1196
|
storage?: Record<string, string> | undefined;
|
|
1262
1197
|
aliases?: Record<string, Record<string, string>> | undefined;
|
|
1263
|
-
networks: string[];
|
|
1264
|
-
sandboxes: string[];
|
|
1265
1198
|
}>;
|
|
1266
1199
|
hash: string;
|
|
1267
1200
|
configFile: string;
|
|
1268
|
-
}>;
|
|
1269
|
-
}>, "passthrough", z.ZodTypeAny, {
|
|
1270
|
-
plugin?: string | undefined;
|
|
1271
|
-
_: string[];
|
|
1272
|
-
projectDir: string;
|
|
1273
|
-
maxConcurrency: number;
|
|
1274
|
-
debug: boolean;
|
|
1275
|
-
disableState: boolean;
|
|
1276
|
-
logPluginRequests: boolean;
|
|
1277
|
-
fromVsCode: boolean;
|
|
1278
|
-
version: boolean;
|
|
1279
|
-
build: boolean;
|
|
1280
|
-
help: boolean;
|
|
1281
|
-
yes: boolean;
|
|
1282
|
-
env: string;
|
|
1283
|
-
setBuild: string | number;
|
|
1284
|
-
setVersion: string;
|
|
1285
|
-
taqRun: "proxy" | "pluginInfo" | "checkRuntimeDependencies" | "installRuntimeDependencies" | "proxyTemplate";
|
|
1286
|
-
config: {
|
|
1287
1201
|
sandbox?: Record<string, {
|
|
1202
|
+
label: string;
|
|
1203
|
+
rpcUrl: string;
|
|
1204
|
+
protocol?: string | undefined;
|
|
1288
1205
|
plugin?: string | undefined;
|
|
1289
1206
|
accounts?: Record<string, string | {
|
|
1290
1207
|
publicKeyHash: string;
|
|
1291
1208
|
encryptedKey: string;
|
|
1292
1209
|
secretKey: string;
|
|
1293
1210
|
}> | undefined;
|
|
1294
|
-
protocol?: string | undefined;
|
|
1295
1211
|
tzkt?: {
|
|
1296
1212
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1297
1213
|
postgresqlPort?: number | undefined;
|
|
1298
1214
|
apiPort?: number | undefined;
|
|
1299
1215
|
} | undefined;
|
|
1300
1216
|
annotations?: Record<string, unknown> | undefined;
|
|
1301
|
-
label: string;
|
|
1302
|
-
rpcUrl: string;
|
|
1303
1217
|
}> | undefined;
|
|
1304
1218
|
language?: "en" | "fr" | undefined;
|
|
1305
1219
|
metadata?: {
|
|
@@ -1321,11 +1235,13 @@ declare const templateToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEff
|
|
|
1321
1235
|
}[] | undefined;
|
|
1322
1236
|
accounts?: Record<string, string> | undefined;
|
|
1323
1237
|
network?: Record<string, {
|
|
1238
|
+
label: string;
|
|
1239
|
+
rpcUrl: string;
|
|
1324
1240
|
accounts?: Record<string, {
|
|
1325
|
-
mnemonic?: string | undefined;
|
|
1326
1241
|
publicKey?: string | undefined;
|
|
1327
1242
|
publicKeyHash?: string | undefined;
|
|
1328
1243
|
privateKey?: string | undefined;
|
|
1244
|
+
mnemonic?: string | undefined;
|
|
1329
1245
|
}> | undefined;
|
|
1330
1246
|
faucet?: {
|
|
1331
1247
|
pkh: string;
|
|
@@ -1335,53 +1251,33 @@ declare const templateToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEff
|
|
|
1335
1251
|
amount: string;
|
|
1336
1252
|
activation_code: string;
|
|
1337
1253
|
} | undefined;
|
|
1338
|
-
label: string;
|
|
1339
|
-
rpcUrl: string;
|
|
1340
1254
|
}> | undefined;
|
|
1255
|
+
}, {
|
|
1341
1256
|
projectDir: string;
|
|
1342
1257
|
environment: Record<string, string | {
|
|
1343
|
-
storage?: Record<string, string> | undefined;
|
|
1344
|
-
aliases?: Record<string, Record<string, string>> | undefined;
|
|
1345
1258
|
networks: string[];
|
|
1346
1259
|
sandboxes: string[];
|
|
1260
|
+
storage?: Record<string, string> | undefined;
|
|
1261
|
+
aliases?: Record<string, Record<string, string>> | undefined;
|
|
1347
1262
|
}>;
|
|
1348
1263
|
hash: string;
|
|
1349
1264
|
configFile: string;
|
|
1350
|
-
};
|
|
1351
|
-
}, {
|
|
1352
|
-
plugin?: string | undefined;
|
|
1353
|
-
_: string[];
|
|
1354
|
-
projectDir: string;
|
|
1355
|
-
maxConcurrency: number;
|
|
1356
|
-
debug: boolean;
|
|
1357
|
-
disableState: boolean;
|
|
1358
|
-
logPluginRequests: boolean;
|
|
1359
|
-
fromVsCode: boolean;
|
|
1360
|
-
version: boolean;
|
|
1361
|
-
build: boolean;
|
|
1362
|
-
help: boolean;
|
|
1363
|
-
yes: boolean;
|
|
1364
|
-
env: string;
|
|
1365
|
-
setBuild: string | number;
|
|
1366
|
-
setVersion: string;
|
|
1367
|
-
taqRun: "proxy" | "pluginInfo" | "checkRuntimeDependencies" | "installRuntimeDependencies" | "proxyTemplate";
|
|
1368
|
-
config: {
|
|
1369
1265
|
sandbox?: Record<string, {
|
|
1266
|
+
label: string;
|
|
1267
|
+
rpcUrl: string;
|
|
1268
|
+
protocol?: string | undefined;
|
|
1370
1269
|
plugin?: string | undefined;
|
|
1371
1270
|
accounts?: Record<string, string | {
|
|
1372
1271
|
publicKeyHash: string;
|
|
1373
1272
|
encryptedKey: string;
|
|
1374
1273
|
secretKey: string;
|
|
1375
1274
|
}> | undefined;
|
|
1376
|
-
protocol?: string | undefined;
|
|
1377
1275
|
tzkt?: {
|
|
1378
1276
|
disableAutostartWithSandbox?: boolean | undefined;
|
|
1379
1277
|
postgresqlPort?: number | undefined;
|
|
1380
1278
|
apiPort?: number | undefined;
|
|
1381
1279
|
} | undefined;
|
|
1382
1280
|
annotations?: Record<string, unknown> | undefined;
|
|
1383
|
-
label: string;
|
|
1384
|
-
rpcUrl: string;
|
|
1385
1281
|
}> | undefined;
|
|
1386
1282
|
language?: "en" | "fr" | undefined;
|
|
1387
1283
|
metadata?: {
|
|
@@ -1403,11 +1299,13 @@ declare const templateToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEff
|
|
|
1403
1299
|
}[] | undefined;
|
|
1404
1300
|
accounts?: Record<string, string> | undefined;
|
|
1405
1301
|
network?: Record<string, {
|
|
1302
|
+
label: string;
|
|
1303
|
+
rpcUrl: string;
|
|
1406
1304
|
accounts?: Record<string, {
|
|
1407
|
-
mnemonic?: string | undefined;
|
|
1408
1305
|
publicKey?: string | undefined;
|
|
1409
1306
|
publicKeyHash?: string | undefined;
|
|
1410
1307
|
privateKey?: string | undefined;
|
|
1308
|
+
mnemonic?: string | undefined;
|
|
1411
1309
|
}> | undefined;
|
|
1412
1310
|
faucet?: {
|
|
1413
1311
|
pkh: string;
|
|
@@ -1417,113 +1315,211 @@ declare const templateToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEff
|
|
|
1417
1315
|
amount: string;
|
|
1418
1316
|
activation_code: string;
|
|
1419
1317
|
} | undefined;
|
|
1420
|
-
label: string;
|
|
1421
|
-
rpcUrl: string;
|
|
1422
1318
|
}> | undefined;
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
}>;
|
|
1430
|
-
hash: string;
|
|
1431
|
-
configFile: string;
|
|
1432
|
-
};
|
|
1433
|
-
}>], z.ZodUnknown>, z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
1434
|
-
data: z.ZodOptional<z.ZodUnknown>;
|
|
1435
|
-
render: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"table">, z.ZodLiteral<"string">]>>;
|
|
1436
|
-
}, "strip", z.ZodTypeAny, {
|
|
1437
|
-
data?: unknown;
|
|
1438
|
-
render: "string" | "none" | "table";
|
|
1439
|
-
}, {
|
|
1440
|
-
data?: unknown;
|
|
1441
|
-
render?: "string" | "none" | "table" | undefined;
|
|
1442
|
-
}>, z.ZodVoid]>, z.ZodPromise<z.ZodUnion<[z.ZodObject<{
|
|
1443
|
-
data: z.ZodOptional<z.ZodUnknown>;
|
|
1444
|
-
render: z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"table">, z.ZodLiteral<"string">]>>;
|
|
1445
|
-
}, "strip", z.ZodTypeAny, {
|
|
1446
|
-
data?: unknown;
|
|
1447
|
-
render: "string" | "none" | "table";
|
|
1448
|
-
}, {
|
|
1449
|
-
data?: unknown;
|
|
1450
|
-
render?: "string" | "none" | "table" | undefined;
|
|
1451
|
-
}>, z.ZodVoid]>>]>>, z.ZodPromise<z.ZodVoid>]>;
|
|
1452
|
-
encoding: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"json">, z.ZodLiteral<"application/json">]>>>;
|
|
1453
|
-
}, "handler">, {
|
|
1454
|
-
handler: z.ZodString;
|
|
1455
|
-
}>, "strip", z.ZodTypeAny, {
|
|
1319
|
+
}>;
|
|
1320
|
+
}, z.ZodTypeAny, "passthrough">>], z.ZodUnknown>, z.ZodVoid>>>;
|
|
1321
|
+
}, "handler">, "strip", z.ZodTypeAny, {
|
|
1322
|
+
operation: string;
|
|
1323
|
+
command: string;
|
|
1324
|
+
description?: string | undefined;
|
|
1456
1325
|
positionals?: {
|
|
1326
|
+
description: string;
|
|
1327
|
+
placeholder: string;
|
|
1328
|
+
defaultValue?: string | number | boolean | undefined;
|
|
1329
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
1330
|
+
required?: boolean | undefined;
|
|
1331
|
+
}[] | undefined;
|
|
1332
|
+
options?: {
|
|
1333
|
+
description: string;
|
|
1334
|
+
flag: string;
|
|
1335
|
+
shortFlag?: string | undefined;
|
|
1336
|
+
defaultValue?: string | number | boolean | undefined;
|
|
1337
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
1457
1338
|
required?: boolean | undefined;
|
|
1339
|
+
boolean?: boolean | undefined;
|
|
1340
|
+
choices?: string[] | undefined;
|
|
1341
|
+
}[] | undefined;
|
|
1342
|
+
}, {
|
|
1343
|
+
operation: string;
|
|
1344
|
+
command: string;
|
|
1345
|
+
description?: string | undefined;
|
|
1346
|
+
positionals?: {
|
|
1347
|
+
description: string;
|
|
1348
|
+
placeholder: string;
|
|
1349
|
+
defaultValue?: string | number | boolean | undefined;
|
|
1458
1350
|
type?: "string" | "number" | "boolean" | undefined;
|
|
1351
|
+
required?: boolean | undefined;
|
|
1352
|
+
}[] | undefined;
|
|
1353
|
+
options?: {
|
|
1354
|
+
description: string;
|
|
1355
|
+
flag: string;
|
|
1356
|
+
shortFlag?: string | undefined;
|
|
1459
1357
|
defaultValue?: string | number | boolean | undefined;
|
|
1358
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
1359
|
+
required?: boolean | undefined;
|
|
1360
|
+
boolean?: boolean | undefined;
|
|
1361
|
+
choices?: string[] | undefined;
|
|
1362
|
+
}[] | undefined;
|
|
1363
|
+
}>, ParsedOperation.ParsedOperation, {
|
|
1364
|
+
operation: string;
|
|
1365
|
+
command: string;
|
|
1366
|
+
description?: string | undefined;
|
|
1367
|
+
positionals?: {
|
|
1460
1368
|
description: string;
|
|
1461
1369
|
placeholder: string;
|
|
1370
|
+
defaultValue?: string | number | boolean | undefined;
|
|
1371
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
1372
|
+
required?: boolean | undefined;
|
|
1462
1373
|
}[] | undefined;
|
|
1463
1374
|
options?: {
|
|
1375
|
+
description: string;
|
|
1376
|
+
flag: string;
|
|
1377
|
+
shortFlag?: string | undefined;
|
|
1378
|
+
defaultValue?: string | number | boolean | undefined;
|
|
1379
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
1380
|
+
required?: boolean | undefined;
|
|
1464
1381
|
boolean?: boolean | undefined;
|
|
1382
|
+
choices?: string[] | undefined;
|
|
1383
|
+
}[] | undefined;
|
|
1384
|
+
}>]>>;
|
|
1385
|
+
declare const templateToPluginMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodEffects<z.ZodObject<{
|
|
1386
|
+
type: z.ZodUnion<[z.ZodLiteral<"npm">, z.ZodLiteral<"binary">, z.ZodLiteral<"deno">]>;
|
|
1387
|
+
name: z.ZodString;
|
|
1388
|
+
}, "strip", z.ZodTypeAny, {
|
|
1389
|
+
type: "npm" | "binary" | "deno";
|
|
1390
|
+
name: string;
|
|
1391
|
+
}, {
|
|
1392
|
+
type: "npm" | "binary" | "deno";
|
|
1393
|
+
name: string;
|
|
1394
|
+
}>, InstalledPlugin.InstalledPlugin, {
|
|
1395
|
+
type: "npm" | "binary" | "deno";
|
|
1396
|
+
name: string;
|
|
1397
|
+
}>, z.ZodEffects<z.ZodObject<{
|
|
1398
|
+
command: z.ZodString;
|
|
1399
|
+
description: z.ZodString;
|
|
1400
|
+
positionals: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1401
|
+
placeholder: z.ZodString;
|
|
1402
|
+
description: z.ZodString;
|
|
1403
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1404
|
+
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"boolean">]>>;
|
|
1405
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
1406
|
+
}, "strip", z.ZodTypeAny, {
|
|
1407
|
+
description: string;
|
|
1408
|
+
placeholder: string;
|
|
1409
|
+
defaultValue?: string | number | boolean | undefined;
|
|
1410
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
1465
1411
|
required?: boolean | undefined;
|
|
1412
|
+
}, {
|
|
1413
|
+
description: string;
|
|
1414
|
+
placeholder: string;
|
|
1415
|
+
defaultValue?: string | number | boolean | undefined;
|
|
1466
1416
|
type?: "string" | "number" | "boolean" | undefined;
|
|
1417
|
+
required?: boolean | undefined;
|
|
1418
|
+
}>, "many">>;
|
|
1419
|
+
options: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1420
|
+
shortFlag: z.ZodOptional<z.ZodString>;
|
|
1421
|
+
flag: z.ZodString;
|
|
1422
|
+
description: z.ZodString;
|
|
1423
|
+
defaultValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
1424
|
+
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"boolean">]>>;
|
|
1425
|
+
required: z.ZodOptional<z.ZodBoolean>;
|
|
1426
|
+
boolean: z.ZodOptional<z.ZodBoolean>;
|
|
1427
|
+
choices: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1428
|
+
}, "strip", z.ZodTypeAny, {
|
|
1429
|
+
description: string;
|
|
1430
|
+
flag: string;
|
|
1467
1431
|
shortFlag?: string | undefined;
|
|
1468
1432
|
defaultValue?: string | number | boolean | undefined;
|
|
1433
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
1434
|
+
required?: boolean | undefined;
|
|
1435
|
+
boolean?: boolean | undefined;
|
|
1469
1436
|
choices?: string[] | undefined;
|
|
1437
|
+
}, {
|
|
1470
1438
|
description: string;
|
|
1471
1439
|
flag: string;
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1440
|
+
shortFlag?: string | undefined;
|
|
1441
|
+
defaultValue?: string | number | boolean | undefined;
|
|
1442
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
1443
|
+
required?: boolean | undefined;
|
|
1444
|
+
boolean?: boolean | undefined;
|
|
1445
|
+
choices?: string[] | undefined;
|
|
1446
|
+
}>, "many">>;
|
|
1447
|
+
template: z.ZodString;
|
|
1448
|
+
hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1449
|
+
encoding: z.ZodOptional<z.ZodDefault<z.ZodUnion<[z.ZodLiteral<"none">, z.ZodLiteral<"json">, z.ZodLiteral<"application/json">]>>>;
|
|
1450
|
+
handler: z.ZodString;
|
|
1451
|
+
}, "strip", z.ZodTypeAny, {
|
|
1475
1452
|
handler: string;
|
|
1476
1453
|
command: string;
|
|
1477
1454
|
description: string;
|
|
1478
1455
|
template: string;
|
|
1479
|
-
}, {
|
|
1480
1456
|
positionals?: {
|
|
1481
|
-
required?: boolean | undefined;
|
|
1482
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
1483
|
-
defaultValue?: string | number | boolean | undefined;
|
|
1484
1457
|
description: string;
|
|
1485
1458
|
placeholder: string;
|
|
1459
|
+
defaultValue?: string | number | boolean | undefined;
|
|
1460
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
1461
|
+
required?: boolean | undefined;
|
|
1486
1462
|
}[] | undefined;
|
|
1487
1463
|
options?: {
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
1464
|
+
description: string;
|
|
1465
|
+
flag: string;
|
|
1491
1466
|
shortFlag?: string | undefined;
|
|
1492
1467
|
defaultValue?: string | number | boolean | undefined;
|
|
1468
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
1469
|
+
required?: boolean | undefined;
|
|
1470
|
+
boolean?: boolean | undefined;
|
|
1493
1471
|
choices?: string[] | undefined;
|
|
1494
|
-
description: string;
|
|
1495
|
-
flag: string;
|
|
1496
1472
|
}[] | undefined;
|
|
1497
1473
|
hidden?: boolean | undefined;
|
|
1498
1474
|
encoding?: "none" | "json" | "application/json" | undefined;
|
|
1475
|
+
}, {
|
|
1499
1476
|
handler: string;
|
|
1500
1477
|
command: string;
|
|
1501
1478
|
description: string;
|
|
1502
1479
|
template: string;
|
|
1503
|
-
}>, ParsedTemplate.ParsedTemplate, {
|
|
1504
1480
|
positionals?: {
|
|
1505
|
-
required?: boolean | undefined;
|
|
1506
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
1507
|
-
defaultValue?: string | number | boolean | undefined;
|
|
1508
1481
|
description: string;
|
|
1509
1482
|
placeholder: string;
|
|
1483
|
+
defaultValue?: string | number | boolean | undefined;
|
|
1484
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
1485
|
+
required?: boolean | undefined;
|
|
1510
1486
|
}[] | undefined;
|
|
1511
1487
|
options?: {
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
1488
|
+
description: string;
|
|
1489
|
+
flag: string;
|
|
1515
1490
|
shortFlag?: string | undefined;
|
|
1516
1491
|
defaultValue?: string | number | boolean | undefined;
|
|
1492
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
1493
|
+
required?: boolean | undefined;
|
|
1494
|
+
boolean?: boolean | undefined;
|
|
1517
1495
|
choices?: string[] | undefined;
|
|
1518
|
-
description: string;
|
|
1519
|
-
flag: string;
|
|
1520
1496
|
}[] | undefined;
|
|
1521
1497
|
hidden?: boolean | undefined;
|
|
1522
1498
|
encoding?: "none" | "json" | "application/json" | undefined;
|
|
1499
|
+
}>, ParsedTemplate.ParsedTemplate, {
|
|
1523
1500
|
handler: string;
|
|
1524
1501
|
command: string;
|
|
1525
1502
|
description: string;
|
|
1526
1503
|
template: string;
|
|
1504
|
+
positionals?: {
|
|
1505
|
+
description: string;
|
|
1506
|
+
placeholder: string;
|
|
1507
|
+
defaultValue?: string | number | boolean | undefined;
|
|
1508
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
1509
|
+
required?: boolean | undefined;
|
|
1510
|
+
}[] | undefined;
|
|
1511
|
+
options?: {
|
|
1512
|
+
description: string;
|
|
1513
|
+
flag: string;
|
|
1514
|
+
shortFlag?: string | undefined;
|
|
1515
|
+
defaultValue?: string | number | boolean | undefined;
|
|
1516
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
1517
|
+
required?: boolean | undefined;
|
|
1518
|
+
boolean?: boolean | undefined;
|
|
1519
|
+
choices?: string[] | undefined;
|
|
1520
|
+
}[] | undefined;
|
|
1521
|
+
hidden?: boolean | undefined;
|
|
1522
|
+
encoding?: "none" | "json" | "application/json" | undefined;
|
|
1527
1523
|
}>]>>;
|
|
1528
1524
|
export declare const generatedSchemas: {
|
|
1529
1525
|
rawSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
@@ -1531,13 +1527,30 @@ export declare const generatedSchemas: {
|
|
|
1531
1527
|
schema: z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
1532
1528
|
build: string;
|
|
1533
1529
|
plugins: (import("@taqueria/protocol/Base").Flatten<{
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1530
|
+
version: {
|
|
1531
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1532
|
+
} & {
|
|
1533
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1534
|
+
} & string;
|
|
1538
1535
|
name: string;
|
|
1539
|
-
schema:
|
|
1540
|
-
|
|
1536
|
+
schema: {
|
|
1537
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1538
|
+
} & {
|
|
1539
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1540
|
+
} & string;
|
|
1541
|
+
alias: (({
|
|
1542
|
+
__type: import("./Alias").Alias;
|
|
1543
|
+
} & {
|
|
1544
|
+
__type: import("./SingleChar").SingleChar;
|
|
1545
|
+
} & {
|
|
1546
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1547
|
+
} & string) | ({
|
|
1548
|
+
__type: import("./Alias").Alias;
|
|
1549
|
+
} & {
|
|
1550
|
+
__type: Verb.Verb;
|
|
1551
|
+
} & {
|
|
1552
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1553
|
+
} & string)) & (({
|
|
1541
1554
|
__type: import("./Alias").Alias;
|
|
1542
1555
|
} & {
|
|
1543
1556
|
__type: import("./SingleChar").SingleChar;
|
|
@@ -1549,7 +1562,10 @@ export declare const generatedSchemas: {
|
|
|
1549
1562
|
__type: Verb.Verb;
|
|
1550
1563
|
} & {
|
|
1551
1564
|
__type: NonEmptyString.NonEmptyString;
|
|
1552
|
-
} & string);
|
|
1565
|
+
} & string) | undefined);
|
|
1566
|
+
tasks?: Task.Task[] | undefined;
|
|
1567
|
+
operations?: ParsedOperation.ParsedOperation[] | undefined;
|
|
1568
|
+
templates?: ParsedTemplate.ParsedTemplate[] | undefined;
|
|
1553
1569
|
}> & {
|
|
1554
1570
|
readonly __type: any;
|
|
1555
1571
|
})[];
|
|
@@ -1564,13 +1580,30 @@ export declare const generatedSchemas: {
|
|
|
1564
1580
|
make: (input: {
|
|
1565
1581
|
build: string;
|
|
1566
1582
|
plugins: (import("@taqueria/protocol/Base").Flatten<{
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1583
|
+
version: {
|
|
1584
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1585
|
+
} & {
|
|
1586
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1587
|
+
} & string;
|
|
1571
1588
|
name: string;
|
|
1572
|
-
schema:
|
|
1573
|
-
|
|
1589
|
+
schema: {
|
|
1590
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1591
|
+
} & {
|
|
1592
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1593
|
+
} & string;
|
|
1594
|
+
alias: (({
|
|
1595
|
+
__type: import("./Alias").Alias;
|
|
1596
|
+
} & {
|
|
1597
|
+
__type: import("./SingleChar").SingleChar;
|
|
1598
|
+
} & {
|
|
1599
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1600
|
+
} & string) | ({
|
|
1601
|
+
__type: import("./Alias").Alias;
|
|
1602
|
+
} & {
|
|
1603
|
+
__type: Verb.Verb;
|
|
1604
|
+
} & {
|
|
1605
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1606
|
+
} & string)) & (({
|
|
1574
1607
|
__type: import("./Alias").Alias;
|
|
1575
1608
|
} & {
|
|
1576
1609
|
__type: import("./SingleChar").SingleChar;
|
|
@@ -1582,7 +1615,10 @@ export declare const generatedSchemas: {
|
|
|
1582
1615
|
__type: Verb.Verb;
|
|
1583
1616
|
} & {
|
|
1584
1617
|
__type: NonEmptyString.NonEmptyString;
|
|
1585
|
-
} & string);
|
|
1618
|
+
} & string) | undefined);
|
|
1619
|
+
tasks?: Task.Task[] | undefined;
|
|
1620
|
+
operations?: ParsedOperation.ParsedOperation[] | undefined;
|
|
1621
|
+
templates?: ParsedTemplate.ParsedTemplate[] | undefined;
|
|
1586
1622
|
}> & {
|
|
1587
1623
|
readonly __type: any;
|
|
1588
1624
|
})[];
|
|
@@ -1593,13 +1629,30 @@ export declare const generatedSchemas: {
|
|
|
1593
1629
|
}) => Future<TaqError, {
|
|
1594
1630
|
build: string;
|
|
1595
1631
|
plugins: (import("@taqueria/protocol/Base").Flatten<{
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1632
|
+
version: {
|
|
1633
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1634
|
+
} & {
|
|
1635
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1636
|
+
} & string;
|
|
1600
1637
|
name: string;
|
|
1601
|
-
schema:
|
|
1602
|
-
|
|
1638
|
+
schema: {
|
|
1639
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1640
|
+
} & {
|
|
1641
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1642
|
+
} & string;
|
|
1643
|
+
alias: (({
|
|
1644
|
+
__type: import("./Alias").Alias;
|
|
1645
|
+
} & {
|
|
1646
|
+
__type: import("./SingleChar").SingleChar;
|
|
1647
|
+
} & {
|
|
1648
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1649
|
+
} & string) | ({
|
|
1650
|
+
__type: import("./Alias").Alias;
|
|
1651
|
+
} & {
|
|
1652
|
+
__type: Verb.Verb;
|
|
1653
|
+
} & {
|
|
1654
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1655
|
+
} & string)) & (({
|
|
1603
1656
|
__type: import("./Alias").Alias;
|
|
1604
1657
|
} & {
|
|
1605
1658
|
__type: import("./SingleChar").SingleChar;
|
|
@@ -1611,7 +1664,10 @@ export declare const generatedSchemas: {
|
|
|
1611
1664
|
__type: Verb.Verb;
|
|
1612
1665
|
} & {
|
|
1613
1666
|
__type: NonEmptyString.NonEmptyString;
|
|
1614
|
-
} & string);
|
|
1667
|
+
} & string) | undefined);
|
|
1668
|
+
tasks?: Task.Task[] | undefined;
|
|
1669
|
+
operations?: ParsedOperation.ParsedOperation[] | undefined;
|
|
1670
|
+
templates?: ParsedTemplate.ParsedTemplate[] | undefined;
|
|
1615
1671
|
}> & {
|
|
1616
1672
|
readonly __type: any;
|
|
1617
1673
|
})[];
|
|
@@ -1625,13 +1681,18 @@ export declare const generatedSchemas: {
|
|
|
1625
1681
|
of: (input: unknown) => Future<TaqError, {
|
|
1626
1682
|
build: string;
|
|
1627
1683
|
plugins: (import("@taqueria/protocol/Base").Flatten<{
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1684
|
+
version: {
|
|
1685
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1686
|
+
} & {
|
|
1687
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1688
|
+
} & string;
|
|
1632
1689
|
name: string;
|
|
1633
|
-
schema:
|
|
1634
|
-
|
|
1690
|
+
schema: {
|
|
1691
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1692
|
+
} & {
|
|
1693
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1694
|
+
} & string;
|
|
1695
|
+
alias: (({
|
|
1635
1696
|
__type: import("./Alias").Alias;
|
|
1636
1697
|
} & {
|
|
1637
1698
|
__type: import("./SingleChar").SingleChar;
|
|
@@ -1643,7 +1704,22 @@ export declare const generatedSchemas: {
|
|
|
1643
1704
|
__type: Verb.Verb;
|
|
1644
1705
|
} & {
|
|
1645
1706
|
__type: NonEmptyString.NonEmptyString;
|
|
1646
|
-
} & string)
|
|
1707
|
+
} & string)) & (({
|
|
1708
|
+
__type: import("./Alias").Alias;
|
|
1709
|
+
} & {
|
|
1710
|
+
__type: import("./SingleChar").SingleChar;
|
|
1711
|
+
} & {
|
|
1712
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1713
|
+
} & string) | ({
|
|
1714
|
+
__type: import("./Alias").Alias;
|
|
1715
|
+
} & {
|
|
1716
|
+
__type: Verb.Verb;
|
|
1717
|
+
} & {
|
|
1718
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1719
|
+
} & string) | undefined);
|
|
1720
|
+
tasks?: Task.Task[] | undefined;
|
|
1721
|
+
operations?: ParsedOperation.ParsedOperation[] | undefined;
|
|
1722
|
+
templates?: ParsedTemplate.ParsedTemplate[] | undefined;
|
|
1647
1723
|
}> & {
|
|
1648
1724
|
readonly __type: any;
|
|
1649
1725
|
})[];
|
|
@@ -1657,13 +1733,30 @@ export declare const generatedSchemas: {
|
|
|
1657
1733
|
create: (input: {
|
|
1658
1734
|
build: string;
|
|
1659
1735
|
plugins: (import("@taqueria/protocol/Base").Flatten<{
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1736
|
+
version: {
|
|
1737
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1738
|
+
} & {
|
|
1739
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1740
|
+
} & string;
|
|
1664
1741
|
name: string;
|
|
1665
|
-
schema:
|
|
1666
|
-
|
|
1742
|
+
schema: {
|
|
1743
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1744
|
+
} & {
|
|
1745
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1746
|
+
} & string;
|
|
1747
|
+
alias: (({
|
|
1748
|
+
__type: import("./Alias").Alias;
|
|
1749
|
+
} & {
|
|
1750
|
+
__type: import("./SingleChar").SingleChar;
|
|
1751
|
+
} & {
|
|
1752
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1753
|
+
} & string) | ({
|
|
1754
|
+
__type: import("./Alias").Alias;
|
|
1755
|
+
} & {
|
|
1756
|
+
__type: Verb.Verb;
|
|
1757
|
+
} & {
|
|
1758
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1759
|
+
} & string)) & (({
|
|
1667
1760
|
__type: import("./Alias").Alias;
|
|
1668
1761
|
} & {
|
|
1669
1762
|
__type: import("./SingleChar").SingleChar;
|
|
@@ -1675,7 +1768,10 @@ export declare const generatedSchemas: {
|
|
|
1675
1768
|
__type: Verb.Verb;
|
|
1676
1769
|
} & {
|
|
1677
1770
|
__type: NonEmptyString.NonEmptyString;
|
|
1678
|
-
} & string);
|
|
1771
|
+
} & string) | undefined);
|
|
1772
|
+
tasks?: Task.Task[] | undefined;
|
|
1773
|
+
operations?: ParsedOperation.ParsedOperation[] | undefined;
|
|
1774
|
+
templates?: ParsedTemplate.ParsedTemplate[] | undefined;
|
|
1679
1775
|
}> & {
|
|
1680
1776
|
readonly __type: any;
|
|
1681
1777
|
})[];
|
|
@@ -1686,13 +1782,30 @@ export declare const generatedSchemas: {
|
|
|
1686
1782
|
}) => {
|
|
1687
1783
|
build: string;
|
|
1688
1784
|
plugins: (import("@taqueria/protocol/Base").Flatten<{
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1785
|
+
version: {
|
|
1786
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1787
|
+
} & {
|
|
1788
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1789
|
+
} & string;
|
|
1693
1790
|
name: string;
|
|
1694
|
-
schema:
|
|
1695
|
-
|
|
1791
|
+
schema: {
|
|
1792
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1793
|
+
} & {
|
|
1794
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1795
|
+
} & string;
|
|
1796
|
+
alias: (({
|
|
1797
|
+
__type: import("./Alias").Alias;
|
|
1798
|
+
} & {
|
|
1799
|
+
__type: import("./SingleChar").SingleChar;
|
|
1800
|
+
} & {
|
|
1801
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1802
|
+
} & string) | ({
|
|
1803
|
+
__type: import("./Alias").Alias;
|
|
1804
|
+
} & {
|
|
1805
|
+
__type: Verb.Verb;
|
|
1806
|
+
} & {
|
|
1807
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1808
|
+
} & string)) & (({
|
|
1696
1809
|
__type: import("./Alias").Alias;
|
|
1697
1810
|
} & {
|
|
1698
1811
|
__type: import("./SingleChar").SingleChar;
|
|
@@ -1704,7 +1817,10 @@ export declare const generatedSchemas: {
|
|
|
1704
1817
|
__type: Verb.Verb;
|
|
1705
1818
|
} & {
|
|
1706
1819
|
__type: NonEmptyString.NonEmptyString;
|
|
1707
|
-
} & string);
|
|
1820
|
+
} & string) | undefined);
|
|
1821
|
+
tasks?: Task.Task[] | undefined;
|
|
1822
|
+
operations?: ParsedOperation.ParsedOperation[] | undefined;
|
|
1823
|
+
templates?: ParsedTemplate.ParsedTemplate[] | undefined;
|
|
1708
1824
|
}> & {
|
|
1709
1825
|
readonly __type: any;
|
|
1710
1826
|
})[];
|
|
@@ -1718,13 +1834,30 @@ export declare const generatedSchemas: {
|
|
|
1718
1834
|
from: (input: unknown) => {
|
|
1719
1835
|
build: string;
|
|
1720
1836
|
plugins: (import("@taqueria/protocol/Base").Flatten<{
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1837
|
+
version: {
|
|
1838
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1839
|
+
} & {
|
|
1840
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1841
|
+
} & string;
|
|
1725
1842
|
name: string;
|
|
1726
|
-
schema:
|
|
1727
|
-
|
|
1843
|
+
schema: {
|
|
1844
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1845
|
+
} & {
|
|
1846
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1847
|
+
} & string;
|
|
1848
|
+
alias: (({
|
|
1849
|
+
__type: import("./Alias").Alias;
|
|
1850
|
+
} & {
|
|
1851
|
+
__type: import("./SingleChar").SingleChar;
|
|
1852
|
+
} & {
|
|
1853
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1854
|
+
} & string) | ({
|
|
1855
|
+
__type: import("./Alias").Alias;
|
|
1856
|
+
} & {
|
|
1857
|
+
__type: Verb.Verb;
|
|
1858
|
+
} & {
|
|
1859
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1860
|
+
} & string)) & (({
|
|
1728
1861
|
__type: import("./Alias").Alias;
|
|
1729
1862
|
} & {
|
|
1730
1863
|
__type: import("./SingleChar").SingleChar;
|
|
@@ -1736,7 +1869,10 @@ export declare const generatedSchemas: {
|
|
|
1736
1869
|
__type: Verb.Verb;
|
|
1737
1870
|
} & {
|
|
1738
1871
|
__type: NonEmptyString.NonEmptyString;
|
|
1739
|
-
} & string);
|
|
1872
|
+
} & string) | undefined);
|
|
1873
|
+
tasks?: Task.Task[] | undefined;
|
|
1874
|
+
operations?: ParsedOperation.ParsedOperation[] | undefined;
|
|
1875
|
+
templates?: ParsedTemplate.ParsedTemplate[] | undefined;
|
|
1740
1876
|
}> & {
|
|
1741
1877
|
readonly __type: any;
|
|
1742
1878
|
})[];
|
|
@@ -1756,13 +1892,30 @@ export type TemplateToPluginMap = z.infer<typeof templateToPluginMap>;
|
|
|
1756
1892
|
export declare const create: (input: {
|
|
1757
1893
|
build: string;
|
|
1758
1894
|
plugins: (import("@taqueria/protocol/Base").Flatten<{
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1895
|
+
version: {
|
|
1896
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1897
|
+
} & {
|
|
1898
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1899
|
+
} & string;
|
|
1763
1900
|
name: string;
|
|
1764
|
-
schema:
|
|
1765
|
-
|
|
1901
|
+
schema: {
|
|
1902
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1903
|
+
} & {
|
|
1904
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1905
|
+
} & string;
|
|
1906
|
+
alias: (({
|
|
1907
|
+
__type: import("./Alias").Alias;
|
|
1908
|
+
} & {
|
|
1909
|
+
__type: import("./SingleChar").SingleChar;
|
|
1910
|
+
} & {
|
|
1911
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1912
|
+
} & string) | ({
|
|
1913
|
+
__type: import("./Alias").Alias;
|
|
1914
|
+
} & {
|
|
1915
|
+
__type: Verb.Verb;
|
|
1916
|
+
} & {
|
|
1917
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1918
|
+
} & string)) & (({
|
|
1766
1919
|
__type: import("./Alias").Alias;
|
|
1767
1920
|
} & {
|
|
1768
1921
|
__type: import("./SingleChar").SingleChar;
|
|
@@ -1774,7 +1927,10 @@ export declare const create: (input: {
|
|
|
1774
1927
|
__type: Verb.Verb;
|
|
1775
1928
|
} & {
|
|
1776
1929
|
__type: NonEmptyString.NonEmptyString;
|
|
1777
|
-
} & string);
|
|
1930
|
+
} & string) | undefined);
|
|
1931
|
+
tasks?: Task.Task[] | undefined;
|
|
1932
|
+
operations?: ParsedOperation.ParsedOperation[] | undefined;
|
|
1933
|
+
templates?: ParsedTemplate.ParsedTemplate[] | undefined;
|
|
1778
1934
|
}> & {
|
|
1779
1935
|
readonly __type: any;
|
|
1780
1936
|
})[];
|
|
@@ -1785,13 +1941,30 @@ export declare const create: (input: {
|
|
|
1785
1941
|
}) => {
|
|
1786
1942
|
build: string;
|
|
1787
1943
|
plugins: (import("@taqueria/protocol/Base").Flatten<{
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1944
|
+
version: {
|
|
1945
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1946
|
+
} & {
|
|
1947
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1948
|
+
} & string;
|
|
1792
1949
|
name: string;
|
|
1793
|
-
schema:
|
|
1794
|
-
|
|
1950
|
+
schema: {
|
|
1951
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1952
|
+
} & {
|
|
1953
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1954
|
+
} & string;
|
|
1955
|
+
alias: (({
|
|
1956
|
+
__type: import("./Alias").Alias;
|
|
1957
|
+
} & {
|
|
1958
|
+
__type: import("./SingleChar").SingleChar;
|
|
1959
|
+
} & {
|
|
1960
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1961
|
+
} & string) | ({
|
|
1962
|
+
__type: import("./Alias").Alias;
|
|
1963
|
+
} & {
|
|
1964
|
+
__type: Verb.Verb;
|
|
1965
|
+
} & {
|
|
1966
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1967
|
+
} & string)) & (({
|
|
1795
1968
|
__type: import("./Alias").Alias;
|
|
1796
1969
|
} & {
|
|
1797
1970
|
__type: import("./SingleChar").SingleChar;
|
|
@@ -1803,7 +1976,10 @@ export declare const create: (input: {
|
|
|
1803
1976
|
__type: Verb.Verb;
|
|
1804
1977
|
} & {
|
|
1805
1978
|
__type: NonEmptyString.NonEmptyString;
|
|
1806
|
-
} & string);
|
|
1979
|
+
} & string) | undefined);
|
|
1980
|
+
tasks?: Task.Task[] | undefined;
|
|
1981
|
+
operations?: ParsedOperation.ParsedOperation[] | undefined;
|
|
1982
|
+
templates?: ParsedTemplate.ParsedTemplate[] | undefined;
|
|
1807
1983
|
}> & {
|
|
1808
1984
|
readonly __type: any;
|
|
1809
1985
|
})[];
|
|
@@ -1816,13 +1992,30 @@ export declare const create: (input: {
|
|
|
1816
1992
|
}, of: (input: unknown) => Future<TaqError, {
|
|
1817
1993
|
build: string;
|
|
1818
1994
|
plugins: (import("@taqueria/protocol/Base").Flatten<{
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1995
|
+
version: {
|
|
1996
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
1997
|
+
} & {
|
|
1998
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1999
|
+
} & string;
|
|
1823
2000
|
name: string;
|
|
1824
|
-
schema:
|
|
1825
|
-
|
|
2001
|
+
schema: {
|
|
2002
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
2003
|
+
} & {
|
|
2004
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2005
|
+
} & string;
|
|
2006
|
+
alias: (({
|
|
2007
|
+
__type: import("./Alias").Alias;
|
|
2008
|
+
} & {
|
|
2009
|
+
__type: import("./SingleChar").SingleChar;
|
|
2010
|
+
} & {
|
|
2011
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2012
|
+
} & string) | ({
|
|
2013
|
+
__type: import("./Alias").Alias;
|
|
2014
|
+
} & {
|
|
2015
|
+
__type: Verb.Verb;
|
|
2016
|
+
} & {
|
|
2017
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2018
|
+
} & string)) & (({
|
|
1826
2019
|
__type: import("./Alias").Alias;
|
|
1827
2020
|
} & {
|
|
1828
2021
|
__type: import("./SingleChar").SingleChar;
|
|
@@ -1834,7 +2027,10 @@ export declare const create: (input: {
|
|
|
1834
2027
|
__type: Verb.Verb;
|
|
1835
2028
|
} & {
|
|
1836
2029
|
__type: NonEmptyString.NonEmptyString;
|
|
1837
|
-
} & string);
|
|
2030
|
+
} & string) | undefined);
|
|
2031
|
+
tasks?: Task.Task[] | undefined;
|
|
2032
|
+
operations?: ParsedOperation.ParsedOperation[] | undefined;
|
|
2033
|
+
templates?: ParsedTemplate.ParsedTemplate[] | undefined;
|
|
1838
2034
|
}> & {
|
|
1839
2035
|
readonly __type: any;
|
|
1840
2036
|
})[];
|
|
@@ -1847,13 +2043,30 @@ export declare const create: (input: {
|
|
|
1847
2043
|
}>, make: (input: {
|
|
1848
2044
|
build: string;
|
|
1849
2045
|
plugins: (import("@taqueria/protocol/Base").Flatten<{
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
2046
|
+
version: {
|
|
2047
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
2048
|
+
} & {
|
|
2049
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2050
|
+
} & string;
|
|
1854
2051
|
name: string;
|
|
1855
|
-
schema:
|
|
1856
|
-
|
|
2052
|
+
schema: {
|
|
2053
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
2054
|
+
} & {
|
|
2055
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2056
|
+
} & string;
|
|
2057
|
+
alias: (({
|
|
2058
|
+
__type: import("./Alias").Alias;
|
|
2059
|
+
} & {
|
|
2060
|
+
__type: import("./SingleChar").SingleChar;
|
|
2061
|
+
} & {
|
|
2062
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2063
|
+
} & string) | ({
|
|
2064
|
+
__type: import("./Alias").Alias;
|
|
2065
|
+
} & {
|
|
2066
|
+
__type: Verb.Verb;
|
|
2067
|
+
} & {
|
|
2068
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2069
|
+
} & string)) & (({
|
|
1857
2070
|
__type: import("./Alias").Alias;
|
|
1858
2071
|
} & {
|
|
1859
2072
|
__type: import("./SingleChar").SingleChar;
|
|
@@ -1865,7 +2078,10 @@ export declare const create: (input: {
|
|
|
1865
2078
|
__type: Verb.Verb;
|
|
1866
2079
|
} & {
|
|
1867
2080
|
__type: NonEmptyString.NonEmptyString;
|
|
1868
|
-
} & string);
|
|
2081
|
+
} & string) | undefined);
|
|
2082
|
+
tasks?: Task.Task[] | undefined;
|
|
2083
|
+
operations?: ParsedOperation.ParsedOperation[] | undefined;
|
|
2084
|
+
templates?: ParsedTemplate.ParsedTemplate[] | undefined;
|
|
1869
2085
|
}> & {
|
|
1870
2086
|
readonly __type: any;
|
|
1871
2087
|
})[];
|
|
@@ -1876,13 +2092,30 @@ export declare const create: (input: {
|
|
|
1876
2092
|
}) => Future<TaqError, {
|
|
1877
2093
|
build: string;
|
|
1878
2094
|
plugins: (import("@taqueria/protocol/Base").Flatten<{
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
2095
|
+
version: {
|
|
2096
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
2097
|
+
} & {
|
|
2098
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2099
|
+
} & string;
|
|
1883
2100
|
name: string;
|
|
1884
|
-
schema:
|
|
1885
|
-
|
|
2101
|
+
schema: {
|
|
2102
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
2103
|
+
} & {
|
|
2104
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2105
|
+
} & string;
|
|
2106
|
+
alias: (({
|
|
2107
|
+
__type: import("./Alias").Alias;
|
|
2108
|
+
} & {
|
|
2109
|
+
__type: import("./SingleChar").SingleChar;
|
|
2110
|
+
} & {
|
|
2111
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2112
|
+
} & string) | ({
|
|
2113
|
+
__type: import("./Alias").Alias;
|
|
2114
|
+
} & {
|
|
2115
|
+
__type: Verb.Verb;
|
|
2116
|
+
} & {
|
|
2117
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2118
|
+
} & string)) & (({
|
|
1886
2119
|
__type: import("./Alias").Alias;
|
|
1887
2120
|
} & {
|
|
1888
2121
|
__type: import("./SingleChar").SingleChar;
|
|
@@ -1894,7 +2127,10 @@ export declare const create: (input: {
|
|
|
1894
2127
|
__type: Verb.Verb;
|
|
1895
2128
|
} & {
|
|
1896
2129
|
__type: NonEmptyString.NonEmptyString;
|
|
1897
|
-
} & string);
|
|
2130
|
+
} & string) | undefined);
|
|
2131
|
+
tasks?: Task.Task[] | undefined;
|
|
2132
|
+
operations?: ParsedOperation.ParsedOperation[] | undefined;
|
|
2133
|
+
templates?: ParsedTemplate.ParsedTemplate[] | undefined;
|
|
1898
2134
|
}> & {
|
|
1899
2135
|
readonly __type: any;
|
|
1900
2136
|
})[];
|
|
@@ -1909,13 +2145,30 @@ export declare const schemas: {
|
|
|
1909
2145
|
schema: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
1910
2146
|
build: string;
|
|
1911
2147
|
plugins: (import("@taqueria/protocol/Base").Flatten<{
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
2148
|
+
version: {
|
|
2149
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
2150
|
+
} & {
|
|
2151
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2152
|
+
} & string;
|
|
1916
2153
|
name: string;
|
|
1917
|
-
schema:
|
|
1918
|
-
|
|
2154
|
+
schema: {
|
|
2155
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
2156
|
+
} & {
|
|
2157
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2158
|
+
} & string;
|
|
2159
|
+
alias: (({
|
|
2160
|
+
__type: import("./Alias").Alias;
|
|
2161
|
+
} & {
|
|
2162
|
+
__type: import("./SingleChar").SingleChar;
|
|
2163
|
+
} & {
|
|
2164
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2165
|
+
} & string) | ({
|
|
2166
|
+
__type: import("./Alias").Alias;
|
|
2167
|
+
} & {
|
|
2168
|
+
__type: Verb.Verb;
|
|
2169
|
+
} & {
|
|
2170
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2171
|
+
} & string)) & (({
|
|
1919
2172
|
__type: import("./Alias").Alias;
|
|
1920
2173
|
} & {
|
|
1921
2174
|
__type: import("./SingleChar").SingleChar;
|
|
@@ -1927,7 +2180,10 @@ export declare const schemas: {
|
|
|
1927
2180
|
__type: Verb.Verb;
|
|
1928
2181
|
} & {
|
|
1929
2182
|
__type: NonEmptyString.NonEmptyString;
|
|
1930
|
-
} & string);
|
|
2183
|
+
} & string) | undefined);
|
|
2184
|
+
tasks?: Task.Task[] | undefined;
|
|
2185
|
+
operations?: ParsedOperation.ParsedOperation[] | undefined;
|
|
2186
|
+
templates?: ParsedTemplate.ParsedTemplate[] | undefined;
|
|
1931
2187
|
}> & {
|
|
1932
2188
|
readonly __type: any;
|
|
1933
2189
|
})[];
|
|
@@ -1940,13 +2196,30 @@ export declare const schemas: {
|
|
|
1940
2196
|
}, any>, {
|
|
1941
2197
|
build: string;
|
|
1942
2198
|
plugins: (import("@taqueria/protocol/Base").Flatten<{
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
2199
|
+
version: {
|
|
2200
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
2201
|
+
} & {
|
|
2202
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2203
|
+
} & string;
|
|
1947
2204
|
name: string;
|
|
1948
|
-
schema:
|
|
1949
|
-
|
|
2205
|
+
schema: {
|
|
2206
|
+
__type: import("./VersionNumber").VersionNumber;
|
|
2207
|
+
} & {
|
|
2208
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2209
|
+
} & string;
|
|
2210
|
+
alias: (({
|
|
2211
|
+
__type: import("./Alias").Alias;
|
|
2212
|
+
} & {
|
|
2213
|
+
__type: import("./SingleChar").SingleChar;
|
|
2214
|
+
} & {
|
|
2215
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2216
|
+
} & string) | ({
|
|
2217
|
+
__type: import("./Alias").Alias;
|
|
2218
|
+
} & {
|
|
2219
|
+
__type: Verb.Verb;
|
|
2220
|
+
} & {
|
|
2221
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2222
|
+
} & string)) & (({
|
|
1950
2223
|
__type: import("./Alias").Alias;
|
|
1951
2224
|
} & {
|
|
1952
2225
|
__type: import("./SingleChar").SingleChar;
|
|
@@ -1958,7 +2231,10 @@ export declare const schemas: {
|
|
|
1958
2231
|
__type: Verb.Verb;
|
|
1959
2232
|
} & {
|
|
1960
2233
|
__type: NonEmptyString.NonEmptyString;
|
|
1961
|
-
} & string);
|
|
2234
|
+
} & string) | undefined);
|
|
2235
|
+
tasks?: Task.Task[] | undefined;
|
|
2236
|
+
operations?: ParsedOperation.ParsedOperation[] | undefined;
|
|
2237
|
+
templates?: ParsedTemplate.ParsedTemplate[] | undefined;
|
|
1962
2238
|
}> & {
|
|
1963
2239
|
readonly __type: any;
|
|
1964
2240
|
})[];
|