Skip to content

Commit

Permalink
Fix execution state bad values
Browse files Browse the repository at this point in the history
Signed-off-by: gearnode <bryan@frimin.fr>
  • Loading branch information
gearnode committed Nov 17, 2023
1 parent e25a922 commit 2907882
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ export type ExecutionState =
| "succeed"
| "failed"
| "cancelled"
| "cancelling"
| "aborting"
| "aborted";
| "aborted"
| "discarded";

// eslint-disable-next-line @typescript-eslint/no-explicit-any
export interface FetchExecutionResponse<R = any> {
Expand Down

0 comments on commit 2907882

Please sign in to comment.