dcdx 1.3.0-next.45 → 1.3.0-next.46
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/assets/versions.json +1 -1
- package/lib/commands/apt.js +150 -33
- package/lib/index.js +1 -1
- package/lib/types/src/types/DCAPT.d.ts +126 -33
- package/lib/types/src/types/Install.d.ts +3 -0
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -3,7 +3,7 @@ import { program } from 'commander';
|
|
|
3
3
|
import { realpathSync, existsSync } from 'fs';
|
|
4
4
|
import { dirname, join } from 'path';
|
|
5
5
|
|
|
6
|
-
var version = "1.3.0-next.
|
|
6
|
+
var version = "1.3.0-next.46";
|
|
7
7
|
|
|
8
8
|
const toAbsolutePath = (relativePath) => {
|
|
9
9
|
const [, filePath] = process.argv;
|
|
@@ -51,7 +51,6 @@ export declare const APTProvisionOptions: z.ZodObject<{
|
|
|
51
51
|
license: z.ZodOptional<z.ZodString>;
|
|
52
52
|
nodes: z.ZodOptional<z.ZodNumber>;
|
|
53
53
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
54
|
-
appKey: z.ZodOptional<z.ZodString>;
|
|
55
54
|
}, "strip", z.ZodTypeAny, {
|
|
56
55
|
cwd: string;
|
|
57
56
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
@@ -59,7 +58,6 @@ export declare const APTProvisionOptions: z.ZodObject<{
|
|
|
59
58
|
license?: string | undefined;
|
|
60
59
|
nodes?: number | undefined;
|
|
61
60
|
force?: boolean | undefined;
|
|
62
|
-
appKey?: string | undefined;
|
|
63
61
|
}, {
|
|
64
62
|
cwd: string;
|
|
65
63
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
@@ -67,7 +65,6 @@ export declare const APTProvisionOptions: z.ZodObject<{
|
|
|
67
65
|
license?: string | undefined;
|
|
68
66
|
nodes?: number | undefined;
|
|
69
67
|
force?: boolean | undefined;
|
|
70
|
-
appKey?: string | undefined;
|
|
71
68
|
}>;
|
|
72
69
|
export declare const APTPerformanceTestArgs: z.ZodObject<{
|
|
73
70
|
cwd: z.ZodString;
|
|
@@ -75,8 +72,9 @@ export declare const APTPerformanceTestArgs: z.ZodObject<{
|
|
|
75
72
|
environment: z.ZodString;
|
|
76
73
|
license: z.ZodOptional<z.ZodString>;
|
|
77
74
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
78
|
-
appKey: z.ZodString;
|
|
79
75
|
outputDir: z.ZodOptional<z.ZodString>;
|
|
76
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
77
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
80
78
|
appLicense: z.ZodString;
|
|
81
79
|
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
82
80
|
timestamp: z.ZodOptional<z.ZodString>;
|
|
@@ -84,34 +82,37 @@ export declare const APTPerformanceTestArgs: z.ZodObject<{
|
|
|
84
82
|
cwd: string;
|
|
85
83
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
86
84
|
environment: string;
|
|
87
|
-
appKey: string;
|
|
88
85
|
appLicense: string;
|
|
89
86
|
license?: string | undefined;
|
|
90
87
|
force?: boolean | undefined;
|
|
91
88
|
outputDir?: string | undefined;
|
|
89
|
+
appKey?: string | undefined;
|
|
90
|
+
archive?: string | undefined;
|
|
92
91
|
restartAfterInstall?: boolean | undefined;
|
|
93
92
|
timestamp?: string | undefined;
|
|
94
93
|
}, {
|
|
95
94
|
cwd: string;
|
|
96
95
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
97
96
|
environment: string;
|
|
98
|
-
appKey: string;
|
|
99
97
|
appLicense: string;
|
|
100
98
|
license?: string | undefined;
|
|
101
99
|
force?: boolean | undefined;
|
|
102
100
|
outputDir?: string | undefined;
|
|
101
|
+
appKey?: string | undefined;
|
|
102
|
+
archive?: string | undefined;
|
|
103
103
|
restartAfterInstall?: boolean | undefined;
|
|
104
104
|
timestamp?: string | undefined;
|
|
105
105
|
}>;
|
|
106
|
-
export declare const APTPerformanceTestOptions: z.ZodObject<{
|
|
106
|
+
export declare const APTPerformanceTestOptions: z.ZodEffects<z.ZodObject<{
|
|
107
107
|
cwd: z.ZodString;
|
|
108
108
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
109
109
|
baseUrl: z.ZodOptional<z.ZodString>;
|
|
110
110
|
environment: z.ZodString;
|
|
111
111
|
license: z.ZodString;
|
|
112
112
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
113
|
-
appKey: z.ZodOptional<z.ZodString>;
|
|
114
113
|
outputDir: z.ZodString;
|
|
114
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
115
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
115
116
|
appLicense: z.ZodOptional<z.ZodString>;
|
|
116
117
|
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
117
118
|
aws_access_key_id: z.ZodOptional<z.ZodString>;
|
|
@@ -125,6 +126,35 @@ export declare const APTPerformanceTestOptions: z.ZodObject<{
|
|
|
125
126
|
baseUrl?: string | undefined;
|
|
126
127
|
force?: boolean | undefined;
|
|
127
128
|
appKey?: string | undefined;
|
|
129
|
+
archive?: string | undefined;
|
|
130
|
+
appLicense?: string | undefined;
|
|
131
|
+
restartAfterInstall?: boolean | undefined;
|
|
132
|
+
aws_access_key_id?: string | undefined;
|
|
133
|
+
aws_secret_access_key?: string | undefined;
|
|
134
|
+
}, {
|
|
135
|
+
cwd: string;
|
|
136
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
137
|
+
environment: string;
|
|
138
|
+
license: string;
|
|
139
|
+
outputDir: string;
|
|
140
|
+
baseUrl?: string | undefined;
|
|
141
|
+
force?: boolean | undefined;
|
|
142
|
+
appKey?: string | undefined;
|
|
143
|
+
archive?: string | undefined;
|
|
144
|
+
appLicense?: string | undefined;
|
|
145
|
+
restartAfterInstall?: boolean | undefined;
|
|
146
|
+
aws_access_key_id?: string | undefined;
|
|
147
|
+
aws_secret_access_key?: string | undefined;
|
|
148
|
+
}>, {
|
|
149
|
+
cwd: string;
|
|
150
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
151
|
+
environment: string;
|
|
152
|
+
license: string;
|
|
153
|
+
outputDir: string;
|
|
154
|
+
baseUrl?: string | undefined;
|
|
155
|
+
force?: boolean | undefined;
|
|
156
|
+
appKey?: string | undefined;
|
|
157
|
+
archive?: string | undefined;
|
|
128
158
|
appLicense?: string | undefined;
|
|
129
159
|
restartAfterInstall?: boolean | undefined;
|
|
130
160
|
aws_access_key_id?: string | undefined;
|
|
@@ -138,6 +168,7 @@ export declare const APTPerformanceTestOptions: z.ZodObject<{
|
|
|
138
168
|
baseUrl?: string | undefined;
|
|
139
169
|
force?: boolean | undefined;
|
|
140
170
|
appKey?: string | undefined;
|
|
171
|
+
archive?: string | undefined;
|
|
141
172
|
appLicense?: string | undefined;
|
|
142
173
|
restartAfterInstall?: boolean | undefined;
|
|
143
174
|
aws_access_key_id?: string | undefined;
|
|
@@ -190,8 +221,9 @@ export declare const APTScalabilityTestArgs: z.ZodObject<{
|
|
|
190
221
|
environment: z.ZodString;
|
|
191
222
|
license: z.ZodOptional<z.ZodString>;
|
|
192
223
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
193
|
-
appKey: z.ZodString;
|
|
194
224
|
outputDir: z.ZodOptional<z.ZodString>;
|
|
225
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
226
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
195
227
|
appLicense: z.ZodOptional<z.ZodString>;
|
|
196
228
|
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
197
229
|
timestamp: z.ZodOptional<z.ZodString>;
|
|
@@ -199,10 +231,11 @@ export declare const APTScalabilityTestArgs: z.ZodObject<{
|
|
|
199
231
|
cwd: string;
|
|
200
232
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
201
233
|
environment: string;
|
|
202
|
-
appKey: string;
|
|
203
234
|
license?: string | undefined;
|
|
204
235
|
force?: boolean | undefined;
|
|
205
236
|
outputDir?: string | undefined;
|
|
237
|
+
appKey?: string | undefined;
|
|
238
|
+
archive?: string | undefined;
|
|
206
239
|
appLicense?: string | undefined;
|
|
207
240
|
restartAfterInstall?: boolean | undefined;
|
|
208
241
|
timestamp?: string | undefined;
|
|
@@ -210,22 +243,24 @@ export declare const APTScalabilityTestArgs: z.ZodObject<{
|
|
|
210
243
|
cwd: string;
|
|
211
244
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
212
245
|
environment: string;
|
|
213
|
-
appKey: string;
|
|
214
246
|
license?: string | undefined;
|
|
215
247
|
force?: boolean | undefined;
|
|
216
248
|
outputDir?: string | undefined;
|
|
249
|
+
appKey?: string | undefined;
|
|
250
|
+
archive?: string | undefined;
|
|
217
251
|
appLicense?: string | undefined;
|
|
218
252
|
restartAfterInstall?: boolean | undefined;
|
|
219
253
|
timestamp?: string | undefined;
|
|
220
254
|
}>;
|
|
221
|
-
export declare const APTScalabilityTestOptions: z.ZodObject<{
|
|
255
|
+
export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
|
|
222
256
|
cwd: z.ZodString;
|
|
223
257
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
224
258
|
environment: z.ZodString;
|
|
225
259
|
license: z.ZodString;
|
|
226
260
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
227
|
-
appKey: z.ZodOptional<z.ZodString>;
|
|
228
261
|
outputDir: z.ZodString;
|
|
262
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
263
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
229
264
|
appLicense: z.ZodOptional<z.ZodString>;
|
|
230
265
|
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
231
266
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -236,6 +271,7 @@ export declare const APTScalabilityTestOptions: z.ZodObject<{
|
|
|
236
271
|
outputDir: string;
|
|
237
272
|
force?: boolean | undefined;
|
|
238
273
|
appKey?: string | undefined;
|
|
274
|
+
archive?: string | undefined;
|
|
239
275
|
appLicense?: string | undefined;
|
|
240
276
|
restartAfterInstall?: boolean | undefined;
|
|
241
277
|
}, {
|
|
@@ -246,6 +282,29 @@ export declare const APTScalabilityTestOptions: z.ZodObject<{
|
|
|
246
282
|
outputDir: string;
|
|
247
283
|
force?: boolean | undefined;
|
|
248
284
|
appKey?: string | undefined;
|
|
285
|
+
archive?: string | undefined;
|
|
286
|
+
appLicense?: string | undefined;
|
|
287
|
+
restartAfterInstall?: boolean | undefined;
|
|
288
|
+
}>, {
|
|
289
|
+
cwd: string;
|
|
290
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
291
|
+
environment: string;
|
|
292
|
+
license: string;
|
|
293
|
+
outputDir: string;
|
|
294
|
+
force?: boolean | undefined;
|
|
295
|
+
appKey?: string | undefined;
|
|
296
|
+
archive?: string | undefined;
|
|
297
|
+
appLicense?: string | undefined;
|
|
298
|
+
restartAfterInstall?: boolean | undefined;
|
|
299
|
+
}, {
|
|
300
|
+
cwd: string;
|
|
301
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
302
|
+
environment: string;
|
|
303
|
+
license: string;
|
|
304
|
+
outputDir: string;
|
|
305
|
+
force?: boolean | undefined;
|
|
306
|
+
appKey?: string | undefined;
|
|
307
|
+
archive?: string | undefined;
|
|
249
308
|
appLicense?: string | undefined;
|
|
250
309
|
restartAfterInstall?: boolean | undefined;
|
|
251
310
|
}>;
|
|
@@ -383,60 +442,94 @@ export declare const APTRestartOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
383
442
|
}>;
|
|
384
443
|
export declare const APTDependencyTreeArgs: z.ZodObject<{
|
|
385
444
|
activateProfiles: z.ZodOptional<z.ZodString>;
|
|
386
|
-
appKey: z.ZodString
|
|
445
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
446
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
387
447
|
outputFile: z.ZodOptional<z.ZodString>;
|
|
388
448
|
}, "strip", z.ZodTypeAny, {
|
|
389
|
-
appKey: string;
|
|
390
449
|
activateProfiles?: string | undefined;
|
|
450
|
+
appKey?: string | undefined;
|
|
451
|
+
archive?: string | undefined;
|
|
391
452
|
outputFile?: string | undefined;
|
|
392
453
|
}, {
|
|
393
|
-
appKey: string;
|
|
394
454
|
activateProfiles?: string | undefined;
|
|
455
|
+
appKey?: string | undefined;
|
|
456
|
+
archive?: string | undefined;
|
|
395
457
|
outputFile?: string | undefined;
|
|
396
458
|
}>;
|
|
397
|
-
export declare const APTDependencyTreeOptions: z.ZodObject<{
|
|
459
|
+
export declare const APTDependencyTreeOptions: z.ZodEffects<z.ZodObject<{
|
|
398
460
|
activateProfiles: z.ZodOptional<z.ZodString>;
|
|
399
|
-
appKey: z.ZodString
|
|
461
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
462
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
400
463
|
outputFile: z.ZodString;
|
|
401
464
|
}, "strip", z.ZodTypeAny, {
|
|
402
|
-
appKey: string;
|
|
403
465
|
outputFile: string;
|
|
404
466
|
activateProfiles?: string | undefined;
|
|
467
|
+
appKey?: string | undefined;
|
|
468
|
+
archive?: string | undefined;
|
|
469
|
+
}, {
|
|
470
|
+
outputFile: string;
|
|
471
|
+
activateProfiles?: string | undefined;
|
|
472
|
+
appKey?: string | undefined;
|
|
473
|
+
archive?: string | undefined;
|
|
474
|
+
}>, {
|
|
475
|
+
outputFile: string;
|
|
476
|
+
activateProfiles?: string | undefined;
|
|
477
|
+
appKey?: string | undefined;
|
|
478
|
+
archive?: string | undefined;
|
|
405
479
|
}, {
|
|
406
|
-
appKey: string;
|
|
407
480
|
outputFile: string;
|
|
408
481
|
activateProfiles?: string | undefined;
|
|
482
|
+
appKey?: string | undefined;
|
|
483
|
+
archive?: string | undefined;
|
|
409
484
|
}>;
|
|
410
485
|
export declare const APTSCAArgs: z.ZodObject<{
|
|
411
|
-
appKey: z.ZodString;
|
|
412
486
|
outputDir: z.ZodOptional<z.ZodString>;
|
|
487
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
488
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
413
489
|
nvdApiKey: z.ZodString;
|
|
414
490
|
dataDir: z.ZodOptional<z.ZodString>;
|
|
415
491
|
}, "strip", z.ZodTypeAny, {
|
|
416
|
-
appKey: string;
|
|
417
492
|
nvdApiKey: string;
|
|
418
493
|
outputDir?: string | undefined;
|
|
494
|
+
appKey?: string | undefined;
|
|
495
|
+
archive?: string | undefined;
|
|
419
496
|
dataDir?: string | undefined;
|
|
420
497
|
}, {
|
|
421
|
-
appKey: string;
|
|
422
498
|
nvdApiKey: string;
|
|
423
499
|
outputDir?: string | undefined;
|
|
500
|
+
appKey?: string | undefined;
|
|
501
|
+
archive?: string | undefined;
|
|
424
502
|
dataDir?: string | undefined;
|
|
425
503
|
}>;
|
|
426
|
-
export declare const APTSCAOptions: z.ZodObject<{
|
|
427
|
-
appKey: z.ZodString;
|
|
504
|
+
export declare const APTSCAOptions: z.ZodEffects<z.ZodObject<{
|
|
428
505
|
outputDir: z.ZodString;
|
|
506
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
507
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
429
508
|
nvdApiKey: z.ZodString;
|
|
430
509
|
dataDir: z.ZodOptional<z.ZodString>;
|
|
431
510
|
}, "strip", z.ZodTypeAny, {
|
|
432
|
-
appKey: string;
|
|
433
511
|
outputDir: string;
|
|
434
512
|
nvdApiKey: string;
|
|
513
|
+
appKey?: string | undefined;
|
|
514
|
+
archive?: string | undefined;
|
|
515
|
+
dataDir?: string | undefined;
|
|
516
|
+
}, {
|
|
517
|
+
outputDir: string;
|
|
518
|
+
nvdApiKey: string;
|
|
519
|
+
appKey?: string | undefined;
|
|
520
|
+
archive?: string | undefined;
|
|
521
|
+
dataDir?: string | undefined;
|
|
522
|
+
}>, {
|
|
523
|
+
outputDir: string;
|
|
524
|
+
nvdApiKey: string;
|
|
525
|
+
appKey?: string | undefined;
|
|
526
|
+
archive?: string | undefined;
|
|
435
527
|
dataDir?: string | undefined;
|
|
436
528
|
}, {
|
|
437
|
-
appKey: string;
|
|
438
529
|
outputDir: string;
|
|
439
530
|
nvdApiKey: string;
|
|
531
|
+
appKey?: string | undefined;
|
|
532
|
+
archive?: string | undefined;
|
|
440
533
|
dataDir?: string | undefined;
|
|
441
534
|
}>;
|
|
442
535
|
export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
@@ -446,7 +539,6 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
|
446
539
|
license: z.ZodOptional<z.ZodString>;
|
|
447
540
|
nodes: z.ZodOptional<z.ZodNumber>;
|
|
448
541
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
449
|
-
appKey: z.ZodOptional<z.ZodString>;
|
|
450
542
|
}, "strip", z.ZodTypeAny, {
|
|
451
543
|
cwd: string;
|
|
452
544
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
@@ -454,7 +546,6 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
|
454
546
|
license?: string | undefined;
|
|
455
547
|
nodes?: number | undefined;
|
|
456
548
|
force?: boolean | undefined;
|
|
457
|
-
appKey?: string | undefined;
|
|
458
549
|
}, {
|
|
459
550
|
cwd: string;
|
|
460
551
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
@@ -462,15 +553,15 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
|
462
553
|
license?: string | undefined;
|
|
463
554
|
nodes?: number | undefined;
|
|
464
555
|
force?: boolean | undefined;
|
|
465
|
-
appKey?: string | undefined;
|
|
466
556
|
}>, z.ZodObject<{
|
|
467
557
|
cwd: z.ZodString;
|
|
468
558
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
469
559
|
environment: z.ZodString;
|
|
470
560
|
license: z.ZodOptional<z.ZodString>;
|
|
471
561
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
472
|
-
appKey: z.ZodString;
|
|
473
562
|
outputDir: z.ZodOptional<z.ZodString>;
|
|
563
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
564
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
474
565
|
appLicense: z.ZodString;
|
|
475
566
|
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
476
567
|
timestamp: z.ZodOptional<z.ZodString>;
|
|
@@ -478,22 +569,24 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
|
478
569
|
cwd: string;
|
|
479
570
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
480
571
|
environment: string;
|
|
481
|
-
appKey: string;
|
|
482
572
|
appLicense: string;
|
|
483
573
|
license?: string | undefined;
|
|
484
574
|
force?: boolean | undefined;
|
|
485
575
|
outputDir?: string | undefined;
|
|
576
|
+
appKey?: string | undefined;
|
|
577
|
+
archive?: string | undefined;
|
|
486
578
|
restartAfterInstall?: boolean | undefined;
|
|
487
579
|
timestamp?: string | undefined;
|
|
488
580
|
}, {
|
|
489
581
|
cwd: string;
|
|
490
582
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
491
583
|
environment: string;
|
|
492
|
-
appKey: string;
|
|
493
584
|
appLicense: string;
|
|
494
585
|
license?: string | undefined;
|
|
495
586
|
force?: boolean | undefined;
|
|
496
587
|
outputDir?: string | undefined;
|
|
588
|
+
appKey?: string | undefined;
|
|
589
|
+
archive?: string | undefined;
|
|
497
590
|
restartAfterInstall?: boolean | undefined;
|
|
498
591
|
timestamp?: string | undefined;
|
|
499
592
|
}>>;
|
|
@@ -9,6 +9,7 @@ export declare const InstallOptions: z.ZodObject<{
|
|
|
9
9
|
license: z.ZodOptional<z.ZodString>;
|
|
10
10
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
11
11
|
appKey: z.ZodOptional<z.ZodString>;
|
|
12
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
12
13
|
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
13
14
|
aws_access_key_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
14
15
|
aws_secret_access_key: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
@@ -22,6 +23,7 @@ export declare const InstallOptions: z.ZodObject<{
|
|
|
22
23
|
license?: string | undefined;
|
|
23
24
|
force?: boolean | undefined;
|
|
24
25
|
appKey?: string | undefined;
|
|
26
|
+
archive?: string | undefined;
|
|
25
27
|
restartAfterInstall?: boolean | undefined;
|
|
26
28
|
aws_access_key_id?: string | undefined;
|
|
27
29
|
aws_secret_access_key?: string | undefined;
|
|
@@ -35,6 +37,7 @@ export declare const InstallOptions: z.ZodObject<{
|
|
|
35
37
|
license?: string | undefined;
|
|
36
38
|
force?: boolean | undefined;
|
|
37
39
|
appKey?: string | undefined;
|
|
40
|
+
archive?: string | undefined;
|
|
38
41
|
restartAfterInstall?: boolean | undefined;
|
|
39
42
|
aws_access_key_id?: string | undefined;
|
|
40
43
|
aws_secret_access_key?: string | undefined;
|