dcdx 1.3.0-next.58 → 1.3.0-next.59

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.58";
6
+ var version = "1.3.0-next.59";
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, useLocust?: boolean, force?: boolean) => Promise<void>;
2
+ export declare const persistTestConfiguration: (cwd: string, product: TSupportedApplications, baseUrl: string, duration: string, useJMeter?: boolean, useLocust?: boolean, force?: boolean) => Promise<void>;
@@ -247,6 +247,7 @@ export declare const APTScalabilityTestArgs: z.ZodObject<{
247
247
  appLicense: z.ZodOptional<z.ZodString>;
248
248
  restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
249
249
  timestamp: z.ZodOptional<z.ZodString>;
250
+ jmeter: z.ZodOptional<z.ZodBoolean>;
250
251
  locust: z.ZodOptional<z.ZodBoolean>;
251
252
  }, "strip", z.ZodTypeAny, {
252
253
  cwd: string;
@@ -261,6 +262,7 @@ export declare const APTScalabilityTestArgs: z.ZodObject<{
261
262
  appLicense?: string | undefined;
262
263
  restartAfterInstall?: boolean | undefined;
263
264
  timestamp?: string | undefined;
265
+ jmeter?: boolean | undefined;
264
266
  locust?: boolean | undefined;
265
267
  }, {
266
268
  cwd: string;
@@ -275,6 +277,7 @@ export declare const APTScalabilityTestArgs: z.ZodObject<{
275
277
  appLicense?: string | undefined;
276
278
  restartAfterInstall?: boolean | undefined;
277
279
  timestamp?: string | undefined;
280
+ jmeter?: boolean | undefined;
278
281
  locust?: boolean | undefined;
279
282
  }>;
280
283
  export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
@@ -289,6 +292,7 @@ export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
289
292
  archive: z.ZodOptional<z.ZodString>;
290
293
  appLicense: z.ZodOptional<z.ZodString>;
291
294
  restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
295
+ jmeter: z.ZodOptional<z.ZodBoolean>;
292
296
  locust: z.ZodOptional<z.ZodBoolean>;
293
297
  }, "strip", z.ZodTypeAny, {
294
298
  cwd: string;
@@ -302,6 +306,7 @@ export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
302
306
  archive?: string | undefined;
303
307
  appLicense?: string | undefined;
304
308
  restartAfterInstall?: boolean | undefined;
309
+ jmeter?: boolean | undefined;
305
310
  locust?: boolean | undefined;
306
311
  }, {
307
312
  cwd: string;
@@ -315,6 +320,7 @@ export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
315
320
  archive?: string | undefined;
316
321
  appLicense?: string | undefined;
317
322
  restartAfterInstall?: boolean | undefined;
323
+ jmeter?: boolean | undefined;
318
324
  locust?: boolean | undefined;
319
325
  }>, {
320
326
  cwd: string;
@@ -328,6 +334,7 @@ export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
328
334
  archive?: string | undefined;
329
335
  appLicense?: string | undefined;
330
336
  restartAfterInstall?: boolean | undefined;
337
+ jmeter?: boolean | undefined;
331
338
  locust?: boolean | undefined;
332
339
  }, {
333
340
  cwd: string;
@@ -341,6 +348,7 @@ export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
341
348
  archive?: string | undefined;
342
349
  appLicense?: string | undefined;
343
350
  restartAfterInstall?: boolean | undefined;
351
+ jmeter?: boolean | undefined;
344
352
  locust?: boolean | undefined;
345
353
  }>;
346
354
  export declare const APTScalabilityReportArgs: z.ZodObject<z.objectUtil.extendShape<{
@@ -607,7 +615,7 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
607
615
  license?: string | undefined;
608
616
  nodes?: number | undefined;
609
617
  force?: boolean | undefined;
610
- }>, z.ZodObject<{
618
+ }>, z.ZodIntersection<z.ZodObject<{
611
619
  tag: z.ZodOptional<z.ZodString>;
612
620
  cwd: z.ZodString;
613
621
  product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
@@ -646,7 +654,52 @@ export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
646
654
  archive?: string | undefined;
647
655
  restartAfterInstall?: boolean | undefined;
648
656
  timestamp?: string | undefined;
649
- }>>;
657
+ }>, z.ZodObject<{
658
+ tag: z.ZodOptional<z.ZodString>;
659
+ cwd: z.ZodString;
660
+ product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
661
+ environment: z.ZodString;
662
+ license: z.ZodOptional<z.ZodString>;
663
+ force: z.ZodOptional<z.ZodBoolean>;
664
+ outputDir: z.ZodOptional<z.ZodString>;
665
+ appKey: z.ZodOptional<z.ZodString>;
666
+ archive: z.ZodOptional<z.ZodString>;
667
+ appLicense: z.ZodOptional<z.ZodString>;
668
+ restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
669
+ timestamp: z.ZodOptional<z.ZodString>;
670
+ jmeter: z.ZodOptional<z.ZodBoolean>;
671
+ locust: z.ZodOptional<z.ZodBoolean>;
672
+ }, "strip", z.ZodTypeAny, {
673
+ cwd: string;
674
+ product: "jira" | "confluence" | "bitbucket" | "bamboo";
675
+ environment: string;
676
+ tag?: string | undefined;
677
+ license?: string | undefined;
678
+ force?: boolean | undefined;
679
+ outputDir?: string | undefined;
680
+ appKey?: string | undefined;
681
+ archive?: string | undefined;
682
+ appLicense?: string | undefined;
683
+ restartAfterInstall?: boolean | undefined;
684
+ timestamp?: string | undefined;
685
+ jmeter?: boolean | undefined;
686
+ locust?: boolean | undefined;
687
+ }, {
688
+ cwd: string;
689
+ product: "jira" | "confluence" | "bitbucket" | "bamboo";
690
+ environment: string;
691
+ tag?: string | undefined;
692
+ license?: string | undefined;
693
+ force?: boolean | undefined;
694
+ outputDir?: string | undefined;
695
+ appKey?: string | undefined;
696
+ archive?: string | undefined;
697
+ appLicense?: string | undefined;
698
+ restartAfterInstall?: boolean | undefined;
699
+ timestamp?: string | undefined;
700
+ jmeter?: boolean | undefined;
701
+ locust?: boolean | undefined;
702
+ }>>>;
650
703
  export type TAPTArgs = z.infer<typeof APTArgs>;
651
704
  export type TAPTTestMessages = z.infer<typeof APTTestMessages>;
652
705
  export type TAPTProvisionArgs = z.infer<typeof APTProvisionArgs>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dcdx",
3
- "version": "1.3.0-next.58",
3
+ "version": "1.3.0-next.59",
4
4
  "author": "Collabsoft <info@collabsoft.net>",
5
5
  "description": "The Unofficial CLI for Atlassian Data Center Plugin Development",
6
6
  "type": "module",