@lyxa.ai/types 1.0.137
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/README.md +30 -0
- package/index.d.ts +8 -0
- package/index.js +8 -0
- package/package.json +28 -0
- package/utilities/enum.d.ts +581 -0
- package/utilities/enum.js +674 -0
- package/utilities/enum.js.map +1 -0
- package/utilities/validation/common-validation.d.ts +773 -0
- package/utilities/validation/common-validation.js +156 -0
- package/utilities/validation/common-validation.js.map +1 -0
- package/utilities/validation/global-validation.d.ts +169 -0
- package/utilities/validation/global-validation.js +239 -0
- package/utilities/validation/global-validation.js.map +1 -0
- package/utilities/validation/index.d.ts +2 -0
- package/utilities/validation/index.js +19 -0
- package/utilities/validation/index.js.map +1 -0
|
@@ -0,0 +1,674 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.CardType = exports.PaymentPreference = exports.CartStatus = exports.AdminRole = exports.MarketingStatus = exports.MarketingType = exports.FavouriteType = exports.CouponExpirationReason = exports.CouponType = exports.BobType = exports.BobModel = exports.BobSettlementStatus = exports.BobSettlementType = exports.BobAccountType = exports.ZoneStatus = exports.FaqAccountType = exports.CounterType = exports.BannerUserType = exports.BannerLinkType = exports.BannerClickType = exports.ShopRole = exports.OnlineStatus = exports.ShopOnlineStatus = exports.ChargeType = exports.ClickType = exports.NotificationAccountType = exports.DishCategory = exports.ProductDietaryType = exports.PriceOption = exports.ProductType = exports.CoreAuthIdentityType = exports.UserAppSectionItemType = exports.UserAppSectionType = exports.AdminLogsUpdatedFieldsType = exports.UpdatedField = exports.GeoLocationType = exports.RatingAccountType = exports.SubscriptionStatus = exports.SubscriptionPackage = exports.PaidCurrency = exports.PaymentStatus = exports.PaymentMethod = exports.ValueType = exports.HolidayWorkStatus = exports.WorkStatus = exports.WeekDay = exports.GlobalItemType = exports.ItemType = exports.Status = exports.AccountType = void 0;
|
|
4
|
+
exports.ChatroomType = exports.MessageSender = exports.TicketStatus = exports.TicketType = exports.RewardedToTypeEnum = exports.ReplacementType = exports.ReplacementReason = exports.UrgentOrderReason = exports.LateOrderReason = exports.OrderCanceledBy = exports.LogUser = exports.PayoutStatus = exports.PayoutType = exports.AddRemoveCreditAccountType = exports.SettingsReasonStatus = exports.CancellationReasonTypeEnum = exports.SupportReasonTypeEnum = exports.PlusSettingsPackageType = exports.AddRemoveCreditSettlementType = exports.SettlementType = exports.MediaType = exports.WorkingHourSettingsType = exports.ZoneGeometryType = exports.RiderAssignmentStatus = exports.CourierServiceType = exports.DeliveryStatus = exports.CourierOrderPaymentFrom = exports.CourierOrderStatus = exports.RegularOrderStatus = exports.OrderType = exports.Language = exports.RiderBagSize = exports.RiderType = exports.ShiftType = exports.CreatedBy = exports.LiveStatus = exports.AreebaCardStatus = exports.CardUserType = void 0;
|
|
5
|
+
var AccountType;
|
|
6
|
+
(function (AccountType) {
|
|
7
|
+
AccountType["USER"] = "user";
|
|
8
|
+
AccountType["SHOP"] = "shop";
|
|
9
|
+
AccountType["RIDER"] = "rider";
|
|
10
|
+
AccountType["COMPANY"] = "company";
|
|
11
|
+
})(AccountType || (exports.AccountType = AccountType = {}));
|
|
12
|
+
var Status;
|
|
13
|
+
(function (Status) {
|
|
14
|
+
Status["ACTIVE"] = "active";
|
|
15
|
+
Status["INACTIVE"] = "inactive";
|
|
16
|
+
})(Status || (exports.Status = Status = {}));
|
|
17
|
+
var ItemType;
|
|
18
|
+
(function (ItemType) {
|
|
19
|
+
ItemType["FOOD"] = "food";
|
|
20
|
+
ItemType["GROCERY"] = "grocery";
|
|
21
|
+
ItemType["PHARMACY"] = "pharmacy";
|
|
22
|
+
ItemType["COFFEE"] = "coffee";
|
|
23
|
+
ItemType["FLOWER"] = "flower";
|
|
24
|
+
ItemType["PET"] = "pet";
|
|
25
|
+
ItemType["HEALTHY_CORNER"] = "healthy_corner";
|
|
26
|
+
})(ItemType || (exports.ItemType = ItemType = {}));
|
|
27
|
+
var GlobalItemType;
|
|
28
|
+
(function (GlobalItemType) {
|
|
29
|
+
GlobalItemType["GROCERY"] = "grocery";
|
|
30
|
+
})(GlobalItemType || (exports.GlobalItemType = GlobalItemType = {}));
|
|
31
|
+
var WeekDay;
|
|
32
|
+
(function (WeekDay) {
|
|
33
|
+
WeekDay[WeekDay["Sunday"] = 0] = "Sunday";
|
|
34
|
+
WeekDay[WeekDay["Monday"] = 1] = "Monday";
|
|
35
|
+
WeekDay[WeekDay["Tuesday"] = 2] = "Tuesday";
|
|
36
|
+
WeekDay[WeekDay["Wednesday"] = 3] = "Wednesday";
|
|
37
|
+
WeekDay[WeekDay["Thursday"] = 4] = "Thursday";
|
|
38
|
+
WeekDay[WeekDay["Friday"] = 5] = "Friday";
|
|
39
|
+
WeekDay[WeekDay["Saturday"] = 6] = "Saturday";
|
|
40
|
+
})(WeekDay || (exports.WeekDay = WeekDay = {}));
|
|
41
|
+
var WorkStatus;
|
|
42
|
+
(function (WorkStatus) {
|
|
43
|
+
WorkStatus["OPEN"] = "open";
|
|
44
|
+
WorkStatus["CLOSED"] = "closed";
|
|
45
|
+
WorkStatus["FULL_DAY"] = "full_day";
|
|
46
|
+
})(WorkStatus || (exports.WorkStatus = WorkStatus = {}));
|
|
47
|
+
var HolidayWorkStatus;
|
|
48
|
+
(function (HolidayWorkStatus) {
|
|
49
|
+
HolidayWorkStatus["CLOSED"] = "closed";
|
|
50
|
+
HolidayWorkStatus["FULL_DAY"] = "full_day";
|
|
51
|
+
})(HolidayWorkStatus || (exports.HolidayWorkStatus = HolidayWorkStatus = {}));
|
|
52
|
+
var ValueType;
|
|
53
|
+
(function (ValueType) {
|
|
54
|
+
ValueType["PERCENTAGE"] = "percentage";
|
|
55
|
+
ValueType["FIXED"] = "fixed";
|
|
56
|
+
})(ValueType || (exports.ValueType = ValueType = {}));
|
|
57
|
+
var PaymentMethod;
|
|
58
|
+
(function (PaymentMethod) {
|
|
59
|
+
PaymentMethod["CASH"] = "cash";
|
|
60
|
+
PaymentMethod["ONLINE"] = "online";
|
|
61
|
+
})(PaymentMethod || (exports.PaymentMethod = PaymentMethod = {}));
|
|
62
|
+
var PaymentStatus;
|
|
63
|
+
(function (PaymentStatus) {
|
|
64
|
+
PaymentStatus["PAID"] = "paid";
|
|
65
|
+
PaymentStatus["PENDING"] = "pending";
|
|
66
|
+
PaymentStatus["FAILED"] = "failed";
|
|
67
|
+
PaymentStatus["REFUNDED"] = "refunded";
|
|
68
|
+
PaymentStatus["PARTIALLY_REFUNDED"] = "partially_refunded";
|
|
69
|
+
})(PaymentStatus || (exports.PaymentStatus = PaymentStatus = {}));
|
|
70
|
+
var PaidCurrency;
|
|
71
|
+
(function (PaidCurrency) {
|
|
72
|
+
PaidCurrency["BASE"] = "base";
|
|
73
|
+
PaidCurrency["SECONDARY"] = "secondary";
|
|
74
|
+
PaidCurrency["MIXED"] = "mixed";
|
|
75
|
+
})(PaidCurrency || (exports.PaidCurrency = PaidCurrency = {}));
|
|
76
|
+
var SubscriptionPackage;
|
|
77
|
+
(function (SubscriptionPackage) {
|
|
78
|
+
SubscriptionPackage["MONTHLY"] = "monthly";
|
|
79
|
+
SubscriptionPackage["YEARLY"] = "yearly";
|
|
80
|
+
})(SubscriptionPackage || (exports.SubscriptionPackage = SubscriptionPackage = {}));
|
|
81
|
+
var SubscriptionStatus;
|
|
82
|
+
(function (SubscriptionStatus) {
|
|
83
|
+
SubscriptionStatus["ONGOING"] = "ongoing";
|
|
84
|
+
SubscriptionStatus["EXPIRED"] = "expired";
|
|
85
|
+
})(SubscriptionStatus || (exports.SubscriptionStatus = SubscriptionStatus = {}));
|
|
86
|
+
var RatingAccountType;
|
|
87
|
+
(function (RatingAccountType) {
|
|
88
|
+
RatingAccountType["SHOP"] = "shop";
|
|
89
|
+
RatingAccountType["RIDER"] = "rider";
|
|
90
|
+
})(RatingAccountType || (exports.RatingAccountType = RatingAccountType = {}));
|
|
91
|
+
var GeoLocationType;
|
|
92
|
+
(function (GeoLocationType) {
|
|
93
|
+
GeoLocationType["POINT"] = "Point";
|
|
94
|
+
})(GeoLocationType || (exports.GeoLocationType = GeoLocationType = {}));
|
|
95
|
+
var UpdatedField;
|
|
96
|
+
(function (UpdatedField) {
|
|
97
|
+
UpdatedField["MAX_TOTAL_EST_ITEMS_PRICE"] = "max_total_est_items_price";
|
|
98
|
+
UpdatedField["MAX_DISTANCE"] = "max_distance";
|
|
99
|
+
UpdatedField["DAILY_WORKING_HOURS"] = "daily_working_hours";
|
|
100
|
+
UpdatedField["BOB_CASH_SETTLEMENT_LIMIT"] = "bob_cash_settlement_limit";
|
|
101
|
+
UpdatedField["TIPS"] = "tips";
|
|
102
|
+
UpdatedField["EQUIPMENTS"] = "equipments";
|
|
103
|
+
UpdatedField["MONTHLY_SHOP_TARGET"] = "monthly_shop_target";
|
|
104
|
+
UpdatedField["MONTHLY_REWARD_PRIZE"] = "monthly_reward_prize";
|
|
105
|
+
UpdatedField["BASE_CURRENCY"] = "base_currency";
|
|
106
|
+
UpdatedField["SECONDARY_CURRENCY"] = "secondary_currency";
|
|
107
|
+
UpdatedField["IS_DUAL_CURRENCY_ENABLED"] = "is_dual_currency_enabled";
|
|
108
|
+
UpdatedField["EXCHANGE_RATE"] = "exchange_rate";
|
|
109
|
+
UpdatedField["ISSUANCE_DAY"] = "issuance_day";
|
|
110
|
+
UpdatedField["OVER_DUE_PERIODS"] = "over_due_periods";
|
|
111
|
+
UpdatedField["PAY_LIMIT_FOR_USER"] = "pay_limit_for_user";
|
|
112
|
+
UpdatedField["VAT_PERCENTAGE"] = "vat_percentage";
|
|
113
|
+
UpdatedField["RIDER_SEARCH_RANGES"] = "rider_search_ranges";
|
|
114
|
+
UpdatedField["NEAR_BY_SHOP_DISTANCE"] = "near_by_shop_distance";
|
|
115
|
+
UpdatedField["NEAR_BY_SHOP_DISTANCE_IN_HOME_SCREEN"] = "near_by_shop_distance_in_home_screen";
|
|
116
|
+
UpdatedField["UNITS"] = "units";
|
|
117
|
+
UpdatedField["CURRENCY_SETTING"] = "currency_setting";
|
|
118
|
+
UpdatedField["PAYMENT_METHODS"] = "payment_methods";
|
|
119
|
+
UpdatedField["IS_GROUND_ORDER_ENABLED"] = "is_ground_order_enabled";
|
|
120
|
+
UpdatedField["CUSTOMER_SUPPORT_PHONE_NUMBER"] = "customer_support_phone_number";
|
|
121
|
+
})(UpdatedField || (exports.UpdatedField = UpdatedField = {}));
|
|
122
|
+
var AdminLogsUpdatedFieldsType;
|
|
123
|
+
(function (AdminLogsUpdatedFieldsType) {
|
|
124
|
+
AdminLogsUpdatedFieldsType["CHARGE_SETTINGS"] = "charge_settings";
|
|
125
|
+
AdminLogsUpdatedFieldsType["SERVICE_FEE_SETTINGS"] = "service_fee_settings";
|
|
126
|
+
AdminLogsUpdatedFieldsType["PAYOUT_SETTINGS"] = "payout_settings";
|
|
127
|
+
AdminLogsUpdatedFieldsType["COURIER_SETTINGS"] = "courier_settings";
|
|
128
|
+
AdminLogsUpdatedFieldsType["RIDER_SETTINGS"] = "rider_settings";
|
|
129
|
+
AdminLogsUpdatedFieldsType["BUSINESS_DEVELOPMENT_EXECUTIVE"] = "business_development_executive";
|
|
130
|
+
AdminLogsUpdatedFieldsType["PAY_LIMIT_FOR_USER"] = "pay_limit_for_user";
|
|
131
|
+
AdminLogsUpdatedFieldsType["VAT_PERCENTAGE"] = "vat_percentage";
|
|
132
|
+
AdminLogsUpdatedFieldsType["RIDER_SEARCH_RANGES"] = "rider_search_ranges";
|
|
133
|
+
AdminLogsUpdatedFieldsType["RIDER_BATCHES"] = "rider_batches";
|
|
134
|
+
AdminLogsUpdatedFieldsType["NEARBY_SHOP_DISTANCE"] = "nearby_shop_distance";
|
|
135
|
+
AdminLogsUpdatedFieldsType["NEAR_BY_SHOP_DISTANCE_IN_HOME_SCREEN"] = "nearby_shop_distance_in_home_screen";
|
|
136
|
+
AdminLogsUpdatedFieldsType["UNITS"] = "units";
|
|
137
|
+
AdminLogsUpdatedFieldsType["CURRENCY_SETTING"] = "currency_setting";
|
|
138
|
+
AdminLogsUpdatedFieldsType["PAYMENT_METHODS"] = "payment_methods";
|
|
139
|
+
AdminLogsUpdatedFieldsType["IS_GROUPED_ORDER_ENABLED"] = "is_grouped_order_enabled";
|
|
140
|
+
AdminLogsUpdatedFieldsType["CUSTOMER_SUPPORT"] = "customer_support";
|
|
141
|
+
AdminLogsUpdatedFieldsType["CUSTOMER_SUPPORT_BATCHES"] = "customer_support_batches";
|
|
142
|
+
AdminLogsUpdatedFieldsType["WORK_HOUR_SETTINGS"] = "work_hour_settings";
|
|
143
|
+
AdminLogsUpdatedFieldsType["PLUS_SETTING"] = "plus_setting";
|
|
144
|
+
AdminLogsUpdatedFieldsType["DELIVERY_CHARGES"] = "delivery_charges";
|
|
145
|
+
AdminLogsUpdatedFieldsType["SETTINGS_DELETED"] = "settings_deleted";
|
|
146
|
+
AdminLogsUpdatedFieldsType["SHOP_ACTIVATED"] = "shop_activated";
|
|
147
|
+
AdminLogsUpdatedFieldsType["SHOP_DEACTIVATED"] = "shop_deactivated";
|
|
148
|
+
AdminLogsUpdatedFieldsType["SHOP_DELETED"] = "shop_deleted";
|
|
149
|
+
AdminLogsUpdatedFieldsType["SHOW_SHOP_IN_USER_APP"] = "show_shop_in_user_app";
|
|
150
|
+
AdminLogsUpdatedFieldsType["HIDE_SHOP_IN_USER_APP"] = "hide_shop_in_user_app";
|
|
151
|
+
AdminLogsUpdatedFieldsType["PARENT_ACTIVATED"] = "parent_activated";
|
|
152
|
+
AdminLogsUpdatedFieldsType["PARENT_DEACTIVATED"] = "parent_deactivated";
|
|
153
|
+
AdminLogsUpdatedFieldsType["PARENT_DELETED"] = "parent_deleted";
|
|
154
|
+
AdminLogsUpdatedFieldsType["RIDER_CREATED"] = "rider_created";
|
|
155
|
+
AdminLogsUpdatedFieldsType["RIDER_UPDATED"] = "rider_updated";
|
|
156
|
+
AdminLogsUpdatedFieldsType["RIDER_ACTIVATED"] = "rider_activated";
|
|
157
|
+
AdminLogsUpdatedFieldsType["RIDER_DEACTIVATED"] = "rider_deactivated";
|
|
158
|
+
AdminLogsUpdatedFieldsType["RIDER_DELETED"] = "rider_deleted";
|
|
159
|
+
AdminLogsUpdatedFieldsType["ACTIVATED_MARKETING_PROMOTIONS"] = "activated_marketing_promotions";
|
|
160
|
+
AdminLogsUpdatedFieldsType["CONTINUED_MARKETING_PROMOTIONS"] = "continued_marketing_promotions";
|
|
161
|
+
AdminLogsUpdatedFieldsType["EDITED_MARKETING_PROMOTIONS"] = "edited_marketing_promotions";
|
|
162
|
+
AdminLogsUpdatedFieldsType["PAUSED_MARKETING_PROMOTIONS"] = "paused_marketing_promotions";
|
|
163
|
+
AdminLogsUpdatedFieldsType["DELETED_MARKETING_PROMOTIONS"] = "deleted_marketing_promotions";
|
|
164
|
+
AdminLogsUpdatedFieldsType["ACTIVATED_ZONE"] = "activated_zone";
|
|
165
|
+
AdminLogsUpdatedFieldsType["DEACTIVATED_ZONE"] = "deactivated_zone";
|
|
166
|
+
AdminLogsUpdatedFieldsType["CREATED_MARKETING_SETTINGS"] = "created_marketing_settings";
|
|
167
|
+
AdminLogsUpdatedFieldsType["CHANGE_IN_MARKETING_SETTINGS"] = "change_in_marketing_settings";
|
|
168
|
+
AdminLogsUpdatedFieldsType["DELETED_MARKETING_SETTINGS"] = "deleted_marketing_settings";
|
|
169
|
+
AdminLogsUpdatedFieldsType["CHANGE_IN_PRIVACY_POLICY"] = "change_in_privacy_policy";
|
|
170
|
+
AdminLogsUpdatedFieldsType["CHANGE_IN_USER_TERMS_AND_CONDITIONS"] = "change_in_user_terms_and_conditions";
|
|
171
|
+
AdminLogsUpdatedFieldsType["CHANGE_IN_SHOP_TERMS_AND_CONDITIONS"] = "change_in_shop_terms_and_conditions";
|
|
172
|
+
AdminLogsUpdatedFieldsType["CHANGE_IN_RIDER_TERMS_AND_CONDITIONS"] = "change_in_rider_terms_and_conditions";
|
|
173
|
+
AdminLogsUpdatedFieldsType["CHANGE_IN_LYXA_PLUS_TERMS_AND_CONDITIONS"] = "lyxa_plux_terms_and_conditions";
|
|
174
|
+
AdminLogsUpdatedFieldsType["CHANGE_IN_SUPPORT_REASON"] = "change_in_support_reason";
|
|
175
|
+
AdminLogsUpdatedFieldsType["DELETE_SUPPORT_REASON"] = "delete_support_reason";
|
|
176
|
+
AdminLogsUpdatedFieldsType["CHANGE_IN_CANCELLATION_REASON"] = "change_in_cancellation_reason";
|
|
177
|
+
AdminLogsUpdatedFieldsType["DELETE_CANCELLATION_REASON"] = "delete_cancellation_reason";
|
|
178
|
+
AdminLogsUpdatedFieldsType["CHANGE_IN_SETTINGS_OPENING_HOURS"] = "change_in_settings_opening_hours";
|
|
179
|
+
AdminLogsUpdatedFieldsType["CHANGE_IN_DEFAULT_CHAT_MESSAGE"] = "change_in_default_chat_messages";
|
|
180
|
+
AdminLogsUpdatedFieldsType["DELETE_DEFAULT_CHAT_MESSAGE"] = "delete_default_chat_message";
|
|
181
|
+
AdminLogsUpdatedFieldsType["CHANGE_IN_LYXA_PLUS_CONFIGURATION"] = "change_in_lyxa_plux_configuration";
|
|
182
|
+
})(AdminLogsUpdatedFieldsType || (exports.AdminLogsUpdatedFieldsType = AdminLogsUpdatedFieldsType = {}));
|
|
183
|
+
var UserAppSectionType;
|
|
184
|
+
(function (UserAppSectionType) {
|
|
185
|
+
UserAppSectionType["SHOW_ALL"] = "show_all";
|
|
186
|
+
UserAppSectionType["STORE_PUNCHES"] = "store_punches";
|
|
187
|
+
UserAppSectionType["AUTHENTIC_BEIRUT"] = "authentic_beirut";
|
|
188
|
+
UserAppSectionType["CRAZY_OFFER_SHOPS"] = "crazy_offer_shops";
|
|
189
|
+
UserAppSectionType["NEAR_ME"] = "near_me";
|
|
190
|
+
UserAppSectionType["NEARBY_FOOD"] = "nearby_food";
|
|
191
|
+
UserAppSectionType["NEARBY_GROCERY"] = "nearby_grocery";
|
|
192
|
+
UserAppSectionType["NEARBY_PET"] = "nearby_pet";
|
|
193
|
+
UserAppSectionType["NEARBY_FLOWER"] = "nearby_flower";
|
|
194
|
+
UserAppSectionType["NEARBY_COFFEE"] = "nearby_coffee";
|
|
195
|
+
UserAppSectionType["OFFERS"] = "offers";
|
|
196
|
+
UserAppSectionType["OFFERS_FOOD"] = "offers_food";
|
|
197
|
+
UserAppSectionType["OFFERS_GROCERY"] = "offers_grocery";
|
|
198
|
+
UserAppSectionType["OFFERS_PET"] = "offers_pet";
|
|
199
|
+
UserAppSectionType["OFFERS_FLOWER"] = "offers_flower";
|
|
200
|
+
UserAppSectionType["OFFERS_COFFEE"] = "offers_coffee";
|
|
201
|
+
UserAppSectionType["FREE_DELIVERY"] = "free_delivery";
|
|
202
|
+
UserAppSectionType["FREE_DELIVERY_FOOD"] = "free_delivery_food";
|
|
203
|
+
UserAppSectionType["FREE_DELIVERY_GROCERY"] = "free_delivery_grocery";
|
|
204
|
+
UserAppSectionType["FREE_DELIVERY_PET"] = "free_delivery_pet";
|
|
205
|
+
UserAppSectionType["FREE_DELIVERY_FLOWER"] = "free_delivery_flower";
|
|
206
|
+
UserAppSectionType["FREE_DELIVERY_COFFEE"] = "free_delivery_coffee";
|
|
207
|
+
UserAppSectionType["ORDER_AGAIN"] = "order_again";
|
|
208
|
+
UserAppSectionType["ORDER_AGAIN_FOOD"] = "order_again_food";
|
|
209
|
+
UserAppSectionType["ORDER_AGAIN_GROCERY"] = "order_again_grocery";
|
|
210
|
+
UserAppSectionType["ORDER_AGAIN_PET"] = "order_again_pet";
|
|
211
|
+
UserAppSectionType["ORDER_AGAIN_FLOWER"] = "order_again_flower";
|
|
212
|
+
UserAppSectionType["ORDER_AGAIN_COFFEE"] = "order_again_coffee";
|
|
213
|
+
UserAppSectionType["TOP_PICKS"] = "top_picks";
|
|
214
|
+
UserAppSectionType["TOP_PICKS_FOOD"] = "top_picks_food";
|
|
215
|
+
UserAppSectionType["TOP_PICKS_GROCERY"] = "top_picks_grocery";
|
|
216
|
+
UserAppSectionType["TOP_PICKS_PET"] = "top_picks_pet";
|
|
217
|
+
UserAppSectionType["TOP_PICKS_FLOWER"] = "top_picks_flower";
|
|
218
|
+
UserAppSectionType["TOP_PICKS_COFFEE"] = "top_picks_coffee";
|
|
219
|
+
})(UserAppSectionType || (exports.UserAppSectionType = UserAppSectionType = {}));
|
|
220
|
+
var UserAppSectionItemType;
|
|
221
|
+
(function (UserAppSectionItemType) {
|
|
222
|
+
UserAppSectionItemType["HOME"] = "home";
|
|
223
|
+
UserAppSectionItemType["FOOD"] = "food";
|
|
224
|
+
UserAppSectionItemType["GROCERY"] = "grocery";
|
|
225
|
+
UserAppSectionItemType["COFFEE"] = "coffee";
|
|
226
|
+
UserAppSectionItemType["PET"] = "pet";
|
|
227
|
+
UserAppSectionItemType["FLOWER"] = "flower";
|
|
228
|
+
})(UserAppSectionItemType || (exports.UserAppSectionItemType = UserAppSectionItemType = {}));
|
|
229
|
+
var CoreAuthIdentityType;
|
|
230
|
+
(function (CoreAuthIdentityType) {
|
|
231
|
+
CoreAuthIdentityType["EMAIL"] = "email";
|
|
232
|
+
CoreAuthIdentityType["PHONE"] = "phone";
|
|
233
|
+
CoreAuthIdentityType["GOOGLE"] = "google";
|
|
234
|
+
CoreAuthIdentityType["APPLE"] = "apple";
|
|
235
|
+
})(CoreAuthIdentityType || (exports.CoreAuthIdentityType = CoreAuthIdentityType = {}));
|
|
236
|
+
var ProductType;
|
|
237
|
+
(function (ProductType) {
|
|
238
|
+
ProductType["MEAT"] = "meat";
|
|
239
|
+
ProductType["CHICKEN"] = "chicken";
|
|
240
|
+
ProductType["FISH"] = "fish";
|
|
241
|
+
ProductType["VEGETARIAN"] = "vegetarian";
|
|
242
|
+
ProductType["OTHER"] = "other";
|
|
243
|
+
})(ProductType || (exports.ProductType = ProductType = {}));
|
|
244
|
+
var PriceOption;
|
|
245
|
+
(function (PriceOption) {
|
|
246
|
+
PriceOption["SINGLE_PRICE"] = "single_price";
|
|
247
|
+
PriceOption["PRICE_PER_UNIT"] = "price_per_unit";
|
|
248
|
+
PriceOption["PRICE_PER_PORTION"] = "price_per_portion";
|
|
249
|
+
})(PriceOption || (exports.PriceOption = PriceOption = {}));
|
|
250
|
+
var ProductDietaryType;
|
|
251
|
+
(function (ProductDietaryType) {
|
|
252
|
+
ProductDietaryType["GLUTEN_FREE"] = "gluten_free";
|
|
253
|
+
ProductDietaryType["LOW_CAL"] = "low_cal";
|
|
254
|
+
ProductDietaryType["VEGETARIAN"] = "vegetarian";
|
|
255
|
+
ProductDietaryType["VEGAN"] = "vegan";
|
|
256
|
+
ProductDietaryType["KETO"] = "keto";
|
|
257
|
+
ProductDietaryType["LACTOSE_FREE"] = "lactose_free";
|
|
258
|
+
ProductDietaryType["HIGH_PROTEIN"] = "high_protein";
|
|
259
|
+
})(ProductDietaryType || (exports.ProductDietaryType = ProductDietaryType = {}));
|
|
260
|
+
var DishCategory;
|
|
261
|
+
(function (DishCategory) {
|
|
262
|
+
DishCategory["BREAKFAST"] = "breakfast";
|
|
263
|
+
DishCategory["LUNCH"] = "lunch";
|
|
264
|
+
DishCategory["DINNER"] = "dinner";
|
|
265
|
+
DishCategory["SNACKS"] = "snacks";
|
|
266
|
+
})(DishCategory || (exports.DishCategory = DishCategory = {}));
|
|
267
|
+
var NotificationAccountType;
|
|
268
|
+
(function (NotificationAccountType) {
|
|
269
|
+
NotificationAccountType["USER"] = "user";
|
|
270
|
+
NotificationAccountType["PARENT"] = "parent";
|
|
271
|
+
NotificationAccountType["SHOP"] = "shop";
|
|
272
|
+
NotificationAccountType["RIDER"] = "rider";
|
|
273
|
+
NotificationAccountType["ADMIN"] = "admin";
|
|
274
|
+
NotificationAccountType["CUSTOMER_SERVICE"] = "customer_service";
|
|
275
|
+
})(NotificationAccountType || (exports.NotificationAccountType = NotificationAccountType = {}));
|
|
276
|
+
var ClickType;
|
|
277
|
+
(function (ClickType) {
|
|
278
|
+
ClickType["CLICKABLE_URL"] = "clickable_url";
|
|
279
|
+
ClickType["CLICKABLE_ORDER"] = "clickable_order";
|
|
280
|
+
ClickType["CLICKABLE_SHOP"] = "clickable_shop";
|
|
281
|
+
ClickType["CLICKABLE_PRODUCT"] = "clickable_product";
|
|
282
|
+
ClickType["CLICKABLE_LIST_CONTAINER"] = "clickable_list_container";
|
|
283
|
+
ClickType["CLICKABLE_PAYOUT"] = "clickable_payout";
|
|
284
|
+
ClickType["CLICKABLE_BOB_FINANCE"] = "clickable_bob_finance";
|
|
285
|
+
ClickType["CLICKABLE_REQUEST_AREA"] = "clickable_request_area";
|
|
286
|
+
})(ClickType || (exports.ClickType = ClickType = {}));
|
|
287
|
+
var ChargeType;
|
|
288
|
+
(function (ChargeType) {
|
|
289
|
+
ChargeType["CUSTOM"] = "custom";
|
|
290
|
+
})(ChargeType || (exports.ChargeType = ChargeType = {}));
|
|
291
|
+
var ShopOnlineStatus;
|
|
292
|
+
(function (ShopOnlineStatus) {
|
|
293
|
+
ShopOnlineStatus["ONLINE"] = "online";
|
|
294
|
+
ShopOnlineStatus["OFFLINE"] = "offline";
|
|
295
|
+
ShopOnlineStatus["BUSY"] = "busy";
|
|
296
|
+
})(ShopOnlineStatus || (exports.ShopOnlineStatus = ShopOnlineStatus = {}));
|
|
297
|
+
var OnlineStatus;
|
|
298
|
+
(function (OnlineStatus) {
|
|
299
|
+
OnlineStatus["ONLINE"] = "online";
|
|
300
|
+
OnlineStatus["OFFLINE"] = "offline";
|
|
301
|
+
})(OnlineStatus || (exports.OnlineStatus = OnlineStatus = {}));
|
|
302
|
+
var ShopRole;
|
|
303
|
+
(function (ShopRole) {
|
|
304
|
+
ShopRole["PARENT"] = "parent";
|
|
305
|
+
ShopRole["PARENT_MANAGER"] = "parent_manager";
|
|
306
|
+
ShopRole["PARENT_ORDER_MANAGER"] = "parent_order_manager";
|
|
307
|
+
ShopRole["SHOP"] = "shop";
|
|
308
|
+
ShopRole["SHOP_MANAGER"] = "shop_manager";
|
|
309
|
+
ShopRole["SHOP_ORDER_MANAGER"] = "shop_order_manager";
|
|
310
|
+
})(ShopRole || (exports.ShopRole = ShopRole = {}));
|
|
311
|
+
var BannerClickType;
|
|
312
|
+
(function (BannerClickType) {
|
|
313
|
+
BannerClickType["LINK"] = "link";
|
|
314
|
+
BannerClickType["SHOP"] = "shop";
|
|
315
|
+
BannerClickType["PRODUCT"] = "product";
|
|
316
|
+
BannerClickType["LIST_CONTAINER"] = "list_container";
|
|
317
|
+
BannerClickType["PLUS"] = "plus";
|
|
318
|
+
})(BannerClickType || (exports.BannerClickType = BannerClickType = {}));
|
|
319
|
+
var BannerLinkType;
|
|
320
|
+
(function (BannerLinkType) {
|
|
321
|
+
BannerLinkType["URL"] = "url";
|
|
322
|
+
BannerLinkType["APP_ROUTE"] = "app-route";
|
|
323
|
+
})(BannerLinkType || (exports.BannerLinkType = BannerLinkType = {}));
|
|
324
|
+
var BannerUserType;
|
|
325
|
+
(function (BannerUserType) {
|
|
326
|
+
BannerUserType["ALL"] = "all";
|
|
327
|
+
BannerUserType["PLUS"] = "plus";
|
|
328
|
+
BannerUserType["NORMAL"] = "normal";
|
|
329
|
+
})(BannerUserType || (exports.BannerUserType = BannerUserType = {}));
|
|
330
|
+
var CounterType;
|
|
331
|
+
(function (CounterType) {
|
|
332
|
+
CounterType["ORDER"] = "order";
|
|
333
|
+
CounterType["CRM_NUMBER"] = "crm_number";
|
|
334
|
+
CounterType["shop"] = "shop";
|
|
335
|
+
CounterType["PAYOUT"] = "payout";
|
|
336
|
+
CounterType["TICKET"] = "ticket";
|
|
337
|
+
})(CounterType || (exports.CounterType = CounterType = {}));
|
|
338
|
+
var FaqAccountType;
|
|
339
|
+
(function (FaqAccountType) {
|
|
340
|
+
FaqAccountType["USER"] = "user";
|
|
341
|
+
FaqAccountType["SHOP"] = "shop";
|
|
342
|
+
FaqAccountType["RIDER"] = "rider";
|
|
343
|
+
})(FaqAccountType || (exports.FaqAccountType = FaqAccountType = {}));
|
|
344
|
+
var ZoneStatus;
|
|
345
|
+
(function (ZoneStatus) {
|
|
346
|
+
ZoneStatus["ACTIVE"] = "active";
|
|
347
|
+
ZoneStatus["INACTIVE"] = "inactive";
|
|
348
|
+
ZoneStatus["BUSY"] = "busy";
|
|
349
|
+
})(ZoneStatus || (exports.ZoneStatus = ZoneStatus = {}));
|
|
350
|
+
var BobAccountType;
|
|
351
|
+
(function (BobAccountType) {
|
|
352
|
+
BobAccountType["RIDER"] = "rider";
|
|
353
|
+
BobAccountType["SHOP"] = "shop";
|
|
354
|
+
})(BobAccountType || (exports.BobAccountType = BobAccountType = {}));
|
|
355
|
+
var BobSettlementType;
|
|
356
|
+
(function (BobSettlementType) {
|
|
357
|
+
BobSettlementType["SETTLE_CASH"] = "settle_cash";
|
|
358
|
+
BobSettlementType["SETTLE_PAYOUT"] = "settle_Payout";
|
|
359
|
+
})(BobSettlementType || (exports.BobSettlementType = BobSettlementType = {}));
|
|
360
|
+
var BobSettlementStatus;
|
|
361
|
+
(function (BobSettlementStatus) {
|
|
362
|
+
BobSettlementStatus["NOT_PAID"] = "not_paid";
|
|
363
|
+
BobSettlementStatus["PAID"] = "paid";
|
|
364
|
+
BobSettlementStatus["REVOKED"] = "revoked";
|
|
365
|
+
})(BobSettlementStatus || (exports.BobSettlementStatus = BobSettlementStatus = {}));
|
|
366
|
+
var BobModel;
|
|
367
|
+
(function (BobModel) {
|
|
368
|
+
BobModel["C2B"] = "C2B";
|
|
369
|
+
BobModel["B2C"] = "B2C";
|
|
370
|
+
})(BobModel || (exports.BobModel = BobModel = {}));
|
|
371
|
+
var BobType;
|
|
372
|
+
(function (BobType) {
|
|
373
|
+
BobType["INWARD"] = "inward";
|
|
374
|
+
BobType["OUTWARD"] = "outward";
|
|
375
|
+
})(BobType || (exports.BobType = BobType = {}));
|
|
376
|
+
var CouponType;
|
|
377
|
+
(function (CouponType) {
|
|
378
|
+
CouponType["GLOBAL"] = "global";
|
|
379
|
+
CouponType["INDIVIDUAL_STORE"] = "individual_store";
|
|
380
|
+
CouponType["INDIVIDUAL_USER"] = "individual_user";
|
|
381
|
+
CouponType["CUSTOM_COUPON"] = "custom_coupon";
|
|
382
|
+
CouponType["REFERRAL_CODE"] = "referral_code";
|
|
383
|
+
CouponType["REFERRAL_REWARD"] = "referral_reward";
|
|
384
|
+
})(CouponType || (exports.CouponType = CouponType = {}));
|
|
385
|
+
var CouponExpirationReason;
|
|
386
|
+
(function (CouponExpirationReason) {
|
|
387
|
+
CouponExpirationReason["DURATION"] = "duration";
|
|
388
|
+
CouponExpirationReason["SPEND_LIMIT"] = "spendLimit";
|
|
389
|
+
CouponExpirationReason["TOTAL_ORDER_LIMIT"] = "totalOrderLimit";
|
|
390
|
+
})(CouponExpirationReason || (exports.CouponExpirationReason = CouponExpirationReason = {}));
|
|
391
|
+
var FavouriteType;
|
|
392
|
+
(function (FavouriteType) {
|
|
393
|
+
FavouriteType["PRODUCT"] = "product";
|
|
394
|
+
FavouriteType["SHOP"] = "shop";
|
|
395
|
+
})(FavouriteType || (exports.FavouriteType = FavouriteType = {}));
|
|
396
|
+
var MarketingType;
|
|
397
|
+
(function (MarketingType) {
|
|
398
|
+
MarketingType["DISCOUNT"] = "discount";
|
|
399
|
+
MarketingType["BUY1GET1"] = "buy1get1";
|
|
400
|
+
MarketingType["FREE_DELIVERY"] = "free_delivery";
|
|
401
|
+
MarketingType["FEATURED"] = "featured";
|
|
402
|
+
MarketingType["LOYALTY_POINT"] = "loyalty_point";
|
|
403
|
+
MarketingType["PUNCH_MARKETING"] = "punch_marketing";
|
|
404
|
+
})(MarketingType || (exports.MarketingType = MarketingType = {}));
|
|
405
|
+
var MarketingStatus;
|
|
406
|
+
(function (MarketingStatus) {
|
|
407
|
+
MarketingStatus["ACTIVE"] = "active";
|
|
408
|
+
MarketingStatus["PAUSED"] = "paused";
|
|
409
|
+
MarketingStatus["EXPIRED"] = "expired";
|
|
410
|
+
MarketingStatus["DELETED"] = "deleted";
|
|
411
|
+
})(MarketingStatus || (exports.MarketingStatus = MarketingStatus = {}));
|
|
412
|
+
var AdminRole;
|
|
413
|
+
(function (AdminRole) {
|
|
414
|
+
AdminRole["SUPER_ADMIN"] = "super_admin";
|
|
415
|
+
AdminRole["GENERAL_MANAGER"] = "general_manager";
|
|
416
|
+
AdminRole["ORDER_MANAGEMENT_MANAGER"] = "order_management_lead";
|
|
417
|
+
AdminRole["ORDER_MANAGEMENT_AGENT"] = "order_management_agent";
|
|
418
|
+
AdminRole["ACCOUNT_MANAGER"] = "account_manager";
|
|
419
|
+
AdminRole["BUSINESS_DEVELOPMENT_EXECUTIVE"] = "business_development_executive";
|
|
420
|
+
AdminRole["ACCOUNTING"] = "accounting";
|
|
421
|
+
AdminRole["MARKETING_MANAGER"] = "marketing_manager";
|
|
422
|
+
})(AdminRole || (exports.AdminRole = AdminRole = {}));
|
|
423
|
+
var CartStatus;
|
|
424
|
+
(function (CartStatus) {
|
|
425
|
+
CartStatus["ACTIVE"] = "active";
|
|
426
|
+
CartStatus["LOCKED"] = "locked";
|
|
427
|
+
CartStatus["SUBMITTED"] = "submitted";
|
|
428
|
+
})(CartStatus || (exports.CartStatus = CartStatus = {}));
|
|
429
|
+
var PaymentPreference;
|
|
430
|
+
(function (PaymentPreference) {
|
|
431
|
+
PaymentPreference["PAY_FOR_EVERYONE"] = "pay_for_everyone";
|
|
432
|
+
PaymentPreference["PAY_FOR_THEMSELVES"] = "pay_for_themselves";
|
|
433
|
+
})(PaymentPreference || (exports.PaymentPreference = PaymentPreference = {}));
|
|
434
|
+
var CardType;
|
|
435
|
+
(function (CardType) {
|
|
436
|
+
CardType["STRIPE"] = "stripe";
|
|
437
|
+
CardType["AREEBA"] = "areeba";
|
|
438
|
+
})(CardType || (exports.CardType = CardType = {}));
|
|
439
|
+
var CardUserType;
|
|
440
|
+
(function (CardUserType) {
|
|
441
|
+
CardUserType["PARENT"] = "parent";
|
|
442
|
+
CardUserType["ADMIN"] = "admin";
|
|
443
|
+
CardUserType["USER"] = "user";
|
|
444
|
+
})(CardUserType || (exports.CardUserType = CardUserType = {}));
|
|
445
|
+
var AreebaCardStatus;
|
|
446
|
+
(function (AreebaCardStatus) {
|
|
447
|
+
AreebaCardStatus["PENDING"] = "pending";
|
|
448
|
+
AreebaCardStatus["ACTIVE"] = "active";
|
|
449
|
+
})(AreebaCardStatus || (exports.AreebaCardStatus = AreebaCardStatus = {}));
|
|
450
|
+
var LiveStatus;
|
|
451
|
+
(function (LiveStatus) {
|
|
452
|
+
LiveStatus["ONLINE"] = "online";
|
|
453
|
+
LiveStatus["OFFLINE"] = "offline";
|
|
454
|
+
})(LiveStatus || (exports.LiveStatus = LiveStatus = {}));
|
|
455
|
+
var CreatedBy;
|
|
456
|
+
(function (CreatedBy) {
|
|
457
|
+
CreatedBy["ADMIN"] = "admin";
|
|
458
|
+
CreatedBy["RIDER"] = "rider";
|
|
459
|
+
CreatedBy["SHOP"] = "shop";
|
|
460
|
+
})(CreatedBy || (exports.CreatedBy = CreatedBy = {}));
|
|
461
|
+
var ShiftType;
|
|
462
|
+
(function (ShiftType) {
|
|
463
|
+
ShiftType["DAY"] = "day";
|
|
464
|
+
ShiftType["NIGHT"] = "night";
|
|
465
|
+
})(ShiftType || (exports.ShiftType = ShiftType = {}));
|
|
466
|
+
var RiderType;
|
|
467
|
+
(function (RiderType) {
|
|
468
|
+
RiderType["SHOP_RIDER"] = "shop_rider";
|
|
469
|
+
RiderType["LYXA_RIDER"] = "lyxa_rider";
|
|
470
|
+
})(RiderType || (exports.RiderType = RiderType = {}));
|
|
471
|
+
var RiderBagSize;
|
|
472
|
+
(function (RiderBagSize) {
|
|
473
|
+
RiderBagSize["REGULAR"] = "regular";
|
|
474
|
+
RiderBagSize["LARGE"] = "large";
|
|
475
|
+
})(RiderBagSize || (exports.RiderBagSize = RiderBagSize = {}));
|
|
476
|
+
var Language;
|
|
477
|
+
(function (Language) {
|
|
478
|
+
Language["EN"] = "en";
|
|
479
|
+
Language["AR"] = "ar";
|
|
480
|
+
})(Language || (exports.Language = Language = {}));
|
|
481
|
+
var OrderType;
|
|
482
|
+
(function (OrderType) {
|
|
483
|
+
OrderType["REGULAR"] = "regular";
|
|
484
|
+
OrderType["COURIER"] = "courier";
|
|
485
|
+
})(OrderType || (exports.OrderType = OrderType = {}));
|
|
486
|
+
var RegularOrderStatus;
|
|
487
|
+
(function (RegularOrderStatus) {
|
|
488
|
+
RegularOrderStatus["SCHEDULED"] = "schedule";
|
|
489
|
+
RegularOrderStatus["PLACED"] = "placed";
|
|
490
|
+
RegularOrderStatus["ACCEPTED_BY_RIDER"] = "accepted_by_rider";
|
|
491
|
+
RegularOrderStatus["PREPARING"] = "preparing";
|
|
492
|
+
RegularOrderStatus["READY_FOR_PICKUP"] = "ready_to_pickup";
|
|
493
|
+
RegularOrderStatus["ON_THE_WAY"] = "on_the_way";
|
|
494
|
+
RegularOrderStatus["DELIVERED"] = "delivered";
|
|
495
|
+
RegularOrderStatus["CANCELLED"] = "cancelled";
|
|
496
|
+
})(RegularOrderStatus || (exports.RegularOrderStatus = RegularOrderStatus = {}));
|
|
497
|
+
var CourierOrderStatus;
|
|
498
|
+
(function (CourierOrderStatus) {
|
|
499
|
+
CourierOrderStatus["SCHEDULED"] = "schedule";
|
|
500
|
+
CourierOrderStatus["PLACED"] = "placed";
|
|
501
|
+
CourierOrderStatus["ACCEPTED_BY_RIDER"] = "accepted_by_rider";
|
|
502
|
+
CourierOrderStatus["ON_THE_WAY"] = "on_the_way";
|
|
503
|
+
CourierOrderStatus["DELIVERED"] = "delivered";
|
|
504
|
+
CourierOrderStatus["CANCELLED"] = "cancelled";
|
|
505
|
+
})(CourierOrderStatus || (exports.CourierOrderStatus = CourierOrderStatus = {}));
|
|
506
|
+
var CourierOrderPaymentFrom;
|
|
507
|
+
(function (CourierOrderPaymentFrom) {
|
|
508
|
+
CourierOrderPaymentFrom["SENDER"] = "sender";
|
|
509
|
+
CourierOrderPaymentFrom["RECEIVER"] = "receiver";
|
|
510
|
+
})(CourierOrderPaymentFrom || (exports.CourierOrderPaymentFrom = CourierOrderPaymentFrom = {}));
|
|
511
|
+
var DeliveryStatus;
|
|
512
|
+
(function (DeliveryStatus) {
|
|
513
|
+
DeliveryStatus["PENDING"] = "pending";
|
|
514
|
+
DeliveryStatus["ACCEPTED_BY_RIDER"] = "accepted_by_rider";
|
|
515
|
+
DeliveryStatus["READY_FOR_PICKUP"] = "ready_to_pickup";
|
|
516
|
+
DeliveryStatus["ON_THE_WAY"] = "on_the_way";
|
|
517
|
+
DeliveryStatus["DELIVERED"] = "delivered";
|
|
518
|
+
DeliveryStatus["CANCELLED"] = "cancelled";
|
|
519
|
+
})(DeliveryStatus || (exports.DeliveryStatus = DeliveryStatus = {}));
|
|
520
|
+
var CourierServiceType;
|
|
521
|
+
(function (CourierServiceType) {
|
|
522
|
+
CourierServiceType["DELIVERY_ONLY"] = "delivery_only";
|
|
523
|
+
CourierServiceType["PURCHASE_AND_DELIVER"] = "purchase_and_deliver";
|
|
524
|
+
})(CourierServiceType || (exports.CourierServiceType = CourierServiceType = {}));
|
|
525
|
+
var RiderAssignmentStatus;
|
|
526
|
+
(function (RiderAssignmentStatus) {
|
|
527
|
+
RiderAssignmentStatus["REQUESTED"] = "requested";
|
|
528
|
+
RiderAssignmentStatus["ASSIGNED"] = "assigned";
|
|
529
|
+
RiderAssignmentStatus["REJECTED"] = "rejected";
|
|
530
|
+
RiderAssignmentStatus["CANCELED"] = "canceled";
|
|
531
|
+
RiderAssignmentStatus["UNASSIGNED"] = "unassigned";
|
|
532
|
+
})(RiderAssignmentStatus || (exports.RiderAssignmentStatus = RiderAssignmentStatus = {}));
|
|
533
|
+
var ZoneGeometryType;
|
|
534
|
+
(function (ZoneGeometryType) {
|
|
535
|
+
ZoneGeometryType["POLYGON"] = "Polygon";
|
|
536
|
+
})(ZoneGeometryType || (exports.ZoneGeometryType = ZoneGeometryType = {}));
|
|
537
|
+
var WorkingHourSettingsType;
|
|
538
|
+
(function (WorkingHourSettingsType) {
|
|
539
|
+
WorkingHourSettingsType["GLOBAL"] = "Global";
|
|
540
|
+
WorkingHourSettingsType["SHOP"] = "Shop";
|
|
541
|
+
})(WorkingHourSettingsType || (exports.WorkingHourSettingsType = WorkingHourSettingsType = {}));
|
|
542
|
+
var MediaType;
|
|
543
|
+
(function (MediaType) {
|
|
544
|
+
MediaType["IMAGE"] = "image";
|
|
545
|
+
})(MediaType || (exports.MediaType = MediaType = {}));
|
|
546
|
+
var SettlementType;
|
|
547
|
+
(function (SettlementType) {
|
|
548
|
+
SettlementType["ADD_CREDIT"] = "add_credit";
|
|
549
|
+
SettlementType["REMOVE_CREDIT"] = "remove_credit";
|
|
550
|
+
SettlementType["EXPIRED_LOYALTY_POINTS"] = "expired_loyalty_points";
|
|
551
|
+
SettlementType["RIDER_SETTLE_CASH"] = "rider_settle_cash";
|
|
552
|
+
SettlementType["SETTLE_VAT"] = "settle_vat";
|
|
553
|
+
SettlementType["SETTLE_FEATURED_AMOUNT"] = "settle_featured_amount";
|
|
554
|
+
SettlementType["SETTLE_SUBSCRIPTION_AMOUNT"] = "settle_subscription_amount";
|
|
555
|
+
SettlementType["SETTLE_PAYOUT"] = "settle_payout";
|
|
556
|
+
SettlementType["ORDER_REFUND"] = "order_refund";
|
|
557
|
+
SettlementType["TOP_UP"] = "top_up";
|
|
558
|
+
})(SettlementType || (exports.SettlementType = SettlementType = {}));
|
|
559
|
+
var AddRemoveCreditSettlementType;
|
|
560
|
+
(function (AddRemoveCreditSettlementType) {
|
|
561
|
+
AddRemoveCreditSettlementType["ADD_CREDIT"] = "add_credit";
|
|
562
|
+
AddRemoveCreditSettlementType["REMOVE_CREDIT"] = "remove_credit";
|
|
563
|
+
})(AddRemoveCreditSettlementType || (exports.AddRemoveCreditSettlementType = AddRemoveCreditSettlementType = {}));
|
|
564
|
+
var PlusSettingsPackageType;
|
|
565
|
+
(function (PlusSettingsPackageType) {
|
|
566
|
+
PlusSettingsPackageType["MONTHLY"] = "monthly";
|
|
567
|
+
PlusSettingsPackageType["YEARLY"] = "yearly";
|
|
568
|
+
PlusSettingsPackageType["WEEKLY"] = "weekly";
|
|
569
|
+
})(PlusSettingsPackageType || (exports.PlusSettingsPackageType = PlusSettingsPackageType = {}));
|
|
570
|
+
var SupportReasonTypeEnum;
|
|
571
|
+
(function (SupportReasonTypeEnum) {
|
|
572
|
+
SupportReasonTypeEnum["ORDER"] = "order";
|
|
573
|
+
SupportReasonTypeEnum["ACCOUNT"] = "account";
|
|
574
|
+
SupportReasonTypeEnum["SHOP"] = "shop";
|
|
575
|
+
SupportReasonTypeEnum["FAQ"] = "faq";
|
|
576
|
+
})(SupportReasonTypeEnum || (exports.SupportReasonTypeEnum = SupportReasonTypeEnum = {}));
|
|
577
|
+
var CancellationReasonTypeEnum;
|
|
578
|
+
(function (CancellationReasonTypeEnum) {
|
|
579
|
+
CancellationReasonTypeEnum["USER"] = "user";
|
|
580
|
+
CancellationReasonTypeEnum["COURIER"] = "courier";
|
|
581
|
+
CancellationReasonTypeEnum["SHOP"] = "shop";
|
|
582
|
+
CancellationReasonTypeEnum["RESOLVE_CHAT"] = "resolve_chat";
|
|
583
|
+
CancellationReasonTypeEnum["LYXA_PLUS_SUBSCRIPTION"] = "lyxa_plus_subscription";
|
|
584
|
+
})(CancellationReasonTypeEnum || (exports.CancellationReasonTypeEnum = CancellationReasonTypeEnum = {}));
|
|
585
|
+
var SettingsReasonStatus;
|
|
586
|
+
(function (SettingsReasonStatus) {
|
|
587
|
+
SettingsReasonStatus["ACTIVE"] = "active";
|
|
588
|
+
SettingsReasonStatus["INACTIVE"] = "inactive";
|
|
589
|
+
SettingsReasonStatus["DELETE"] = "delete";
|
|
590
|
+
})(SettingsReasonStatus || (exports.SettingsReasonStatus = SettingsReasonStatus = {}));
|
|
591
|
+
var AddRemoveCreditAccountType;
|
|
592
|
+
(function (AddRemoveCreditAccountType) {
|
|
593
|
+
AddRemoveCreditAccountType["USER"] = "user";
|
|
594
|
+
AddRemoveCreditAccountType["SHOP"] = "shop";
|
|
595
|
+
AddRemoveCreditAccountType["RIDER"] = "rider";
|
|
596
|
+
})(AddRemoveCreditAccountType || (exports.AddRemoveCreditAccountType = AddRemoveCreditAccountType = {}));
|
|
597
|
+
var PayoutType;
|
|
598
|
+
(function (PayoutType) {
|
|
599
|
+
PayoutType["SHOP"] = "shop";
|
|
600
|
+
PayoutType["RIDER"] = "rider";
|
|
601
|
+
})(PayoutType || (exports.PayoutType = PayoutType = {}));
|
|
602
|
+
var PayoutStatus;
|
|
603
|
+
(function (PayoutStatus) {
|
|
604
|
+
PayoutStatus["PAID"] = "paid";
|
|
605
|
+
PayoutStatus["UNPAID"] = "unpaid";
|
|
606
|
+
PayoutStatus["REVOKED"] = "revoked";
|
|
607
|
+
})(PayoutStatus || (exports.PayoutStatus = PayoutStatus = {}));
|
|
608
|
+
var LogUser;
|
|
609
|
+
(function (LogUser) {
|
|
610
|
+
LogUser["ALL"] = "all";
|
|
611
|
+
LogUser["USER"] = "user";
|
|
612
|
+
LogUser["SHOP"] = "shop";
|
|
613
|
+
LogUser["RIDER"] = "rider";
|
|
614
|
+
})(LogUser || (exports.LogUser = LogUser = {}));
|
|
615
|
+
var OrderCanceledBy;
|
|
616
|
+
(function (OrderCanceledBy) {
|
|
617
|
+
OrderCanceledBy["USER"] = "user";
|
|
618
|
+
OrderCanceledBy["SHOP"] = "shop";
|
|
619
|
+
OrderCanceledBy["ADMIN"] = "admin";
|
|
620
|
+
})(OrderCanceledBy || (exports.OrderCanceledBy = OrderCanceledBy = {}));
|
|
621
|
+
var LateOrderReason;
|
|
622
|
+
(function (LateOrderReason) {
|
|
623
|
+
LateOrderReason["SHOP_PREPARATION_OVERDUE"] = "shop_preparation_overdue";
|
|
624
|
+
LateOrderReason["PICKUP_OVERDUE"] = "pickup_overdue";
|
|
625
|
+
LateOrderReason["DELIVERY_OVERDUE"] = "delivery_overdue";
|
|
626
|
+
})(LateOrderReason || (exports.LateOrderReason = LateOrderReason = {}));
|
|
627
|
+
var UrgentOrderReason;
|
|
628
|
+
(function (UrgentOrderReason) {
|
|
629
|
+
UrgentOrderReason["SHOP_INACTION"] = "shop_inaction";
|
|
630
|
+
UrgentOrderReason["RIDER_INACTION"] = "rider_inaction";
|
|
631
|
+
UrgentOrderReason["HIGH_VALUE_FIRST_ORDER"] = "high_value_first_order";
|
|
632
|
+
UrgentOrderReason["ADJUSTED_ORDER_REQUEST_IGNORED"] = "adjusted_order_request_ignored";
|
|
633
|
+
})(UrgentOrderReason || (exports.UrgentOrderReason = UrgentOrderReason = {}));
|
|
634
|
+
var ReplacementReason;
|
|
635
|
+
(function (ReplacementReason) {
|
|
636
|
+
ReplacementReason["MISSING"] = "missing_item";
|
|
637
|
+
ReplacementReason["WRONG"] = "wrong_item";
|
|
638
|
+
ReplacementReason["OTHER"] = "other";
|
|
639
|
+
})(ReplacementReason || (exports.ReplacementReason = ReplacementReason = {}));
|
|
640
|
+
var ReplacementType;
|
|
641
|
+
(function (ReplacementType) {
|
|
642
|
+
ReplacementType["SHOP_CUSTOMER"] = "shop_customer";
|
|
643
|
+
ReplacementType["SHOP_CUSTOMER_SHOP"] = "shop_customer_shop";
|
|
644
|
+
})(ReplacementType || (exports.ReplacementType = ReplacementType = {}));
|
|
645
|
+
var RewardedToTypeEnum;
|
|
646
|
+
(function (RewardedToTypeEnum) {
|
|
647
|
+
RewardedToTypeEnum["BUSINESS_DEVELOPMENT_EXECUTIVE"] = "business_development_executive";
|
|
648
|
+
RewardedToTypeEnum["RIDER"] = "rider";
|
|
649
|
+
})(RewardedToTypeEnum || (exports.RewardedToTypeEnum = RewardedToTypeEnum = {}));
|
|
650
|
+
var TicketType;
|
|
651
|
+
(function (TicketType) {
|
|
652
|
+
TicketType["ORDER"] = "order";
|
|
653
|
+
TicketType["ACCOUNT"] = "account";
|
|
654
|
+
})(TicketType || (exports.TicketType = TicketType = {}));
|
|
655
|
+
var TicketStatus;
|
|
656
|
+
(function (TicketStatus) {
|
|
657
|
+
TicketStatus["PENDING"] = "pending";
|
|
658
|
+
TicketStatus["ONGOING"] = "ongoing";
|
|
659
|
+
TicketStatus["RESOLVED"] = "resolved";
|
|
660
|
+
})(TicketStatus || (exports.TicketStatus = TicketStatus = {}));
|
|
661
|
+
var MessageSender;
|
|
662
|
+
(function (MessageSender) {
|
|
663
|
+
MessageSender["User"] = "User";
|
|
664
|
+
MessageSender["Admin"] = "Admin";
|
|
665
|
+
MessageSender["Shop"] = "Shop";
|
|
666
|
+
MessageSender["Rider"] = "Rider";
|
|
667
|
+
})(MessageSender || (exports.MessageSender = MessageSender = {}));
|
|
668
|
+
var ChatroomType;
|
|
669
|
+
(function (ChatroomType) {
|
|
670
|
+
ChatroomType["TICKET"] = "TICKET";
|
|
671
|
+
ChatroomType["DIRECT"] = "DIRECT";
|
|
672
|
+
ChatroomType["ORDER_CHAT"] = "ORDER_CHAT";
|
|
673
|
+
})(ChatroomType || (exports.ChatroomType = ChatroomType = {}));
|
|
674
|
+
//# sourceMappingURL=enum.js.map
|