dcdx 1.3.0-next.43 → 1.3.0-next.45
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/apt.js +86 -8973
- package/lib/commands/build.js +394 -9008
- package/lib/commands/configure.js +560 -0
- package/lib/commands/database.js +15 -8968
- package/lib/commands/debug.js +774 -9019
- package/lib/commands/install.js +463 -9587
- package/lib/commands/reset.js +413 -8975
- package/lib/commands/run.js +467 -9006
- package/lib/commands/stop.js +413 -8975
- package/lib/commands/update.js +7 -8957
- package/lib/index.js +33 -2
- package/lib/types/src/applications/base.d.ts +2 -0
- package/lib/types/src/apt/helpers/downloadFile.d.ts +1 -0
- package/lib/types/src/apt/helpers/getRunForStage.d.ts +1 -1
- package/lib/types/src/apt/helpers/getUrlByAppKey.d.ts +1 -0
- package/lib/types/src/apt/helpers/installAppInCluster.d.ts +2 -0
- package/lib/types/src/commands/configure.d.ts +2 -0
- package/lib/types/src/helpers/ActionHandler.d.ts +1 -40
- package/lib/types/src/helpers/getConfig.d.ts +2 -0
- package/lib/types/src/helpers/getMainArtifactFromOBR.d.ts +1 -0
- package/lib/types/src/helpers/installFromMPAC.d.ts +2 -0
- package/lib/types/src/helpers/installFromURL.d.ts +2 -0
- package/lib/types/src/helpers/installWithQuickReload.d.ts +2 -0
- package/lib/types/src/helpers/setupHost.d.ts +3 -0
- package/lib/types/src/helpers/validateAtlassianPlugin.d.ts +4 -0
- package/lib/types/src/types/AMPS.d.ts +12 -0
- package/lib/types/src/types/Application.d.ts +6 -0
- package/lib/types/src/types/Config.d.ts +328 -0
- package/lib/types/src/types/Configure.d.ts +145 -0
- package/lib/types/src/types/DCAPT.d.ts +16 -4
- package/lib/types/src/types/FileWatcher.d.ts +3 -0
- package/lib/types/src/types/Install.d.ts +176 -39
- package/package.json +1 -1
- package/lib/types/src/apt/helpers/downloadApp.d.ts +0 -1
- package/lib/types/src/apt/helpers/installApp.d.ts +0 -2
- package/lib/types/src/helpers/Installer.d.ts +0 -3
|
@@ -1,52 +1,15 @@
|
|
|
1
1
|
import { z } from 'zod';
|
|
2
|
-
export declare const InstallArgs: z.ZodObject<{
|
|
3
|
-
username: z.ZodOptional<z.ZodString>;
|
|
4
|
-
password: z.ZodOptional<z.ZodString>;
|
|
5
|
-
watch: z.ZodBoolean;
|
|
6
|
-
outputDirectory: z.ZodOptional<z.ZodString>;
|
|
7
|
-
activateProfiles: z.ZodOptional<z.ZodString>;
|
|
8
|
-
cwd: z.ZodOptional<z.ZodString>;
|
|
9
|
-
license: z.ZodString;
|
|
10
|
-
appKey: z.ZodOptional<z.ZodString>;
|
|
11
|
-
baseUrl: z.ZodOptional<z.ZodString>;
|
|
12
|
-
obr: z.ZodOptional<z.ZodBoolean>;
|
|
13
|
-
mpac: z.ZodOptional<z.ZodBoolean>;
|
|
14
|
-
}, "strip", z.ZodTypeAny, {
|
|
15
|
-
watch: boolean;
|
|
16
|
-
license: string;
|
|
17
|
-
username?: string | undefined;
|
|
18
|
-
password?: string | undefined;
|
|
19
|
-
outputDirectory?: string | undefined;
|
|
20
|
-
activateProfiles?: string | undefined;
|
|
21
|
-
cwd?: string | undefined;
|
|
22
|
-
appKey?: string | undefined;
|
|
23
|
-
baseUrl?: string | undefined;
|
|
24
|
-
obr?: boolean | undefined;
|
|
25
|
-
mpac?: boolean | undefined;
|
|
26
|
-
}, {
|
|
27
|
-
watch: boolean;
|
|
28
|
-
license: string;
|
|
29
|
-
username?: string | undefined;
|
|
30
|
-
password?: string | undefined;
|
|
31
|
-
outputDirectory?: string | undefined;
|
|
32
|
-
activateProfiles?: string | undefined;
|
|
33
|
-
cwd?: string | undefined;
|
|
34
|
-
appKey?: string | undefined;
|
|
35
|
-
baseUrl?: string | undefined;
|
|
36
|
-
obr?: boolean | undefined;
|
|
37
|
-
mpac?: boolean | undefined;
|
|
38
|
-
}>;
|
|
39
2
|
export declare const InstallOptions: z.ZodObject<{
|
|
40
3
|
username: z.ZodOptional<z.ZodString>;
|
|
41
4
|
password: z.ZodOptional<z.ZodString>;
|
|
42
5
|
cwd: z.ZodOptional<z.ZodString>;
|
|
43
6
|
product: z.ZodOptional<z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>>;
|
|
7
|
+
baseUrl: z.ZodString;
|
|
44
8
|
environment: z.ZodOptional<z.ZodString>;
|
|
45
9
|
license: z.ZodOptional<z.ZodString>;
|
|
46
10
|
force: z.ZodOptional<z.ZodBoolean>;
|
|
47
11
|
appKey: z.ZodOptional<z.ZodString>;
|
|
48
12
|
restartAfterInstall: z.ZodOptional<z.ZodBoolean>;
|
|
49
|
-
baseUrl: z.ZodString;
|
|
50
13
|
aws_access_key_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
51
14
|
aws_secret_access_key: z.ZodOptional<z.ZodOptional<z.ZodString>>;
|
|
52
15
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -76,5 +39,179 @@ export declare const InstallOptions: z.ZodObject<{
|
|
|
76
39
|
aws_access_key_id?: string | undefined;
|
|
77
40
|
aws_secret_access_key?: string | undefined;
|
|
78
41
|
}>;
|
|
79
|
-
export
|
|
42
|
+
export declare const InstallFromAMPSArgs: z.ZodObject<{
|
|
43
|
+
username: z.ZodOptional<z.ZodString>;
|
|
44
|
+
password: z.ZodOptional<z.ZodString>;
|
|
45
|
+
watch: z.ZodOptional<z.ZodBoolean>;
|
|
46
|
+
outputDirectory: z.ZodOptional<z.ZodString>;
|
|
47
|
+
activateProfiles: z.ZodOptional<z.ZodString>;
|
|
48
|
+
cwd: z.ZodOptional<z.ZodString>;
|
|
49
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
50
|
+
license: z.ZodOptional<z.ZodString>;
|
|
51
|
+
obr: z.ZodOptional<z.ZodBoolean>;
|
|
52
|
+
}, "strip", z.ZodTypeAny, {
|
|
53
|
+
username?: string | undefined;
|
|
54
|
+
password?: string | undefined;
|
|
55
|
+
watch?: boolean | undefined;
|
|
56
|
+
outputDirectory?: string | undefined;
|
|
57
|
+
activateProfiles?: string | undefined;
|
|
58
|
+
cwd?: string | undefined;
|
|
59
|
+
baseUrl?: string | undefined;
|
|
60
|
+
license?: string | undefined;
|
|
61
|
+
obr?: boolean | undefined;
|
|
62
|
+
}, {
|
|
63
|
+
username?: string | undefined;
|
|
64
|
+
password?: string | undefined;
|
|
65
|
+
watch?: boolean | undefined;
|
|
66
|
+
outputDirectory?: string | undefined;
|
|
67
|
+
activateProfiles?: string | undefined;
|
|
68
|
+
cwd?: string | undefined;
|
|
69
|
+
baseUrl?: string | undefined;
|
|
70
|
+
license?: string | undefined;
|
|
71
|
+
obr?: boolean | undefined;
|
|
72
|
+
}>;
|
|
73
|
+
export declare const InstallFromAMPSOptions: z.ZodObject<{
|
|
74
|
+
watch: z.ZodBoolean;
|
|
75
|
+
outputDirectory: z.ZodString;
|
|
76
|
+
obr: z.ZodBoolean;
|
|
77
|
+
baseUrl: z.ZodString;
|
|
78
|
+
username: z.ZodString;
|
|
79
|
+
password: z.ZodString;
|
|
80
|
+
license: z.ZodString;
|
|
81
|
+
activateProfiles: z.ZodString;
|
|
82
|
+
cwd: z.ZodString;
|
|
83
|
+
}, "strip", z.ZodTypeAny, {
|
|
84
|
+
username: string;
|
|
85
|
+
password: string;
|
|
86
|
+
watch: boolean;
|
|
87
|
+
outputDirectory: string;
|
|
88
|
+
activateProfiles: string;
|
|
89
|
+
cwd: string;
|
|
90
|
+
baseUrl: string;
|
|
91
|
+
license: string;
|
|
92
|
+
obr: boolean;
|
|
93
|
+
}, {
|
|
94
|
+
username: string;
|
|
95
|
+
password: string;
|
|
96
|
+
watch: boolean;
|
|
97
|
+
outputDirectory: string;
|
|
98
|
+
activateProfiles: string;
|
|
99
|
+
cwd: string;
|
|
100
|
+
baseUrl: string;
|
|
101
|
+
license: string;
|
|
102
|
+
obr: boolean;
|
|
103
|
+
}>;
|
|
104
|
+
export declare const InstallFromMPACArgs: z.ZodObject<{
|
|
105
|
+
username: z.ZodOptional<z.ZodString>;
|
|
106
|
+
password: z.ZodOptional<z.ZodString>;
|
|
107
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
108
|
+
license: z.ZodOptional<z.ZodString>;
|
|
109
|
+
appKey: z.ZodString;
|
|
110
|
+
}, "strip", z.ZodTypeAny, {
|
|
111
|
+
appKey: string;
|
|
112
|
+
username?: string | undefined;
|
|
113
|
+
password?: string | undefined;
|
|
114
|
+
baseUrl?: string | undefined;
|
|
115
|
+
license?: string | undefined;
|
|
116
|
+
}, {
|
|
117
|
+
appKey: string;
|
|
118
|
+
username?: string | undefined;
|
|
119
|
+
password?: string | undefined;
|
|
120
|
+
baseUrl?: string | undefined;
|
|
121
|
+
license?: string | undefined;
|
|
122
|
+
}>;
|
|
123
|
+
export declare const InstallFromMPACOptions: z.ZodObject<{
|
|
124
|
+
appKey: z.ZodString;
|
|
125
|
+
baseUrl: z.ZodString;
|
|
126
|
+
username: z.ZodString;
|
|
127
|
+
password: z.ZodString;
|
|
128
|
+
license: z.ZodString;
|
|
129
|
+
}, "strip", z.ZodTypeAny, {
|
|
130
|
+
username: string;
|
|
131
|
+
password: string;
|
|
132
|
+
baseUrl: string;
|
|
133
|
+
license: string;
|
|
134
|
+
appKey: string;
|
|
135
|
+
}, {
|
|
136
|
+
username: string;
|
|
137
|
+
password: string;
|
|
138
|
+
baseUrl: string;
|
|
139
|
+
license: string;
|
|
140
|
+
appKey: string;
|
|
141
|
+
}>;
|
|
142
|
+
export declare const InstallFromURLArgs: z.ZodObject<{
|
|
143
|
+
path: z.ZodString;
|
|
144
|
+
username: z.ZodOptional<z.ZodString>;
|
|
145
|
+
password: z.ZodOptional<z.ZodString>;
|
|
146
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
147
|
+
license: z.ZodOptional<z.ZodString>;
|
|
148
|
+
}, "strip", z.ZodTypeAny, {
|
|
149
|
+
path: string;
|
|
150
|
+
username?: string | undefined;
|
|
151
|
+
password?: string | undefined;
|
|
152
|
+
baseUrl?: string | undefined;
|
|
153
|
+
license?: string | undefined;
|
|
154
|
+
}, {
|
|
155
|
+
path: string;
|
|
156
|
+
username?: string | undefined;
|
|
157
|
+
password?: string | undefined;
|
|
158
|
+
baseUrl?: string | undefined;
|
|
159
|
+
license?: string | undefined;
|
|
160
|
+
}>;
|
|
161
|
+
export declare const InstallFromURLOptions: z.ZodObject<{
|
|
162
|
+
path: z.ZodOptional<z.ZodString>;
|
|
163
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
164
|
+
username: z.ZodOptional<z.ZodString>;
|
|
165
|
+
password: z.ZodOptional<z.ZodString>;
|
|
166
|
+
license: z.ZodOptional<z.ZodString>;
|
|
167
|
+
verbose: z.ZodOptional<z.ZodBoolean>;
|
|
168
|
+
}, "strip", z.ZodTypeAny, {
|
|
169
|
+
path?: string | undefined;
|
|
170
|
+
username?: string | undefined;
|
|
171
|
+
password?: string | undefined;
|
|
172
|
+
verbose?: boolean | undefined;
|
|
173
|
+
baseUrl?: string | undefined;
|
|
174
|
+
license?: string | undefined;
|
|
175
|
+
}, {
|
|
176
|
+
path?: string | undefined;
|
|
177
|
+
username?: string | undefined;
|
|
178
|
+
password?: string | undefined;
|
|
179
|
+
verbose?: boolean | undefined;
|
|
180
|
+
baseUrl?: string | undefined;
|
|
181
|
+
license?: string | undefined;
|
|
182
|
+
}>;
|
|
183
|
+
export declare const InstallWithQuickReloadOptions: z.ZodObject<z.objectUtil.extendShape<{
|
|
184
|
+
path: z.ZodOptional<z.ZodString>;
|
|
185
|
+
baseUrl: z.ZodOptional<z.ZodString>;
|
|
186
|
+
username: z.ZodOptional<z.ZodString>;
|
|
187
|
+
password: z.ZodOptional<z.ZodString>;
|
|
188
|
+
license: z.ZodOptional<z.ZodString>;
|
|
189
|
+
verbose: z.ZodOptional<z.ZodBoolean>;
|
|
190
|
+
}, {
|
|
191
|
+
path: z.ZodString;
|
|
192
|
+
product: z.ZodEnum<["jira", "confluence", "bitbucket", "bamboo"]>;
|
|
193
|
+
}>, "strip", z.ZodTypeAny, {
|
|
194
|
+
path: string;
|
|
195
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
196
|
+
username?: string | undefined;
|
|
197
|
+
password?: string | undefined;
|
|
198
|
+
verbose?: boolean | undefined;
|
|
199
|
+
baseUrl?: string | undefined;
|
|
200
|
+
license?: string | undefined;
|
|
201
|
+
}, {
|
|
202
|
+
path: string;
|
|
203
|
+
product: "jira" | "confluence" | "bitbucket" | "bamboo";
|
|
204
|
+
username?: string | undefined;
|
|
205
|
+
password?: string | undefined;
|
|
206
|
+
verbose?: boolean | undefined;
|
|
207
|
+
baseUrl?: string | undefined;
|
|
208
|
+
license?: string | undefined;
|
|
209
|
+
}>;
|
|
80
210
|
export type TInstallOptions = z.infer<typeof InstallOptions>;
|
|
211
|
+
export type TInstallFromAMPSArgs = z.infer<typeof InstallFromAMPSArgs>;
|
|
212
|
+
export type TInstallFromAMPSOptions = z.infer<typeof InstallFromAMPSOptions>;
|
|
213
|
+
export type TInstallFromMPACArgs = z.infer<typeof InstallFromMPACArgs>;
|
|
214
|
+
export type TInstallFromMPACOptions = z.infer<typeof InstallFromMPACOptions>;
|
|
215
|
+
export type TInstallFromURLArgs = z.infer<typeof InstallFromURLArgs>;
|
|
216
|
+
export type TInstallFromURLOptions = z.infer<typeof InstallFromURLOptions>;
|
|
217
|
+
export type TInstallWithQuickReloadOptions = z.infer<typeof InstallWithQuickReloadOptions>;
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare const downloadApp: (addonKey: string) => Promise<string>;
|