File tree Expand file tree Collapse file tree 1 file changed +10
-11
lines changed
src/Pages/Applications/DevtronApps/Details/AppConfigurations Expand file tree Collapse file tree 1 file changed +10
-11
lines changed Original file line number Diff line number Diff line change @@ -294,17 +294,16 @@ export interface AppEnvDeploymentConfigQueryParamsType {
294
294
compareWithManifestChartRefId ?: number
295
295
}
296
296
297
- export type GetConfigDiffDataProps = Pick < DeploymentConfigCompareProps , 'appName' | 'envName' | 'type' > & {
298
- configType : AppEnvDeploymentConfigType
299
- compareName : string
300
- identifierId : number
301
- pipelineId : number
302
- }
303
-
304
- export type GetDeploymentTemplateDataProps = Pick < DeploymentConfigCompareProps , 'type' | 'appName' | 'envName' > & {
305
- configType : AppEnvDeploymentConfigType
306
- compareName : string
307
- }
297
+ export type GetConfigDiffDataProps = Required <
298
+ Pick < DeploymentConfigCompareProps , 'appName' | 'envName' | 'type' > & {
299
+ configType : AppEnvDeploymentConfigType
300
+ compareName : string
301
+ identifierId : number
302
+ pipelineId : number
303
+ }
304
+ >
305
+
306
+ export type GetDeploymentTemplateDataProps = Omit < GetConfigDiffDataProps , 'identifierId' | 'pipelineId' >
308
307
309
308
export type GetManifestDataProps = Pick < DeploymentConfigCompareProps , 'type' | 'environments' > & {
310
309
appId : string
You can’t perform that action at this time.
0 commit comments