pl4y-data-library
Version:
This library contains the dtos, enums, schemas, and other data objects needed in the pl4y ecosystem.
10 lines (9 loc) • 554 B
text/typescript
export enum StockStatus {
IN_STOCK = "IN_STOCK", // Stock is available
OUT_OF_STOCK = "OUT_OF_STOCK", // No stock available
LOW_STOCK = "LOW_STOCK", // Stock level is below the defined threshold
BACK_ORDERED = "BACK_ORDERED", // Stock is not available but can be ordered for later delivery
DISCONTINUED = "DISCONTINUED", // Product is no longer being stocked or sold
RESERVED = "RESERVED", // Stock is reserved for specific orders
PENDING_REPLENISHMENT = "PENDING_REPLENISHMENT", // Stock is awaiting supplier replenishment
}