dcdx 1.3.0-next.46 → 1.3.0-next.48

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.46";
6
+ var version = "1.3.0-next.48";
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>;
@@ -0,0 +1 @@
1
+ export declare const findInFile: (path: string, value: string | Array<string>, caseSensitive?: boolean) => boolean;
@@ -227,6 +227,7 @@ export declare const APTScalabilityTestArgs: z.ZodObject<{
227
227
  appLicense: z.ZodOptional<z.ZodString>;
228
228
  restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
229
229
  timestamp: z.ZodOptional<z.ZodString>;
230
+ locust: z.ZodOptional<z.ZodBoolean>;
230
231
  }, "strip", z.ZodTypeAny, {
231
232
  cwd: string;
232
233
  product: "jira" | "confluence" | "bitbucket" | "bamboo";
@@ -239,6 +240,7 @@ export declare const APTScalabilityTestArgs: z.ZodObject<{
239
240
  appLicense?: string | undefined;
240
241
  restartAfterInstall?: boolean | undefined;
241
242
  timestamp?: string | undefined;
243
+ locust?: boolean | undefined;
242
244
  }, {
243
245
  cwd: string;
244
246
  product: "jira" | "confluence" | "bitbucket" | "bamboo";
@@ -251,6 +253,7 @@ export declare const APTScalabilityTestArgs: z.ZodObject<{
251
253
  appLicense?: string | undefined;
252
254
  restartAfterInstall?: boolean | undefined;
253
255
  timestamp?: string | undefined;
256
+ locust?: boolean | undefined;
254
257
  }>;
255
258
  export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
256
259
  cwd: z.ZodString;
@@ -263,6 +266,7 @@ export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
263
266
  archive: z.ZodOptional<z.ZodString>;
264
267
  appLicense: z.ZodOptional<z.ZodString>;
265
268
  restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
269
+ locust: z.ZodOptional<z.ZodBoolean>;
266
270
  }, "strip", z.ZodTypeAny, {
267
271
  cwd: string;
268
272
  product: "jira" | "confluence" | "bitbucket" | "bamboo";
@@ -274,6 +278,7 @@ export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
274
278
  archive?: string | undefined;
275
279
  appLicense?: string | undefined;
276
280
  restartAfterInstall?: boolean | undefined;
281
+ locust?: boolean | undefined;
277
282
  }, {
278
283
  cwd: string;
279
284
  product: "jira" | "confluence" | "bitbucket" | "bamboo";
@@ -285,6 +290,7 @@ export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
285
290
  archive?: string | undefined;
286
291
  appLicense?: string | undefined;
287
292
  restartAfterInstall?: boolean | undefined;
293
+ locust?: boolean | undefined;
288
294
  }>, {
289
295
  cwd: string;
290
296
  product: "jira" | "confluence" | "bitbucket" | "bamboo";
@@ -296,6 +302,7 @@ export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
296
302
  archive?: string | undefined;
297
303
  appLicense?: string | undefined;
298
304
  restartAfterInstall?: boolean | undefined;
305
+ locust?: boolean | undefined;
299
306
  }, {
300
307
  cwd: string;
301
308
  product: "jira" | "confluence" | "bitbucket" | "bamboo";
@@ -307,6 +314,7 @@ export declare const APTScalabilityTestOptions: z.ZodEffects<z.ZodObject<{
307
314
  archive?: string | undefined;
308
315
  appLicense?: string | undefined;
309
316
  restartAfterInstall?: boolean | undefined;
317
+ locust?: boolean | undefined;
310
318
  }>;
311
319
  export declare const APTScalabilityReportArgs: z.ZodObject<z.objectUtil.extendShape<{
312
320
  type: z.ZodEffects<z.ZodEnum<["performance", "scalability"]>, "performance" | "scalability", "performance" | "scalability">;
@@ -444,13 +452,19 @@ export declare const APTDependencyTreeArgs: z.ZodObject<{
444
452
  activateProfiles: z.ZodOptional<z.ZodString>;
445
453
  appKey: z.ZodOptional<z.ZodString>;
446
454
  archive: z.ZodOptional<z.ZodString>;
455
+ groupId: z.ZodString;
456
+ artifactId: z.ZodString;
447
457
  outputFile: z.ZodOptional<z.ZodString>;
448
458
  }, "strip", z.ZodTypeAny, {
459
+ groupId: string;
460
+ artifactId: string;
449
461
  activateProfiles?: string | undefined;
450
462
  appKey?: string | undefined;
451
463
  archive?: string | undefined;
452
464
  outputFile?: string | undefined;
453
465
  }, {
466
+ groupId: string;
467
+ artifactId: string;
454
468
  activateProfiles?: string | undefined;
455
469
  appKey?: string | undefined;
456
470
  archive?: string | undefined;
@@ -460,23 +474,33 @@ export declare const APTDependencyTreeOptions: z.ZodEffects<z.ZodObject<{
460
474
  activateProfiles: z.ZodOptional<z.ZodString>;
461
475
  appKey: z.ZodOptional<z.ZodString>;
462
476
  archive: z.ZodOptional<z.ZodString>;
477
+ groupId: z.ZodString;
478
+ artifactId: z.ZodString;
463
479
  outputFile: z.ZodString;
464
480
  }, "strip", z.ZodTypeAny, {
481
+ groupId: string;
482
+ artifactId: string;
465
483
  outputFile: string;
466
484
  activateProfiles?: string | undefined;
467
485
  appKey?: string | undefined;
468
486
  archive?: string | undefined;
469
487
  }, {
488
+ groupId: string;
489
+ artifactId: string;
470
490
  outputFile: string;
471
491
  activateProfiles?: string | undefined;
472
492
  appKey?: string | undefined;
473
493
  archive?: string | undefined;
474
494
  }>, {
495
+ groupId: string;
496
+ artifactId: string;
475
497
  outputFile: string;
476
498
  activateProfiles?: string | undefined;
477
499
  appKey?: string | undefined;
478
500
  archive?: string | undefined;
479
501
  }, {
502
+ groupId: string;
503
+ artifactId: string;
480
504
  outputFile: string;
481
505
  activateProfiles?: string | undefined;
482
506
  appKey?: string | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dcdx",
3
- "version": "1.3.0-next.46",
3
+ "version": "1.3.0-next.48",
4
4
  "author": "Collabsoft <info@collabsoft.net>",
5
5
  "description": "The Unofficial CLI for Atlassian Data Center Plugin Development",
6
6
  "type": "module",