@secondcloset/types 3.10.6 → 3.10.8

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": "3.10.6",
3
+ "version": "3.10.8",
4
4
  "description": "secondcloset type declaration and definitions",
5
5
  "main": "src/index.ts",
6
6
  "scripts": {
@@ -96,6 +96,7 @@ export interface Organization extends BaseOrganization {
96
96
  }[];
97
97
  employer_identification_number?: string;
98
98
  business_name?: string;
99
+ children_organizations?: ChidlrenOrganization[];
99
100
  }
100
101
 
101
102
  export interface Region {
@@ -110,3 +111,8 @@ export interface FacilityServiceArea {
110
111
  default_regions: Region[];
111
112
  organization_regions: Region[];
112
113
  }
114
+
115
+ export interface ChidlrenOrganization {
116
+ id: string;
117
+ name: string;
118
+ }
@@ -6,7 +6,10 @@ export type AppointmentType =
6
6
  | "return_to_sender"
7
7
  | "inventory_warehouse_receiving";
8
8
 
9
- export type AppointmentSubtype = "mid_mile_pick_up" | "mid_mile_drop_off";
9
+ export type AppointmentSubtype =
10
+ | "mid_mile_pick_up"
11
+ | "mid_mile_drop_off"
12
+ | "return_to_warehouse";
10
13
 
11
14
  export type DeliveryType = "heavy" | "parcel";
12
15
 
@@ -7,7 +7,10 @@ export type AppointmentType =
7
7
  | "immediate_retrieve"
8
8
  | "custom";
9
9
 
10
- export type AppointmentSubtype = "mid_mile_pick_up" | "mid_mile_drop_off";
10
+ export type AppointmentSubtype =
11
+ | "mid_mile_pick_up"
12
+ | "mid_mile_drop_off"
13
+ | "return_to_warehouse";
11
14
 
12
15
  export type DeliveryType = "heavy" | "parcel";
13
16