@secondcloset/types 2.7.37-beta-newItemProfiling-0 → 2.7.37-beta-new-item-profiling-3
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/package.json
CHANGED
package/src/warehouse/index.ts
CHANGED
|
@@ -6,6 +6,7 @@ export * from "./locationTemplate";
|
|
|
6
6
|
export * from "./organization";
|
|
7
7
|
export * from "./pallet";
|
|
8
8
|
export * from "./product";
|
|
9
|
+
export * from "./productQuantum";
|
|
9
10
|
export * from "./shipmentProductsTracking";
|
|
10
11
|
export * from "./supply";
|
|
11
12
|
export * from "./supplyStock";
|
|
@@ -1,35 +1,14 @@
|
|
|
1
1
|
import { Product } from "./product";
|
|
2
2
|
|
|
3
|
-
export
|
|
4
|
-
EACH = "EACH",
|
|
5
|
-
CASE = "CASE",
|
|
6
|
-
INNER_PACK = "INNER_PACK",
|
|
7
|
-
MASTER_PACK = "MASTER_PACK",
|
|
8
|
-
}
|
|
3
|
+
export type ProductQuantumType = "EACH" | "CASE" | "INNER_PACK" | "MASTER_PACK";
|
|
9
4
|
|
|
10
|
-
export
|
|
11
|
-
INNER_PACK = "INNER_PACK",
|
|
12
|
-
MASTER_PACK = "MASTER_PACK",
|
|
13
|
-
}
|
|
5
|
+
export type CaseType = "INNER_PACK" | "MASTER_PACK";
|
|
14
6
|
|
|
15
|
-
export
|
|
16
|
-
EACH = "EACH",
|
|
17
|
-
INNER_PACK = "INNER_PACK",
|
|
18
|
-
}
|
|
7
|
+
export type ContainsType = "EACH"|"INNER_PACK";
|
|
19
8
|
|
|
20
|
-
export
|
|
21
|
-
LB = "LB",
|
|
22
|
-
OZ = "OZ",
|
|
23
|
-
G = "G",
|
|
24
|
-
KG = "KG",
|
|
25
|
-
}
|
|
9
|
+
export type WeightUnit ="LB"|"OZ"|"G"|"KG";
|
|
26
10
|
|
|
27
|
-
export
|
|
28
|
-
IN = "IN",
|
|
29
|
-
FT = "IT",
|
|
30
|
-
CM = "CM",
|
|
31
|
-
M = "M",
|
|
32
|
-
}
|
|
11
|
+
export type DimensionsUnit = "IN"|"IT"|"CM"| "M";
|
|
33
12
|
|
|
34
13
|
export interface ProductQuantum {
|
|
35
14
|
id: string;
|