export type OrderStatus = (
    "open" |
    "closed" |
    "cancelled" |
    "any" |
    string
);