@retaila/shared-types 2.0.9 → 2.0.11
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 +102 -1
- package/dist/index.d.ts +102 -1
- package/dist/index.js +29 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +26 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -263,6 +263,15 @@ var AccountDomainStatus = /* @__PURE__ */ ((AccountDomainStatus2) => {
|
|
|
263
263
|
return AccountDomainStatus2;
|
|
264
264
|
})(AccountDomainStatus || {});
|
|
265
265
|
|
|
266
|
+
// src/accountEmailDomain/types.ts
|
|
267
|
+
var AccountEmailDomainStatus = /* @__PURE__ */ ((AccountEmailDomainStatus2) => {
|
|
268
|
+
AccountEmailDomainStatus2["PENDING"] = "PENDING";
|
|
269
|
+
AccountEmailDomainStatus2["DNS_PENDING"] = "DNS_PENDING";
|
|
270
|
+
AccountEmailDomainStatus2["ACTIVE"] = "ACTIVE";
|
|
271
|
+
AccountEmailDomainStatus2["INACTIVE"] = "INACTIVE";
|
|
272
|
+
return AccountEmailDomainStatus2;
|
|
273
|
+
})(AccountEmailDomainStatus || {});
|
|
274
|
+
|
|
266
275
|
// src/accountIntegration/types.ts
|
|
267
276
|
var AccountIntegrationStatus = /* @__PURE__ */ ((AccountIntegrationStatus2) => {
|
|
268
277
|
AccountIntegrationStatus2["ACTIVE"] = "ACTIVE";
|
|
@@ -1082,6 +1091,20 @@ var HolidayType = /* @__PURE__ */ ((HolidayType2) => {
|
|
|
1082
1091
|
HolidayType2["WORKING"] = "WORKING";
|
|
1083
1092
|
return HolidayType2;
|
|
1084
1093
|
})(HolidayType || {});
|
|
1094
|
+
|
|
1095
|
+
// src/gestionUser/types.ts
|
|
1096
|
+
var GestionUserRole = /* @__PURE__ */ ((GestionUserRole2) => {
|
|
1097
|
+
GestionUserRole2["OWNER"] = "OWNER";
|
|
1098
|
+
GestionUserRole2["ADMIN"] = "ADMIN";
|
|
1099
|
+
GestionUserRole2["ANALYST"] = "ANALYST";
|
|
1100
|
+
return GestionUserRole2;
|
|
1101
|
+
})(GestionUserRole || {});
|
|
1102
|
+
var GestionUserStatus = /* @__PURE__ */ ((GestionUserStatus2) => {
|
|
1103
|
+
GestionUserStatus2["ACTIVE"] = "ACTIVE";
|
|
1104
|
+
GestionUserStatus2["INACTIVE"] = "INACTIVE";
|
|
1105
|
+
GestionUserStatus2["LOCKED"] = "LOCKED";
|
|
1106
|
+
return GestionUserStatus2;
|
|
1107
|
+
})(GestionUserStatus || {});
|
|
1085
1108
|
export {
|
|
1086
1109
|
AccountBranchScheduleDay,
|
|
1087
1110
|
AccountBranchScheduleStatus,
|
|
@@ -1090,6 +1113,7 @@ export {
|
|
|
1090
1113
|
AccountDeliveryOptionStatus,
|
|
1091
1114
|
AccountDeliveryOptionZoneStatus,
|
|
1092
1115
|
AccountDomainStatus,
|
|
1116
|
+
AccountEmailDomainStatus,
|
|
1093
1117
|
AccountExchangeRateType,
|
|
1094
1118
|
AccountIntegrationConnectionStatus,
|
|
1095
1119
|
AccountIntegrationEnvironment,
|
|
@@ -1130,6 +1154,8 @@ export {
|
|
|
1130
1154
|
FulfillmentStatus,
|
|
1131
1155
|
FunnelStep,
|
|
1132
1156
|
GeoZoneStatus,
|
|
1157
|
+
GestionUserRole,
|
|
1158
|
+
GestionUserStatus,
|
|
1133
1159
|
HolidayType,
|
|
1134
1160
|
IntegrationCategory,
|
|
1135
1161
|
IntegrationDeliveryZoneStatus,
|