@devtron-labs/devtron-fe-common-lib 4.0.13-pre-0 → 4.0.13-pre-1
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/dist/{@code-editor-DLYyAC6O.js → @code-editor-6MXpOMjv.js} +2250 -2248
- package/dist/{@common-rjsf-BXuj9d2F.js → @common-rjsf-4OR3DjQT.js} +2402 -2402
- package/dist/{@framer-motion-RnHQV3Xi.js → @framer-motion-Y_npyogY.js} +54 -54
- package/dist/{@react-virtualized-sticky-tree-Cd4SYVNM.js → @react-virtualized-sticky-tree-CDJQrMbx.js} +12 -12
- package/dist/{@src-assets-images-h2C7PTpr.js → @src-assets-images-Wyx9idfk.js} +1 -1
- package/dist/{@vendor-Dw5D3ytC.js → @vendor-CIRGx4oz.js} +1282 -1282
- package/dist/Common/CIPipeline.Types.d.ts +12 -0
- package/dist/index.js +7128 -7128
- package/package.json +1 -1
|
@@ -190,6 +190,16 @@ export interface BuildPackConfigType {
|
|
|
190
190
|
buildPacks?: any;
|
|
191
191
|
args?: Record<string, string>;
|
|
192
192
|
}
|
|
193
|
+
export declare enum BuildSecretSourceType {
|
|
194
|
+
BUILD_INFRA = "BUILD_INFRA",
|
|
195
|
+
SOURCE_CODE = "SOURCE_CODE"
|
|
196
|
+
}
|
|
197
|
+
export interface BuildSecretType {
|
|
198
|
+
type: BuildSecretSourceType;
|
|
199
|
+
id: string;
|
|
200
|
+
secretName: string;
|
|
201
|
+
key: string;
|
|
202
|
+
}
|
|
193
203
|
export interface DockerBuildConfigType {
|
|
194
204
|
dockerfileContent: string;
|
|
195
205
|
dockerfileRelativePath: string;
|
|
@@ -200,6 +210,8 @@ export interface DockerBuildConfigType {
|
|
|
200
210
|
targetPlatform?: any;
|
|
201
211
|
language?: string;
|
|
202
212
|
languageFramework?: string;
|
|
213
|
+
secrets?: BuildSecretType[];
|
|
214
|
+
ssh?: BuildSecretType[];
|
|
203
215
|
}
|
|
204
216
|
export interface CIBuildConfigType {
|
|
205
217
|
buildPackConfig: BuildPackConfigType;
|