@djaouad10/shared-types 1.0.9 → 1.0.11
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.
- package/index.d.ts +56 -9
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -59,6 +59,7 @@ export type CartItemWithItsVariation = PublicCartItemDTO & {
|
|
|
59
59
|
product: {
|
|
60
60
|
price: number;
|
|
61
61
|
discount_price: number | null;
|
|
62
|
+
images: PublicImageDTO[];
|
|
62
63
|
};
|
|
63
64
|
};
|
|
64
65
|
};
|
|
@@ -2410,14 +2411,60 @@ declare const ourFileRouter: {
|
|
|
2410
2411
|
}>;
|
|
2411
2412
|
};
|
|
2412
2413
|
export type OurFileRouter = typeof ourFileRouter;
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2414
|
+
export interface OrderStatusEnum {
|
|
2415
|
+
PENDING: "PENDING";
|
|
2416
|
+
CONFIRMED: "CONFIRMED";
|
|
2417
|
+
PRE_TRANSIT: "PRE_TRANSIT";
|
|
2418
|
+
SHIPPING: "SHIPPING";
|
|
2419
|
+
DELIVERED: "DELIVERED";
|
|
2420
|
+
RETURNED: "RETURNED";
|
|
2421
|
+
CANCELLED: "CANCELLED";
|
|
2422
|
+
SUSPENDED: "SUSPENDED";
|
|
2423
|
+
}
|
|
2424
|
+
export interface ColorEnum {
|
|
2425
|
+
BLACK: "BLACK";
|
|
2426
|
+
WHITE: "WHITE";
|
|
2427
|
+
GRAY: "GRAY";
|
|
2428
|
+
RED: "RED";
|
|
2429
|
+
BLUE: "BLUE";
|
|
2430
|
+
GREEN: "GREEN";
|
|
2431
|
+
YELLOW: "YELLOW";
|
|
2432
|
+
ORANGE: "ORANGE";
|
|
2433
|
+
PURPLE: "PURPLE";
|
|
2434
|
+
PINK: "PINK";
|
|
2435
|
+
BROWN: "BROWN";
|
|
2436
|
+
BEIGE: "BEIGE";
|
|
2437
|
+
NAVY: "NAVY";
|
|
2438
|
+
MAROON: "MAROON";
|
|
2439
|
+
TEAL: "TEAL";
|
|
2440
|
+
}
|
|
2441
|
+
export interface SizeEnum {
|
|
2442
|
+
XS: "XS";
|
|
2443
|
+
S: "S";
|
|
2444
|
+
M: "M";
|
|
2445
|
+
L: "L";
|
|
2446
|
+
XL: "XL";
|
|
2447
|
+
XXL: "XXL";
|
|
2448
|
+
XXXL: "XXXL";
|
|
2449
|
+
EU_36: "EU_36";
|
|
2450
|
+
EU_37: "EU_37";
|
|
2451
|
+
EU_38: "EU_38";
|
|
2452
|
+
EU_39: "EU_39";
|
|
2453
|
+
EU_40: "EU_40";
|
|
2454
|
+
EU_41: "EU_41";
|
|
2455
|
+
EU_42: "EU_42";
|
|
2456
|
+
EU_43: "EU_43";
|
|
2457
|
+
}
|
|
2458
|
+
export interface RoleEnum {
|
|
2459
|
+
client: "client";
|
|
2460
|
+
admin: "admin";
|
|
2461
|
+
}
|
|
2462
|
+
export interface DeliveryTypeEnum {
|
|
2463
|
+
TO_DESK: "TO_DESK";
|
|
2464
|
+
TO_HOME: "TO_HOME";
|
|
2465
|
+
}
|
|
2466
|
+
export interface ShippingProviderEnum {
|
|
2467
|
+
WORLD_EXPRESS: "WORLD_EXPRESS";
|
|
2468
|
+
}
|
|
2422
2469
|
|
|
2423
2470
|
export {};
|