@retaila/shared-types 2.0.7 → 2.0.9
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/dist/index.d.mts +125 -1
- package/dist/index.d.ts +125 -1
- package/dist/index.js +22 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +20 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -243,6 +243,17 @@ var AccountDeliveryOptionZoneStatus = /* @__PURE__ */ ((AccountDeliveryOptionZon
|
|
|
243
243
|
AccountDeliveryOptionZoneStatus2["INACTIVE"] = "INACTIVE";
|
|
244
244
|
return AccountDeliveryOptionZoneStatus2;
|
|
245
245
|
})(AccountDeliveryOptionZoneStatus || {});
|
|
246
|
+
var DeliveryOptionRuleType = /* @__PURE__ */ ((DeliveryOptionRuleType2) => {
|
|
247
|
+
DeliveryOptionRuleType2["PROCESSING_DAYS"] = "PROCESSING_DAYS";
|
|
248
|
+
DeliveryOptionRuleType2["SAME_DAY_CUTOFF"] = "SAME_DAY_CUTOFF";
|
|
249
|
+
DeliveryOptionRuleType2["DELIVERY_DAYS"] = "DELIVERY_DAYS";
|
|
250
|
+
DeliveryOptionRuleType2["PICKUP_READY_HOURS"] = "PICKUP_READY_HOURS";
|
|
251
|
+
DeliveryOptionRuleType2["FIXED_OFFSET_DAYS"] = "FIXED_OFFSET_DAYS";
|
|
252
|
+
DeliveryOptionRuleType2["BUSINESS_DAYS"] = "BUSINESS_DAYS";
|
|
253
|
+
DeliveryOptionRuleType2["DELIVERY_HOURS"] = "DELIVERY_HOURS";
|
|
254
|
+
DeliveryOptionRuleType2["BUFFER_SAFETY_MARGIN"] = "BUFFER_SAFETY_MARGIN";
|
|
255
|
+
return DeliveryOptionRuleType2;
|
|
256
|
+
})(DeliveryOptionRuleType || {});
|
|
246
257
|
|
|
247
258
|
// src/accountDomain/types.ts
|
|
248
259
|
var AccountDomainStatus = /* @__PURE__ */ ((AccountDomainStatus2) => {
|
|
@@ -1064,6 +1075,13 @@ var ChargeStatus = /* @__PURE__ */ ((ChargeStatus2) => {
|
|
|
1064
1075
|
ChargeStatus2["CANCELLED"] = "CANCELLED";
|
|
1065
1076
|
return ChargeStatus2;
|
|
1066
1077
|
})(ChargeStatus || {});
|
|
1078
|
+
|
|
1079
|
+
// src/holiday/types.ts
|
|
1080
|
+
var HolidayType = /* @__PURE__ */ ((HolidayType2) => {
|
|
1081
|
+
HolidayType2["NON_WORKING"] = "NON_WORKING";
|
|
1082
|
+
HolidayType2["WORKING"] = "WORKING";
|
|
1083
|
+
return HolidayType2;
|
|
1084
|
+
})(HolidayType || {});
|
|
1067
1085
|
export {
|
|
1068
1086
|
AccountBranchScheduleDay,
|
|
1069
1087
|
AccountBranchScheduleStatus,
|
|
@@ -1105,12 +1123,14 @@ export {
|
|
|
1105
1123
|
Currency,
|
|
1106
1124
|
CustomerStatus,
|
|
1107
1125
|
DayOfWeek,
|
|
1126
|
+
DeliveryOptionRuleType,
|
|
1108
1127
|
DeliveryType,
|
|
1109
1128
|
DeviceType,
|
|
1110
1129
|
DisplayOrderStatus,
|
|
1111
1130
|
FulfillmentStatus,
|
|
1112
1131
|
FunnelStep,
|
|
1113
1132
|
GeoZoneStatus,
|
|
1133
|
+
HolidayType,
|
|
1114
1134
|
IntegrationCategory,
|
|
1115
1135
|
IntegrationDeliveryZoneStatus,
|
|
1116
1136
|
IntegrationStatus,
|