@secondcloset/types 2.7.22-beta-locationItems-0 → 2.8.0-beta-locationItemStatus-0
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
|
@@ -4,9 +4,9 @@ import { Pallet } from "./pallet";
|
|
|
4
4
|
import { Bin } from "./bin";
|
|
5
5
|
import { ManualItem } from "./manualItem";
|
|
6
6
|
|
|
7
|
-
enum LocationItemStatus {
|
|
8
|
-
NORMAL = "NORMAL",
|
|
7
|
+
export enum LocationItemStatus {
|
|
9
8
|
DAMAGED = "DAMAGED",
|
|
9
|
+
NORMAL = "NORMAL",
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
export interface LocationItem {
|
|
@@ -23,7 +23,7 @@ export interface LocationItem {
|
|
|
23
23
|
pallet?: Pallet;
|
|
24
24
|
bin_id: string;
|
|
25
25
|
bin: Bin;
|
|
26
|
-
status: LocationItemStatus;
|
|
27
26
|
created_at: string;
|
|
28
27
|
updated_at: string;
|
|
28
|
+
status: LocationItemStatus;
|
|
29
29
|
}
|