@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/out/types/Task.d.ts
CHANGED
|
@@ -27,23 +27,23 @@ export declare const schemas: {
|
|
|
27
27
|
boolean: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
28
28
|
choices: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
29
29
|
}, "strip", import("zod").ZodTypeAny, {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
30
|
+
description: string;
|
|
31
|
+
flag: string;
|
|
33
32
|
shortFlag?: string | undefined;
|
|
34
33
|
defaultValue?: string | number | boolean | undefined;
|
|
34
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
35
|
+
required?: boolean | undefined;
|
|
36
|
+
boolean?: boolean | undefined;
|
|
35
37
|
choices?: string[] | undefined;
|
|
38
|
+
}, {
|
|
36
39
|
description: string;
|
|
37
40
|
flag: string;
|
|
38
|
-
}, {
|
|
39
|
-
boolean?: boolean | undefined;
|
|
40
|
-
required?: boolean | undefined;
|
|
41
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
42
41
|
shortFlag?: string | undefined;
|
|
43
42
|
defaultValue?: string | number | boolean | undefined;
|
|
43
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
44
|
+
required?: boolean | undefined;
|
|
45
|
+
boolean?: boolean | undefined;
|
|
44
46
|
choices?: string[] | undefined;
|
|
45
|
-
description: string;
|
|
46
|
-
flag: string;
|
|
47
47
|
}>, "many">>;
|
|
48
48
|
positionals: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
49
49
|
placeholder: import("zod").ZodString;
|
|
@@ -52,70 +52,70 @@ export declare const schemas: {
|
|
|
52
52
|
type: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"string">, import("zod").ZodLiteral<"number">, import("zod").ZodLiteral<"boolean">]>>;
|
|
53
53
|
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
54
54
|
}, "strip", import("zod").ZodTypeAny, {
|
|
55
|
-
required?: boolean | undefined;
|
|
56
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
57
|
-
defaultValue?: string | number | boolean | undefined;
|
|
58
55
|
description: string;
|
|
59
56
|
placeholder: string;
|
|
60
|
-
}, {
|
|
61
|
-
required?: boolean | undefined;
|
|
62
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
63
57
|
defaultValue?: string | number | boolean | undefined;
|
|
58
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
59
|
+
required?: boolean | undefined;
|
|
60
|
+
}, {
|
|
64
61
|
description: string;
|
|
65
62
|
placeholder: string;
|
|
63
|
+
defaultValue?: string | number | boolean | undefined;
|
|
64
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
65
|
+
required?: boolean | undefined;
|
|
66
66
|
}>, "many">>;
|
|
67
67
|
}, "strip", import("zod").ZodTypeAny, {
|
|
68
|
+
handler: string;
|
|
69
|
+
command: string;
|
|
70
|
+
task: string;
|
|
71
|
+
aliases?: string[] | undefined;
|
|
68
72
|
description?: string | undefined;
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
defaultValue?: string | number | boolean | undefined;
|
|
73
|
-
description: string;
|
|
74
|
-
placeholder: string;
|
|
75
|
-
}[] | undefined;
|
|
73
|
+
example?: string | undefined;
|
|
74
|
+
hidden?: boolean | undefined;
|
|
75
|
+
encoding?: "none" | "json" | "application/json" | undefined;
|
|
76
76
|
options?: {
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
77
|
+
description: string;
|
|
78
|
+
flag: string;
|
|
80
79
|
shortFlag?: string | undefined;
|
|
81
80
|
defaultValue?: string | number | boolean | undefined;
|
|
81
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
82
|
+
required?: boolean | undefined;
|
|
83
|
+
boolean?: boolean | undefined;
|
|
82
84
|
choices?: string[] | undefined;
|
|
85
|
+
}[] | undefined;
|
|
86
|
+
positionals?: {
|
|
83
87
|
description: string;
|
|
84
|
-
|
|
88
|
+
placeholder: string;
|
|
89
|
+
defaultValue?: string | number | boolean | undefined;
|
|
90
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
91
|
+
required?: boolean | undefined;
|
|
85
92
|
}[] | undefined;
|
|
86
|
-
|
|
87
|
-
encoding?: "none" | "json" | "application/json" | undefined;
|
|
88
|
-
aliases?: string[] | undefined;
|
|
89
|
-
example?: string | undefined;
|
|
93
|
+
}, {
|
|
90
94
|
handler: string;
|
|
91
95
|
command: string;
|
|
92
96
|
task: string;
|
|
93
|
-
|
|
97
|
+
aliases?: string[] | undefined;
|
|
94
98
|
description?: string | undefined;
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
defaultValue?: string | number | boolean | undefined;
|
|
99
|
-
description: string;
|
|
100
|
-
placeholder: string;
|
|
101
|
-
}[] | undefined;
|
|
99
|
+
example?: string | undefined;
|
|
100
|
+
hidden?: boolean | undefined;
|
|
101
|
+
encoding?: "none" | "json" | "application/json" | undefined;
|
|
102
102
|
options?: {
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
103
|
+
description: string;
|
|
104
|
+
flag: string;
|
|
106
105
|
shortFlag?: string | undefined;
|
|
107
106
|
defaultValue?: string | number | boolean | undefined;
|
|
107
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
108
|
+
required?: boolean | undefined;
|
|
109
|
+
boolean?: boolean | undefined;
|
|
108
110
|
choices?: string[] | undefined;
|
|
111
|
+
}[] | undefined;
|
|
112
|
+
positionals?: {
|
|
109
113
|
description: string;
|
|
110
|
-
|
|
114
|
+
placeholder: string;
|
|
115
|
+
defaultValue?: string | number | boolean | undefined;
|
|
116
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
117
|
+
required?: boolean | undefined;
|
|
111
118
|
}[] | undefined;
|
|
112
|
-
hidden?: boolean | undefined;
|
|
113
|
-
encoding?: "none" | "json" | "application/json" | undefined;
|
|
114
|
-
aliases?: string[] | undefined;
|
|
115
|
-
example?: string | undefined;
|
|
116
|
-
handler: string;
|
|
117
|
-
command: string;
|
|
118
|
-
task: string;
|
|
119
119
|
}>;
|
|
120
120
|
schema: import("zod").ZodEffects<import("zod").ZodObject<{
|
|
121
121
|
task: import("zod").ZodString;
|
|
@@ -136,23 +136,23 @@ export declare const schemas: {
|
|
|
136
136
|
boolean: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
137
137
|
choices: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
138
138
|
}, "strip", import("zod").ZodTypeAny, {
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
139
|
+
description: string;
|
|
140
|
+
flag: string;
|
|
142
141
|
shortFlag?: string | undefined;
|
|
143
142
|
defaultValue?: string | number | boolean | undefined;
|
|
143
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
144
|
+
required?: boolean | undefined;
|
|
145
|
+
boolean?: boolean | undefined;
|
|
144
146
|
choices?: string[] | undefined;
|
|
147
|
+
}, {
|
|
145
148
|
description: string;
|
|
146
149
|
flag: string;
|
|
147
|
-
}, {
|
|
148
|
-
boolean?: boolean | undefined;
|
|
149
|
-
required?: boolean | undefined;
|
|
150
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
151
150
|
shortFlag?: string | undefined;
|
|
152
151
|
defaultValue?: string | number | boolean | undefined;
|
|
152
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
153
|
+
required?: boolean | undefined;
|
|
154
|
+
boolean?: boolean | undefined;
|
|
153
155
|
choices?: string[] | undefined;
|
|
154
|
-
description: string;
|
|
155
|
-
flag: string;
|
|
156
156
|
}>, "many">>;
|
|
157
157
|
positionals: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
158
158
|
placeholder: import("zod").ZodString;
|
|
@@ -161,96 +161,96 @@ export declare const schemas: {
|
|
|
161
161
|
type: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"string">, import("zod").ZodLiteral<"number">, import("zod").ZodLiteral<"boolean">]>>;
|
|
162
162
|
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
163
163
|
}, "strip", import("zod").ZodTypeAny, {
|
|
164
|
-
required?: boolean | undefined;
|
|
165
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
166
|
-
defaultValue?: string | number | boolean | undefined;
|
|
167
164
|
description: string;
|
|
168
165
|
placeholder: string;
|
|
169
|
-
}, {
|
|
170
|
-
required?: boolean | undefined;
|
|
171
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
172
166
|
defaultValue?: string | number | boolean | undefined;
|
|
167
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
168
|
+
required?: boolean | undefined;
|
|
169
|
+
}, {
|
|
173
170
|
description: string;
|
|
174
171
|
placeholder: string;
|
|
172
|
+
defaultValue?: string | number | boolean | undefined;
|
|
173
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
174
|
+
required?: boolean | undefined;
|
|
175
175
|
}>, "many">>;
|
|
176
176
|
}, "strip", import("zod").ZodTypeAny, {
|
|
177
|
+
handler: string;
|
|
178
|
+
command: string;
|
|
179
|
+
task: string;
|
|
180
|
+
aliases?: string[] | undefined;
|
|
177
181
|
description?: string | undefined;
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
defaultValue?: string | number | boolean | undefined;
|
|
182
|
-
description: string;
|
|
183
|
-
placeholder: string;
|
|
184
|
-
}[] | undefined;
|
|
182
|
+
example?: string | undefined;
|
|
183
|
+
hidden?: boolean | undefined;
|
|
184
|
+
encoding?: "none" | "json" | "application/json" | undefined;
|
|
185
185
|
options?: {
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
186
|
+
description: string;
|
|
187
|
+
flag: string;
|
|
189
188
|
shortFlag?: string | undefined;
|
|
190
189
|
defaultValue?: string | number | boolean | undefined;
|
|
190
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
191
|
+
required?: boolean | undefined;
|
|
192
|
+
boolean?: boolean | undefined;
|
|
191
193
|
choices?: string[] | undefined;
|
|
194
|
+
}[] | undefined;
|
|
195
|
+
positionals?: {
|
|
192
196
|
description: string;
|
|
193
|
-
|
|
197
|
+
placeholder: string;
|
|
198
|
+
defaultValue?: string | number | boolean | undefined;
|
|
199
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
200
|
+
required?: boolean | undefined;
|
|
194
201
|
}[] | undefined;
|
|
195
|
-
|
|
196
|
-
encoding?: "none" | "json" | "application/json" | undefined;
|
|
197
|
-
aliases?: string[] | undefined;
|
|
198
|
-
example?: string | undefined;
|
|
202
|
+
}, {
|
|
199
203
|
handler: string;
|
|
200
204
|
command: string;
|
|
201
205
|
task: string;
|
|
202
|
-
|
|
206
|
+
aliases?: string[] | undefined;
|
|
203
207
|
description?: string | undefined;
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
defaultValue?: string | number | boolean | undefined;
|
|
208
|
-
description: string;
|
|
209
|
-
placeholder: string;
|
|
210
|
-
}[] | undefined;
|
|
208
|
+
example?: string | undefined;
|
|
209
|
+
hidden?: boolean | undefined;
|
|
210
|
+
encoding?: "none" | "json" | "application/json" | undefined;
|
|
211
211
|
options?: {
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
212
|
+
description: string;
|
|
213
|
+
flag: string;
|
|
215
214
|
shortFlag?: string | undefined;
|
|
216
215
|
defaultValue?: string | number | boolean | undefined;
|
|
216
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
217
|
+
required?: boolean | undefined;
|
|
218
|
+
boolean?: boolean | undefined;
|
|
217
219
|
choices?: string[] | undefined;
|
|
220
|
+
}[] | undefined;
|
|
221
|
+
positionals?: {
|
|
218
222
|
description: string;
|
|
219
|
-
|
|
223
|
+
placeholder: string;
|
|
224
|
+
defaultValue?: string | number | boolean | undefined;
|
|
225
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
226
|
+
required?: boolean | undefined;
|
|
220
227
|
}[] | undefined;
|
|
221
|
-
|
|
222
|
-
encoding?: "none" | "json" | "application/json" | undefined;
|
|
223
|
-
aliases?: string[] | undefined;
|
|
224
|
-
example?: string | undefined;
|
|
228
|
+
}>, TaskStrict, {
|
|
225
229
|
handler: string;
|
|
226
230
|
command: string;
|
|
227
231
|
task: string;
|
|
228
|
-
|
|
232
|
+
aliases?: string[] | undefined;
|
|
229
233
|
description?: string | undefined;
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
defaultValue?: string | number | boolean | undefined;
|
|
234
|
-
description: string;
|
|
235
|
-
placeholder: string;
|
|
236
|
-
}[] | undefined;
|
|
234
|
+
example?: string | undefined;
|
|
235
|
+
hidden?: boolean | undefined;
|
|
236
|
+
encoding?: "none" | "json" | "application/json" | undefined;
|
|
237
237
|
options?: {
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
238
|
+
description: string;
|
|
239
|
+
flag: string;
|
|
241
240
|
shortFlag?: string | undefined;
|
|
242
241
|
defaultValue?: string | number | boolean | undefined;
|
|
242
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
243
|
+
required?: boolean | undefined;
|
|
244
|
+
boolean?: boolean | undefined;
|
|
243
245
|
choices?: string[] | undefined;
|
|
246
|
+
}[] | undefined;
|
|
247
|
+
positionals?: {
|
|
244
248
|
description: string;
|
|
245
|
-
|
|
249
|
+
placeholder: string;
|
|
250
|
+
defaultValue?: string | number | boolean | undefined;
|
|
251
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
252
|
+
required?: boolean | undefined;
|
|
246
253
|
}[] | undefined;
|
|
247
|
-
hidden?: boolean | undefined;
|
|
248
|
-
encoding?: "none" | "json" | "application/json" | undefined;
|
|
249
|
-
aliases?: string[] | undefined;
|
|
250
|
-
example?: string | undefined;
|
|
251
|
-
handler: string;
|
|
252
|
-
command: string;
|
|
253
|
-
task: string;
|
|
254
254
|
}>;
|
|
255
255
|
};
|
|
256
256
|
export declare const rawSchema: import("zod").ZodObject<{
|
|
@@ -272,23 +272,23 @@ export declare const rawSchema: import("zod").ZodObject<{
|
|
|
272
272
|
boolean: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
273
273
|
choices: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
274
274
|
}, "strip", import("zod").ZodTypeAny, {
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
275
|
+
description: string;
|
|
276
|
+
flag: string;
|
|
278
277
|
shortFlag?: string | undefined;
|
|
279
278
|
defaultValue?: string | number | boolean | undefined;
|
|
279
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
280
|
+
required?: boolean | undefined;
|
|
281
|
+
boolean?: boolean | undefined;
|
|
280
282
|
choices?: string[] | undefined;
|
|
283
|
+
}, {
|
|
281
284
|
description: string;
|
|
282
285
|
flag: string;
|
|
283
|
-
}, {
|
|
284
|
-
boolean?: boolean | undefined;
|
|
285
|
-
required?: boolean | undefined;
|
|
286
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
287
286
|
shortFlag?: string | undefined;
|
|
288
287
|
defaultValue?: string | number | boolean | undefined;
|
|
288
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
289
|
+
required?: boolean | undefined;
|
|
290
|
+
boolean?: boolean | undefined;
|
|
289
291
|
choices?: string[] | undefined;
|
|
290
|
-
description: string;
|
|
291
|
-
flag: string;
|
|
292
292
|
}>, "many">>;
|
|
293
293
|
positionals: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
294
294
|
placeholder: import("zod").ZodString;
|
|
@@ -297,70 +297,70 @@ export declare const rawSchema: import("zod").ZodObject<{
|
|
|
297
297
|
type: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"string">, import("zod").ZodLiteral<"number">, import("zod").ZodLiteral<"boolean">]>>;
|
|
298
298
|
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
299
299
|
}, "strip", import("zod").ZodTypeAny, {
|
|
300
|
-
required?: boolean | undefined;
|
|
301
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
302
|
-
defaultValue?: string | number | boolean | undefined;
|
|
303
300
|
description: string;
|
|
304
301
|
placeholder: string;
|
|
305
|
-
}, {
|
|
306
|
-
required?: boolean | undefined;
|
|
307
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
308
302
|
defaultValue?: string | number | boolean | undefined;
|
|
303
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
304
|
+
required?: boolean | undefined;
|
|
305
|
+
}, {
|
|
309
306
|
description: string;
|
|
310
307
|
placeholder: string;
|
|
308
|
+
defaultValue?: string | number | boolean | undefined;
|
|
309
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
310
|
+
required?: boolean | undefined;
|
|
311
311
|
}>, "many">>;
|
|
312
312
|
}, "strip", import("zod").ZodTypeAny, {
|
|
313
|
+
handler: string;
|
|
314
|
+
command: string;
|
|
315
|
+
task: string;
|
|
316
|
+
aliases?: string[] | undefined;
|
|
313
317
|
description?: string | undefined;
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
defaultValue?: string | number | boolean | undefined;
|
|
318
|
-
description: string;
|
|
319
|
-
placeholder: string;
|
|
320
|
-
}[] | undefined;
|
|
318
|
+
example?: string | undefined;
|
|
319
|
+
hidden?: boolean | undefined;
|
|
320
|
+
encoding?: "none" | "json" | "application/json" | undefined;
|
|
321
321
|
options?: {
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
322
|
+
description: string;
|
|
323
|
+
flag: string;
|
|
325
324
|
shortFlag?: string | undefined;
|
|
326
325
|
defaultValue?: string | number | boolean | undefined;
|
|
326
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
327
|
+
required?: boolean | undefined;
|
|
328
|
+
boolean?: boolean | undefined;
|
|
327
329
|
choices?: string[] | undefined;
|
|
330
|
+
}[] | undefined;
|
|
331
|
+
positionals?: {
|
|
328
332
|
description: string;
|
|
329
|
-
|
|
333
|
+
placeholder: string;
|
|
334
|
+
defaultValue?: string | number | boolean | undefined;
|
|
335
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
336
|
+
required?: boolean | undefined;
|
|
330
337
|
}[] | undefined;
|
|
331
|
-
|
|
332
|
-
encoding?: "none" | "json" | "application/json" | undefined;
|
|
333
|
-
aliases?: string[] | undefined;
|
|
334
|
-
example?: string | undefined;
|
|
338
|
+
}, {
|
|
335
339
|
handler: string;
|
|
336
340
|
command: string;
|
|
337
341
|
task: string;
|
|
338
|
-
|
|
342
|
+
aliases?: string[] | undefined;
|
|
339
343
|
description?: string | undefined;
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
defaultValue?: string | number | boolean | undefined;
|
|
344
|
-
description: string;
|
|
345
|
-
placeholder: string;
|
|
346
|
-
}[] | undefined;
|
|
344
|
+
example?: string | undefined;
|
|
345
|
+
hidden?: boolean | undefined;
|
|
346
|
+
encoding?: "none" | "json" | "application/json" | undefined;
|
|
347
347
|
options?: {
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
348
|
+
description: string;
|
|
349
|
+
flag: string;
|
|
351
350
|
shortFlag?: string | undefined;
|
|
352
351
|
defaultValue?: string | number | boolean | undefined;
|
|
352
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
353
|
+
required?: boolean | undefined;
|
|
354
|
+
boolean?: boolean | undefined;
|
|
353
355
|
choices?: string[] | undefined;
|
|
356
|
+
}[] | undefined;
|
|
357
|
+
positionals?: {
|
|
354
358
|
description: string;
|
|
355
|
-
|
|
359
|
+
placeholder: string;
|
|
360
|
+
defaultValue?: string | number | boolean | undefined;
|
|
361
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
362
|
+
required?: boolean | undefined;
|
|
356
363
|
}[] | undefined;
|
|
357
|
-
hidden?: boolean | undefined;
|
|
358
|
-
encoding?: "none" | "json" | "application/json" | undefined;
|
|
359
|
-
aliases?: string[] | undefined;
|
|
360
|
-
example?: string | undefined;
|
|
361
|
-
handler: string;
|
|
362
|
-
command: string;
|
|
363
|
-
task: string;
|
|
364
364
|
}>;
|
|
365
365
|
export declare const internalSchema: import("zod").ZodObject<{
|
|
366
366
|
task: import("zod").ZodString;
|
|
@@ -381,23 +381,23 @@ export declare const internalSchema: import("zod").ZodObject<{
|
|
|
381
381
|
boolean: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
382
382
|
choices: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
383
383
|
}, "strip", import("zod").ZodTypeAny, {
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
384
|
+
description: string;
|
|
385
|
+
flag: string;
|
|
387
386
|
shortFlag?: string | undefined;
|
|
388
387
|
defaultValue?: string | number | boolean | undefined;
|
|
388
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
389
|
+
required?: boolean | undefined;
|
|
390
|
+
boolean?: boolean | undefined;
|
|
389
391
|
choices?: string[] | undefined;
|
|
392
|
+
}, {
|
|
390
393
|
description: string;
|
|
391
394
|
flag: string;
|
|
392
|
-
}, {
|
|
393
|
-
boolean?: boolean | undefined;
|
|
394
|
-
required?: boolean | undefined;
|
|
395
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
396
395
|
shortFlag?: string | undefined;
|
|
397
396
|
defaultValue?: string | number | boolean | undefined;
|
|
397
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
398
|
+
required?: boolean | undefined;
|
|
399
|
+
boolean?: boolean | undefined;
|
|
398
400
|
choices?: string[] | undefined;
|
|
399
|
-
description: string;
|
|
400
|
-
flag: string;
|
|
401
401
|
}>, "many">>;
|
|
402
402
|
positionals: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodObject<{
|
|
403
403
|
placeholder: import("zod").ZodString;
|
|
@@ -406,70 +406,70 @@ export declare const internalSchema: import("zod").ZodObject<{
|
|
|
406
406
|
type: import("zod").ZodOptional<import("zod").ZodUnion<[import("zod").ZodLiteral<"string">, import("zod").ZodLiteral<"number">, import("zod").ZodLiteral<"boolean">]>>;
|
|
407
407
|
required: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
408
408
|
}, "strip", import("zod").ZodTypeAny, {
|
|
409
|
-
required?: boolean | undefined;
|
|
410
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
411
|
-
defaultValue?: string | number | boolean | undefined;
|
|
412
409
|
description: string;
|
|
413
410
|
placeholder: string;
|
|
414
|
-
}, {
|
|
415
|
-
required?: boolean | undefined;
|
|
416
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
417
411
|
defaultValue?: string | number | boolean | undefined;
|
|
412
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
413
|
+
required?: boolean | undefined;
|
|
414
|
+
}, {
|
|
418
415
|
description: string;
|
|
419
416
|
placeholder: string;
|
|
417
|
+
defaultValue?: string | number | boolean | undefined;
|
|
418
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
419
|
+
required?: boolean | undefined;
|
|
420
420
|
}>, "many">>;
|
|
421
421
|
}, "strip", import("zod").ZodTypeAny, {
|
|
422
|
+
handler: string;
|
|
423
|
+
command: string;
|
|
424
|
+
task: string;
|
|
425
|
+
aliases?: string[] | undefined;
|
|
422
426
|
description?: string | undefined;
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
defaultValue?: string | number | boolean | undefined;
|
|
427
|
-
description: string;
|
|
428
|
-
placeholder: string;
|
|
429
|
-
}[] | undefined;
|
|
427
|
+
example?: string | undefined;
|
|
428
|
+
hidden?: boolean | undefined;
|
|
429
|
+
encoding?: "none" | "json" | "application/json" | undefined;
|
|
430
430
|
options?: {
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
431
|
+
description: string;
|
|
432
|
+
flag: string;
|
|
434
433
|
shortFlag?: string | undefined;
|
|
435
434
|
defaultValue?: string | number | boolean | undefined;
|
|
435
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
436
|
+
required?: boolean | undefined;
|
|
437
|
+
boolean?: boolean | undefined;
|
|
436
438
|
choices?: string[] | undefined;
|
|
439
|
+
}[] | undefined;
|
|
440
|
+
positionals?: {
|
|
437
441
|
description: string;
|
|
438
|
-
|
|
442
|
+
placeholder: string;
|
|
443
|
+
defaultValue?: string | number | boolean | undefined;
|
|
444
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
445
|
+
required?: boolean | undefined;
|
|
439
446
|
}[] | undefined;
|
|
440
|
-
|
|
441
|
-
encoding?: "none" | "json" | "application/json" | undefined;
|
|
442
|
-
aliases?: string[] | undefined;
|
|
443
|
-
example?: string | undefined;
|
|
447
|
+
}, {
|
|
444
448
|
handler: string;
|
|
445
449
|
command: string;
|
|
446
450
|
task: string;
|
|
447
|
-
|
|
451
|
+
aliases?: string[] | undefined;
|
|
448
452
|
description?: string | undefined;
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
defaultValue?: string | number | boolean | undefined;
|
|
453
|
-
description: string;
|
|
454
|
-
placeholder: string;
|
|
455
|
-
}[] | undefined;
|
|
453
|
+
example?: string | undefined;
|
|
454
|
+
hidden?: boolean | undefined;
|
|
455
|
+
encoding?: "none" | "json" | "application/json" | undefined;
|
|
456
456
|
options?: {
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
type?: "string" | "number" | "boolean" | undefined;
|
|
457
|
+
description: string;
|
|
458
|
+
flag: string;
|
|
460
459
|
shortFlag?: string | undefined;
|
|
461
460
|
defaultValue?: string | number | boolean | undefined;
|
|
461
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
462
|
+
required?: boolean | undefined;
|
|
463
|
+
boolean?: boolean | undefined;
|
|
462
464
|
choices?: string[] | undefined;
|
|
465
|
+
}[] | undefined;
|
|
466
|
+
positionals?: {
|
|
463
467
|
description: string;
|
|
464
|
-
|
|
468
|
+
placeholder: string;
|
|
469
|
+
defaultValue?: string | number | boolean | undefined;
|
|
470
|
+
type?: "string" | "number" | "boolean" | undefined;
|
|
471
|
+
required?: boolean | undefined;
|
|
465
472
|
}[] | undefined;
|
|
466
|
-
hidden?: boolean | undefined;
|
|
467
|
-
encoding?: "none" | "json" | "application/json" | undefined;
|
|
468
|
-
aliases?: string[] | undefined;
|
|
469
|
-
example?: string | undefined;
|
|
470
|
-
handler: string;
|
|
471
|
-
command: string;
|
|
472
|
-
task: string;
|
|
473
473
|
}>;
|
|
474
474
|
export type t = TaskStrict;
|
|
475
475
|
//# sourceMappingURL=Task.d.ts.map
|