@retaila/shared-types 2.0.10 → 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 +68 -1
- package/dist/index.d.ts +68 -1
- package/dist/index.js +18 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1091,6 +1091,20 @@ var HolidayType = /* @__PURE__ */ ((HolidayType2) => {
|
|
|
1091
1091
|
HolidayType2["WORKING"] = "WORKING";
|
|
1092
1092
|
return HolidayType2;
|
|
1093
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 || {});
|
|
1094
1108
|
export {
|
|
1095
1109
|
AccountBranchScheduleDay,
|
|
1096
1110
|
AccountBranchScheduleStatus,
|
|
@@ -1140,6 +1154,8 @@ export {
|
|
|
1140
1154
|
FulfillmentStatus,
|
|
1141
1155
|
FunnelStep,
|
|
1142
1156
|
GeoZoneStatus,
|
|
1157
|
+
GestionUserRole,
|
|
1158
|
+
GestionUserStatus,
|
|
1143
1159
|
HolidayType,
|
|
1144
1160
|
IntegrationCategory,
|
|
1145
1161
|
IntegrationDeliveryZoneStatus,
|