/** * The order status. */ export type OrderStatus = 'created' | 'new' | 'completed' | 'cancelled' | 'failed';