export type FulfillmentStatus = (
    "fulfilled" |
    "restocked" |
    "partial" |
    // TODO check the types below
    // "shipped" |
    // "unshipped" |
    //  "any" |
    null
);