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
}
