dcdx 1.3.0-next.45 → 1.3.0-next.47
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/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.47";
|
|
7
7
|
|
|
8
8
|
const toAbsolutePath = (relativePath) => {
|
|
9
9
|
const [, filePath] = process.argv;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { TSupportedApplications } from '../../types/Application';
|
|
2
|
-
export declare const persistTestConfiguration: (cwd: string, product: TSupportedApplications, baseUrl: string, duration: string, withAppSpecificActions?: boolean, force?: boolean) => Promise<void>;
|
|
2
|
+
export declare const persistTestConfiguration: (cwd: string, product: TSupportedApplications, baseUrl: string, duration: string, withAppSpecificActions?: boolean, useLocust?: boolean, force?: boolean) => Promise<void>;
|
|
@@ -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,44 +221,52 @@ 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>;
|
|
230
|
+
locust: z.ZodOptional<z.ZodBoolean>;
|
|
198
231
|
}, "strip", z.ZodTypeAny, {
|
|
199
232
|
cwd: string;
|
|
200
233
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
201
234
|
environment: string;
|
|
202
|
-
appKey: string;
|
|
203
235
|
license?: string | undefined;
|
|
204
236
|
force?: boolean | undefined;
|
|
205
237
|
outputDir?: string | undefined;
|
|
238
|
+
appKey?: string | undefined;
|
|
239
|
+
archive?: string | undefined;
|
|
206
240
|
appLicense?: string | undefined;
|
|
207
241
|
restartAfterInstall?: boolean | undefined;
|
|
208
242
|
timestamp?: string | undefined;
|
|
243
|
+
locust?: boolean | undefined;
|
|
209
244
|
}, {
|
|
210
245
|
cwd: string;
|
|
211
246
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
212
247
|
environment: string;
|
|
213
|
-
appKey: string;
|
|
214
248
|
license?: string | undefined;
|
|
215
249
|
force?: boolean | undefined;
|
|
216
250
|
outputDir?: string | undefined;
|
|
251
|
+
appKey?: string | undefined;
|
|
252
|
+
archive?: string | undefined;
|
|
217
253
|
appLicense?: string | undefined;
|
|
218
254
|
restartAfterInstall?: boolean | undefined;
|
|
219
255
|
timestamp?: string | undefined;
|
|
256
|
+
locust?: boolean | undefined;
|
|
220
257
|
}>;
|
|
221
|
-
export declare const APTScalabilityTestOptions: z.ZodObject<{
|
|
258
|
+
export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
|
|
222
259
|
cwd: z.ZodString;
|
|
223
260
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
224
261
|
environment: z.ZodString;
|
|
225
262
|
license: z.ZodString;
|
|
226
263
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
227
|
-
appKey: z.ZodOptional<z.ZodString>;
|
|
228
264
|
outputDir: z.ZodString;
|
|
265
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
266
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
229
267
|
appLicense: z.ZodOptional<z.ZodString>;
|
|
230
268
|
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
269
|
+
locust: z.ZodOptional<z.ZodBoolean>;
|
|
231
270
|
}, "strip", z.ZodTypeAny, {
|
|
232
271
|
cwd: string;
|
|
233
272
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
@@ -236,8 +275,10 @@ export declare const APTScalabilityTestOptions: z.ZodObject<{
|
|
|
236
275
|
outputDir: string;
|
|
237
276
|
force?: boolean | undefined;
|
|
238
277
|
appKey?: string | undefined;
|
|
278
|
+
archive?: string | undefined;
|
|
239
279
|
appLicense?: string | undefined;
|
|
240
280
|
restartAfterInstall?: boolean | undefined;
|
|
281
|
+
locust?: boolean | undefined;
|
|
241
282
|
}, {
|
|
242
283
|
cwd: string;
|
|
243
284
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
@@ -246,8 +287,34 @@ export declare const APTScalabilityTestOptions: z.ZodObject<{
|
|
|
246
287
|
outputDir: string;
|
|
247
288
|
force?: boolean | undefined;
|
|
248
289
|
appKey?: string | undefined;
|
|
290
|
+
archive?: string | undefined;
|
|
249
291
|
appLicense?: string | undefined;
|
|
250
292
|
restartAfterInstall?: boolean | undefined;
|
|
293
|
+
locust?: boolean | undefined;
|
|
294
|
+
}>, {
|
|
295
|
+
cwd: string;
|
|
296
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
297
|
+
environment: string;
|
|
298
|
+
license: string;
|
|
299
|
+
outputDir: string;
|
|
300
|
+
force?: boolean | undefined;
|
|
301
|
+
appKey?: string | undefined;
|
|
302
|
+
archive?: string | undefined;
|
|
303
|
+
appLicense?: string | undefined;
|
|
304
|
+
restartAfterInstall?: boolean | undefined;
|
|
305
|
+
locust?: boolean | undefined;
|
|
306
|
+
}, {
|
|
307
|
+
cwd: string;
|
|
308
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
309
|
+
environment: string;
|
|
310
|
+
license: string;
|
|
311
|
+
outputDir: string;
|
|
312
|
+
force?: boolean | undefined;
|
|
313
|
+
appKey?: string | undefined;
|
|
314
|
+
archive?: string | undefined;
|
|
315
|
+
appLicense?: string | undefined;
|
|
316
|
+
restartAfterInstall?: boolean | undefined;
|
|
317
|
+
locust?: boolean | undefined;
|
|
251
318
|
}>;
|
|
252
319
|
export declare const APTScalabilityReportArgs: z.ZodObject<z.objectUtil.extendShape<{
|
|
253
320
|
type: z.ZodEffects<z.ZodEnum<["performance", "scalability"]>, "performance" | "scalability", "performance" | "scalability">;
|
|
@@ -383,60 +450,94 @@ export declare const APTRestartOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
383
450
|
}>;
|
|
384
451
|
export declare const APTDependencyTreeArgs: z.ZodObject<{
|
|
385
452
|
activateProfiles: z.ZodOptional<z.ZodString>;
|
|
386
|
-
appKey: z.ZodString
|
|
453
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
454
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
387
455
|
outputFile: z.ZodOptional<z.ZodString>;
|
|
388
456
|
}, "strip", z.ZodTypeAny, {
|
|
389
|
-
appKey: string;
|
|
390
457
|
activateProfiles?: string | undefined;
|
|
458
|
+
appKey?: string | undefined;
|
|
459
|
+
archive?: string | undefined;
|
|
391
460
|
outputFile?: string | undefined;
|
|
392
461
|
}, {
|
|
393
|
-
appKey: string;
|
|
394
462
|
activateProfiles?: string | undefined;
|
|
463
|
+
appKey?: string | undefined;
|
|
464
|
+
archive?: string | undefined;
|
|
395
465
|
outputFile?: string | undefined;
|
|
396
466
|
}>;
|
|
397
|
-
export declare const APTDependencyTreeOptions: z.ZodObject<{
|
|
467
|
+
export declare const APTDependencyTreeOptions: z.ZodEffects<z.ZodObject<{
|
|
398
468
|
activateProfiles: z.ZodOptional<z.ZodString>;
|
|
399
|
-
appKey: z.ZodString
|
|
469
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
470
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
400
471
|
outputFile: z.ZodString;
|
|
401
472
|
}, "strip", z.ZodTypeAny, {
|
|
402
|
-
appKey: string;
|
|
403
473
|
outputFile: string;
|
|
404
474
|
activateProfiles?: string | undefined;
|
|
475
|
+
appKey?: string | undefined;
|
|
476
|
+
archive?: string | undefined;
|
|
477
|
+
}, {
|
|
478
|
+
outputFile: string;
|
|
479
|
+
activateProfiles?: string | undefined;
|
|
480
|
+
appKey?: string | undefined;
|
|
481
|
+
archive?: string | undefined;
|
|
482
|
+
}>, {
|
|
483
|
+
outputFile: string;
|
|
484
|
+
activateProfiles?: string | undefined;
|
|
485
|
+
appKey?: string | undefined;
|
|
486
|
+
archive?: string | undefined;
|
|
405
487
|
}, {
|
|
406
|
-
appKey: string;
|
|
407
488
|
outputFile: string;
|
|
408
489
|
activateProfiles?: string | undefined;
|
|
490
|
+
appKey?: string | undefined;
|
|
491
|
+
archive?: string | undefined;
|
|
409
492
|
}>;
|
|
410
493
|
export declare const APTSCAArgs: z.ZodObject<{
|
|
411
|
-
appKey: z.ZodString;
|
|
412
494
|
outputDir: z.ZodOptional<z.ZodString>;
|
|
495
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
496
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
413
497
|
nvdApiKey: z.ZodString;
|
|
414
498
|
dataDir: z.ZodOptional<z.ZodString>;
|
|
415
499
|
}, "strip", z.ZodTypeAny, {
|
|
416
|
-
appKey: string;
|
|
417
500
|
nvdApiKey: string;
|
|
418
501
|
outputDir?: string | undefined;
|
|
502
|
+
appKey?: string | undefined;
|
|
503
|
+
archive?: string | undefined;
|
|
419
504
|
dataDir?: string | undefined;
|
|
420
505
|
}, {
|
|
421
|
-
appKey: string;
|
|
422
506
|
nvdApiKey: string;
|
|
423
507
|
outputDir?: string | undefined;
|
|
508
|
+
appKey?: string | undefined;
|
|
509
|
+
archive?: string | undefined;
|
|
424
510
|
dataDir?: string | undefined;
|
|
425
511
|
}>;
|
|
426
|
-
export declare const APTSCAOptions: z.ZodObject<{
|
|
427
|
-
appKey: z.ZodString;
|
|
512
|
+
export declare const APTSCAOptions: z.ZodEffects<z.ZodObject<{
|
|
428
513
|
outputDir: z.ZodString;
|
|
514
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
515
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
429
516
|
nvdApiKey: z.ZodString;
|
|
430
517
|
dataDir: z.ZodOptional<z.ZodString>;
|
|
431
518
|
}, "strip", z.ZodTypeAny, {
|
|
432
|
-
appKey: string;
|
|
433
519
|
outputDir: string;
|
|
434
520
|
nvdApiKey: string;
|
|
521
|
+
appKey?: string | undefined;
|
|
522
|
+
archive?: string | undefined;
|
|
523
|
+
dataDir?: string | undefined;
|
|
524
|
+
}, {
|
|
525
|
+
outputDir: string;
|
|
526
|
+
nvdApiKey: string;
|
|
527
|
+
appKey?: string | undefined;
|
|
528
|
+
archive?: string | undefined;
|
|
529
|
+
dataDir?: string | undefined;
|
|
530
|
+
}>, {
|
|
531
|
+
outputDir: string;
|
|
532
|
+
nvdApiKey: string;
|
|
533
|
+
appKey?: string | undefined;
|
|
534
|
+
archive?: string | undefined;
|
|
435
535
|
dataDir?: string | undefined;
|
|
436
536
|
}, {
|
|
437
|
-
appKey: string;
|
|
438
537
|
outputDir: string;
|
|
439
538
|
nvdApiKey: string;
|
|
539
|
+
appKey?: string | undefined;
|
|
540
|
+
archive?: string | undefined;
|
|
440
541
|
dataDir?: string | undefined;
|
|
441
542
|
}>;
|
|
442
543
|
export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
@@ -446,7 +547,6 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
|
446
547
|
license: z.ZodOptional<z.ZodString>;
|
|
447
548
|
nodes: z.ZodOptional<z.ZodNumber>;
|
|
448
549
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
449
|
-
appKey: z.ZodOptional<z.ZodString>;
|
|
450
550
|
}, "strip", z.ZodTypeAny, {
|
|
451
551
|
cwd: string;
|
|
452
552
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
@@ -454,7 +554,6 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
|
454
554
|
license?: string | undefined;
|
|
455
555
|
nodes?: number | undefined;
|
|
456
556
|
force?: boolean | undefined;
|
|
457
|
-
appKey?: string | undefined;
|
|
458
557
|
}, {
|
|
459
558
|
cwd: string;
|
|
460
559
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
@@ -462,15 +561,15 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
|
462
561
|
license?: string | undefined;
|
|
463
562
|
nodes?: number | undefined;
|
|
464
563
|
force?: boolean | undefined;
|
|
465
|
-
appKey?: string | undefined;
|
|
466
564
|
}>, z.ZodObject<{
|
|
467
565
|
cwd: z.ZodString;
|
|
468
566
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
469
567
|
environment: z.ZodString;
|
|
470
568
|
license: z.ZodOptional<z.ZodString>;
|
|
471
569
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
472
|
-
appKey: z.ZodString;
|
|
473
570
|
outputDir: z.ZodOptional<z.ZodString>;
|
|
571
|
+
appKey: z.ZodOptional<z.ZodString>;
|
|
572
|
+
archive: z.ZodOptional<z.ZodString>;
|
|
474
573
|
appLicense: z.ZodString;
|
|
475
574
|
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
476
575
|
timestamp: z.ZodOptional<z.ZodString>;
|
|
@@ -478,22 +577,24 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
|
478
577
|
cwd: string;
|
|
479
578
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
480
579
|
environment: string;
|
|
481
|
-
appKey: string;
|
|
482
580
|
appLicense: string;
|
|
483
581
|
license?: string | undefined;
|
|
484
582
|
force?: boolean | undefined;
|
|
485
583
|
outputDir?: string | undefined;
|
|
584
|
+
appKey?: string | undefined;
|
|
585
|
+
archive?: string | undefined;
|
|
486
586
|
restartAfterInstall?: boolean | undefined;
|
|
487
587
|
timestamp?: string | undefined;
|
|
488
588
|
}, {
|
|
489
589
|
cwd: string;
|
|
490
590
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
491
591
|
environment: string;
|
|
492
|
-
appKey: string;
|
|
493
592
|
appLicense: string;
|
|
494
593
|
license?: string | undefined;
|
|
495
594
|
force?: boolean | undefined;
|
|
496
595
|
outputDir?: string | undefined;
|
|
596
|
+
appKey?: string | undefined;
|
|
597
|
+
archive?: string | undefined;
|
|
497
598
|
restartAfterInstall?: boolean | undefined;
|
|
498
599
|
timestamp?: string | undefined;
|
|
499
600
|
}>>;
|
|
@@ -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;
|