dcdx 1.3.0-next.65 → 1.3.0-next.67
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.67";
|
|
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, useJMeter?: boolean, useLocust?: boolean, force?: boolean) => Promise<void>;
|
|
2
|
+
export declare const persistTestConfiguration: (cwd: string, product: TSupportedApplications, baseUrl: string, duration: string, useJMeter?: boolean, useLocust?: boolean, query?: string, force?: boolean) => Promise<void>;
|
|
@@ -27,6 +27,7 @@ export declare const APTProvisionArgs: z.ZodObject<{
|
|
|
27
27
|
cwd: z.ZodString;
|
|
28
28
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
29
29
|
environment: z.ZodString;
|
|
30
|
+
monitoring: z.ZodOptional<z.ZodBoolean>;
|
|
30
31
|
license: z.ZodOptional<z.ZodString>;
|
|
31
32
|
nodes: z.ZodNumber;
|
|
32
33
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -36,6 +37,7 @@ export declare const APTProvisionArgs: z.ZodObject<{
|
|
|
36
37
|
environment: string;
|
|
37
38
|
nodes: number;
|
|
38
39
|
tag?: string | undefined;
|
|
40
|
+
monitoring?: boolean | undefined;
|
|
39
41
|
license?: string | undefined;
|
|
40
42
|
force?: boolean | undefined;
|
|
41
43
|
}, {
|
|
@@ -44,6 +46,7 @@ export declare const APTProvisionArgs: z.ZodObject<{
|
|
|
44
46
|
environment: string;
|
|
45
47
|
nodes: number;
|
|
46
48
|
tag?: string | undefined;
|
|
49
|
+
monitoring?: boolean | undefined;
|
|
47
50
|
license?: string | undefined;
|
|
48
51
|
force?: boolean | undefined;
|
|
49
52
|
}>;
|
|
@@ -52,6 +55,7 @@ export declare const APTProvisionOptions: z.ZodObject<{
|
|
|
52
55
|
cwd: z.ZodString;
|
|
53
56
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
54
57
|
environment: z.ZodOptional<z.ZodString>;
|
|
58
|
+
monitoring: z.ZodOptional<z.ZodBoolean>;
|
|
55
59
|
license: z.ZodOptional<z.ZodString>;
|
|
56
60
|
nodes: z.ZodOptional<z.ZodNumber>;
|
|
57
61
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -60,6 +64,7 @@ export declare const APTProvisionOptions: z.ZodObject<{
|
|
|
60
64
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
61
65
|
tag?: string | undefined;
|
|
62
66
|
environment?: string | undefined;
|
|
67
|
+
monitoring?: boolean | undefined;
|
|
63
68
|
license?: string | undefined;
|
|
64
69
|
nodes?: number | undefined;
|
|
65
70
|
force?: boolean | undefined;
|
|
@@ -68,6 +73,7 @@ export declare const APTProvisionOptions: z.ZodObject<{
|
|
|
68
73
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
69
74
|
tag?: string | undefined;
|
|
70
75
|
environment?: string | undefined;
|
|
76
|
+
monitoring?: boolean | undefined;
|
|
71
77
|
license?: string | undefined;
|
|
72
78
|
nodes?: number | undefined;
|
|
73
79
|
force?: boolean | undefined;
|
|
@@ -77,6 +83,7 @@ export declare const APTPerformanceTestArgs: z.ZodObject<{
|
|
|
77
83
|
cwd: z.ZodString;
|
|
78
84
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
79
85
|
environment: z.ZodString;
|
|
86
|
+
monitoring: z.ZodOptional<z.ZodBoolean>;
|
|
80
87
|
license: z.ZodOptional<z.ZodString>;
|
|
81
88
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
82
89
|
outputDir: z.ZodOptional<z.ZodString>;
|
|
@@ -91,6 +98,7 @@ export declare const APTPerformanceTestArgs: z.ZodObject<{
|
|
|
91
98
|
environment: string;
|
|
92
99
|
appLicense: string;
|
|
93
100
|
tag?: string | undefined;
|
|
101
|
+
monitoring?: boolean | undefined;
|
|
94
102
|
license?: string | undefined;
|
|
95
103
|
force?: boolean | undefined;
|
|
96
104
|
outputDir?: string | undefined;
|
|
@@ -104,6 +112,7 @@ export declare const APTPerformanceTestArgs: z.ZodObject<{
|
|
|
104
112
|
environment: string;
|
|
105
113
|
appLicense: string;
|
|
106
114
|
tag?: string | undefined;
|
|
115
|
+
monitoring?: boolean | undefined;
|
|
107
116
|
license?: string | undefined;
|
|
108
117
|
force?: boolean | undefined;
|
|
109
118
|
outputDir?: string | undefined;
|
|
@@ -118,6 +127,7 @@ export declare const APTPerformanceTestOptions: z.ZodEffects<z.ZodObject<{
|
|
|
118
127
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
119
128
|
baseUrl: z.ZodOptional<z.ZodString>;
|
|
120
129
|
environment: z.ZodString;
|
|
130
|
+
monitoring: z.ZodOptional<z.ZodBoolean>;
|
|
121
131
|
license: z.ZodString;
|
|
122
132
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
123
133
|
outputDir: z.ZodString;
|
|
@@ -137,6 +147,7 @@ export declare const APTPerformanceTestOptions: z.ZodEffects<z.ZodObject<{
|
|
|
137
147
|
stage: "baseline" | "regression";
|
|
138
148
|
tag?: string | undefined;
|
|
139
149
|
baseUrl?: string | undefined;
|
|
150
|
+
monitoring?: boolean | undefined;
|
|
140
151
|
force?: boolean | undefined;
|
|
141
152
|
appKey?: string | undefined;
|
|
142
153
|
archive?: string | undefined;
|
|
@@ -153,6 +164,7 @@ export declare const APTPerformanceTestOptions: z.ZodEffects<z.ZodObject<{
|
|
|
153
164
|
stage: "baseline" | "regression";
|
|
154
165
|
tag?: string | undefined;
|
|
155
166
|
baseUrl?: string | undefined;
|
|
167
|
+
monitoring?: boolean | undefined;
|
|
156
168
|
force?: boolean | undefined;
|
|
157
169
|
appKey?: string | undefined;
|
|
158
170
|
archive?: string | undefined;
|
|
@@ -169,6 +181,7 @@ export declare const APTPerformanceTestOptions: z.ZodEffects<z.ZodObject<{
|
|
|
169
181
|
stage: "baseline" | "regression";
|
|
170
182
|
tag?: string | undefined;
|
|
171
183
|
baseUrl?: string | undefined;
|
|
184
|
+
monitoring?: boolean | undefined;
|
|
172
185
|
force?: boolean | undefined;
|
|
173
186
|
appKey?: string | undefined;
|
|
174
187
|
archive?: string | undefined;
|
|
@@ -185,6 +198,7 @@ export declare const APTPerformanceTestOptions: z.ZodEffects<z.ZodObject<{
|
|
|
185
198
|
stage: "baseline" | "regression";
|
|
186
199
|
tag?: string | undefined;
|
|
187
200
|
baseUrl?: string | undefined;
|
|
201
|
+
monitoring?: boolean | undefined;
|
|
188
202
|
force?: boolean | undefined;
|
|
189
203
|
appKey?: string | undefined;
|
|
190
204
|
archive?: string | undefined;
|
|
@@ -238,7 +252,9 @@ export declare const APTScalabilityTestArgs: z.ZodObject<{
|
|
|
238
252
|
tag: z.ZodOptional<z.ZodString>;
|
|
239
253
|
cwd: z.ZodString;
|
|
240
254
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
255
|
+
query: z.ZodOptional<z.ZodString>;
|
|
241
256
|
environment: z.ZodString;
|
|
257
|
+
monitoring: z.ZodOptional<z.ZodBoolean>;
|
|
242
258
|
license: z.ZodOptional<z.ZodString>;
|
|
243
259
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
244
260
|
outputDir: z.ZodOptional<z.ZodString>;
|
|
@@ -254,6 +270,8 @@ export declare const APTScalabilityTestArgs: z.ZodObject<{
|
|
|
254
270
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
255
271
|
environment: string;
|
|
256
272
|
tag?: string | undefined;
|
|
273
|
+
query?: string | undefined;
|
|
274
|
+
monitoring?: boolean | undefined;
|
|
257
275
|
license?: string | undefined;
|
|
258
276
|
force?: boolean | undefined;
|
|
259
277
|
outputDir?: string | undefined;
|
|
@@ -269,6 +287,8 @@ export declare const APTScalabilityTestArgs: z.ZodObject<{
|
|
|
269
287
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
270
288
|
environment: string;
|
|
271
289
|
tag?: string | undefined;
|
|
290
|
+
query?: string | undefined;
|
|
291
|
+
monitoring?: boolean | undefined;
|
|
272
292
|
license?: string | undefined;
|
|
273
293
|
force?: boolean | undefined;
|
|
274
294
|
outputDir?: string | undefined;
|
|
@@ -284,7 +304,9 @@ export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
|
|
|
284
304
|
tag: z.ZodOptional<z.ZodString>;
|
|
285
305
|
cwd: z.ZodString;
|
|
286
306
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
307
|
+
query: z.ZodOptional<z.ZodString>;
|
|
287
308
|
environment: z.ZodString;
|
|
309
|
+
monitoring: z.ZodOptional<z.ZodBoolean>;
|
|
288
310
|
license: z.ZodString;
|
|
289
311
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
290
312
|
outputDir: z.ZodString;
|
|
@@ -301,6 +323,8 @@ export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
|
|
|
301
323
|
license: string;
|
|
302
324
|
outputDir: string;
|
|
303
325
|
tag?: string | undefined;
|
|
326
|
+
query?: string | undefined;
|
|
327
|
+
monitoring?: boolean | undefined;
|
|
304
328
|
force?: boolean | undefined;
|
|
305
329
|
appKey?: string | undefined;
|
|
306
330
|
archive?: string | undefined;
|
|
@@ -315,6 +339,8 @@ export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
|
|
|
315
339
|
license: string;
|
|
316
340
|
outputDir: string;
|
|
317
341
|
tag?: string | undefined;
|
|
342
|
+
query?: string | undefined;
|
|
343
|
+
monitoring?: boolean | undefined;
|
|
318
344
|
force?: boolean | undefined;
|
|
319
345
|
appKey?: string | undefined;
|
|
320
346
|
archive?: string | undefined;
|
|
@@ -329,6 +355,8 @@ export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
|
|
|
329
355
|
license: string;
|
|
330
356
|
outputDir: string;
|
|
331
357
|
tag?: string | undefined;
|
|
358
|
+
query?: string | undefined;
|
|
359
|
+
monitoring?: boolean | undefined;
|
|
332
360
|
force?: boolean | undefined;
|
|
333
361
|
appKey?: string | undefined;
|
|
334
362
|
archive?: string | undefined;
|
|
@@ -343,6 +371,8 @@ export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
|
|
|
343
371
|
license: string;
|
|
344
372
|
outputDir: string;
|
|
345
373
|
tag?: string | undefined;
|
|
374
|
+
query?: string | undefined;
|
|
375
|
+
monitoring?: boolean | undefined;
|
|
346
376
|
force?: boolean | undefined;
|
|
347
377
|
appKey?: string | undefined;
|
|
348
378
|
archive?: string | undefined;
|
|
@@ -604,6 +634,7 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
|
604
634
|
cwd: z.ZodString;
|
|
605
635
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
606
636
|
environment: z.ZodOptional<z.ZodString>;
|
|
637
|
+
monitoring: z.ZodOptional<z.ZodBoolean>;
|
|
607
638
|
license: z.ZodOptional<z.ZodString>;
|
|
608
639
|
nodes: z.ZodOptional<z.ZodNumber>;
|
|
609
640
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -612,6 +643,7 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
|
612
643
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
613
644
|
tag?: string | undefined;
|
|
614
645
|
environment?: string | undefined;
|
|
646
|
+
monitoring?: boolean | undefined;
|
|
615
647
|
license?: string | undefined;
|
|
616
648
|
nodes?: number | undefined;
|
|
617
649
|
force?: boolean | undefined;
|
|
@@ -620,6 +652,7 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
|
620
652
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
621
653
|
tag?: string | undefined;
|
|
622
654
|
environment?: string | undefined;
|
|
655
|
+
monitoring?: boolean | undefined;
|
|
623
656
|
license?: string | undefined;
|
|
624
657
|
nodes?: number | undefined;
|
|
625
658
|
force?: boolean | undefined;
|
|
@@ -628,6 +661,7 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
|
628
661
|
cwd: z.ZodString;
|
|
629
662
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
630
663
|
environment: z.ZodString;
|
|
664
|
+
monitoring: z.ZodOptional<z.ZodBoolean>;
|
|
631
665
|
license: z.ZodOptional<z.ZodString>;
|
|
632
666
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
633
667
|
outputDir: z.ZodOptional<z.ZodString>;
|
|
@@ -642,6 +676,7 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
|
642
676
|
environment: string;
|
|
643
677
|
appLicense: string;
|
|
644
678
|
tag?: string | undefined;
|
|
679
|
+
monitoring?: boolean | undefined;
|
|
645
680
|
license?: string | undefined;
|
|
646
681
|
force?: boolean | undefined;
|
|
647
682
|
outputDir?: string | undefined;
|
|
@@ -655,6 +690,7 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
|
655
690
|
environment: string;
|
|
656
691
|
appLicense: string;
|
|
657
692
|
tag?: string | undefined;
|
|
693
|
+
monitoring?: boolean | undefined;
|
|
658
694
|
license?: string | undefined;
|
|
659
695
|
force?: boolean | undefined;
|
|
660
696
|
outputDir?: string | undefined;
|
|
@@ -666,7 +702,9 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
|
666
702
|
tag: z.ZodOptional<z.ZodString>;
|
|
667
703
|
cwd: z.ZodString;
|
|
668
704
|
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
705
|
+
query: z.ZodOptional<z.ZodString>;
|
|
669
706
|
environment: z.ZodString;
|
|
707
|
+
monitoring: z.ZodOptional<z.ZodBoolean>;
|
|
670
708
|
license: z.ZodOptional<z.ZodString>;
|
|
671
709
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
672
710
|
outputDir: z.ZodOptional<z.ZodString>;
|
|
@@ -682,6 +720,8 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
|
682
720
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
683
721
|
environment: string;
|
|
684
722
|
tag?: string | undefined;
|
|
723
|
+
query?: string | undefined;
|
|
724
|
+
monitoring?: boolean | undefined;
|
|
685
725
|
license?: string | undefined;
|
|
686
726
|
force?: boolean | undefined;
|
|
687
727
|
outputDir?: string | undefined;
|
|
@@ -697,6 +737,8 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
|
|
|
697
737
|
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
698
738
|
environment: string;
|
|
699
739
|
tag?: string | undefined;
|
|
740
|
+
query?: string | undefined;
|
|
741
|
+
monitoring?: boolean | undefined;
|
|
700
742
|
license?: string | undefined;
|
|
701
743
|
force?: boolean | undefined;
|
|
702
744
|
outputDir?: string | undefined;
|