dcdx 1.3.0-next.60 → 1.3.0-next.61
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/assets/versions.json +1 -1
- package/lib/commands/install.js +8 -15
- package/lib/index.js +1 -1
- package/lib/types/src/types/Install.d.ts +15 -15
- 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.61";
|
|
7
7
|
|
|
8
8
|
const toAbsolutePath = (relativePath) => {
|
|
9
9
|
const [, filePath] = process.argv;
|
|
@@ -130,26 +130,26 @@ export declare const InstallFromMPACArgs: z.ZodObject<{
|
|
|
130
130
|
pat?: string | undefined;
|
|
131
131
|
}>;
|
|
132
132
|
export declare const InstallFromMPACOptions: z.ZodObject<{
|
|
133
|
+
username: z.ZodOptional<z.ZodString>;
|
|
134
|
+
password: z.ZodOptional<z.ZodString>;
|
|
135
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
136
|
+
license: z.ZodOptional<z.ZodString>;
|
|
133
137
|
appKey: z.ZodString;
|
|
134
|
-
|
|
135
|
-
username: z.ZodString;
|
|
136
|
-
password: z.ZodString;
|
|
137
|
-
pat: z.ZodString;
|
|
138
|
-
license: z.ZodString;
|
|
138
|
+
pat: z.ZodOptional<z.ZodString>;
|
|
139
139
|
}, "strip", z.ZodTypeAny, {
|
|
140
|
-
username: string;
|
|
141
|
-
password: string;
|
|
142
|
-
baseUrl: string;
|
|
143
|
-
license: string;
|
|
144
140
|
appKey: string;
|
|
145
|
-
|
|
141
|
+
username?: string | undefined;
|
|
142
|
+
password?: string | undefined;
|
|
143
|
+
baseUrl?: string | undefined;
|
|
144
|
+
license?: string | undefined;
|
|
145
|
+
pat?: string | undefined;
|
|
146
146
|
}, {
|
|
147
|
-
username: string;
|
|
148
|
-
password: string;
|
|
149
|
-
baseUrl: string;
|
|
150
|
-
license: string;
|
|
151
147
|
appKey: string;
|
|
152
|
-
|
|
148
|
+
username?: string | undefined;
|
|
149
|
+
password?: string | undefined;
|
|
150
|
+
baseUrl?: string | undefined;
|
|
151
|
+
license?: string | undefined;
|
|
152
|
+
pat?: string | undefined;
|
|
153
153
|
}>;
|
|
154
154
|
export declare const InstallFromURLArgs: z.ZodObject<{
|
|
155
155
|
path: z.ZodString;
|