@taqueria/protocol 0.28.4 → 0.28.6
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/SanitizedArgs.d.ts
CHANGED
|
@@ -23,46 +23,29 @@ export declare const rawSchema: z.ZodObject<{
|
|
|
23
23
|
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
24
24
|
setVersion: z.ZodString;
|
|
25
25
|
pluginName: z.ZodOptional<z.ZodString>;
|
|
26
|
-
}, "passthrough", z.ZodTypeAny, {
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
build?: boolean | undefined;
|
|
30
|
-
help?: boolean | undefined;
|
|
31
|
-
yes?: boolean | undefined;
|
|
32
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
33
|
-
env?: string | undefined;
|
|
34
|
-
pluginName?: string | undefined;
|
|
35
|
-
_: (string | number)[];
|
|
36
|
-
projectDir: string & {
|
|
26
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
27
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
28
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
37
29
|
readonly __type: any;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
yes?: unknown;
|
|
58
|
-
plugin?: string | undefined;
|
|
59
|
-
env?: string | undefined;
|
|
60
|
-
setBuild?: unknown;
|
|
61
|
-
pluginName?: string | undefined;
|
|
62
|
-
_: (string | number)[];
|
|
63
|
-
setVersion: string;
|
|
64
|
-
}>;
|
|
65
|
-
export declare const scaffoldRawSchema: z.ZodObject<z.extendShape<{
|
|
30
|
+
}, any>, string & {
|
|
31
|
+
readonly __type: any;
|
|
32
|
+
}, any>;
|
|
33
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
34
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
35
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
36
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
37
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
38
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
39
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
40
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
41
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
42
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
43
|
+
env: z.ZodOptional<z.ZodString>;
|
|
44
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
45
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
46
|
+
setVersion: z.ZodString;
|
|
47
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
48
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
66
49
|
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
67
50
|
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
68
51
|
readonly __type: any;
|
|
@@ -84,60 +67,36 @@ export declare const scaffoldRawSchema: z.ZodObject<z.extendShape<{
|
|
|
84
67
|
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
85
68
|
setVersion: z.ZodString;
|
|
86
69
|
pluginName: z.ZodOptional<z.ZodString>;
|
|
87
|
-
},
|
|
70
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
71
|
+
export declare const scaffoldRawSchema: z.ZodObject<{
|
|
72
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
73
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
74
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
75
|
+
readonly __type: any;
|
|
76
|
+
}, any>, string & {
|
|
77
|
+
readonly __type: any;
|
|
78
|
+
}, any>;
|
|
79
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
80
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
81
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
82
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
83
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
84
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
85
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
86
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
87
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
88
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
89
|
+
env: z.ZodOptional<z.ZodString>;
|
|
90
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
91
|
+
setVersion: z.ZodString;
|
|
92
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
88
93
|
scaffoldProjectDir: z.ZodEffects<z.ZodString, string & {
|
|
89
94
|
readonly __type: any;
|
|
90
95
|
}, string>;
|
|
91
96
|
scaffoldUrl: z.ZodEffects<z.ZodString, Url.Url, string>;
|
|
92
97
|
branch: z.ZodOptional<z.ZodString>;
|
|
93
|
-
}
|
|
94
|
-
quickstart
|
|
95
|
-
version?: boolean | undefined;
|
|
96
|
-
build?: boolean | undefined;
|
|
97
|
-
help?: boolean | undefined;
|
|
98
|
-
yes?: boolean | undefined;
|
|
99
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
100
|
-
env?: string | undefined;
|
|
101
|
-
pluginName?: string | undefined;
|
|
102
|
-
branch?: string | undefined;
|
|
103
|
-
_: (string | number)[];
|
|
104
|
-
projectDir: string & {
|
|
105
|
-
readonly __type: any;
|
|
106
|
-
};
|
|
107
|
-
maxConcurrency: number;
|
|
108
|
-
debug: boolean;
|
|
109
|
-
disableState: boolean;
|
|
110
|
-
logPluginRequests: boolean;
|
|
111
|
-
fromVsCode: boolean;
|
|
112
|
-
setBuild: string;
|
|
113
|
-
setVersion: string;
|
|
114
|
-
scaffoldProjectDir: string & {
|
|
115
|
-
readonly __type: any;
|
|
116
|
-
};
|
|
117
|
-
scaffoldUrl: Url.Url;
|
|
118
|
-
}, {
|
|
119
|
-
quickstart?: string | undefined;
|
|
120
|
-
projectDir?: any;
|
|
121
|
-
maxConcurrency?: unknown;
|
|
122
|
-
debug?: unknown;
|
|
123
|
-
disableState?: unknown;
|
|
124
|
-
logPluginRequests?: unknown;
|
|
125
|
-
fromVsCode?: unknown;
|
|
126
|
-
version?: unknown;
|
|
127
|
-
build?: unknown;
|
|
128
|
-
help?: unknown;
|
|
129
|
-
yes?: unknown;
|
|
130
|
-
plugin?: string | undefined;
|
|
131
|
-
env?: string | undefined;
|
|
132
|
-
setBuild?: unknown;
|
|
133
|
-
pluginName?: string | undefined;
|
|
134
|
-
branch?: string | undefined;
|
|
135
|
-
_: (string | number)[];
|
|
136
|
-
setVersion: string;
|
|
137
|
-
scaffoldProjectDir: string;
|
|
138
|
-
scaffoldUrl: string;
|
|
139
|
-
}>;
|
|
140
|
-
export declare const initRawSchema: z.ZodObject<z.extendShape<{
|
|
98
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
99
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
141
100
|
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
142
101
|
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
143
102
|
readonly __type: any;
|
|
@@ -155,55 +114,16 @@ export declare const initRawSchema: z.ZodObject<z.extendShape<{
|
|
|
155
114
|
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
156
115
|
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
157
116
|
env: z.ZodOptional<z.ZodString>;
|
|
158
|
-
quickstart: z.ZodOptional<z.ZodString>;
|
|
159
117
|
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
160
118
|
setVersion: z.ZodString;
|
|
161
119
|
pluginName: z.ZodOptional<z.ZodString>;
|
|
162
|
-
|
|
163
|
-
workflow: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
164
|
-
}>, "passthrough", z.ZodTypeAny, {
|
|
165
|
-
quickstart?: string | undefined;
|
|
166
|
-
version?: boolean | undefined;
|
|
167
|
-
build?: boolean | undefined;
|
|
168
|
-
help?: boolean | undefined;
|
|
169
|
-
yes?: boolean | undefined;
|
|
170
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
171
|
-
env?: string | undefined;
|
|
172
|
-
pluginName?: string | undefined;
|
|
173
|
-
workflow?: string | undefined;
|
|
174
|
-
_: (string | number)[];
|
|
175
|
-
projectDir: string & {
|
|
120
|
+
scaffoldProjectDir: z.ZodEffects<z.ZodString, string & {
|
|
176
121
|
readonly __type: any;
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
fromVsCode: boolean;
|
|
183
|
-
setBuild: string;
|
|
184
|
-
setVersion: string;
|
|
185
|
-
}, {
|
|
186
|
-
quickstart?: string | undefined;
|
|
187
|
-
projectDir?: any;
|
|
188
|
-
maxConcurrency?: unknown;
|
|
189
|
-
debug?: unknown;
|
|
190
|
-
disableState?: unknown;
|
|
191
|
-
logPluginRequests?: unknown;
|
|
192
|
-
fromVsCode?: unknown;
|
|
193
|
-
version?: unknown;
|
|
194
|
-
build?: unknown;
|
|
195
|
-
help?: unknown;
|
|
196
|
-
yes?: unknown;
|
|
197
|
-
plugin?: string | undefined;
|
|
198
|
-
env?: string | undefined;
|
|
199
|
-
setBuild?: unknown;
|
|
200
|
-
pluginName?: string | undefined;
|
|
201
|
-
workflow?: string | undefined;
|
|
202
|
-
_: (string | number)[];
|
|
203
|
-
setVersion: string;
|
|
204
|
-
}>;
|
|
205
|
-
export type rawInitSchemaInput = z.infer<typeof initRawSchema>;
|
|
206
|
-
export declare const provisionRawSchema: z.ZodObject<z.extendShape<{
|
|
122
|
+
}, string>;
|
|
123
|
+
scaffoldUrl: z.ZodEffects<z.ZodString, Url.Url, string>;
|
|
124
|
+
branch: z.ZodOptional<z.ZodString>;
|
|
125
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
126
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
207
127
|
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
208
128
|
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
209
129
|
readonly __type: any;
|
|
@@ -221,57 +141,17 @@ export declare const provisionRawSchema: z.ZodObject<z.extendShape<{
|
|
|
221
141
|
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
222
142
|
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
223
143
|
env: z.ZodOptional<z.ZodString>;
|
|
224
|
-
quickstart: z.ZodOptional<z.ZodString>;
|
|
225
144
|
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
226
145
|
setVersion: z.ZodString;
|
|
227
146
|
pluginName: z.ZodOptional<z.ZodString>;
|
|
228
|
-
|
|
229
|
-
operation: z.ZodString;
|
|
230
|
-
name: z.ZodOptional<z.ZodString>;
|
|
231
|
-
}>, "passthrough", z.ZodTypeAny, {
|
|
232
|
-
quickstart?: string | undefined;
|
|
233
|
-
version?: boolean | undefined;
|
|
234
|
-
build?: boolean | undefined;
|
|
235
|
-
help?: boolean | undefined;
|
|
236
|
-
yes?: boolean | undefined;
|
|
237
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
238
|
-
env?: string | undefined;
|
|
239
|
-
name?: string | undefined;
|
|
240
|
-
pluginName?: string | undefined;
|
|
241
|
-
_: (string | number)[];
|
|
242
|
-
projectDir: string & {
|
|
147
|
+
scaffoldProjectDir: z.ZodEffects<z.ZodString, string & {
|
|
243
148
|
readonly __type: any;
|
|
244
|
-
}
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
setBuild: string;
|
|
251
|
-
setVersion: string;
|
|
252
|
-
operation: string;
|
|
253
|
-
}, {
|
|
254
|
-
quickstart?: string | undefined;
|
|
255
|
-
projectDir?: any;
|
|
256
|
-
maxConcurrency?: unknown;
|
|
257
|
-
debug?: unknown;
|
|
258
|
-
disableState?: unknown;
|
|
259
|
-
logPluginRequests?: unknown;
|
|
260
|
-
fromVsCode?: unknown;
|
|
261
|
-
version?: unknown;
|
|
262
|
-
build?: unknown;
|
|
263
|
-
help?: unknown;
|
|
264
|
-
yes?: unknown;
|
|
265
|
-
plugin?: string | undefined;
|
|
266
|
-
env?: string | undefined;
|
|
267
|
-
setBuild?: unknown;
|
|
268
|
-
name?: string | undefined;
|
|
269
|
-
pluginName?: string | undefined;
|
|
270
|
-
_: (string | number)[];
|
|
271
|
-
setVersion: string;
|
|
272
|
-
operation: string;
|
|
273
|
-
}>;
|
|
274
|
-
export declare const templateRawSchema: z.ZodObject<z.extendShape<{
|
|
149
|
+
}, string>;
|
|
150
|
+
scaffoldUrl: z.ZodEffects<z.ZodString, Url.Url, string>;
|
|
151
|
+
branch: z.ZodOptional<z.ZodString>;
|
|
152
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
153
|
+
export declare const initRawSchema: z.ZodObject<{
|
|
154
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
275
155
|
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
276
156
|
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
277
157
|
readonly __type: any;
|
|
@@ -289,54 +169,12 @@ export declare const templateRawSchema: z.ZodObject<z.extendShape<{
|
|
|
289
169
|
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
290
170
|
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
291
171
|
env: z.ZodOptional<z.ZodString>;
|
|
292
|
-
quickstart: z.ZodOptional<z.ZodString>;
|
|
293
172
|
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
294
173
|
setVersion: z.ZodString;
|
|
295
174
|
pluginName: z.ZodOptional<z.ZodString>;
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
quickstart?: string | undefined;
|
|
300
|
-
version?: boolean | undefined;
|
|
301
|
-
build?: boolean | undefined;
|
|
302
|
-
help?: boolean | undefined;
|
|
303
|
-
yes?: boolean | undefined;
|
|
304
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
305
|
-
env?: string | undefined;
|
|
306
|
-
pluginName?: string | undefined;
|
|
307
|
-
_: (string | number)[];
|
|
308
|
-
projectDir: string & {
|
|
309
|
-
readonly __type: any;
|
|
310
|
-
};
|
|
311
|
-
maxConcurrency: number;
|
|
312
|
-
debug: boolean;
|
|
313
|
-
disableState: boolean;
|
|
314
|
-
logPluginRequests: boolean;
|
|
315
|
-
fromVsCode: boolean;
|
|
316
|
-
setBuild: string;
|
|
317
|
-
setVersion: string;
|
|
318
|
-
template: string;
|
|
319
|
-
}, {
|
|
320
|
-
quickstart?: string | undefined;
|
|
321
|
-
projectDir?: any;
|
|
322
|
-
maxConcurrency?: unknown;
|
|
323
|
-
debug?: unknown;
|
|
324
|
-
disableState?: unknown;
|
|
325
|
-
logPluginRequests?: unknown;
|
|
326
|
-
fromVsCode?: unknown;
|
|
327
|
-
version?: unknown;
|
|
328
|
-
build?: unknown;
|
|
329
|
-
help?: unknown;
|
|
330
|
-
yes?: unknown;
|
|
331
|
-
plugin?: string | undefined;
|
|
332
|
-
env?: string | undefined;
|
|
333
|
-
setBuild?: unknown;
|
|
334
|
-
pluginName?: string | undefined;
|
|
335
|
-
_: (string | number)[];
|
|
336
|
-
setVersion: string;
|
|
337
|
-
template: string;
|
|
338
|
-
}>;
|
|
339
|
-
export declare const managePluginRawSchema: z.ZodObject<z.extendShape<Omit<{
|
|
175
|
+
workflow: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
176
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
177
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
340
178
|
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
341
179
|
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
342
180
|
readonly __type: any;
|
|
@@ -354,52 +192,12 @@ export declare const managePluginRawSchema: z.ZodObject<z.extendShape<Omit<{
|
|
|
354
192
|
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
355
193
|
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
356
194
|
env: z.ZodOptional<z.ZodString>;
|
|
357
|
-
quickstart: z.ZodOptional<z.ZodString>;
|
|
358
195
|
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
359
196
|
setVersion: z.ZodString;
|
|
360
197
|
pluginName: z.ZodOptional<z.ZodString>;
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
quickstart?: string | undefined;
|
|
365
|
-
version?: boolean | undefined;
|
|
366
|
-
build?: boolean | undefined;
|
|
367
|
-
help?: boolean | undefined;
|
|
368
|
-
yes?: boolean | undefined;
|
|
369
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
370
|
-
env?: string | undefined;
|
|
371
|
-
_: (string | number)[];
|
|
372
|
-
projectDir: string & {
|
|
373
|
-
readonly __type: any;
|
|
374
|
-
};
|
|
375
|
-
maxConcurrency: number;
|
|
376
|
-
debug: boolean;
|
|
377
|
-
disableState: boolean;
|
|
378
|
-
logPluginRequests: boolean;
|
|
379
|
-
fromVsCode: boolean;
|
|
380
|
-
setBuild: string;
|
|
381
|
-
setVersion: string;
|
|
382
|
-
pluginName: string;
|
|
383
|
-
}, {
|
|
384
|
-
quickstart?: string | undefined;
|
|
385
|
-
projectDir?: any;
|
|
386
|
-
maxConcurrency?: unknown;
|
|
387
|
-
debug?: unknown;
|
|
388
|
-
disableState?: unknown;
|
|
389
|
-
logPluginRequests?: unknown;
|
|
390
|
-
fromVsCode?: unknown;
|
|
391
|
-
version?: unknown;
|
|
392
|
-
build?: unknown;
|
|
393
|
-
help?: unknown;
|
|
394
|
-
yes?: unknown;
|
|
395
|
-
plugin?: string | undefined;
|
|
396
|
-
env?: string | undefined;
|
|
397
|
-
setBuild?: unknown;
|
|
398
|
-
_: (string | number)[];
|
|
399
|
-
setVersion: string;
|
|
400
|
-
pluginName: string;
|
|
401
|
-
}>;
|
|
402
|
-
export declare const setEnvRawSchema: z.ZodObject<z.extendShape<{
|
|
198
|
+
workflow: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
199
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
200
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
403
201
|
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
404
202
|
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
405
203
|
readonly __type: any;
|
|
@@ -417,682 +215,643 @@ export declare const setEnvRawSchema: z.ZodObject<z.extendShape<{
|
|
|
417
215
|
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
418
216
|
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
419
217
|
env: z.ZodOptional<z.ZodString>;
|
|
420
|
-
quickstart: z.ZodOptional<z.ZodString>;
|
|
421
218
|
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
422
219
|
setVersion: z.ZodString;
|
|
423
220
|
pluginName: z.ZodOptional<z.ZodString>;
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
yes?: boolean | undefined;
|
|
432
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
433
|
-
env?: string | undefined;
|
|
434
|
-
pluginName?: string | undefined;
|
|
435
|
-
_: (string | number)[];
|
|
436
|
-
projectDir: string & {
|
|
221
|
+
workflow: z.ZodOptional<z.ZodEffects<z.ZodString, string, string>>;
|
|
222
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
223
|
+
export type rawInitSchemaInput = z.infer<typeof initRawSchema>;
|
|
224
|
+
export declare const provisionRawSchema: z.ZodObject<{
|
|
225
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
226
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
227
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
437
228
|
readonly __type: any;
|
|
438
|
-
}
|
|
439
|
-
maxConcurrency: number;
|
|
440
|
-
debug: boolean;
|
|
441
|
-
disableState: boolean;
|
|
442
|
-
logPluginRequests: boolean;
|
|
443
|
-
fromVsCode: boolean;
|
|
444
|
-
setBuild: string;
|
|
445
|
-
setVersion: string;
|
|
446
|
-
defaultEnvironment: string;
|
|
447
|
-
}, {
|
|
448
|
-
quickstart?: string | undefined;
|
|
449
|
-
projectDir?: any;
|
|
450
|
-
maxConcurrency?: unknown;
|
|
451
|
-
debug?: unknown;
|
|
452
|
-
disableState?: unknown;
|
|
453
|
-
logPluginRequests?: unknown;
|
|
454
|
-
fromVsCode?: unknown;
|
|
455
|
-
version?: unknown;
|
|
456
|
-
build?: unknown;
|
|
457
|
-
help?: unknown;
|
|
458
|
-
yes?: unknown;
|
|
459
|
-
plugin?: string | undefined;
|
|
460
|
-
env?: string | undefined;
|
|
461
|
-
setBuild?: unknown;
|
|
462
|
-
pluginName?: string | undefined;
|
|
463
|
-
_: (string | number)[];
|
|
464
|
-
setVersion: string;
|
|
465
|
-
defaultEnvironment: string;
|
|
466
|
-
}>;
|
|
467
|
-
export declare const generatedSchemas: {
|
|
468
|
-
rawSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
469
|
-
internalSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
470
|
-
schema: z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
471
|
-
quickstart?: string | undefined;
|
|
472
|
-
version?: boolean | undefined;
|
|
473
|
-
build?: boolean | undefined;
|
|
474
|
-
help?: boolean | undefined;
|
|
475
|
-
yes?: boolean | undefined;
|
|
476
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
477
|
-
env?: string | undefined;
|
|
478
|
-
pluginName?: string | undefined;
|
|
479
|
-
_: (string | number)[];
|
|
480
|
-
projectDir: string & {
|
|
481
|
-
readonly __type: any;
|
|
482
|
-
};
|
|
483
|
-
maxConcurrency: number;
|
|
484
|
-
debug: boolean;
|
|
485
|
-
disableState: boolean;
|
|
486
|
-
logPluginRequests: boolean;
|
|
487
|
-
fromVsCode: boolean;
|
|
488
|
-
setBuild: string;
|
|
489
|
-
setVersion: string;
|
|
490
|
-
} & {
|
|
229
|
+
}, any>, string & {
|
|
491
230
|
readonly __type: any;
|
|
492
231
|
}, any>;
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
setVersion: string;
|
|
514
|
-
}) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
515
|
-
quickstart?: string | undefined;
|
|
516
|
-
version?: boolean | undefined;
|
|
517
|
-
build?: boolean | undefined;
|
|
518
|
-
help?: boolean | undefined;
|
|
519
|
-
yes?: boolean | undefined;
|
|
520
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
521
|
-
env?: string | undefined;
|
|
522
|
-
pluginName?: string | undefined;
|
|
523
|
-
_: (string | number)[];
|
|
524
|
-
projectDir: string & {
|
|
525
|
-
readonly __type: any;
|
|
526
|
-
};
|
|
527
|
-
maxConcurrency: number;
|
|
528
|
-
debug: boolean;
|
|
529
|
-
disableState: boolean;
|
|
530
|
-
logPluginRequests: boolean;
|
|
531
|
-
fromVsCode: boolean;
|
|
532
|
-
setBuild: string;
|
|
533
|
-
setVersion: string;
|
|
534
|
-
} & {
|
|
232
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
233
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
234
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
235
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
236
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
237
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
238
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
239
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
240
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
241
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
242
|
+
env: z.ZodOptional<z.ZodString>;
|
|
243
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
244
|
+
setVersion: z.ZodString;
|
|
245
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
246
|
+
operation: z.ZodString;
|
|
247
|
+
name: z.ZodOptional<z.ZodString>;
|
|
248
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
249
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
250
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
251
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
535
252
|
readonly __type: any;
|
|
536
|
-
}
|
|
537
|
-
of: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
538
|
-
quickstart?: string | undefined;
|
|
539
|
-
version?: boolean | undefined;
|
|
540
|
-
build?: boolean | undefined;
|
|
541
|
-
help?: boolean | undefined;
|
|
542
|
-
yes?: boolean | undefined;
|
|
543
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
544
|
-
env?: string | undefined;
|
|
545
|
-
pluginName?: string | undefined;
|
|
546
|
-
_: (string | number)[];
|
|
547
|
-
projectDir: string & {
|
|
548
|
-
readonly __type: any;
|
|
549
|
-
};
|
|
550
|
-
maxConcurrency: number;
|
|
551
|
-
debug: boolean;
|
|
552
|
-
disableState: boolean;
|
|
553
|
-
logPluginRequests: boolean;
|
|
554
|
-
fromVsCode: boolean;
|
|
555
|
-
setBuild: string;
|
|
556
|
-
setVersion: string;
|
|
557
|
-
} & {
|
|
253
|
+
}, any>, string & {
|
|
558
254
|
readonly __type: any;
|
|
559
|
-
}>;
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
}) => {
|
|
581
|
-
quickstart?: string | undefined;
|
|
582
|
-
version?: boolean | undefined;
|
|
583
|
-
build?: boolean | undefined;
|
|
584
|
-
help?: boolean | undefined;
|
|
585
|
-
yes?: boolean | undefined;
|
|
586
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
587
|
-
env?: string | undefined;
|
|
588
|
-
pluginName?: string | undefined;
|
|
589
|
-
_: (string | number)[];
|
|
590
|
-
projectDir: string & {
|
|
591
|
-
readonly __type: any;
|
|
592
|
-
};
|
|
593
|
-
maxConcurrency: number;
|
|
594
|
-
debug: boolean;
|
|
595
|
-
disableState: boolean;
|
|
596
|
-
logPluginRequests: boolean;
|
|
597
|
-
fromVsCode: boolean;
|
|
598
|
-
setBuild: string;
|
|
599
|
-
setVersion: string;
|
|
600
|
-
} & {
|
|
255
|
+
}, any>;
|
|
256
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
257
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
258
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
259
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
260
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
261
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
262
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
263
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
264
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
265
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
266
|
+
env: z.ZodOptional<z.ZodString>;
|
|
267
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
268
|
+
setVersion: z.ZodString;
|
|
269
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
270
|
+
operation: z.ZodString;
|
|
271
|
+
name: z.ZodOptional<z.ZodString>;
|
|
272
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
273
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
274
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
275
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
601
276
|
readonly __type: any;
|
|
602
|
-
}
|
|
603
|
-
from: (input: unknown) => {
|
|
604
|
-
quickstart?: string | undefined;
|
|
605
|
-
version?: boolean | undefined;
|
|
606
|
-
build?: boolean | undefined;
|
|
607
|
-
help?: boolean | undefined;
|
|
608
|
-
yes?: boolean | undefined;
|
|
609
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
610
|
-
env?: string | undefined;
|
|
611
|
-
pluginName?: string | undefined;
|
|
612
|
-
_: (string | number)[];
|
|
613
|
-
projectDir: string & {
|
|
614
|
-
readonly __type: any;
|
|
615
|
-
};
|
|
616
|
-
maxConcurrency: number;
|
|
617
|
-
debug: boolean;
|
|
618
|
-
disableState: boolean;
|
|
619
|
-
logPluginRequests: boolean;
|
|
620
|
-
fromVsCode: boolean;
|
|
621
|
-
setBuild: string;
|
|
622
|
-
setVersion: string;
|
|
623
|
-
} & {
|
|
277
|
+
}, any>, string & {
|
|
624
278
|
readonly __type: any;
|
|
625
|
-
}
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
279
|
+
}, any>;
|
|
280
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
281
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
282
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
283
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
284
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
285
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
286
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
287
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
288
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
289
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
290
|
+
env: z.ZodOptional<z.ZodString>;
|
|
291
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
292
|
+
setVersion: z.ZodString;
|
|
293
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
294
|
+
operation: z.ZodString;
|
|
295
|
+
name: z.ZodOptional<z.ZodString>;
|
|
296
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
297
|
+
export declare const templateRawSchema: z.ZodObject<{
|
|
298
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
299
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
300
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
638
301
|
readonly __type: any;
|
|
639
|
-
}
|
|
640
|
-
maxConcurrency: number;
|
|
641
|
-
debug: boolean;
|
|
642
|
-
disableState: boolean;
|
|
643
|
-
logPluginRequests: boolean;
|
|
644
|
-
fromVsCode: boolean;
|
|
645
|
-
setBuild: string;
|
|
646
|
-
setVersion: string;
|
|
647
|
-
}) => {
|
|
648
|
-
quickstart?: string | undefined;
|
|
649
|
-
version?: boolean | undefined;
|
|
650
|
-
build?: boolean | undefined;
|
|
651
|
-
help?: boolean | undefined;
|
|
652
|
-
yes?: boolean | undefined;
|
|
653
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
654
|
-
env?: string | undefined;
|
|
655
|
-
pluginName?: string | undefined;
|
|
656
|
-
_: (string | number)[];
|
|
657
|
-
projectDir: string & {
|
|
302
|
+
}, any>, string & {
|
|
658
303
|
readonly __type: any;
|
|
659
|
-
}
|
|
660
|
-
maxConcurrency: number
|
|
661
|
-
debug: boolean
|
|
662
|
-
disableState: boolean
|
|
663
|
-
logPluginRequests: boolean
|
|
664
|
-
fromVsCode: boolean
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
projectDir: string & {
|
|
304
|
+
}, any>;
|
|
305
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
306
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
307
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
308
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
309
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
310
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
311
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
312
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
313
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
314
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
315
|
+
env: z.ZodOptional<z.ZodString>;
|
|
316
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
317
|
+
setVersion: z.ZodString;
|
|
318
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
319
|
+
template: z.ZodString;
|
|
320
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
321
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
322
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
323
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
680
324
|
readonly __type: any;
|
|
681
|
-
}
|
|
682
|
-
maxConcurrency: number;
|
|
683
|
-
debug: boolean;
|
|
684
|
-
disableState: boolean;
|
|
685
|
-
logPluginRequests: boolean;
|
|
686
|
-
fromVsCode: boolean;
|
|
687
|
-
setBuild: string;
|
|
688
|
-
setVersion: string;
|
|
689
|
-
} & {
|
|
690
|
-
readonly __type: any;
|
|
691
|
-
}>, make: (input: {
|
|
692
|
-
quickstart?: string | undefined;
|
|
693
|
-
version?: boolean | undefined;
|
|
694
|
-
build?: boolean | undefined;
|
|
695
|
-
help?: boolean | undefined;
|
|
696
|
-
yes?: boolean | undefined;
|
|
697
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
698
|
-
env?: string | undefined;
|
|
699
|
-
pluginName?: string | undefined;
|
|
700
|
-
_: (string | number)[];
|
|
701
|
-
projectDir: string & {
|
|
325
|
+
}, any>, string & {
|
|
702
326
|
readonly __type: any;
|
|
703
|
-
}
|
|
704
|
-
maxConcurrency: number
|
|
705
|
-
debug: boolean
|
|
706
|
-
disableState: boolean
|
|
707
|
-
logPluginRequests: boolean
|
|
708
|
-
fromVsCode: boolean
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
327
|
+
}, any>;
|
|
328
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
329
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
330
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
331
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
332
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
333
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
334
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
335
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
336
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
337
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
338
|
+
env: z.ZodOptional<z.ZodString>;
|
|
339
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
340
|
+
setVersion: z.ZodString;
|
|
341
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
342
|
+
template: z.ZodString;
|
|
343
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
344
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
345
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
346
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
722
347
|
readonly __type: any;
|
|
723
|
-
}
|
|
724
|
-
maxConcurrency: number;
|
|
725
|
-
debug: boolean;
|
|
726
|
-
disableState: boolean;
|
|
727
|
-
logPluginRequests: boolean;
|
|
728
|
-
fromVsCode: boolean;
|
|
729
|
-
setBuild: string;
|
|
730
|
-
setVersion: string;
|
|
731
|
-
} & {
|
|
732
|
-
readonly __type: any;
|
|
733
|
-
}>;
|
|
734
|
-
export type SanitizedArgs = z.infer<typeof generatedSchemas.schema>;
|
|
735
|
-
export type t = SanitizedArgs;
|
|
736
|
-
export declare const schemas: {
|
|
737
|
-
schema: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
738
|
-
quickstart?: string | undefined;
|
|
739
|
-
version?: boolean | undefined;
|
|
740
|
-
build?: boolean | undefined;
|
|
741
|
-
help?: boolean | undefined;
|
|
742
|
-
yes?: boolean | undefined;
|
|
743
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
744
|
-
env?: string | undefined;
|
|
745
|
-
pluginName?: string | undefined;
|
|
746
|
-
_: (string | number)[];
|
|
747
|
-
projectDir: string & {
|
|
748
|
-
readonly __type: any;
|
|
749
|
-
};
|
|
750
|
-
maxConcurrency: number;
|
|
751
|
-
debug: boolean;
|
|
752
|
-
disableState: boolean;
|
|
753
|
-
logPluginRequests: boolean;
|
|
754
|
-
fromVsCode: boolean;
|
|
755
|
-
setBuild: string;
|
|
756
|
-
setVersion: string;
|
|
757
|
-
} & {
|
|
348
|
+
}, any>, string & {
|
|
758
349
|
readonly __type: any;
|
|
759
|
-
}, any
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
350
|
+
}, any>;
|
|
351
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
352
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
353
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
354
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
355
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
356
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
357
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
358
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
359
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
360
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
361
|
+
env: z.ZodOptional<z.ZodString>;
|
|
362
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
363
|
+
setVersion: z.ZodString;
|
|
364
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
365
|
+
template: z.ZodString;
|
|
366
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
367
|
+
export declare const managePluginRawSchema: z.ZodObject<{
|
|
368
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
369
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
370
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
371
|
+
readonly __type: any;
|
|
372
|
+
}, any>, string & {
|
|
780
373
|
readonly __type: any;
|
|
781
374
|
}, any>;
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
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
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
375
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
376
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
377
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
378
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
379
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
380
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
381
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
382
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
383
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
384
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
385
|
+
env: z.ZodOptional<z.ZodString>;
|
|
386
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
387
|
+
setVersion: z.ZodString;
|
|
388
|
+
pluginName: z.ZodString;
|
|
389
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
390
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
391
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
392
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
393
|
+
readonly __type: any;
|
|
394
|
+
}, any>, string & {
|
|
395
|
+
readonly __type: any;
|
|
396
|
+
}, any>;
|
|
397
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
398
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
399
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
400
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
401
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
402
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
403
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
404
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
405
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
406
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
407
|
+
env: z.ZodOptional<z.ZodString>;
|
|
408
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
409
|
+
setVersion: z.ZodString;
|
|
410
|
+
pluginName: z.ZodString;
|
|
411
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
412
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
413
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
414
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
415
|
+
readonly __type: any;
|
|
416
|
+
}, any>, string & {
|
|
417
|
+
readonly __type: any;
|
|
418
|
+
}, any>;
|
|
419
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
420
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
421
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
422
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
423
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
424
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
425
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
426
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
427
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
428
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
429
|
+
env: z.ZodOptional<z.ZodString>;
|
|
430
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
431
|
+
setVersion: z.ZodString;
|
|
432
|
+
pluginName: z.ZodString;
|
|
433
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
434
|
+
export declare const setEnvRawSchema: z.ZodObject<{
|
|
435
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
436
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
437
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
438
|
+
readonly __type: any;
|
|
439
|
+
}, any>, string & {
|
|
440
|
+
readonly __type: any;
|
|
441
|
+
}, any>;
|
|
442
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
443
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
444
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
445
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
446
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
447
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
448
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
449
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
450
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
451
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
452
|
+
env: z.ZodOptional<z.ZodString>;
|
|
453
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
454
|
+
setVersion: z.ZodString;
|
|
455
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
456
|
+
defaultEnvironment: z.ZodString;
|
|
457
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
458
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
459
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
460
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
461
|
+
readonly __type: any;
|
|
462
|
+
}, any>, string & {
|
|
463
|
+
readonly __type: any;
|
|
464
|
+
}, any>;
|
|
465
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
466
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
467
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
468
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
469
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
470
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
471
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
472
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
473
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
474
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
475
|
+
env: z.ZodOptional<z.ZodString>;
|
|
476
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
477
|
+
setVersion: z.ZodString;
|
|
478
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
479
|
+
defaultEnvironment: z.ZodString;
|
|
480
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
481
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
482
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
483
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
484
|
+
readonly __type: any;
|
|
485
|
+
}, any>, string & {
|
|
486
|
+
readonly __type: any;
|
|
487
|
+
}, any>;
|
|
488
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
489
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
490
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
491
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
492
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
493
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
494
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
495
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
496
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
497
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
498
|
+
env: z.ZodOptional<z.ZodString>;
|
|
499
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
500
|
+
setVersion: z.ZodString;
|
|
501
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
502
|
+
defaultEnvironment: z.ZodString;
|
|
503
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
504
|
+
export declare const generatedSchemas: {
|
|
505
|
+
rawSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
506
|
+
internalSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
507
|
+
schema: z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
508
|
+
_: (string | number)[];
|
|
509
|
+
projectDir: string & {
|
|
898
510
|
readonly __type: any;
|
|
899
|
-
}
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
}
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
scaffoldProjectDir: string & {
|
|
947
|
-
readonly __type: any;
|
|
948
|
-
};
|
|
949
|
-
scaffoldUrl: Url.Url;
|
|
950
|
-
} & {
|
|
511
|
+
};
|
|
512
|
+
maxConcurrency: number;
|
|
513
|
+
debug: boolean;
|
|
514
|
+
disableState: boolean;
|
|
515
|
+
logPluginRequests: boolean;
|
|
516
|
+
fromVsCode: boolean;
|
|
517
|
+
setBuild: string;
|
|
518
|
+
setVersion: string;
|
|
519
|
+
version?: boolean | undefined;
|
|
520
|
+
build?: boolean | undefined;
|
|
521
|
+
help?: boolean | undefined;
|
|
522
|
+
yes?: boolean | undefined;
|
|
523
|
+
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
524
|
+
env?: string | undefined;
|
|
525
|
+
quickstart?: string | undefined;
|
|
526
|
+
pluginName?: string | undefined;
|
|
527
|
+
} & {
|
|
528
|
+
[k: string]: unknown;
|
|
529
|
+
} & {
|
|
530
|
+
readonly __type: any;
|
|
531
|
+
}, any>;
|
|
532
|
+
}, factory: {
|
|
533
|
+
make: (input: z.objectOutputType<{
|
|
534
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
535
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
536
|
+
readonly __type: any;
|
|
537
|
+
}, any>, string & {
|
|
538
|
+
readonly __type: any;
|
|
539
|
+
}, any>;
|
|
540
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
541
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
542
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
543
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
544
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
545
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
546
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
547
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
548
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
549
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
550
|
+
env: z.ZodOptional<z.ZodString>;
|
|
551
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
552
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
553
|
+
setVersion: z.ZodString;
|
|
554
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
555
|
+
}, z.ZodTypeAny, "passthrough">) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
556
|
+
_: (string | number)[];
|
|
557
|
+
projectDir: string & {
|
|
951
558
|
readonly __type: any;
|
|
952
559
|
};
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
560
|
+
maxConcurrency: number;
|
|
561
|
+
debug: boolean;
|
|
562
|
+
disableState: boolean;
|
|
563
|
+
logPluginRequests: boolean;
|
|
564
|
+
fromVsCode: boolean;
|
|
565
|
+
setBuild: string;
|
|
566
|
+
setVersion: string;
|
|
567
|
+
version?: boolean | undefined;
|
|
568
|
+
build?: boolean | undefined;
|
|
569
|
+
help?: boolean | undefined;
|
|
570
|
+
yes?: boolean | undefined;
|
|
571
|
+
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
572
|
+
env?: string | undefined;
|
|
573
|
+
quickstart?: string | undefined;
|
|
574
|
+
pluginName?: string | undefined;
|
|
575
|
+
} & {
|
|
576
|
+
[k: string]: unknown;
|
|
577
|
+
} & {
|
|
578
|
+
readonly __type: any;
|
|
579
|
+
}>;
|
|
580
|
+
of: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
581
|
+
_: (string | number)[];
|
|
582
|
+
projectDir: string & {
|
|
583
|
+
readonly __type: any;
|
|
584
|
+
};
|
|
585
|
+
maxConcurrency: number;
|
|
586
|
+
debug: boolean;
|
|
587
|
+
disableState: boolean;
|
|
588
|
+
logPluginRequests: boolean;
|
|
589
|
+
fromVsCode: boolean;
|
|
590
|
+
setBuild: string;
|
|
591
|
+
setVersion: string;
|
|
592
|
+
version?: boolean | undefined;
|
|
593
|
+
build?: boolean | undefined;
|
|
594
|
+
help?: boolean | undefined;
|
|
595
|
+
yes?: boolean | undefined;
|
|
596
|
+
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
597
|
+
env?: string | undefined;
|
|
598
|
+
quickstart?: string | undefined;
|
|
599
|
+
pluginName?: string | undefined;
|
|
600
|
+
} & {
|
|
601
|
+
[k: string]: unknown;
|
|
602
|
+
} & {
|
|
603
|
+
readonly __type: any;
|
|
604
|
+
}>;
|
|
605
|
+
create: (input: z.objectOutputType<{
|
|
606
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
607
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
608
|
+
readonly __type: any;
|
|
609
|
+
}, any>, string & {
|
|
610
|
+
readonly __type: any;
|
|
611
|
+
}, any>;
|
|
612
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
613
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
614
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
615
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
616
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
617
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
618
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
619
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
620
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
621
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
622
|
+
env: z.ZodOptional<z.ZodString>;
|
|
623
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
624
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
625
|
+
setVersion: z.ZodString;
|
|
626
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
627
|
+
}, z.ZodTypeAny, "passthrough">) => {
|
|
628
|
+
_: (string | number)[];
|
|
629
|
+
projectDir: string & {
|
|
630
|
+
readonly __type: any;
|
|
631
|
+
};
|
|
632
|
+
maxConcurrency: number;
|
|
633
|
+
debug: boolean;
|
|
634
|
+
disableState: boolean;
|
|
635
|
+
logPluginRequests: boolean;
|
|
636
|
+
fromVsCode: boolean;
|
|
637
|
+
setBuild: string;
|
|
638
|
+
setVersion: string;
|
|
639
|
+
version?: boolean | undefined;
|
|
640
|
+
build?: boolean | undefined;
|
|
641
|
+
help?: boolean | undefined;
|
|
642
|
+
yes?: boolean | undefined;
|
|
643
|
+
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
644
|
+
env?: string | undefined;
|
|
645
|
+
quickstart?: string | undefined;
|
|
646
|
+
pluginName?: string | undefined;
|
|
647
|
+
} & {
|
|
648
|
+
[k: string]: unknown;
|
|
649
|
+
} & {
|
|
650
|
+
readonly __type: any;
|
|
651
|
+
};
|
|
652
|
+
from: (input: unknown) => {
|
|
653
|
+
_: (string | number)[];
|
|
654
|
+
projectDir: string & {
|
|
979
655
|
readonly __type: any;
|
|
980
656
|
};
|
|
657
|
+
maxConcurrency: number;
|
|
658
|
+
debug: boolean;
|
|
659
|
+
disableState: boolean;
|
|
660
|
+
logPluginRequests: boolean;
|
|
661
|
+
fromVsCode: boolean;
|
|
662
|
+
setBuild: string;
|
|
663
|
+
setVersion: string;
|
|
664
|
+
version?: boolean | undefined;
|
|
665
|
+
build?: boolean | undefined;
|
|
666
|
+
help?: boolean | undefined;
|
|
667
|
+
yes?: boolean | undefined;
|
|
668
|
+
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
669
|
+
env?: string | undefined;
|
|
670
|
+
quickstart?: string | undefined;
|
|
671
|
+
pluginName?: string | undefined;
|
|
672
|
+
} & {
|
|
673
|
+
[k: string]: unknown;
|
|
674
|
+
} & {
|
|
675
|
+
readonly __type: any;
|
|
676
|
+
};
|
|
677
|
+
};
|
|
678
|
+
export declare const create: (input: z.objectOutputType<{
|
|
679
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
680
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
681
|
+
readonly __type: any;
|
|
682
|
+
}, any>, string & {
|
|
683
|
+
readonly __type: any;
|
|
684
|
+
}, any>;
|
|
685
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
686
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
687
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
688
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
689
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
690
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
691
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
692
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
693
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
694
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
695
|
+
env: z.ZodOptional<z.ZodString>;
|
|
696
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
697
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
698
|
+
setVersion: z.ZodString;
|
|
699
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
700
|
+
}, z.ZodTypeAny, "passthrough">) => {
|
|
701
|
+
_: (string | number)[];
|
|
702
|
+
projectDir: string & {
|
|
703
|
+
readonly __type: any;
|
|
981
704
|
};
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
fromVsCode: boolean;
|
|
1006
|
-
setBuild: string;
|
|
1007
|
-
setVersion: string;
|
|
1008
|
-
operation: string;
|
|
1009
|
-
} & {
|
|
1010
|
-
readonly __type: any;
|
|
1011
|
-
}, any>;
|
|
705
|
+
maxConcurrency: number;
|
|
706
|
+
debug: boolean;
|
|
707
|
+
disableState: boolean;
|
|
708
|
+
logPluginRequests: boolean;
|
|
709
|
+
fromVsCode: boolean;
|
|
710
|
+
setBuild: string;
|
|
711
|
+
setVersion: string;
|
|
712
|
+
version?: boolean | undefined;
|
|
713
|
+
build?: boolean | undefined;
|
|
714
|
+
help?: boolean | undefined;
|
|
715
|
+
yes?: boolean | undefined;
|
|
716
|
+
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
717
|
+
env?: string | undefined;
|
|
718
|
+
quickstart?: string | undefined;
|
|
719
|
+
pluginName?: string | undefined;
|
|
720
|
+
} & {
|
|
721
|
+
[k: string]: unknown;
|
|
722
|
+
} & {
|
|
723
|
+
readonly __type: any;
|
|
724
|
+
}, of: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
725
|
+
_: (string | number)[];
|
|
726
|
+
projectDir: string & {
|
|
727
|
+
readonly __type: any;
|
|
1012
728
|
};
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
729
|
+
maxConcurrency: number;
|
|
730
|
+
debug: boolean;
|
|
731
|
+
disableState: boolean;
|
|
732
|
+
logPluginRequests: boolean;
|
|
733
|
+
fromVsCode: boolean;
|
|
734
|
+
setBuild: string;
|
|
735
|
+
setVersion: string;
|
|
736
|
+
version?: boolean | undefined;
|
|
737
|
+
build?: boolean | undefined;
|
|
738
|
+
help?: boolean | undefined;
|
|
739
|
+
yes?: boolean | undefined;
|
|
740
|
+
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
741
|
+
env?: string | undefined;
|
|
742
|
+
quickstart?: string | undefined;
|
|
743
|
+
pluginName?: string | undefined;
|
|
744
|
+
} & {
|
|
745
|
+
[k: string]: unknown;
|
|
746
|
+
} & {
|
|
747
|
+
readonly __type: any;
|
|
748
|
+
}>, make: (input: z.objectOutputType<{
|
|
749
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
750
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
751
|
+
readonly __type: any;
|
|
752
|
+
}, any>, string & {
|
|
753
|
+
readonly __type: any;
|
|
754
|
+
}, any>;
|
|
755
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
756
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
757
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
758
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
759
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
760
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
761
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
762
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
763
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
764
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
765
|
+
env: z.ZodOptional<z.ZodString>;
|
|
766
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
767
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
768
|
+
setVersion: z.ZodString;
|
|
769
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
770
|
+
}, z.ZodTypeAny, "passthrough">) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
771
|
+
_: (string | number)[];
|
|
772
|
+
projectDir: string & {
|
|
773
|
+
readonly __type: any;
|
|
774
|
+
};
|
|
775
|
+
maxConcurrency: number;
|
|
776
|
+
debug: boolean;
|
|
777
|
+
disableState: boolean;
|
|
778
|
+
logPluginRequests: boolean;
|
|
779
|
+
fromVsCode: boolean;
|
|
780
|
+
setBuild: string;
|
|
781
|
+
setVersion: string;
|
|
782
|
+
version?: boolean | undefined;
|
|
783
|
+
build?: boolean | undefined;
|
|
784
|
+
help?: boolean | undefined;
|
|
785
|
+
yes?: boolean | undefined;
|
|
786
|
+
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
787
|
+
env?: string | undefined;
|
|
788
|
+
quickstart?: string | undefined;
|
|
789
|
+
pluginName?: string | undefined;
|
|
790
|
+
} & {
|
|
791
|
+
[k: string]: unknown;
|
|
792
|
+
} & {
|
|
793
|
+
readonly __type: any;
|
|
794
|
+
}>;
|
|
795
|
+
export type SanitizedArgs = z.infer<typeof generatedSchemas.schema>;
|
|
796
|
+
export type t = SanitizedArgs;
|
|
797
|
+
export declare const schemas: {
|
|
798
|
+
schema: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
799
|
+
_: (string | number)[];
|
|
800
|
+
projectDir: string & {
|
|
1059
801
|
readonly __type: any;
|
|
1060
|
-
}
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
} & {
|
|
802
|
+
};
|
|
803
|
+
maxConcurrency: number;
|
|
804
|
+
debug: boolean;
|
|
805
|
+
disableState: boolean;
|
|
806
|
+
logPluginRequests: boolean;
|
|
807
|
+
fromVsCode: boolean;
|
|
808
|
+
setBuild: string;
|
|
809
|
+
setVersion: string;
|
|
810
|
+
version?: boolean | undefined;
|
|
811
|
+
build?: boolean | undefined;
|
|
812
|
+
help?: boolean | undefined;
|
|
813
|
+
yes?: boolean | undefined;
|
|
814
|
+
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
815
|
+
env?: string | undefined;
|
|
816
|
+
quickstart?: string | undefined;
|
|
817
|
+
pluginName?: string | undefined;
|
|
818
|
+
} & {
|
|
819
|
+
[k: string]: unknown;
|
|
820
|
+
} & {
|
|
821
|
+
readonly __type: any;
|
|
822
|
+
}, any>, {
|
|
823
|
+
_: (string | number)[];
|
|
824
|
+
projectDir: string & {
|
|
1084
825
|
readonly __type: any;
|
|
1085
|
-
}
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
826
|
+
};
|
|
827
|
+
maxConcurrency: number;
|
|
828
|
+
debug: boolean;
|
|
829
|
+
disableState: boolean;
|
|
830
|
+
logPluginRequests: boolean;
|
|
831
|
+
fromVsCode: boolean;
|
|
832
|
+
setBuild: string;
|
|
833
|
+
setVersion: string;
|
|
834
|
+
version?: boolean | undefined;
|
|
835
|
+
build?: boolean | undefined;
|
|
836
|
+
help?: boolean | undefined;
|
|
837
|
+
yes?: boolean | undefined;
|
|
838
|
+
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
839
|
+
env?: string | undefined;
|
|
840
|
+
quickstart?: string | undefined;
|
|
841
|
+
pluginName?: string | undefined;
|
|
842
|
+
} & {
|
|
843
|
+
[k: string]: unknown;
|
|
844
|
+
} & {
|
|
845
|
+
readonly __type: any;
|
|
846
|
+
}, any>;
|
|
847
|
+
rawSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
848
|
+
internalSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
849
|
+
};
|
|
850
|
+
export declare const scaffoldTaskArgs: {
|
|
851
|
+
schemas: {
|
|
852
|
+
rawSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
853
|
+
internalSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
854
|
+
schema: z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
1096
855
|
_: (string | number)[];
|
|
1097
856
|
projectDir: string & {
|
|
1098
857
|
readonly __type: any;
|
|
@@ -1104,8 +863,14 @@ export declare const provisionTaskArgs: {
|
|
|
1104
863
|
fromVsCode: boolean;
|
|
1105
864
|
setBuild: string;
|
|
1106
865
|
setVersion: string;
|
|
1107
|
-
|
|
1108
|
-
|
|
866
|
+
scaffoldProjectDir: string & {
|
|
867
|
+
readonly __type: any;
|
|
868
|
+
};
|
|
869
|
+
scaffoldUrl: {
|
|
870
|
+
__type: Url.Url;
|
|
871
|
+
} & {
|
|
872
|
+
__type: NonEmptyString.NonEmptyString;
|
|
873
|
+
} & string;
|
|
1109
874
|
quickstart?: string | undefined;
|
|
1110
875
|
version?: boolean | undefined;
|
|
1111
876
|
build?: boolean | undefined;
|
|
@@ -1113,8 +878,43 @@ export declare const provisionTaskArgs: {
|
|
|
1113
878
|
yes?: boolean | undefined;
|
|
1114
879
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1115
880
|
env?: string | undefined;
|
|
1116
|
-
name?: string | undefined;
|
|
1117
881
|
pluginName?: string | undefined;
|
|
882
|
+
branch?: string | undefined;
|
|
883
|
+
} & {
|
|
884
|
+
[k: string]: unknown;
|
|
885
|
+
} & {
|
|
886
|
+
readonly __type: any;
|
|
887
|
+
}, any>;
|
|
888
|
+
};
|
|
889
|
+
factory: {
|
|
890
|
+
make: (input: z.objectOutputType<{
|
|
891
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
892
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
893
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
894
|
+
readonly __type: any;
|
|
895
|
+
}, any>, string & {
|
|
896
|
+
readonly __type: any;
|
|
897
|
+
}, any>;
|
|
898
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
899
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
900
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
901
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
902
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
903
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
904
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
905
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
906
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
907
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
908
|
+
env: z.ZodOptional<z.ZodString>;
|
|
909
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
910
|
+
setVersion: z.ZodString;
|
|
911
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
912
|
+
scaffoldProjectDir: z.ZodEffects<z.ZodString, string & {
|
|
913
|
+
readonly __type: any;
|
|
914
|
+
}, string>;
|
|
915
|
+
scaffoldUrl: z.ZodEffects<z.ZodString, Url.Url, string>;
|
|
916
|
+
branch: z.ZodOptional<z.ZodString>;
|
|
917
|
+
}, z.ZodTypeAny, "passthrough">) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1118
918
|
_: (string | number)[];
|
|
1119
919
|
projectDir: string & {
|
|
1120
920
|
readonly __type: any;
|
|
@@ -1126,11 +926,14 @@ export declare const provisionTaskArgs: {
|
|
|
1126
926
|
fromVsCode: boolean;
|
|
1127
927
|
setBuild: string;
|
|
1128
928
|
setVersion: string;
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
929
|
+
scaffoldProjectDir: string & {
|
|
930
|
+
readonly __type: any;
|
|
931
|
+
};
|
|
932
|
+
scaffoldUrl: {
|
|
933
|
+
__type: Url.Url;
|
|
934
|
+
} & {
|
|
935
|
+
__type: NonEmptyString.NonEmptyString;
|
|
936
|
+
} & string;
|
|
1134
937
|
quickstart?: string | undefined;
|
|
1135
938
|
version?: boolean | undefined;
|
|
1136
939
|
build?: boolean | undefined;
|
|
@@ -1138,8 +941,14 @@ export declare const provisionTaskArgs: {
|
|
|
1138
941
|
yes?: boolean | undefined;
|
|
1139
942
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1140
943
|
env?: string | undefined;
|
|
1141
|
-
name?: string | undefined;
|
|
1142
944
|
pluginName?: string | undefined;
|
|
945
|
+
branch?: string | undefined;
|
|
946
|
+
} & {
|
|
947
|
+
[k: string]: unknown;
|
|
948
|
+
} & {
|
|
949
|
+
readonly __type: any;
|
|
950
|
+
}>;
|
|
951
|
+
of: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1143
952
|
_: (string | number)[];
|
|
1144
953
|
projectDir: string & {
|
|
1145
954
|
readonly __type: any;
|
|
@@ -1151,17 +960,14 @@ export declare const provisionTaskArgs: {
|
|
|
1151
960
|
fromVsCode: boolean;
|
|
1152
961
|
setBuild: string;
|
|
1153
962
|
setVersion: string;
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
}
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
rawSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
1163
|
-
internalSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
1164
|
-
schema: z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
963
|
+
scaffoldProjectDir: string & {
|
|
964
|
+
readonly __type: any;
|
|
965
|
+
};
|
|
966
|
+
scaffoldUrl: {
|
|
967
|
+
__type: Url.Url;
|
|
968
|
+
} & {
|
|
969
|
+
__type: NonEmptyString.NonEmptyString;
|
|
970
|
+
} & string;
|
|
1165
971
|
quickstart?: string | undefined;
|
|
1166
972
|
version?: boolean | undefined;
|
|
1167
973
|
build?: boolean | undefined;
|
|
@@ -1169,6 +975,41 @@ export declare const installTaskArgs: {
|
|
|
1169
975
|
yes?: boolean | undefined;
|
|
1170
976
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1171
977
|
env?: string | undefined;
|
|
978
|
+
pluginName?: string | undefined;
|
|
979
|
+
branch?: string | undefined;
|
|
980
|
+
} & {
|
|
981
|
+
[k: string]: unknown;
|
|
982
|
+
} & {
|
|
983
|
+
readonly __type: any;
|
|
984
|
+
}>;
|
|
985
|
+
create: (input: z.objectOutputType<{
|
|
986
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
987
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
988
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
989
|
+
readonly __type: any;
|
|
990
|
+
}, any>, string & {
|
|
991
|
+
readonly __type: any;
|
|
992
|
+
}, any>;
|
|
993
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
994
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
995
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
996
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
997
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
998
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
999
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1000
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1001
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1002
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
1003
|
+
env: z.ZodOptional<z.ZodString>;
|
|
1004
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
1005
|
+
setVersion: z.ZodString;
|
|
1006
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
1007
|
+
scaffoldProjectDir: z.ZodEffects<z.ZodString, string & {
|
|
1008
|
+
readonly __type: any;
|
|
1009
|
+
}, string>;
|
|
1010
|
+
scaffoldUrl: z.ZodEffects<z.ZodString, Url.Url, string>;
|
|
1011
|
+
branch: z.ZodOptional<z.ZodString>;
|
|
1012
|
+
}, z.ZodTypeAny, "passthrough">) => {
|
|
1172
1013
|
_: (string | number)[];
|
|
1173
1014
|
projectDir: string & {
|
|
1174
1015
|
readonly __type: any;
|
|
@@ -1180,13 +1021,14 @@ export declare const installTaskArgs: {
|
|
|
1180
1021
|
fromVsCode: boolean;
|
|
1181
1022
|
setBuild: string;
|
|
1182
1023
|
setVersion: string;
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1024
|
+
scaffoldProjectDir: string & {
|
|
1025
|
+
readonly __type: any;
|
|
1026
|
+
};
|
|
1027
|
+
scaffoldUrl: {
|
|
1028
|
+
__type: Url.Url;
|
|
1029
|
+
} & {
|
|
1030
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1031
|
+
} & string;
|
|
1190
1032
|
quickstart?: string | undefined;
|
|
1191
1033
|
version?: boolean | undefined;
|
|
1192
1034
|
build?: boolean | undefined;
|
|
@@ -1194,6 +1036,14 @@ export declare const installTaskArgs: {
|
|
|
1194
1036
|
yes?: boolean | undefined;
|
|
1195
1037
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1196
1038
|
env?: string | undefined;
|
|
1039
|
+
pluginName?: string | undefined;
|
|
1040
|
+
branch?: string | undefined;
|
|
1041
|
+
} & {
|
|
1042
|
+
[k: string]: unknown;
|
|
1043
|
+
} & {
|
|
1044
|
+
readonly __type: any;
|
|
1045
|
+
};
|
|
1046
|
+
from: (input: unknown) => {
|
|
1197
1047
|
_: (string | number)[];
|
|
1198
1048
|
projectDir: string & {
|
|
1199
1049
|
readonly __type: any;
|
|
@@ -1205,8 +1055,14 @@ export declare const installTaskArgs: {
|
|
|
1205
1055
|
fromVsCode: boolean;
|
|
1206
1056
|
setBuild: string;
|
|
1207
1057
|
setVersion: string;
|
|
1208
|
-
|
|
1209
|
-
|
|
1058
|
+
scaffoldProjectDir: string & {
|
|
1059
|
+
readonly __type: any;
|
|
1060
|
+
};
|
|
1061
|
+
scaffoldUrl: {
|
|
1062
|
+
__type: Url.Url;
|
|
1063
|
+
} & {
|
|
1064
|
+
__type: NonEmptyString.NonEmptyString;
|
|
1065
|
+
} & string;
|
|
1210
1066
|
quickstart?: string | undefined;
|
|
1211
1067
|
version?: boolean | undefined;
|
|
1212
1068
|
build?: boolean | undefined;
|
|
@@ -1214,6 +1070,20 @@ export declare const installTaskArgs: {
|
|
|
1214
1070
|
yes?: boolean | undefined;
|
|
1215
1071
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1216
1072
|
env?: string | undefined;
|
|
1073
|
+
pluginName?: string | undefined;
|
|
1074
|
+
branch?: string | undefined;
|
|
1075
|
+
} & {
|
|
1076
|
+
[k: string]: unknown;
|
|
1077
|
+
} & {
|
|
1078
|
+
readonly __type: any;
|
|
1079
|
+
};
|
|
1080
|
+
};
|
|
1081
|
+
};
|
|
1082
|
+
export declare const provisionTaskArgs: {
|
|
1083
|
+
schemas: {
|
|
1084
|
+
rawSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
1085
|
+
internalSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
1086
|
+
schema: z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
1217
1087
|
_: (string | number)[];
|
|
1218
1088
|
projectDir: string & {
|
|
1219
1089
|
readonly __type: any;
|
|
@@ -1225,11 +1095,7 @@ export declare const installTaskArgs: {
|
|
|
1225
1095
|
fromVsCode: boolean;
|
|
1226
1096
|
setBuild: string;
|
|
1227
1097
|
setVersion: string;
|
|
1228
|
-
|
|
1229
|
-
} & {
|
|
1230
|
-
readonly __type: any;
|
|
1231
|
-
}>;
|
|
1232
|
-
of: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1098
|
+
operation: string;
|
|
1233
1099
|
quickstart?: string | undefined;
|
|
1234
1100
|
version?: boolean | undefined;
|
|
1235
1101
|
build?: boolean | undefined;
|
|
@@ -1237,6 +1103,40 @@ export declare const installTaskArgs: {
|
|
|
1237
1103
|
yes?: boolean | undefined;
|
|
1238
1104
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1239
1105
|
env?: string | undefined;
|
|
1106
|
+
pluginName?: string | undefined;
|
|
1107
|
+
name?: string | undefined;
|
|
1108
|
+
} & {
|
|
1109
|
+
[k: string]: unknown;
|
|
1110
|
+
} & {
|
|
1111
|
+
readonly __type: any;
|
|
1112
|
+
}, any>;
|
|
1113
|
+
};
|
|
1114
|
+
factory: {
|
|
1115
|
+
make: (input: z.objectOutputType<{
|
|
1116
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
1117
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
1118
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
1119
|
+
readonly __type: any;
|
|
1120
|
+
}, any>, string & {
|
|
1121
|
+
readonly __type: any;
|
|
1122
|
+
}, any>;
|
|
1123
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
1124
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1125
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1126
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1127
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1128
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1129
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1130
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1131
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1132
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
1133
|
+
env: z.ZodOptional<z.ZodString>;
|
|
1134
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
1135
|
+
setVersion: z.ZodString;
|
|
1136
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
1137
|
+
operation: z.ZodString;
|
|
1138
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1139
|
+
}, z.ZodTypeAny, "passthrough">) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1240
1140
|
_: (string | number)[];
|
|
1241
1141
|
projectDir: string & {
|
|
1242
1142
|
readonly __type: any;
|
|
@@ -1248,11 +1148,7 @@ export declare const installTaskArgs: {
|
|
|
1248
1148
|
fromVsCode: boolean;
|
|
1249
1149
|
setBuild: string;
|
|
1250
1150
|
setVersion: string;
|
|
1251
|
-
|
|
1252
|
-
} & {
|
|
1253
|
-
readonly __type: any;
|
|
1254
|
-
}>;
|
|
1255
|
-
create: (input: {
|
|
1151
|
+
operation: string;
|
|
1256
1152
|
quickstart?: string | undefined;
|
|
1257
1153
|
version?: boolean | undefined;
|
|
1258
1154
|
build?: boolean | undefined;
|
|
@@ -1260,6 +1156,14 @@ export declare const installTaskArgs: {
|
|
|
1260
1156
|
yes?: boolean | undefined;
|
|
1261
1157
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1262
1158
|
env?: string | undefined;
|
|
1159
|
+
pluginName?: string | undefined;
|
|
1160
|
+
name?: string | undefined;
|
|
1161
|
+
} & {
|
|
1162
|
+
[k: string]: unknown;
|
|
1163
|
+
} & {
|
|
1164
|
+
readonly __type: any;
|
|
1165
|
+
}>;
|
|
1166
|
+
of: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1263
1167
|
_: (string | number)[];
|
|
1264
1168
|
projectDir: string & {
|
|
1265
1169
|
readonly __type: any;
|
|
@@ -1271,8 +1175,7 @@ export declare const installTaskArgs: {
|
|
|
1271
1175
|
fromVsCode: boolean;
|
|
1272
1176
|
setBuild: string;
|
|
1273
1177
|
setVersion: string;
|
|
1274
|
-
|
|
1275
|
-
}) => {
|
|
1178
|
+
operation: string;
|
|
1276
1179
|
quickstart?: string | undefined;
|
|
1277
1180
|
version?: boolean | undefined;
|
|
1278
1181
|
build?: boolean | undefined;
|
|
@@ -1280,6 +1183,38 @@ export declare const installTaskArgs: {
|
|
|
1280
1183
|
yes?: boolean | undefined;
|
|
1281
1184
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1282
1185
|
env?: string | undefined;
|
|
1186
|
+
pluginName?: string | undefined;
|
|
1187
|
+
name?: string | undefined;
|
|
1188
|
+
} & {
|
|
1189
|
+
[k: string]: unknown;
|
|
1190
|
+
} & {
|
|
1191
|
+
readonly __type: any;
|
|
1192
|
+
}>;
|
|
1193
|
+
create: (input: z.objectOutputType<{
|
|
1194
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
1195
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
1196
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
1197
|
+
readonly __type: any;
|
|
1198
|
+
}, any>, string & {
|
|
1199
|
+
readonly __type: any;
|
|
1200
|
+
}, any>;
|
|
1201
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
1202
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1203
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1204
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1205
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1206
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1207
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1208
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1209
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1210
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
1211
|
+
env: z.ZodOptional<z.ZodString>;
|
|
1212
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
1213
|
+
setVersion: z.ZodString;
|
|
1214
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
1215
|
+
operation: z.ZodString;
|
|
1216
|
+
name: z.ZodOptional<z.ZodString>;
|
|
1217
|
+
}, z.ZodTypeAny, "passthrough">) => {
|
|
1283
1218
|
_: (string | number)[];
|
|
1284
1219
|
projectDir: string & {
|
|
1285
1220
|
readonly __type: any;
|
|
@@ -1291,11 +1226,7 @@ export declare const installTaskArgs: {
|
|
|
1291
1226
|
fromVsCode: boolean;
|
|
1292
1227
|
setBuild: string;
|
|
1293
1228
|
setVersion: string;
|
|
1294
|
-
|
|
1295
|
-
} & {
|
|
1296
|
-
readonly __type: any;
|
|
1297
|
-
};
|
|
1298
|
-
from: (input: unknown) => {
|
|
1229
|
+
operation: string;
|
|
1299
1230
|
quickstart?: string | undefined;
|
|
1300
1231
|
version?: boolean | undefined;
|
|
1301
1232
|
build?: boolean | undefined;
|
|
@@ -1303,6 +1234,14 @@ export declare const installTaskArgs: {
|
|
|
1303
1234
|
yes?: boolean | undefined;
|
|
1304
1235
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1305
1236
|
env?: string | undefined;
|
|
1237
|
+
pluginName?: string | undefined;
|
|
1238
|
+
name?: string | undefined;
|
|
1239
|
+
} & {
|
|
1240
|
+
[k: string]: unknown;
|
|
1241
|
+
} & {
|
|
1242
|
+
readonly __type: any;
|
|
1243
|
+
};
|
|
1244
|
+
from: (input: unknown) => {
|
|
1306
1245
|
_: (string | number)[];
|
|
1307
1246
|
projectDir: string & {
|
|
1308
1247
|
readonly __type: any;
|
|
@@ -1314,24 +1253,28 @@ export declare const installTaskArgs: {
|
|
|
1314
1253
|
fromVsCode: boolean;
|
|
1315
1254
|
setBuild: string;
|
|
1316
1255
|
setVersion: string;
|
|
1317
|
-
|
|
1256
|
+
operation: string;
|
|
1257
|
+
quickstart?: string | undefined;
|
|
1258
|
+
version?: boolean | undefined;
|
|
1259
|
+
build?: boolean | undefined;
|
|
1260
|
+
help?: boolean | undefined;
|
|
1261
|
+
yes?: boolean | undefined;
|
|
1262
|
+
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1263
|
+
env?: string | undefined;
|
|
1264
|
+
pluginName?: string | undefined;
|
|
1265
|
+
name?: string | undefined;
|
|
1266
|
+
} & {
|
|
1267
|
+
[k: string]: unknown;
|
|
1318
1268
|
} & {
|
|
1319
1269
|
readonly __type: any;
|
|
1320
1270
|
};
|
|
1321
1271
|
};
|
|
1322
1272
|
};
|
|
1323
|
-
export declare const
|
|
1273
|
+
export declare const installTaskArgs: {
|
|
1324
1274
|
schemas: {
|
|
1325
1275
|
rawSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
1326
1276
|
internalSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
1327
1277
|
schema: z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
1328
|
-
quickstart?: string | undefined;
|
|
1329
|
-
version?: boolean | undefined;
|
|
1330
|
-
build?: boolean | undefined;
|
|
1331
|
-
help?: boolean | undefined;
|
|
1332
|
-
yes?: boolean | undefined;
|
|
1333
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1334
|
-
env?: string | undefined;
|
|
1335
1278
|
_: (string | number)[];
|
|
1336
1279
|
projectDir: string & {
|
|
1337
1280
|
readonly __type: any;
|
|
@@ -1344,12 +1287,6 @@ export declare const uninstallTaskArgs: {
|
|
|
1344
1287
|
setBuild: string;
|
|
1345
1288
|
setVersion: string;
|
|
1346
1289
|
pluginName: string;
|
|
1347
|
-
} & {
|
|
1348
|
-
readonly __type: any;
|
|
1349
|
-
}, any>;
|
|
1350
|
-
};
|
|
1351
|
-
factory: {
|
|
1352
|
-
make: (input: {
|
|
1353
1290
|
quickstart?: string | undefined;
|
|
1354
1291
|
version?: boolean | undefined;
|
|
1355
1292
|
build?: boolean | undefined;
|
|
@@ -1357,6 +1294,36 @@ export declare const uninstallTaskArgs: {
|
|
|
1357
1294
|
yes?: boolean | undefined;
|
|
1358
1295
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1359
1296
|
env?: string | undefined;
|
|
1297
|
+
} & {
|
|
1298
|
+
[k: string]: unknown;
|
|
1299
|
+
} & {
|
|
1300
|
+
readonly __type: any;
|
|
1301
|
+
}, any>;
|
|
1302
|
+
};
|
|
1303
|
+
factory: {
|
|
1304
|
+
make: (input: z.objectOutputType<{
|
|
1305
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
1306
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
1307
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
1308
|
+
readonly __type: any;
|
|
1309
|
+
}, any>, string & {
|
|
1310
|
+
readonly __type: any;
|
|
1311
|
+
}, any>;
|
|
1312
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
1313
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1314
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1315
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1316
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1317
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1318
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1319
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1320
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1321
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
1322
|
+
env: z.ZodOptional<z.ZodString>;
|
|
1323
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
1324
|
+
setVersion: z.ZodString;
|
|
1325
|
+
pluginName: z.ZodString;
|
|
1326
|
+
}, z.ZodTypeAny, "passthrough">) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1360
1327
|
_: (string | number)[];
|
|
1361
1328
|
projectDir: string & {
|
|
1362
1329
|
readonly __type: any;
|
|
@@ -1369,7 +1336,6 @@ export declare const uninstallTaskArgs: {
|
|
|
1369
1336
|
setBuild: string;
|
|
1370
1337
|
setVersion: string;
|
|
1371
1338
|
pluginName: string;
|
|
1372
|
-
}) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1373
1339
|
quickstart?: string | undefined;
|
|
1374
1340
|
version?: boolean | undefined;
|
|
1375
1341
|
build?: boolean | undefined;
|
|
@@ -1377,29 +1343,12 @@ export declare const uninstallTaskArgs: {
|
|
|
1377
1343
|
yes?: boolean | undefined;
|
|
1378
1344
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1379
1345
|
env?: string | undefined;
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
readonly __type: any;
|
|
1383
|
-
};
|
|
1384
|
-
maxConcurrency: number;
|
|
1385
|
-
debug: boolean;
|
|
1386
|
-
disableState: boolean;
|
|
1387
|
-
logPluginRequests: boolean;
|
|
1388
|
-
fromVsCode: boolean;
|
|
1389
|
-
setBuild: string;
|
|
1390
|
-
setVersion: string;
|
|
1391
|
-
pluginName: string;
|
|
1346
|
+
} & {
|
|
1347
|
+
[k: string]: unknown;
|
|
1392
1348
|
} & {
|
|
1393
1349
|
readonly __type: any;
|
|
1394
1350
|
}>;
|
|
1395
1351
|
of: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1396
|
-
quickstart?: string | undefined;
|
|
1397
|
-
version?: boolean | undefined;
|
|
1398
|
-
build?: boolean | undefined;
|
|
1399
|
-
help?: boolean | undefined;
|
|
1400
|
-
yes?: boolean | undefined;
|
|
1401
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1402
|
-
env?: string | undefined;
|
|
1403
1352
|
_: (string | number)[];
|
|
1404
1353
|
projectDir: string & {
|
|
1405
1354
|
readonly __type: any;
|
|
@@ -1412,10 +1361,6 @@ export declare const uninstallTaskArgs: {
|
|
|
1412
1361
|
setBuild: string;
|
|
1413
1362
|
setVersion: string;
|
|
1414
1363
|
pluginName: string;
|
|
1415
|
-
} & {
|
|
1416
|
-
readonly __type: any;
|
|
1417
|
-
}>;
|
|
1418
|
-
create: (input: {
|
|
1419
1364
|
quickstart?: string | undefined;
|
|
1420
1365
|
version?: boolean | undefined;
|
|
1421
1366
|
build?: boolean | undefined;
|
|
@@ -1423,6 +1368,34 @@ export declare const uninstallTaskArgs: {
|
|
|
1423
1368
|
yes?: boolean | undefined;
|
|
1424
1369
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1425
1370
|
env?: string | undefined;
|
|
1371
|
+
} & {
|
|
1372
|
+
[k: string]: unknown;
|
|
1373
|
+
} & {
|
|
1374
|
+
readonly __type: any;
|
|
1375
|
+
}>;
|
|
1376
|
+
create: (input: z.objectOutputType<{
|
|
1377
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
1378
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
1379
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
1380
|
+
readonly __type: any;
|
|
1381
|
+
}, any>, string & {
|
|
1382
|
+
readonly __type: any;
|
|
1383
|
+
}, any>;
|
|
1384
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
1385
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1386
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1387
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1388
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1389
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1390
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1391
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1392
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1393
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
1394
|
+
env: z.ZodOptional<z.ZodString>;
|
|
1395
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
1396
|
+
setVersion: z.ZodString;
|
|
1397
|
+
pluginName: z.ZodString;
|
|
1398
|
+
}, z.ZodTypeAny, "passthrough">) => {
|
|
1426
1399
|
_: (string | number)[];
|
|
1427
1400
|
projectDir: string & {
|
|
1428
1401
|
readonly __type: any;
|
|
@@ -1435,7 +1408,6 @@ export declare const uninstallTaskArgs: {
|
|
|
1435
1408
|
setBuild: string;
|
|
1436
1409
|
setVersion: string;
|
|
1437
1410
|
pluginName: string;
|
|
1438
|
-
}) => {
|
|
1439
1411
|
quickstart?: string | undefined;
|
|
1440
1412
|
version?: boolean | undefined;
|
|
1441
1413
|
build?: boolean | undefined;
|
|
@@ -1443,6 +1415,12 @@ export declare const uninstallTaskArgs: {
|
|
|
1443
1415
|
yes?: boolean | undefined;
|
|
1444
1416
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1445
1417
|
env?: string | undefined;
|
|
1418
|
+
} & {
|
|
1419
|
+
[k: string]: unknown;
|
|
1420
|
+
} & {
|
|
1421
|
+
readonly __type: any;
|
|
1422
|
+
};
|
|
1423
|
+
from: (input: unknown) => {
|
|
1446
1424
|
_: (string | number)[];
|
|
1447
1425
|
projectDir: string & {
|
|
1448
1426
|
readonly __type: any;
|
|
@@ -1455,10 +1433,6 @@ export declare const uninstallTaskArgs: {
|
|
|
1455
1433
|
setBuild: string;
|
|
1456
1434
|
setVersion: string;
|
|
1457
1435
|
pluginName: string;
|
|
1458
|
-
} & {
|
|
1459
|
-
readonly __type: any;
|
|
1460
|
-
};
|
|
1461
|
-
from: (input: unknown) => {
|
|
1462
1436
|
quickstart?: string | undefined;
|
|
1463
1437
|
version?: boolean | undefined;
|
|
1464
1438
|
build?: boolean | undefined;
|
|
@@ -1466,6 +1440,18 @@ export declare const uninstallTaskArgs: {
|
|
|
1466
1440
|
yes?: boolean | undefined;
|
|
1467
1441
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1468
1442
|
env?: string | undefined;
|
|
1443
|
+
} & {
|
|
1444
|
+
[k: string]: unknown;
|
|
1445
|
+
} & {
|
|
1446
|
+
readonly __type: any;
|
|
1447
|
+
};
|
|
1448
|
+
};
|
|
1449
|
+
};
|
|
1450
|
+
export declare const uninstallTaskArgs: {
|
|
1451
|
+
schemas: {
|
|
1452
|
+
rawSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
1453
|
+
internalSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
1454
|
+
schema: z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
1469
1455
|
_: (string | number)[];
|
|
1470
1456
|
projectDir: string & {
|
|
1471
1457
|
readonly __type: any;
|
|
@@ -1478,16 +1464,6 @@ export declare const uninstallTaskArgs: {
|
|
|
1478
1464
|
setBuild: string;
|
|
1479
1465
|
setVersion: string;
|
|
1480
1466
|
pluginName: string;
|
|
1481
|
-
} & {
|
|
1482
|
-
readonly __type: any;
|
|
1483
|
-
};
|
|
1484
|
-
};
|
|
1485
|
-
};
|
|
1486
|
-
export declare const setEnvTaskArgs: {
|
|
1487
|
-
schemas: {
|
|
1488
|
-
rawSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
1489
|
-
internalSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
1490
|
-
schema: z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
1491
1467
|
quickstart?: string | undefined;
|
|
1492
1468
|
version?: boolean | undefined;
|
|
1493
1469
|
build?: boolean | undefined;
|
|
@@ -1495,7 +1471,36 @@ export declare const setEnvTaskArgs: {
|
|
|
1495
1471
|
yes?: boolean | undefined;
|
|
1496
1472
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1497
1473
|
env?: string | undefined;
|
|
1498
|
-
|
|
1474
|
+
} & {
|
|
1475
|
+
[k: string]: unknown;
|
|
1476
|
+
} & {
|
|
1477
|
+
readonly __type: any;
|
|
1478
|
+
}, any>;
|
|
1479
|
+
};
|
|
1480
|
+
factory: {
|
|
1481
|
+
make: (input: z.objectOutputType<{
|
|
1482
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
1483
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
1484
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
1485
|
+
readonly __type: any;
|
|
1486
|
+
}, any>, string & {
|
|
1487
|
+
readonly __type: any;
|
|
1488
|
+
}, any>;
|
|
1489
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
1490
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1491
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1492
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1493
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1494
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1495
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1496
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1497
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1498
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
1499
|
+
env: z.ZodOptional<z.ZodString>;
|
|
1500
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
1501
|
+
setVersion: z.ZodString;
|
|
1502
|
+
pluginName: z.ZodString;
|
|
1503
|
+
}, z.ZodTypeAny, "passthrough">) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1499
1504
|
_: (string | number)[];
|
|
1500
1505
|
projectDir: string & {
|
|
1501
1506
|
readonly __type: any;
|
|
@@ -1507,13 +1512,7 @@ export declare const setEnvTaskArgs: {
|
|
|
1507
1512
|
fromVsCode: boolean;
|
|
1508
1513
|
setBuild: string;
|
|
1509
1514
|
setVersion: string;
|
|
1510
|
-
|
|
1511
|
-
} & {
|
|
1512
|
-
readonly __type: any;
|
|
1513
|
-
}, any>;
|
|
1514
|
-
};
|
|
1515
|
-
factory: {
|
|
1516
|
-
make: (input: {
|
|
1515
|
+
pluginName: string;
|
|
1517
1516
|
quickstart?: string | undefined;
|
|
1518
1517
|
version?: boolean | undefined;
|
|
1519
1518
|
build?: boolean | undefined;
|
|
@@ -1521,7 +1520,12 @@ export declare const setEnvTaskArgs: {
|
|
|
1521
1520
|
yes?: boolean | undefined;
|
|
1522
1521
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1523
1522
|
env?: string | undefined;
|
|
1524
|
-
|
|
1523
|
+
} & {
|
|
1524
|
+
[k: string]: unknown;
|
|
1525
|
+
} & {
|
|
1526
|
+
readonly __type: any;
|
|
1527
|
+
}>;
|
|
1528
|
+
of: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1525
1529
|
_: (string | number)[];
|
|
1526
1530
|
projectDir: string & {
|
|
1527
1531
|
readonly __type: any;
|
|
@@ -1533,8 +1537,7 @@ export declare const setEnvTaskArgs: {
|
|
|
1533
1537
|
fromVsCode: boolean;
|
|
1534
1538
|
setBuild: string;
|
|
1535
1539
|
setVersion: string;
|
|
1536
|
-
|
|
1537
|
-
}) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1540
|
+
pluginName: string;
|
|
1538
1541
|
quickstart?: string | undefined;
|
|
1539
1542
|
version?: boolean | undefined;
|
|
1540
1543
|
build?: boolean | undefined;
|
|
@@ -1542,7 +1545,34 @@ export declare const setEnvTaskArgs: {
|
|
|
1542
1545
|
yes?: boolean | undefined;
|
|
1543
1546
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1544
1547
|
env?: string | undefined;
|
|
1545
|
-
|
|
1548
|
+
} & {
|
|
1549
|
+
[k: string]: unknown;
|
|
1550
|
+
} & {
|
|
1551
|
+
readonly __type: any;
|
|
1552
|
+
}>;
|
|
1553
|
+
create: (input: z.objectOutputType<{
|
|
1554
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
1555
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
1556
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
1557
|
+
readonly __type: any;
|
|
1558
|
+
}, any>, string & {
|
|
1559
|
+
readonly __type: any;
|
|
1560
|
+
}, any>;
|
|
1561
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
1562
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1563
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1564
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1565
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1566
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1567
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1568
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1569
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1570
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
1571
|
+
env: z.ZodOptional<z.ZodString>;
|
|
1572
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
1573
|
+
setVersion: z.ZodString;
|
|
1574
|
+
pluginName: z.ZodString;
|
|
1575
|
+
}, z.ZodTypeAny, "passthrough">) => {
|
|
1546
1576
|
_: (string | number)[];
|
|
1547
1577
|
projectDir: string & {
|
|
1548
1578
|
readonly __type: any;
|
|
@@ -1554,11 +1584,7 @@ export declare const setEnvTaskArgs: {
|
|
|
1554
1584
|
fromVsCode: boolean;
|
|
1555
1585
|
setBuild: string;
|
|
1556
1586
|
setVersion: string;
|
|
1557
|
-
|
|
1558
|
-
} & {
|
|
1559
|
-
readonly __type: any;
|
|
1560
|
-
}>;
|
|
1561
|
-
of: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1587
|
+
pluginName: string;
|
|
1562
1588
|
quickstart?: string | undefined;
|
|
1563
1589
|
version?: boolean | undefined;
|
|
1564
1590
|
build?: boolean | undefined;
|
|
@@ -1566,7 +1592,12 @@ export declare const setEnvTaskArgs: {
|
|
|
1566
1592
|
yes?: boolean | undefined;
|
|
1567
1593
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1568
1594
|
env?: string | undefined;
|
|
1569
|
-
|
|
1595
|
+
} & {
|
|
1596
|
+
[k: string]: unknown;
|
|
1597
|
+
} & {
|
|
1598
|
+
readonly __type: any;
|
|
1599
|
+
};
|
|
1600
|
+
from: (input: unknown) => {
|
|
1570
1601
|
_: (string | number)[];
|
|
1571
1602
|
projectDir: string & {
|
|
1572
1603
|
readonly __type: any;
|
|
@@ -1578,11 +1609,7 @@ export declare const setEnvTaskArgs: {
|
|
|
1578
1609
|
fromVsCode: boolean;
|
|
1579
1610
|
setBuild: string;
|
|
1580
1611
|
setVersion: string;
|
|
1581
|
-
|
|
1582
|
-
} & {
|
|
1583
|
-
readonly __type: any;
|
|
1584
|
-
}>;
|
|
1585
|
-
create: (input: {
|
|
1612
|
+
pluginName: string;
|
|
1586
1613
|
quickstart?: string | undefined;
|
|
1587
1614
|
version?: boolean | undefined;
|
|
1588
1615
|
build?: boolean | undefined;
|
|
@@ -1590,7 +1617,18 @@ export declare const setEnvTaskArgs: {
|
|
|
1590
1617
|
yes?: boolean | undefined;
|
|
1591
1618
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1592
1619
|
env?: string | undefined;
|
|
1593
|
-
|
|
1620
|
+
} & {
|
|
1621
|
+
[k: string]: unknown;
|
|
1622
|
+
} & {
|
|
1623
|
+
readonly __type: any;
|
|
1624
|
+
};
|
|
1625
|
+
};
|
|
1626
|
+
};
|
|
1627
|
+
export declare const setEnvTaskArgs: {
|
|
1628
|
+
schemas: {
|
|
1629
|
+
rawSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
1630
|
+
internalSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
1631
|
+
schema: z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
1594
1632
|
_: (string | number)[];
|
|
1595
1633
|
projectDir: string & {
|
|
1596
1634
|
readonly __type: any;
|
|
@@ -1603,7 +1641,6 @@ export declare const setEnvTaskArgs: {
|
|
|
1603
1641
|
setBuild: string;
|
|
1604
1642
|
setVersion: string;
|
|
1605
1643
|
defaultEnvironment: string;
|
|
1606
|
-
}) => {
|
|
1607
1644
|
quickstart?: string | undefined;
|
|
1608
1645
|
version?: boolean | undefined;
|
|
1609
1646
|
build?: boolean | undefined;
|
|
@@ -1612,6 +1649,37 @@ export declare const setEnvTaskArgs: {
|
|
|
1612
1649
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1613
1650
|
env?: string | undefined;
|
|
1614
1651
|
pluginName?: string | undefined;
|
|
1652
|
+
} & {
|
|
1653
|
+
[k: string]: unknown;
|
|
1654
|
+
} & {
|
|
1655
|
+
readonly __type: any;
|
|
1656
|
+
}, any>;
|
|
1657
|
+
};
|
|
1658
|
+
factory: {
|
|
1659
|
+
make: (input: z.objectOutputType<{
|
|
1660
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
1661
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
1662
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
1663
|
+
readonly __type: any;
|
|
1664
|
+
}, any>, string & {
|
|
1665
|
+
readonly __type: any;
|
|
1666
|
+
}, any>;
|
|
1667
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
1668
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1669
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1670
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1671
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1672
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1673
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1674
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1675
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1676
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
1677
|
+
env: z.ZodOptional<z.ZodString>;
|
|
1678
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
1679
|
+
setVersion: z.ZodString;
|
|
1680
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
1681
|
+
defaultEnvironment: z.ZodString;
|
|
1682
|
+
}, z.ZodTypeAny, "passthrough">) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1615
1683
|
_: (string | number)[];
|
|
1616
1684
|
projectDir: string & {
|
|
1617
1685
|
readonly __type: any;
|
|
@@ -1624,10 +1692,6 @@ export declare const setEnvTaskArgs: {
|
|
|
1624
1692
|
setBuild: string;
|
|
1625
1693
|
setVersion: string;
|
|
1626
1694
|
defaultEnvironment: string;
|
|
1627
|
-
} & {
|
|
1628
|
-
readonly __type: any;
|
|
1629
|
-
};
|
|
1630
|
-
from: (input: unknown) => {
|
|
1631
1695
|
quickstart?: string | undefined;
|
|
1632
1696
|
version?: boolean | undefined;
|
|
1633
1697
|
build?: boolean | undefined;
|
|
@@ -1636,6 +1700,12 @@ export declare const setEnvTaskArgs: {
|
|
|
1636
1700
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1637
1701
|
env?: string | undefined;
|
|
1638
1702
|
pluginName?: string | undefined;
|
|
1703
|
+
} & {
|
|
1704
|
+
[k: string]: unknown;
|
|
1705
|
+
} & {
|
|
1706
|
+
readonly __type: any;
|
|
1707
|
+
}>;
|
|
1708
|
+
of: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1639
1709
|
_: (string | number)[];
|
|
1640
1710
|
projectDir: string & {
|
|
1641
1711
|
readonly __type: any;
|
|
@@ -1648,16 +1718,6 @@ export declare const setEnvTaskArgs: {
|
|
|
1648
1718
|
setBuild: string;
|
|
1649
1719
|
setVersion: string;
|
|
1650
1720
|
defaultEnvironment: string;
|
|
1651
|
-
} & {
|
|
1652
|
-
readonly __type: any;
|
|
1653
|
-
};
|
|
1654
|
-
};
|
|
1655
|
-
};
|
|
1656
|
-
export declare const createTaskArgs: {
|
|
1657
|
-
schemas: {
|
|
1658
|
-
rawSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
1659
|
-
internalSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
1660
|
-
schema: z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
1661
1721
|
quickstart?: string | undefined;
|
|
1662
1722
|
version?: boolean | undefined;
|
|
1663
1723
|
build?: boolean | undefined;
|
|
@@ -1666,6 +1726,35 @@ export declare const createTaskArgs: {
|
|
|
1666
1726
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1667
1727
|
env?: string | undefined;
|
|
1668
1728
|
pluginName?: string | undefined;
|
|
1729
|
+
} & {
|
|
1730
|
+
[k: string]: unknown;
|
|
1731
|
+
} & {
|
|
1732
|
+
readonly __type: any;
|
|
1733
|
+
}>;
|
|
1734
|
+
create: (input: z.objectOutputType<{
|
|
1735
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
1736
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
1737
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
1738
|
+
readonly __type: any;
|
|
1739
|
+
}, any>, string & {
|
|
1740
|
+
readonly __type: any;
|
|
1741
|
+
}, any>;
|
|
1742
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
1743
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1744
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1745
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1746
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1747
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1748
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1749
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1750
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1751
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
1752
|
+
env: z.ZodOptional<z.ZodString>;
|
|
1753
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
1754
|
+
setVersion: z.ZodString;
|
|
1755
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
1756
|
+
defaultEnvironment: z.ZodString;
|
|
1757
|
+
}, z.ZodTypeAny, "passthrough">) => {
|
|
1669
1758
|
_: (string | number)[];
|
|
1670
1759
|
projectDir: string & {
|
|
1671
1760
|
readonly __type: any;
|
|
@@ -1677,13 +1766,7 @@ export declare const createTaskArgs: {
|
|
|
1677
1766
|
fromVsCode: boolean;
|
|
1678
1767
|
setBuild: string;
|
|
1679
1768
|
setVersion: string;
|
|
1680
|
-
|
|
1681
|
-
} & {
|
|
1682
|
-
readonly __type: any;
|
|
1683
|
-
}, any>;
|
|
1684
|
-
};
|
|
1685
|
-
factory: {
|
|
1686
|
-
make: (input: {
|
|
1769
|
+
defaultEnvironment: string;
|
|
1687
1770
|
quickstart?: string | undefined;
|
|
1688
1771
|
version?: boolean | undefined;
|
|
1689
1772
|
build?: boolean | undefined;
|
|
@@ -1692,6 +1775,12 @@ export declare const createTaskArgs: {
|
|
|
1692
1775
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1693
1776
|
env?: string | undefined;
|
|
1694
1777
|
pluginName?: string | undefined;
|
|
1778
|
+
} & {
|
|
1779
|
+
[k: string]: unknown;
|
|
1780
|
+
} & {
|
|
1781
|
+
readonly __type: any;
|
|
1782
|
+
};
|
|
1783
|
+
from: (input: unknown) => {
|
|
1695
1784
|
_: (string | number)[];
|
|
1696
1785
|
projectDir: string & {
|
|
1697
1786
|
readonly __type: any;
|
|
@@ -1703,8 +1792,7 @@ export declare const createTaskArgs: {
|
|
|
1703
1792
|
fromVsCode: boolean;
|
|
1704
1793
|
setBuild: string;
|
|
1705
1794
|
setVersion: string;
|
|
1706
|
-
|
|
1707
|
-
}) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1795
|
+
defaultEnvironment: string;
|
|
1708
1796
|
quickstart?: string | undefined;
|
|
1709
1797
|
version?: boolean | undefined;
|
|
1710
1798
|
build?: boolean | undefined;
|
|
@@ -1713,6 +1801,18 @@ export declare const createTaskArgs: {
|
|
|
1713
1801
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1714
1802
|
env?: string | undefined;
|
|
1715
1803
|
pluginName?: string | undefined;
|
|
1804
|
+
} & {
|
|
1805
|
+
[k: string]: unknown;
|
|
1806
|
+
} & {
|
|
1807
|
+
readonly __type: any;
|
|
1808
|
+
};
|
|
1809
|
+
};
|
|
1810
|
+
};
|
|
1811
|
+
export declare const createTaskArgs: {
|
|
1812
|
+
schemas: {
|
|
1813
|
+
rawSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
1814
|
+
internalSchema: z.ZodType<any, z.ZodTypeDef, any>;
|
|
1815
|
+
schema: z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, {
|
|
1716
1816
|
_: (string | number)[];
|
|
1717
1817
|
projectDir: string & {
|
|
1718
1818
|
readonly __type: any;
|
|
@@ -1725,10 +1825,6 @@ export declare const createTaskArgs: {
|
|
|
1725
1825
|
setBuild: string;
|
|
1726
1826
|
setVersion: string;
|
|
1727
1827
|
template: string;
|
|
1728
|
-
} & {
|
|
1729
|
-
readonly __type: any;
|
|
1730
|
-
}>;
|
|
1731
|
-
of: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1732
1828
|
quickstart?: string | undefined;
|
|
1733
1829
|
version?: boolean | undefined;
|
|
1734
1830
|
build?: boolean | undefined;
|
|
@@ -1737,6 +1833,37 @@ export declare const createTaskArgs: {
|
|
|
1737
1833
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1738
1834
|
env?: string | undefined;
|
|
1739
1835
|
pluginName?: string | undefined;
|
|
1836
|
+
} & {
|
|
1837
|
+
[k: string]: unknown;
|
|
1838
|
+
} & {
|
|
1839
|
+
readonly __type: any;
|
|
1840
|
+
}, any>;
|
|
1841
|
+
};
|
|
1842
|
+
factory: {
|
|
1843
|
+
make: (input: z.objectOutputType<{
|
|
1844
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
1845
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
1846
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
1847
|
+
readonly __type: any;
|
|
1848
|
+
}, any>, string & {
|
|
1849
|
+
readonly __type: any;
|
|
1850
|
+
}, any>;
|
|
1851
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
1852
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1853
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1854
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1855
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1856
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1857
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1858
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1859
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1860
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
1861
|
+
env: z.ZodOptional<z.ZodString>;
|
|
1862
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
1863
|
+
setVersion: z.ZodString;
|
|
1864
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
1865
|
+
template: z.ZodString;
|
|
1866
|
+
}, z.ZodTypeAny, "passthrough">) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1740
1867
|
_: (string | number)[];
|
|
1741
1868
|
projectDir: string & {
|
|
1742
1869
|
readonly __type: any;
|
|
@@ -1749,10 +1876,6 @@ export declare const createTaskArgs: {
|
|
|
1749
1876
|
setBuild: string;
|
|
1750
1877
|
setVersion: string;
|
|
1751
1878
|
template: string;
|
|
1752
|
-
} & {
|
|
1753
|
-
readonly __type: any;
|
|
1754
|
-
}>;
|
|
1755
|
-
create: (input: {
|
|
1756
1879
|
quickstart?: string | undefined;
|
|
1757
1880
|
version?: boolean | undefined;
|
|
1758
1881
|
build?: boolean | undefined;
|
|
@@ -1761,6 +1884,12 @@ export declare const createTaskArgs: {
|
|
|
1761
1884
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1762
1885
|
env?: string | undefined;
|
|
1763
1886
|
pluginName?: string | undefined;
|
|
1887
|
+
} & {
|
|
1888
|
+
[k: string]: unknown;
|
|
1889
|
+
} & {
|
|
1890
|
+
readonly __type: any;
|
|
1891
|
+
}>;
|
|
1892
|
+
of: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1764
1893
|
_: (string | number)[];
|
|
1765
1894
|
projectDir: string & {
|
|
1766
1895
|
readonly __type: any;
|
|
@@ -1773,7 +1902,6 @@ export declare const createTaskArgs: {
|
|
|
1773
1902
|
setBuild: string;
|
|
1774
1903
|
setVersion: string;
|
|
1775
1904
|
template: string;
|
|
1776
|
-
}) => {
|
|
1777
1905
|
quickstart?: string | undefined;
|
|
1778
1906
|
version?: boolean | undefined;
|
|
1779
1907
|
build?: boolean | undefined;
|
|
@@ -1782,6 +1910,35 @@ export declare const createTaskArgs: {
|
|
|
1782
1910
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1783
1911
|
env?: string | undefined;
|
|
1784
1912
|
pluginName?: string | undefined;
|
|
1913
|
+
} & {
|
|
1914
|
+
[k: string]: unknown;
|
|
1915
|
+
} & {
|
|
1916
|
+
readonly __type: any;
|
|
1917
|
+
}>;
|
|
1918
|
+
create: (input: z.objectOutputType<{
|
|
1919
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
1920
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
1921
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
1922
|
+
readonly __type: any;
|
|
1923
|
+
}, any>, string & {
|
|
1924
|
+
readonly __type: any;
|
|
1925
|
+
}, any>;
|
|
1926
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
1927
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1928
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1929
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1930
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
1931
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1932
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1933
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1934
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
1935
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
1936
|
+
env: z.ZodOptional<z.ZodString>;
|
|
1937
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
1938
|
+
setVersion: z.ZodString;
|
|
1939
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
1940
|
+
template: z.ZodString;
|
|
1941
|
+
}, z.ZodTypeAny, "passthrough">) => {
|
|
1785
1942
|
_: (string | number)[];
|
|
1786
1943
|
projectDir: string & {
|
|
1787
1944
|
readonly __type: any;
|
|
@@ -1794,10 +1951,6 @@ export declare const createTaskArgs: {
|
|
|
1794
1951
|
setBuild: string;
|
|
1795
1952
|
setVersion: string;
|
|
1796
1953
|
template: string;
|
|
1797
|
-
} & {
|
|
1798
|
-
readonly __type: any;
|
|
1799
|
-
};
|
|
1800
|
-
from: (input: unknown) => {
|
|
1801
1954
|
quickstart?: string | undefined;
|
|
1802
1955
|
version?: boolean | undefined;
|
|
1803
1956
|
build?: boolean | undefined;
|
|
@@ -1806,6 +1959,12 @@ export declare const createTaskArgs: {
|
|
|
1806
1959
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1807
1960
|
env?: string | undefined;
|
|
1808
1961
|
pluginName?: string | undefined;
|
|
1962
|
+
} & {
|
|
1963
|
+
[k: string]: unknown;
|
|
1964
|
+
} & {
|
|
1965
|
+
readonly __type: any;
|
|
1966
|
+
};
|
|
1967
|
+
from: (input: unknown) => {
|
|
1809
1968
|
_: (string | number)[];
|
|
1810
1969
|
projectDir: string & {
|
|
1811
1970
|
readonly __type: any;
|
|
@@ -1818,6 +1977,16 @@ export declare const createTaskArgs: {
|
|
|
1818
1977
|
setBuild: string;
|
|
1819
1978
|
setVersion: string;
|
|
1820
1979
|
template: string;
|
|
1980
|
+
quickstart?: string | undefined;
|
|
1981
|
+
version?: boolean | undefined;
|
|
1982
|
+
build?: boolean | undefined;
|
|
1983
|
+
help?: boolean | undefined;
|
|
1984
|
+
yes?: boolean | undefined;
|
|
1985
|
+
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1986
|
+
env?: string | undefined;
|
|
1987
|
+
pluginName?: string | undefined;
|
|
1988
|
+
} & {
|
|
1989
|
+
[k: string]: unknown;
|
|
1821
1990
|
} & {
|
|
1822
1991
|
readonly __type: any;
|
|
1823
1992
|
};
|
|
@@ -1827,127 +1996,9 @@ export type ScaffoldTaskArgs = z.infer<typeof scaffoldTaskArgs.schemas.schema>;
|
|
|
1827
1996
|
export type ProvisionTaskArgs = z.infer<typeof provisionTaskArgs.schemas.schema>;
|
|
1828
1997
|
export type InstallTaskArgs = z.infer<typeof installTaskArgs.schemas.schema>;
|
|
1829
1998
|
export type UninstallTaskArgs = z.infer<typeof uninstallTaskArgs.schemas.schema>;
|
|
1830
|
-
export type SetEnvTaskArgs = z.infer<typeof setEnvTaskArgs.schemas.schema>;
|
|
1831
|
-
export type CreateTaskArgs = z.infer<typeof createTaskArgs.schemas.schema>;
|
|
1832
|
-
export declare const createScaffoldTaskArgs: (input: unknown) => {
|
|
1833
|
-
quickstart?: string | undefined;
|
|
1834
|
-
version?: boolean | undefined;
|
|
1835
|
-
build?: boolean | undefined;
|
|
1836
|
-
help?: boolean | undefined;
|
|
1837
|
-
yes?: boolean | undefined;
|
|
1838
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1839
|
-
env?: string | undefined;
|
|
1840
|
-
pluginName?: string | undefined;
|
|
1841
|
-
branch?: string | undefined;
|
|
1842
|
-
_: (string | number)[];
|
|
1843
|
-
projectDir: string & {
|
|
1844
|
-
readonly __type: any;
|
|
1845
|
-
};
|
|
1846
|
-
maxConcurrency: number;
|
|
1847
|
-
debug: boolean;
|
|
1848
|
-
disableState: boolean;
|
|
1849
|
-
logPluginRequests: boolean;
|
|
1850
|
-
fromVsCode: boolean;
|
|
1851
|
-
setBuild: string;
|
|
1852
|
-
setVersion: string;
|
|
1853
|
-
scaffoldProjectDir: string & {
|
|
1854
|
-
readonly __type: any;
|
|
1855
|
-
};
|
|
1856
|
-
scaffoldUrl: Url.Url;
|
|
1857
|
-
} & {
|
|
1858
|
-
readonly __type: any;
|
|
1859
|
-
};
|
|
1860
|
-
export declare const makeScaffoldTaskArgs: (input: {
|
|
1861
|
-
quickstart?: string | undefined;
|
|
1862
|
-
version?: boolean | undefined;
|
|
1863
|
-
build?: boolean | undefined;
|
|
1864
|
-
help?: boolean | undefined;
|
|
1865
|
-
yes?: boolean | undefined;
|
|
1866
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1867
|
-
env?: string | undefined;
|
|
1868
|
-
pluginName?: string | undefined;
|
|
1869
|
-
branch?: string | undefined;
|
|
1870
|
-
_: (string | number)[];
|
|
1871
|
-
projectDir: string & {
|
|
1872
|
-
readonly __type: any;
|
|
1873
|
-
};
|
|
1874
|
-
maxConcurrency: number;
|
|
1875
|
-
debug: boolean;
|
|
1876
|
-
disableState: boolean;
|
|
1877
|
-
logPluginRequests: boolean;
|
|
1878
|
-
fromVsCode: boolean;
|
|
1879
|
-
setBuild: string;
|
|
1880
|
-
setVersion: string;
|
|
1881
|
-
scaffoldProjectDir: string & {
|
|
1882
|
-
readonly __type: any;
|
|
1883
|
-
};
|
|
1884
|
-
scaffoldUrl: Url.Url;
|
|
1885
|
-
}) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1886
|
-
quickstart?: string | undefined;
|
|
1887
|
-
version?: boolean | undefined;
|
|
1888
|
-
build?: boolean | undefined;
|
|
1889
|
-
help?: boolean | undefined;
|
|
1890
|
-
yes?: boolean | undefined;
|
|
1891
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1892
|
-
env?: string | undefined;
|
|
1893
|
-
pluginName?: string | undefined;
|
|
1894
|
-
branch?: string | undefined;
|
|
1895
|
-
_: (string | number)[];
|
|
1896
|
-
projectDir: string & {
|
|
1897
|
-
readonly __type: any;
|
|
1898
|
-
};
|
|
1899
|
-
maxConcurrency: number;
|
|
1900
|
-
debug: boolean;
|
|
1901
|
-
disableState: boolean;
|
|
1902
|
-
logPluginRequests: boolean;
|
|
1903
|
-
fromVsCode: boolean;
|
|
1904
|
-
setBuild: string;
|
|
1905
|
-
setVersion: string;
|
|
1906
|
-
scaffoldProjectDir: string & {
|
|
1907
|
-
readonly __type: any;
|
|
1908
|
-
};
|
|
1909
|
-
scaffoldUrl: Url.Url;
|
|
1910
|
-
} & {
|
|
1911
|
-
readonly __type: any;
|
|
1912
|
-
}>;
|
|
1913
|
-
export declare const ofScaffoldTaskArgs: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1914
|
-
quickstart?: string | undefined;
|
|
1915
|
-
version?: boolean | undefined;
|
|
1916
|
-
build?: boolean | undefined;
|
|
1917
|
-
help?: boolean | undefined;
|
|
1918
|
-
yes?: boolean | undefined;
|
|
1919
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1920
|
-
env?: string | undefined;
|
|
1921
|
-
pluginName?: string | undefined;
|
|
1922
|
-
branch?: string | undefined;
|
|
1923
|
-
_: (string | number)[];
|
|
1924
|
-
projectDir: string & {
|
|
1925
|
-
readonly __type: any;
|
|
1926
|
-
};
|
|
1927
|
-
maxConcurrency: number;
|
|
1928
|
-
debug: boolean;
|
|
1929
|
-
disableState: boolean;
|
|
1930
|
-
logPluginRequests: boolean;
|
|
1931
|
-
fromVsCode: boolean;
|
|
1932
|
-
setBuild: string;
|
|
1933
|
-
setVersion: string;
|
|
1934
|
-
scaffoldProjectDir: string & {
|
|
1935
|
-
readonly __type: any;
|
|
1936
|
-
};
|
|
1937
|
-
scaffoldUrl: Url.Url;
|
|
1938
|
-
} & {
|
|
1939
|
-
readonly __type: any;
|
|
1940
|
-
}>;
|
|
1941
|
-
export declare const createProvisionTaskArgs: (input: {
|
|
1942
|
-
quickstart?: string | undefined;
|
|
1943
|
-
version?: boolean | undefined;
|
|
1944
|
-
build?: boolean | undefined;
|
|
1945
|
-
help?: boolean | undefined;
|
|
1946
|
-
yes?: boolean | undefined;
|
|
1947
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1948
|
-
env?: string | undefined;
|
|
1949
|
-
name?: string | undefined;
|
|
1950
|
-
pluginName?: string | undefined;
|
|
1999
|
+
export type SetEnvTaskArgs = z.infer<typeof setEnvTaskArgs.schemas.schema>;
|
|
2000
|
+
export type CreateTaskArgs = z.infer<typeof createTaskArgs.schemas.schema>;
|
|
2001
|
+
export declare const createScaffoldTaskArgs: (input: unknown) => {
|
|
1951
2002
|
_: (string | number)[];
|
|
1952
2003
|
projectDir: string & {
|
|
1953
2004
|
readonly __type: any;
|
|
@@ -1959,8 +2010,14 @@ export declare const createProvisionTaskArgs: (input: {
|
|
|
1959
2010
|
fromVsCode: boolean;
|
|
1960
2011
|
setBuild: string;
|
|
1961
2012
|
setVersion: string;
|
|
1962
|
-
|
|
1963
|
-
|
|
2013
|
+
scaffoldProjectDir: string & {
|
|
2014
|
+
readonly __type: any;
|
|
2015
|
+
};
|
|
2016
|
+
scaffoldUrl: {
|
|
2017
|
+
__type: Url.Url;
|
|
2018
|
+
} & {
|
|
2019
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2020
|
+
} & string;
|
|
1964
2021
|
quickstart?: string | undefined;
|
|
1965
2022
|
version?: boolean | undefined;
|
|
1966
2023
|
build?: boolean | undefined;
|
|
@@ -1968,33 +2025,41 @@ export declare const createProvisionTaskArgs: (input: {
|
|
|
1968
2025
|
yes?: boolean | undefined;
|
|
1969
2026
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
1970
2027
|
env?: string | undefined;
|
|
1971
|
-
name?: string | undefined;
|
|
1972
2028
|
pluginName?: string | undefined;
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
};
|
|
1977
|
-
maxConcurrency: number;
|
|
1978
|
-
debug: boolean;
|
|
1979
|
-
disableState: boolean;
|
|
1980
|
-
logPluginRequests: boolean;
|
|
1981
|
-
fromVsCode: boolean;
|
|
1982
|
-
setBuild: string;
|
|
1983
|
-
setVersion: string;
|
|
1984
|
-
operation: string;
|
|
2029
|
+
branch?: string | undefined;
|
|
2030
|
+
} & {
|
|
2031
|
+
[k: string]: unknown;
|
|
1985
2032
|
} & {
|
|
1986
2033
|
readonly __type: any;
|
|
1987
2034
|
};
|
|
1988
|
-
export declare const
|
|
1989
|
-
quickstart
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
2035
|
+
export declare const makeScaffoldTaskArgs: (input: z.objectOutputType<{
|
|
2036
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
2037
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
2038
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
2039
|
+
readonly __type: any;
|
|
2040
|
+
}, any>, string & {
|
|
2041
|
+
readonly __type: any;
|
|
2042
|
+
}, any>;
|
|
2043
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
2044
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2045
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2046
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2047
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2048
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2049
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2050
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2051
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2052
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
2053
|
+
env: z.ZodOptional<z.ZodString>;
|
|
2054
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
2055
|
+
setVersion: z.ZodString;
|
|
2056
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
2057
|
+
scaffoldProjectDir: z.ZodEffects<z.ZodString, string & {
|
|
2058
|
+
readonly __type: any;
|
|
2059
|
+
}, string>;
|
|
2060
|
+
scaffoldUrl: z.ZodEffects<z.ZodString, Url.Url, string>;
|
|
2061
|
+
branch: z.ZodOptional<z.ZodString>;
|
|
2062
|
+
}, z.ZodTypeAny, "passthrough">) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
1998
2063
|
_: (string | number)[];
|
|
1999
2064
|
projectDir: string & {
|
|
2000
2065
|
readonly __type: any;
|
|
@@ -2006,8 +2071,14 @@ export declare const makeProvisionTaskArgs: (input: {
|
|
|
2006
2071
|
fromVsCode: boolean;
|
|
2007
2072
|
setBuild: string;
|
|
2008
2073
|
setVersion: string;
|
|
2009
|
-
|
|
2010
|
-
|
|
2074
|
+
scaffoldProjectDir: string & {
|
|
2075
|
+
readonly __type: any;
|
|
2076
|
+
};
|
|
2077
|
+
scaffoldUrl: {
|
|
2078
|
+
__type: Url.Url;
|
|
2079
|
+
} & {
|
|
2080
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2081
|
+
} & string;
|
|
2011
2082
|
quickstart?: string | undefined;
|
|
2012
2083
|
version?: boolean | undefined;
|
|
2013
2084
|
build?: boolean | undefined;
|
|
@@ -2015,8 +2086,14 @@ export declare const makeProvisionTaskArgs: (input: {
|
|
|
2015
2086
|
yes?: boolean | undefined;
|
|
2016
2087
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2017
2088
|
env?: string | undefined;
|
|
2018
|
-
name?: string | undefined;
|
|
2019
2089
|
pluginName?: string | undefined;
|
|
2090
|
+
branch?: string | undefined;
|
|
2091
|
+
} & {
|
|
2092
|
+
[k: string]: unknown;
|
|
2093
|
+
} & {
|
|
2094
|
+
readonly __type: any;
|
|
2095
|
+
}>;
|
|
2096
|
+
export declare const ofScaffoldTaskArgs: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2020
2097
|
_: (string | number)[];
|
|
2021
2098
|
projectDir: string & {
|
|
2022
2099
|
readonly __type: any;
|
|
@@ -2028,11 +2105,14 @@ export declare const makeProvisionTaskArgs: (input: {
|
|
|
2028
2105
|
fromVsCode: boolean;
|
|
2029
2106
|
setBuild: string;
|
|
2030
2107
|
setVersion: string;
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2108
|
+
scaffoldProjectDir: string & {
|
|
2109
|
+
readonly __type: any;
|
|
2110
|
+
};
|
|
2111
|
+
scaffoldUrl: {
|
|
2112
|
+
__type: Url.Url;
|
|
2113
|
+
} & {
|
|
2114
|
+
__type: NonEmptyString.NonEmptyString;
|
|
2115
|
+
} & string;
|
|
2036
2116
|
quickstart?: string | undefined;
|
|
2037
2117
|
version?: boolean | undefined;
|
|
2038
2118
|
build?: boolean | undefined;
|
|
@@ -2040,31 +2120,38 @@ export declare const ofProvisionTaskArgs: (input: unknown) => import("fluture").
|
|
|
2040
2120
|
yes?: boolean | undefined;
|
|
2041
2121
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2042
2122
|
env?: string | undefined;
|
|
2043
|
-
name?: string | undefined;
|
|
2044
2123
|
pluginName?: string | undefined;
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
};
|
|
2049
|
-
maxConcurrency: number;
|
|
2050
|
-
debug: boolean;
|
|
2051
|
-
disableState: boolean;
|
|
2052
|
-
logPluginRequests: boolean;
|
|
2053
|
-
fromVsCode: boolean;
|
|
2054
|
-
setBuild: string;
|
|
2055
|
-
setVersion: string;
|
|
2056
|
-
operation: string;
|
|
2124
|
+
branch?: string | undefined;
|
|
2125
|
+
} & {
|
|
2126
|
+
[k: string]: unknown;
|
|
2057
2127
|
} & {
|
|
2058
2128
|
readonly __type: any;
|
|
2059
2129
|
}>;
|
|
2060
|
-
export declare const
|
|
2061
|
-
quickstart
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2130
|
+
export declare const createProvisionTaskArgs: (input: z.objectOutputType<{
|
|
2131
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
2132
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
2133
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
2134
|
+
readonly __type: any;
|
|
2135
|
+
}, any>, string & {
|
|
2136
|
+
readonly __type: any;
|
|
2137
|
+
}, any>;
|
|
2138
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
2139
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2140
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2141
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2142
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2143
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2144
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2145
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2146
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2147
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
2148
|
+
env: z.ZodOptional<z.ZodString>;
|
|
2149
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
2150
|
+
setVersion: z.ZodString;
|
|
2151
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
2152
|
+
operation: z.ZodString;
|
|
2153
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2154
|
+
}, z.ZodTypeAny, "passthrough">) => {
|
|
2068
2155
|
_: (string | number)[];
|
|
2069
2156
|
projectDir: string & {
|
|
2070
2157
|
readonly __type: any;
|
|
@@ -2076,8 +2163,7 @@ export declare const createInstallTaskArgs: (input: {
|
|
|
2076
2163
|
fromVsCode: boolean;
|
|
2077
2164
|
setBuild: string;
|
|
2078
2165
|
setVersion: string;
|
|
2079
|
-
|
|
2080
|
-
}) => {
|
|
2166
|
+
operation: string;
|
|
2081
2167
|
quickstart?: string | undefined;
|
|
2082
2168
|
version?: boolean | undefined;
|
|
2083
2169
|
build?: boolean | undefined;
|
|
@@ -2085,49 +2171,38 @@ export declare const createInstallTaskArgs: (input: {
|
|
|
2085
2171
|
yes?: boolean | undefined;
|
|
2086
2172
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2087
2173
|
env?: string | undefined;
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
maxConcurrency: number;
|
|
2093
|
-
debug: boolean;
|
|
2094
|
-
disableState: boolean;
|
|
2095
|
-
logPluginRequests: boolean;
|
|
2096
|
-
fromVsCode: boolean;
|
|
2097
|
-
setBuild: string;
|
|
2098
|
-
setVersion: string;
|
|
2099
|
-
pluginName: string;
|
|
2174
|
+
pluginName?: string | undefined;
|
|
2175
|
+
name?: string | undefined;
|
|
2176
|
+
} & {
|
|
2177
|
+
[k: string]: unknown;
|
|
2100
2178
|
} & {
|
|
2101
2179
|
readonly __type: any;
|
|
2102
2180
|
};
|
|
2103
|
-
export declare const
|
|
2104
|
-
quickstart
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
help?: boolean | undefined;
|
|
2108
|
-
yes?: boolean | undefined;
|
|
2109
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2110
|
-
env?: string | undefined;
|
|
2111
|
-
_: (string | number)[];
|
|
2112
|
-
projectDir: string & {
|
|
2181
|
+
export declare const makeProvisionTaskArgs: (input: z.objectOutputType<{
|
|
2182
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
2183
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
2184
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
2113
2185
|
readonly __type: any;
|
|
2114
|
-
}
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2186
|
+
}, any>, string & {
|
|
2187
|
+
readonly __type: any;
|
|
2188
|
+
}, any>;
|
|
2189
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
2190
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2191
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2192
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2193
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2194
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2195
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2196
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2197
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2198
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
2199
|
+
env: z.ZodOptional<z.ZodString>;
|
|
2200
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
2201
|
+
setVersion: z.ZodString;
|
|
2202
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
2203
|
+
operation: z.ZodString;
|
|
2204
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2205
|
+
}, z.ZodTypeAny, "passthrough">) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2131
2206
|
_: (string | number)[];
|
|
2132
2207
|
projectDir: string & {
|
|
2133
2208
|
readonly __type: any;
|
|
@@ -2139,11 +2214,7 @@ export declare const makeInstallTaskArgs: (input: {
|
|
|
2139
2214
|
fromVsCode: boolean;
|
|
2140
2215
|
setBuild: string;
|
|
2141
2216
|
setVersion: string;
|
|
2142
|
-
|
|
2143
|
-
} & {
|
|
2144
|
-
readonly __type: any;
|
|
2145
|
-
}>;
|
|
2146
|
-
export declare const ofInstallTaskArgs: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2217
|
+
operation: string;
|
|
2147
2218
|
quickstart?: string | undefined;
|
|
2148
2219
|
version?: boolean | undefined;
|
|
2149
2220
|
build?: boolean | undefined;
|
|
@@ -2151,29 +2222,14 @@ export declare const ofInstallTaskArgs: (input: unknown) => import("fluture").Fu
|
|
|
2151
2222
|
yes?: boolean | undefined;
|
|
2152
2223
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2153
2224
|
env?: string | undefined;
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
maxConcurrency: number;
|
|
2159
|
-
debug: boolean;
|
|
2160
|
-
disableState: boolean;
|
|
2161
|
-
logPluginRequests: boolean;
|
|
2162
|
-
fromVsCode: boolean;
|
|
2163
|
-
setBuild: string;
|
|
2164
|
-
setVersion: string;
|
|
2165
|
-
pluginName: string;
|
|
2225
|
+
pluginName?: string | undefined;
|
|
2226
|
+
name?: string | undefined;
|
|
2227
|
+
} & {
|
|
2228
|
+
[k: string]: unknown;
|
|
2166
2229
|
} & {
|
|
2167
2230
|
readonly __type: any;
|
|
2168
2231
|
}>;
|
|
2169
|
-
export declare const
|
|
2170
|
-
quickstart?: string | undefined;
|
|
2171
|
-
version?: boolean | undefined;
|
|
2172
|
-
build?: boolean | undefined;
|
|
2173
|
-
help?: boolean | undefined;
|
|
2174
|
-
yes?: boolean | undefined;
|
|
2175
|
-
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2176
|
-
env?: string | undefined;
|
|
2232
|
+
export declare const ofProvisionTaskArgs: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2177
2233
|
_: (string | number)[];
|
|
2178
2234
|
projectDir: string & {
|
|
2179
2235
|
readonly __type: any;
|
|
@@ -2185,8 +2241,7 @@ export declare const createUninstallTaskArgs: (input: {
|
|
|
2185
2241
|
fromVsCode: boolean;
|
|
2186
2242
|
setBuild: string;
|
|
2187
2243
|
setVersion: string;
|
|
2188
|
-
|
|
2189
|
-
}) => {
|
|
2244
|
+
operation: string;
|
|
2190
2245
|
quickstart?: string | undefined;
|
|
2191
2246
|
version?: boolean | undefined;
|
|
2192
2247
|
build?: boolean | undefined;
|
|
@@ -2194,29 +2249,36 @@ export declare const createUninstallTaskArgs: (input: {
|
|
|
2194
2249
|
yes?: boolean | undefined;
|
|
2195
2250
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2196
2251
|
env?: string | undefined;
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
maxConcurrency: number;
|
|
2202
|
-
debug: boolean;
|
|
2203
|
-
disableState: boolean;
|
|
2204
|
-
logPluginRequests: boolean;
|
|
2205
|
-
fromVsCode: boolean;
|
|
2206
|
-
setBuild: string;
|
|
2207
|
-
setVersion: string;
|
|
2208
|
-
pluginName: string;
|
|
2252
|
+
pluginName?: string | undefined;
|
|
2253
|
+
name?: string | undefined;
|
|
2254
|
+
} & {
|
|
2255
|
+
[k: string]: unknown;
|
|
2209
2256
|
} & {
|
|
2210
2257
|
readonly __type: any;
|
|
2211
|
-
}
|
|
2212
|
-
export declare const
|
|
2213
|
-
quickstart
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2258
|
+
}>;
|
|
2259
|
+
export declare const createInstallTaskArgs: (input: z.objectOutputType<{
|
|
2260
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
2261
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
2262
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
2263
|
+
readonly __type: any;
|
|
2264
|
+
}, any>, string & {
|
|
2265
|
+
readonly __type: any;
|
|
2266
|
+
}, any>;
|
|
2267
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
2268
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2269
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2270
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2271
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2272
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2273
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2274
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2275
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2276
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
2277
|
+
env: z.ZodOptional<z.ZodString>;
|
|
2278
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
2279
|
+
setVersion: z.ZodString;
|
|
2280
|
+
pluginName: z.ZodString;
|
|
2281
|
+
}, z.ZodTypeAny, "passthrough">) => {
|
|
2220
2282
|
_: (string | number)[];
|
|
2221
2283
|
projectDir: string & {
|
|
2222
2284
|
readonly __type: any;
|
|
@@ -2229,7 +2291,6 @@ export declare const makeUninstallTaskArgs: (input: {
|
|
|
2229
2291
|
setBuild: string;
|
|
2230
2292
|
setVersion: string;
|
|
2231
2293
|
pluginName: string;
|
|
2232
|
-
}) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2233
2294
|
quickstart?: string | undefined;
|
|
2234
2295
|
version?: boolean | undefined;
|
|
2235
2296
|
build?: boolean | undefined;
|
|
@@ -2237,6 +2298,34 @@ export declare const makeUninstallTaskArgs: (input: {
|
|
|
2237
2298
|
yes?: boolean | undefined;
|
|
2238
2299
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2239
2300
|
env?: string | undefined;
|
|
2301
|
+
} & {
|
|
2302
|
+
[k: string]: unknown;
|
|
2303
|
+
} & {
|
|
2304
|
+
readonly __type: any;
|
|
2305
|
+
};
|
|
2306
|
+
export declare const makeInstallTaskArgs: (input: z.objectOutputType<{
|
|
2307
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
2308
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
2309
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
2310
|
+
readonly __type: any;
|
|
2311
|
+
}, any>, string & {
|
|
2312
|
+
readonly __type: any;
|
|
2313
|
+
}, any>;
|
|
2314
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
2315
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2316
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2317
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2318
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2319
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2320
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2321
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2322
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2323
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
2324
|
+
env: z.ZodOptional<z.ZodString>;
|
|
2325
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
2326
|
+
setVersion: z.ZodString;
|
|
2327
|
+
pluginName: z.ZodString;
|
|
2328
|
+
}, z.ZodTypeAny, "passthrough">) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2240
2329
|
_: (string | number)[];
|
|
2241
2330
|
projectDir: string & {
|
|
2242
2331
|
readonly __type: any;
|
|
@@ -2249,10 +2338,6 @@ export declare const makeUninstallTaskArgs: (input: {
|
|
|
2249
2338
|
setBuild: string;
|
|
2250
2339
|
setVersion: string;
|
|
2251
2340
|
pluginName: string;
|
|
2252
|
-
} & {
|
|
2253
|
-
readonly __type: any;
|
|
2254
|
-
}>;
|
|
2255
|
-
export declare const ofUninstallTaskArgs: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2256
2341
|
quickstart?: string | undefined;
|
|
2257
2342
|
version?: boolean | undefined;
|
|
2258
2343
|
build?: boolean | undefined;
|
|
@@ -2260,6 +2345,12 @@ export declare const ofUninstallTaskArgs: (input: unknown) => import("fluture").
|
|
|
2260
2345
|
yes?: boolean | undefined;
|
|
2261
2346
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2262
2347
|
env?: string | undefined;
|
|
2348
|
+
} & {
|
|
2349
|
+
[k: string]: unknown;
|
|
2350
|
+
} & {
|
|
2351
|
+
readonly __type: any;
|
|
2352
|
+
}>;
|
|
2353
|
+
export declare const ofInstallTaskArgs: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2263
2354
|
_: (string | number)[];
|
|
2264
2355
|
projectDir: string & {
|
|
2265
2356
|
readonly __type: any;
|
|
@@ -2272,10 +2363,6 @@ export declare const ofUninstallTaskArgs: (input: unknown) => import("fluture").
|
|
|
2272
2363
|
setBuild: string;
|
|
2273
2364
|
setVersion: string;
|
|
2274
2365
|
pluginName: string;
|
|
2275
|
-
} & {
|
|
2276
|
-
readonly __type: any;
|
|
2277
|
-
}>;
|
|
2278
|
-
export declare const createSetEnvTaskArgs: (input: {
|
|
2279
2366
|
quickstart?: string | undefined;
|
|
2280
2367
|
version?: boolean | undefined;
|
|
2281
2368
|
build?: boolean | undefined;
|
|
@@ -2283,7 +2370,34 @@ export declare const createSetEnvTaskArgs: (input: {
|
|
|
2283
2370
|
yes?: boolean | undefined;
|
|
2284
2371
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2285
2372
|
env?: string | undefined;
|
|
2286
|
-
|
|
2373
|
+
} & {
|
|
2374
|
+
[k: string]: unknown;
|
|
2375
|
+
} & {
|
|
2376
|
+
readonly __type: any;
|
|
2377
|
+
}>;
|
|
2378
|
+
export declare const createUninstallTaskArgs: (input: z.objectOutputType<{
|
|
2379
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
2380
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
2381
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
2382
|
+
readonly __type: any;
|
|
2383
|
+
}, any>, string & {
|
|
2384
|
+
readonly __type: any;
|
|
2385
|
+
}, any>;
|
|
2386
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
2387
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2388
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2389
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2390
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2391
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2392
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2393
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2394
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2395
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
2396
|
+
env: z.ZodOptional<z.ZodString>;
|
|
2397
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
2398
|
+
setVersion: z.ZodString;
|
|
2399
|
+
pluginName: z.ZodString;
|
|
2400
|
+
}, z.ZodTypeAny, "passthrough">) => {
|
|
2287
2401
|
_: (string | number)[];
|
|
2288
2402
|
projectDir: string & {
|
|
2289
2403
|
readonly __type: any;
|
|
@@ -2295,8 +2409,7 @@ export declare const createSetEnvTaskArgs: (input: {
|
|
|
2295
2409
|
fromVsCode: boolean;
|
|
2296
2410
|
setBuild: string;
|
|
2297
2411
|
setVersion: string;
|
|
2298
|
-
|
|
2299
|
-
}) => {
|
|
2412
|
+
pluginName: string;
|
|
2300
2413
|
quickstart?: string | undefined;
|
|
2301
2414
|
version?: boolean | undefined;
|
|
2302
2415
|
build?: boolean | undefined;
|
|
@@ -2304,7 +2417,34 @@ export declare const createSetEnvTaskArgs: (input: {
|
|
|
2304
2417
|
yes?: boolean | undefined;
|
|
2305
2418
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2306
2419
|
env?: string | undefined;
|
|
2307
|
-
|
|
2420
|
+
} & {
|
|
2421
|
+
[k: string]: unknown;
|
|
2422
|
+
} & {
|
|
2423
|
+
readonly __type: any;
|
|
2424
|
+
};
|
|
2425
|
+
export declare const makeUninstallTaskArgs: (input: z.objectOutputType<{
|
|
2426
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
2427
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
2428
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
2429
|
+
readonly __type: any;
|
|
2430
|
+
}, any>, string & {
|
|
2431
|
+
readonly __type: any;
|
|
2432
|
+
}, any>;
|
|
2433
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
2434
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2435
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2436
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2437
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2438
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2439
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2440
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2441
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2442
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
2443
|
+
env: z.ZodOptional<z.ZodString>;
|
|
2444
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
2445
|
+
setVersion: z.ZodString;
|
|
2446
|
+
pluginName: z.ZodString;
|
|
2447
|
+
}, z.ZodTypeAny, "passthrough">) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2308
2448
|
_: (string | number)[];
|
|
2309
2449
|
projectDir: string & {
|
|
2310
2450
|
readonly __type: any;
|
|
@@ -2316,11 +2456,7 @@ export declare const createSetEnvTaskArgs: (input: {
|
|
|
2316
2456
|
fromVsCode: boolean;
|
|
2317
2457
|
setBuild: string;
|
|
2318
2458
|
setVersion: string;
|
|
2319
|
-
|
|
2320
|
-
} & {
|
|
2321
|
-
readonly __type: any;
|
|
2322
|
-
};
|
|
2323
|
-
export declare const makeSetEnvTaskArgs: (input: {
|
|
2459
|
+
pluginName: string;
|
|
2324
2460
|
quickstart?: string | undefined;
|
|
2325
2461
|
version?: boolean | undefined;
|
|
2326
2462
|
build?: boolean | undefined;
|
|
@@ -2328,7 +2464,12 @@ export declare const makeSetEnvTaskArgs: (input: {
|
|
|
2328
2464
|
yes?: boolean | undefined;
|
|
2329
2465
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2330
2466
|
env?: string | undefined;
|
|
2331
|
-
|
|
2467
|
+
} & {
|
|
2468
|
+
[k: string]: unknown;
|
|
2469
|
+
} & {
|
|
2470
|
+
readonly __type: any;
|
|
2471
|
+
}>;
|
|
2472
|
+
export declare const ofUninstallTaskArgs: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2332
2473
|
_: (string | number)[];
|
|
2333
2474
|
projectDir: string & {
|
|
2334
2475
|
readonly __type: any;
|
|
@@ -2340,8 +2481,7 @@ export declare const makeSetEnvTaskArgs: (input: {
|
|
|
2340
2481
|
fromVsCode: boolean;
|
|
2341
2482
|
setBuild: string;
|
|
2342
2483
|
setVersion: string;
|
|
2343
|
-
|
|
2344
|
-
}) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2484
|
+
pluginName: string;
|
|
2345
2485
|
quickstart?: string | undefined;
|
|
2346
2486
|
version?: boolean | undefined;
|
|
2347
2487
|
build?: boolean | undefined;
|
|
@@ -2349,7 +2489,35 @@ export declare const makeSetEnvTaskArgs: (input: {
|
|
|
2349
2489
|
yes?: boolean | undefined;
|
|
2350
2490
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2351
2491
|
env?: string | undefined;
|
|
2352
|
-
|
|
2492
|
+
} & {
|
|
2493
|
+
[k: string]: unknown;
|
|
2494
|
+
} & {
|
|
2495
|
+
readonly __type: any;
|
|
2496
|
+
}>;
|
|
2497
|
+
export declare const createSetEnvTaskArgs: (input: z.objectOutputType<{
|
|
2498
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
2499
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
2500
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
2501
|
+
readonly __type: any;
|
|
2502
|
+
}, any>, string & {
|
|
2503
|
+
readonly __type: any;
|
|
2504
|
+
}, any>;
|
|
2505
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
2506
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2507
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2508
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2509
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2510
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2511
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2512
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2513
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2514
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
2515
|
+
env: z.ZodOptional<z.ZodString>;
|
|
2516
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
2517
|
+
setVersion: z.ZodString;
|
|
2518
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
2519
|
+
defaultEnvironment: z.ZodString;
|
|
2520
|
+
}, z.ZodTypeAny, "passthrough">) => {
|
|
2353
2521
|
_: (string | number)[];
|
|
2354
2522
|
projectDir: string & {
|
|
2355
2523
|
readonly __type: any;
|
|
@@ -2362,10 +2530,6 @@ export declare const makeSetEnvTaskArgs: (input: {
|
|
|
2362
2530
|
setBuild: string;
|
|
2363
2531
|
setVersion: string;
|
|
2364
2532
|
defaultEnvironment: string;
|
|
2365
|
-
} & {
|
|
2366
|
-
readonly __type: any;
|
|
2367
|
-
}>;
|
|
2368
|
-
export declare const ofSetEnvTaskArgs: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2369
2533
|
quickstart?: string | undefined;
|
|
2370
2534
|
version?: boolean | undefined;
|
|
2371
2535
|
build?: boolean | undefined;
|
|
@@ -2374,6 +2538,35 @@ export declare const ofSetEnvTaskArgs: (input: unknown) => import("fluture").Fut
|
|
|
2374
2538
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2375
2539
|
env?: string | undefined;
|
|
2376
2540
|
pluginName?: string | undefined;
|
|
2541
|
+
} & {
|
|
2542
|
+
[k: string]: unknown;
|
|
2543
|
+
} & {
|
|
2544
|
+
readonly __type: any;
|
|
2545
|
+
};
|
|
2546
|
+
export declare const makeSetEnvTaskArgs: (input: z.objectOutputType<{
|
|
2547
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
2548
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
2549
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
2550
|
+
readonly __type: any;
|
|
2551
|
+
}, any>, string & {
|
|
2552
|
+
readonly __type: any;
|
|
2553
|
+
}, any>;
|
|
2554
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
2555
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2556
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2557
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2558
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2559
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2560
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2561
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2562
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2563
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
2564
|
+
env: z.ZodOptional<z.ZodString>;
|
|
2565
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
2566
|
+
setVersion: z.ZodString;
|
|
2567
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
2568
|
+
defaultEnvironment: z.ZodString;
|
|
2569
|
+
}, z.ZodTypeAny, "passthrough">) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2377
2570
|
_: (string | number)[];
|
|
2378
2571
|
projectDir: string & {
|
|
2379
2572
|
readonly __type: any;
|
|
@@ -2386,10 +2579,6 @@ export declare const ofSetEnvTaskArgs: (input: unknown) => import("fluture").Fut
|
|
|
2386
2579
|
setBuild: string;
|
|
2387
2580
|
setVersion: string;
|
|
2388
2581
|
defaultEnvironment: string;
|
|
2389
|
-
} & {
|
|
2390
|
-
readonly __type: any;
|
|
2391
|
-
}>;
|
|
2392
|
-
export declare const createCreateTaskArgs: (input: {
|
|
2393
2582
|
quickstart?: string | undefined;
|
|
2394
2583
|
version?: boolean | undefined;
|
|
2395
2584
|
build?: boolean | undefined;
|
|
@@ -2398,6 +2587,12 @@ export declare const createCreateTaskArgs: (input: {
|
|
|
2398
2587
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2399
2588
|
env?: string | undefined;
|
|
2400
2589
|
pluginName?: string | undefined;
|
|
2590
|
+
} & {
|
|
2591
|
+
[k: string]: unknown;
|
|
2592
|
+
} & {
|
|
2593
|
+
readonly __type: any;
|
|
2594
|
+
}>;
|
|
2595
|
+
export declare const ofSetEnvTaskArgs: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2401
2596
|
_: (string | number)[];
|
|
2402
2597
|
projectDir: string & {
|
|
2403
2598
|
readonly __type: any;
|
|
@@ -2409,8 +2604,7 @@ export declare const createCreateTaskArgs: (input: {
|
|
|
2409
2604
|
fromVsCode: boolean;
|
|
2410
2605
|
setBuild: string;
|
|
2411
2606
|
setVersion: string;
|
|
2412
|
-
|
|
2413
|
-
}) => {
|
|
2607
|
+
defaultEnvironment: string;
|
|
2414
2608
|
quickstart?: string | undefined;
|
|
2415
2609
|
version?: boolean | undefined;
|
|
2416
2610
|
build?: boolean | undefined;
|
|
@@ -2419,6 +2613,35 @@ export declare const createCreateTaskArgs: (input: {
|
|
|
2419
2613
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2420
2614
|
env?: string | undefined;
|
|
2421
2615
|
pluginName?: string | undefined;
|
|
2616
|
+
} & {
|
|
2617
|
+
[k: string]: unknown;
|
|
2618
|
+
} & {
|
|
2619
|
+
readonly __type: any;
|
|
2620
|
+
}>;
|
|
2621
|
+
export declare const createCreateTaskArgs: (input: z.objectOutputType<{
|
|
2622
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
2623
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
2624
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
2625
|
+
readonly __type: any;
|
|
2626
|
+
}, any>, string & {
|
|
2627
|
+
readonly __type: any;
|
|
2628
|
+
}, any>;
|
|
2629
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
2630
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2631
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2632
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2633
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2634
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2635
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2636
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2637
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2638
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
2639
|
+
env: z.ZodOptional<z.ZodString>;
|
|
2640
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
2641
|
+
setVersion: z.ZodString;
|
|
2642
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
2643
|
+
template: z.ZodString;
|
|
2644
|
+
}, z.ZodTypeAny, "passthrough">) => {
|
|
2422
2645
|
_: (string | number)[];
|
|
2423
2646
|
projectDir: string & {
|
|
2424
2647
|
readonly __type: any;
|
|
@@ -2431,10 +2654,6 @@ export declare const createCreateTaskArgs: (input: {
|
|
|
2431
2654
|
setBuild: string;
|
|
2432
2655
|
setVersion: string;
|
|
2433
2656
|
template: string;
|
|
2434
|
-
} & {
|
|
2435
|
-
readonly __type: any;
|
|
2436
|
-
};
|
|
2437
|
-
export declare const makeCreateTaskArgs: (input: {
|
|
2438
2657
|
quickstart?: string | undefined;
|
|
2439
2658
|
version?: boolean | undefined;
|
|
2440
2659
|
build?: boolean | undefined;
|
|
@@ -2443,6 +2662,35 @@ export declare const makeCreateTaskArgs: (input: {
|
|
|
2443
2662
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2444
2663
|
env?: string | undefined;
|
|
2445
2664
|
pluginName?: string | undefined;
|
|
2665
|
+
} & {
|
|
2666
|
+
[k: string]: unknown;
|
|
2667
|
+
} & {
|
|
2668
|
+
readonly __type: any;
|
|
2669
|
+
};
|
|
2670
|
+
export declare const makeCreateTaskArgs: (input: z.objectOutputType<{
|
|
2671
|
+
quickstart: z.ZodOptional<z.ZodString>;
|
|
2672
|
+
_: z.ZodArray<z.ZodUnion<[z.ZodString, z.ZodNumber]>, "many">;
|
|
2673
|
+
projectDir: z.ZodEffects<z.ZodEffects<z.ZodType<any, z.ZodTypeDef, any>, string & {
|
|
2674
|
+
readonly __type: any;
|
|
2675
|
+
}, any>, string & {
|
|
2676
|
+
readonly __type: any;
|
|
2677
|
+
}, any>;
|
|
2678
|
+
maxConcurrency: z.ZodEffects<z.ZodDefault<z.ZodNumber>, number, unknown>;
|
|
2679
|
+
debug: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2680
|
+
disableState: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2681
|
+
logPluginRequests: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2682
|
+
fromVsCode: z.ZodEffects<z.ZodDefault<z.ZodBoolean>, boolean, unknown>;
|
|
2683
|
+
version: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2684
|
+
build: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2685
|
+
help: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2686
|
+
yes: z.ZodEffects<z.ZodOptional<z.ZodBoolean>, boolean | undefined, unknown>;
|
|
2687
|
+
plugin: z.ZodOptional<z.ZodEffects<z.ZodString, NonEmptyString.NonEmptyString, string>>;
|
|
2688
|
+
env: z.ZodOptional<z.ZodString>;
|
|
2689
|
+
setBuild: z.ZodEffects<z.ZodString, string, unknown>;
|
|
2690
|
+
setVersion: z.ZodString;
|
|
2691
|
+
pluginName: z.ZodOptional<z.ZodString>;
|
|
2692
|
+
template: z.ZodString;
|
|
2693
|
+
}, z.ZodTypeAny, "passthrough">) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2446
2694
|
_: (string | number)[];
|
|
2447
2695
|
projectDir: string & {
|
|
2448
2696
|
readonly __type: any;
|
|
@@ -2455,7 +2703,6 @@ export declare const makeCreateTaskArgs: (input: {
|
|
|
2455
2703
|
setBuild: string;
|
|
2456
2704
|
setVersion: string;
|
|
2457
2705
|
template: string;
|
|
2458
|
-
}) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2459
2706
|
quickstart?: string | undefined;
|
|
2460
2707
|
version?: boolean | undefined;
|
|
2461
2708
|
build?: boolean | undefined;
|
|
@@ -2464,6 +2711,12 @@ export declare const makeCreateTaskArgs: (input: {
|
|
|
2464
2711
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2465
2712
|
env?: string | undefined;
|
|
2466
2713
|
pluginName?: string | undefined;
|
|
2714
|
+
} & {
|
|
2715
|
+
[k: string]: unknown;
|
|
2716
|
+
} & {
|
|
2717
|
+
readonly __type: any;
|
|
2718
|
+
}>;
|
|
2719
|
+
export declare const ofCreateTaskArgs: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2467
2720
|
_: (string | number)[];
|
|
2468
2721
|
projectDir: string & {
|
|
2469
2722
|
readonly __type: any;
|
|
@@ -2476,10 +2729,6 @@ export declare const makeCreateTaskArgs: (input: {
|
|
|
2476
2729
|
setBuild: string;
|
|
2477
2730
|
setVersion: string;
|
|
2478
2731
|
template: string;
|
|
2479
|
-
} & {
|
|
2480
|
-
readonly __type: any;
|
|
2481
|
-
}>;
|
|
2482
|
-
export declare const ofCreateTaskArgs: (input: unknown) => import("fluture").FutureInstance<import("./TaqError").TaqError, {
|
|
2483
2732
|
quickstart?: string | undefined;
|
|
2484
2733
|
version?: boolean | undefined;
|
|
2485
2734
|
build?: boolean | undefined;
|
|
@@ -2488,18 +2737,8 @@ export declare const ofCreateTaskArgs: (input: unknown) => import("fluture").Fut
|
|
|
2488
2737
|
plugin?: NonEmptyString.NonEmptyString | undefined;
|
|
2489
2738
|
env?: string | undefined;
|
|
2490
2739
|
pluginName?: string | undefined;
|
|
2491
|
-
|
|
2492
|
-
|
|
2493
|
-
readonly __type: any;
|
|
2494
|
-
};
|
|
2495
|
-
maxConcurrency: number;
|
|
2496
|
-
debug: boolean;
|
|
2497
|
-
disableState: boolean;
|
|
2498
|
-
logPluginRequests: boolean;
|
|
2499
|
-
fromVsCode: boolean;
|
|
2500
|
-
setBuild: string;
|
|
2501
|
-
setVersion: string;
|
|
2502
|
-
template: string;
|
|
2740
|
+
} & {
|
|
2741
|
+
[k: string]: unknown;
|
|
2503
2742
|
} & {
|
|
2504
2743
|
readonly __type: any;
|
|
2505
2744
|
}>;
|