@djaouad10/shared-types 1.0.9 → 1.0.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/index.d.ts +55 -9
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -2410,14 +2410,60 @@ declare const ourFileRouter: {
2410
2410
  }>;
2411
2411
  };
2412
2412
  export type OurFileRouter = typeof ourFileRouter;
2413
-
2414
- export {
2415
- Color,
2416
- DeliveryType,
2417
- OrderStatus,
2418
- Role,
2419
- ShippingProvider,
2420
- Size,
2421
- };
2413
+ export interface OrderStatusEnum {
2414
+ PENDING: "PENDING";
2415
+ CONFIRMED: "CONFIRMED";
2416
+ PRE_TRANSIT: "PRE_TRANSIT";
2417
+ SHIPPING: "SHIPPING";
2418
+ DELIVERED: "DELIVERED";
2419
+ RETURNED: "RETURNED";
2420
+ CANCELLED: "CANCELLED";
2421
+ SUSPENDED: "SUSPENDED";
2422
+ }
2423
+ export interface ColorEnum {
2424
+ BLACK: "BLACK";
2425
+ WHITE: "WHITE";
2426
+ GRAY: "GRAY";
2427
+ RED: "RED";
2428
+ BLUE: "BLUE";
2429
+ GREEN: "GREEN";
2430
+ YELLOW: "YELLOW";
2431
+ ORANGE: "ORANGE";
2432
+ PURPLE: "PURPLE";
2433
+ PINK: "PINK";
2434
+ BROWN: "BROWN";
2435
+ BEIGE: "BEIGE";
2436
+ NAVY: "NAVY";
2437
+ MAROON: "MAROON";
2438
+ TEAL: "TEAL";
2439
+ }
2440
+ export interface SizeEnum {
2441
+ XS: "XS";
2442
+ S: "S";
2443
+ M: "M";
2444
+ L: "L";
2445
+ XL: "XL";
2446
+ XXL: "XXL";
2447
+ XXXL: "XXXL";
2448
+ EU_36: "EU_36";
2449
+ EU_37: "EU_37";
2450
+ EU_38: "EU_38";
2451
+ EU_39: "EU_39";
2452
+ EU_40: "EU_40";
2453
+ EU_41: "EU_41";
2454
+ EU_42: "EU_42";
2455
+ EU_43: "EU_43";
2456
+ }
2457
+ export interface RoleEnum {
2458
+ client: "client";
2459
+ admin: "admin";
2460
+ }
2461
+ export interface DeliveryTypeEnum {
2462
+ TO_DESK: "TO_DESK";
2463
+ TO_HOME: "TO_HOME";
2464
+ }
2465
+ export interface ShippingProviderEnum {
2466
+ WORLD_EXPRESS: "WORLD_EXPRESS";
2467
+ }
2422
2468
 
2423
2469
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@djaouad10/shared-types",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "types": "./index.d.ts",
5
5
  "publishConfig": {
6
6
  "access": "public"