@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.
@@ -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;