dcdx 1.3.0-next.42 → 1.3.0-next.44
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/commands/apt.js +11 -1
- package/lib/commands/build.js +2 -2
- package/lib/commands/debug.js +2 -2
- package/lib/commands/install.js +2 -2
- package/lib/index.js +1 -1
- package/lib/types/src/types/DCAPT.d.ts +6 -0
- package/package.json +1 -1
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.44";
|
|
7
7
|
|
|
8
8
|
const toAbsolutePath = (relativePath) => {
|
|
9
9
|
const [, filePath] = process.argv;
|
|
@@ -382,24 +382,30 @@ export declare const APTRestartOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
382
382
|
aws_secret_access_key?: string | undefined;
|
|
383
383
|
}>;
|
|
384
384
|
export declare const APTDependencyTreeArgs: z.ZodObject<{
|
|
385
|
+
activateProfiles: z.ZodOptional<z.ZodString>;
|
|
385
386
|
appKey: z.ZodString;
|
|
386
387
|
outputFile: z.ZodOptional<z.ZodString>;
|
|
387
388
|
}, "strip", z.ZodTypeAny, {
|
|
388
389
|
appKey: string;
|
|
390
|
+
activateProfiles?: string | undefined;
|
|
389
391
|
outputFile?: string | undefined;
|
|
390
392
|
}, {
|
|
391
393
|
appKey: string;
|
|
394
|
+
activateProfiles?: string | undefined;
|
|
392
395
|
outputFile?: string | undefined;
|
|
393
396
|
}>;
|
|
394
397
|
export declare const APTDependencyTreeOptions: z.ZodObject<{
|
|
398
|
+
activateProfiles: z.ZodOptional<z.ZodString>;
|
|
395
399
|
appKey: z.ZodString;
|
|
396
400
|
outputFile: z.ZodString;
|
|
397
401
|
}, "strip", z.ZodTypeAny, {
|
|
398
402
|
appKey: string;
|
|
399
403
|
outputFile: string;
|
|
404
|
+
activateProfiles?: string | undefined;
|
|
400
405
|
}, {
|
|
401
406
|
appKey: string;
|
|
402
407
|
outputFile: string;
|
|
408
|
+
activateProfiles?: string | undefined;
|
|
403
409
|
}>;
|
|
404
410
|
export declare const APTSCAArgs: z.ZodObject<{
|
|
405
411
|
appKey: z.ZodString;
|