Skip to content

Commit

Permalink
fix(order_state): remove FAILED and INVALID from order_state
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerald Baulig committed Apr 11, 2024
1 parent 7a7a168 commit 6a0c6bf
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions packages/protos/io/restorecommerce/order.proto
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,10 @@ service OrderService {

enum OrderState {
PENDING = 0;
INVALID = 1;
SUBMITTED = 2;
COMPLETED = 3;
WITHDRAWN = 4;
CANCELLED = 5;
FAILED = 6;
SUBMITTED = 1;
COMPLETED = 2;
WITHDRAWN = 3;
CANCELLED = 4;
}

enum FulfillmentInvoiceMode {
Expand Down

0 comments on commit 6a0c6bf

Please sign in to comment.