OperationStatus type

The set of possible states an operation can be in at any given time.

type OperationStatus =
  | "notStarted"
  | "running"
  | "succeeded"
  | "canceled"
  | "failed"