dcdx 1.3.0-next.41 → 1.3.0-next.43

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.41";
6
+ var version = "1.3.0-next.43";
7
7
 
8
8
  const toAbsolutePath = (relativePath) => {
9
9
  const [, filePath] = process.argv;
@@ -405,33 +405,27 @@ export declare const APTSCAArgs: z.ZodObject<{
405
405
  appKey: z.ZodString;
406
406
  outputDir: z.ZodOptional<z.ZodString>;
407
407
  nvdApiKey: z.ZodString;
408
- dataDir: z.ZodOptional<z.ZodString>;
409
408
  }, "strip", z.ZodTypeAny, {
410
409
  appKey: string;
411
410
  nvdApiKey: string;
412
411
  outputDir?: string | undefined;
413
- dataDir?: string | undefined;
414
412
  }, {
415
413
  appKey: string;
416
414
  nvdApiKey: string;
417
415
  outputDir?: string | undefined;
418
- dataDir?: string | undefined;
419
416
  }>;
420
417
  export declare const APTSCAOptions: z.ZodObject<{
418
+ nvdApiKey: z.ZodString;
421
419
  appKey: z.ZodString;
422
420
  outputDir: z.ZodString;
423
- nvdApiKey: z.ZodString;
424
- dataDir: z.ZodOptional<z.ZodString>;
425
421
  }, "strip", z.ZodTypeAny, {
426
422
  appKey: string;
427
423
  outputDir: string;
428
424
  nvdApiKey: string;
429
- dataDir?: string | undefined;
430
425
  }, {
431
426
  appKey: string;
432
427
  outputDir: string;
433
428
  nvdApiKey: string;
434
- dataDir?: string | undefined;
435
429
  }>;
436
430
  export declare const APTArgs: z.ZodIntersection<z.ZodObject<{
437
431
  cwd: z.ZodString;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dcdx",
3
- "version": "1.3.0-next.41",
3
+ "version": "1.3.0-next.43",
4
4
  "author": "Collabsoft <info@collabsoft.net>",
5
5
  "description": "The Unofficial CLI for Atlassian Data Center Plugin Development",
6
6
  "type": "module",