pl4y-data-library
Version:
This library contains the dtos, enums, schemas, and other data objects needed in the pl4y ecosystem.
25 lines (24 loc) • 1.14 kB
text/typescript
export enum ProductCategory {
UNSPECIFIED = 0, // Default value for uninitialized categories
ELECTRONICS = 1, // Electronics (e.g., phones, laptops)
HOME_APPLIANCES = 2, // Home appliances (e.g., refrigerators, washing machines)
FURNITURE = 3, // Furniture (e.g., tables, chairs)
CLOTHING = 4, // Clothing and apparel
FOOTWEAR = 5, // Shoes, sandals, etc.
BEAUTY = 6, // Beauty and personal care
SPORTS = 7, // Sports equipment and apparel
BOOKS = 8, // Books and stationery
TOYS = 9, // Toys and games
GROCERY = 10, // Grocery and food items
BEVERAGES = 11, // Beverages (e.g., soft drinks, juices)
ALCOHOL = 12, // Alcoholic beverages
HEALTHCARE = 13, // Healthcare products (e.g., medicines, supplements)
PET_SUPPLIES = 14, // Supplies for pets
OFFICE_SUPPLIES = 15, // Office and school supplies
AUTOMOTIVE = 16, // Automotive products
JEWELRY = 17, // Jewelry and accessories
GARDEN = 18, // Garden and outdoor items
MUSIC = 19, // Music instruments and accessories
VIDEO_GAMES = 20, // Video games and consoles
OTHER = 21, // Any other categories
}