Skip to content

Commit

Permalink
Adding status skipped in step and substep of transformation (#620)
Browse files Browse the repository at this point in the history
  • Loading branch information
pranav-firake authored Nov 19, 2024
1 parent 99916b8 commit a602f19
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1054,7 +1054,7 @@ declare namespace CodeWhispererBearerTokenClient {
endTime?: Timestamp;
downloadArtifacts?: TransformationDownloadArtifacts;
}
export type TransformationProgressUpdateStatus = "IN_PROGRESS"|"COMPLETED"|"FAILED"|"PAUSED"|"AWAITING_CLIENT_ACTION"|string;
export type TransformationProgressUpdateStatus = "IN_PROGRESS"|"COMPLETED"|"FAILED"|"PAUSED"|"AWAITING_CLIENT_ACTION"|"SKIPPED"|string;
export interface TransformationProjectArtifactDescriptor {
sourceCodeArtifact?: TransformationSourceCodeArtifactDescriptor;
}
Expand Down Expand Up @@ -1088,7 +1088,7 @@ declare namespace CodeWhispererBearerTokenClient {
startTime?: Timestamp;
endTime?: Timestamp;
}
export type TransformationStepStatus = "CREATED"|"COMPLETED"|"PARTIALLY_COMPLETED"|"STOPPED"|"FAILED"|"PAUSED"|string;
export type TransformationStepStatus = "CREATED"|"COMPLETED"|"PARTIALLY_COMPLETED"|"STOPPED"|"FAILED"|"PAUSED"|"SKIPPED"|string;
export type TransformationSteps = TransformationStep[];
export type TransformationType = "LANGUAGE_UPGRADE"|"DOCUMENT_GENERATION"|string;
export type TransformationUploadArtifactType = "Dependencies"|"ClientBuildResult"|string;
Expand Down

0 comments on commit a602f19

Please sign in to comment.