Skip to content

Commit

Permalink
feat: include fraudulent in order status type
Browse files Browse the repository at this point in the history
  • Loading branch information
brankoconjic committed Sep 10, 2024
1 parent 86c9dc3 commit 49ea888
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/orders/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import type {
Relationships,
} from "../types";

type OrderStatus = "pending" | "failed" | "paid" | "refunded";
type OrderStatus = "pending" | "failed" | "paid" | "refunded" | "fraudulent";

type FirstOrderItem = {
/**
Expand Down Expand Up @@ -169,6 +169,7 @@ type Attributes = {
* - `failed`
* - `paid`
* - `refunded`
* - `fraudulent`
*/
status: OrderStatus;
/**
Expand Down

0 comments on commit 49ea888

Please sign in to comment.