Skip to content

Commit

Permalink
update radix api
Browse files Browse the repository at this point in the history
  • Loading branch information
Pespiri committed Nov 30, 2023
1 parent fd86f28 commit aa4c1ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/store/radix-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2182,7 +2182,7 @@ export type JobSummary = {
[key: string]: string;
};
name?: string;
pipeline?: 'build-deploy' | ' build';
pipeline?: 'build' | 'build-deploy' | 'promote' | 'deploy';
promotedFromDeployment?: string;
promotedFromEnvironment?: string;
promotedToEnvironment?: string;
Expand Down Expand Up @@ -2489,7 +2489,7 @@ export type Job = {
[key: string]: string;
};
name?: string;
pipeline?: 'build-deploy';
pipeline?: 'build' | 'build-deploy' | 'promote' | 'deploy';
promotedDeploymentName?: string;
promotedFromDeployment?: string;
promotedFromEnvironment?: string;
Expand Down

0 comments on commit aa4c1ec

Please sign in to comment.