@secondcloset/types 2.7.35 → 2.7.36-beta.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondcloset/types",
3
- "version": "2.7.35",
3
+ "version": "2.7.36-beta.0",
4
4
  "description": "secondcloset type declaration and definitions",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
@@ -14,6 +14,15 @@ export type ShipmentActionType =
14
14
  | StorageAppointmentType
15
15
  | FulfillmentAppointmentType;
16
16
 
17
+ export type ServiceCode =
18
+ | "standard"
19
+ | "white_glove"
20
+ | "to_the_door"
21
+ | "room_of_choice"
22
+ | "standard_1_person"
23
+ | "room_of_choice_1_person"
24
+ | "to_the_door_1_person";
25
+
17
26
  export type ScServiceCode =
18
27
  | "second_closet_standard"
19
28
  | "second_closet_white_glove"
@@ -21,7 +30,8 @@ export type ScServiceCode =
21
30
  | "second_closet_room_of_choice"
22
31
  | "second_closet_standard_1_person"
23
32
  | "second_closet_room_of_choice_1_person"
24
- | "second_closet_to_the_door_1_person";
33
+ | "second_closet_to_the_door_1_person"
34
+ | ServiceCode;
25
35
 
26
36
  export interface Shipment {
27
37
  id: string;
@@ -21,3 +21,4 @@ export * from "./carrierTransferPallet";
21
21
  export * from "./carrierTransferPackage";
22
22
  export * from "./picksheet";
23
23
  export * from "./occupiedLocation";
24
+ export * from "./putawayActivityLog";
@@ -0,0 +1,18 @@
1
+ import { Product } from "./product";
2
+
3
+ export enum PutawayActivityLogType {
4
+ START = "START",
5
+ PUTAWAY = "PUTAWAY",
6
+ }
7
+
8
+ export interface PutawayActivityLog {
9
+ id: string;
10
+ action: PutawayActivityLogType;
11
+ from_container_id?: string;
12
+ to_container_id?: string;
13
+ user_email: string;
14
+ location_code?: string;
15
+ reference_number?: string;
16
+ product?: string;
17
+ created_at?: string;
18
+ }