dcdx 1.3.0-next.46 → 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.46";
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>;
@@ -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">;
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.47",
4
4
  "author": "Collabsoft <info@collabsoft.net>",
5
5
  "description": "The Unofficial CLI for Atlassian Data Center Plugin Development",
6
6
  "type": "module",