@secondcloset/types 3.10.5 → 3.10.6-beta-rtw.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
|
@@ -13,6 +13,9 @@ export type OrganizationConfigKey =
|
|
|
13
13
|
| "freightcom_api_password"
|
|
14
14
|
| "preferred_return_facility"
|
|
15
15
|
| "disable_partial_fulfillment"
|
|
16
|
+
| "multi_facility_fulfillment"
|
|
17
|
+
| "activated_facilities"
|
|
18
|
+
| "orchestration_prioritize_facility_weight"
|
|
16
19
|
| "use_default_facility_for_partial_fallback";
|
|
17
20
|
|
|
18
21
|
export interface OrganizationConfig {
|
|
@@ -7,7 +7,10 @@ export type AppointmentType =
|
|
|
7
7
|
| "immediate_retrieve"
|
|
8
8
|
| "custom";
|
|
9
9
|
|
|
10
|
-
export type AppointmentSubtype =
|
|
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
|
|