@ancon/wildcat-utils 1.46.2 → 1.46.4
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/{_baseIsEqual-12d01a44.mjs → _baseIsEqual-5e6adb07.mjs} +2 -2
- package/_baseIsEqual-ad544573.js +1 -0
- package/_baseIteratee-ae97e42e.js +1 -0
- package/{_baseIteratee-4c4d0995.mjs → _baseIteratee-db1f278d.mjs} +4 -4
- package/_getTag-d4cd1660.js +1 -0
- package/{_getTag-4e44633b.mjs → _getTag-fcc5160b.mjs} +116 -116
- package/check/getOrganizedCheckItemModifications.d.ts +10 -0
- package/check/getOrganizedCheckItemModifications.js +1 -0
- package/check/getOrganizedCheckItemModifications.mjs +194 -0
- package/check/getUniqueCheckItemModificationId.d.ts +8 -0
- package/check/getUniqueCheckItemModificationId.js +1 -0
- package/check/getUniqueCheckItemModificationId.mjs +18 -0
- package/check/index.d.ts +3 -0
- package/check/index.js +1 -0
- package/check/index.mjs +13 -0
- package/check/types.d.ts +13 -0
- package/check/types.js +1 -0
- package/check/types.mjs +1 -0
- package/checkout/getCheckoutOrderStatusTexts.js +1 -1
- package/checkout/getCheckoutOrderStatusTexts.mjs +6 -6
- package/checkout/index.js +1 -1
- package/checkout/index.mjs +6 -6
- package/checkout/isCheckoutItemsAreEqual.js +1 -1
- package/checkout/isCheckoutItemsAreEqual.mjs +3 -3
- package/color/getLuminance.d.ts +7 -0
- package/color/getLuminance.js +1 -0
- package/color/getLuminance.mjs +7 -0
- package/color/hslToHex.d.ts +11 -0
- package/color/hslToHex.js +1 -0
- package/color/hslToHex.mjs +7 -0
- package/color/index.d.ts +4 -1
- package/color/index.js +1 -1
- package/color/index.mjs +10 -4
- package/color/toHsl.d.ts +11 -0
- package/color/toHsl.js +1 -0
- package/color/toHsl.mjs +7 -0
- package/identity-2a048185.js +1 -0
- package/{identity-6eafe87b.mjs → identity-cf449299.mjs} +3 -3
- package/index.js +1 -1
- package/index.mjs +263 -257
- package/isObjectLike-54341556.mjs +38 -0
- package/isObjectLike-963267e9.js +1 -0
- package/logger/index.js +1 -1
- package/logger/index.mjs +2 -2
- package/logger/pascalCaseFormatter.js +1 -1
- package/logger/pascalCaseFormatter.mjs +2 -2
- package/order/getCheckOrderItemsMappedByTicketItemStatus.js +1 -1
- package/order/getCheckOrderItemsMappedByTicketItemStatus.mjs +6 -6
- package/order/getCheckOrderMinimumStatusTicketItem.js +1 -1
- package/order/getCheckOrderMinimumStatusTicketItem.mjs +6 -6
- package/order/index.js +1 -1
- package/order/index.mjs +6 -6
- package/outlet/getOutletCurrentClosingTimeText.js +1 -1
- package/outlet/getOutletCurrentClosingTimeText.mjs +6 -6
- package/outlet/getOutletTodayOpeningTimes.js +1 -1
- package/outlet/getOutletTodayOpeningTimes.mjs +6 -6
- package/outlet/index.js +1 -1
- package/outlet/index.mjs +6 -6
- package/outlet/serviceDateTimesFromOpeningHours.js +1 -1
- package/outlet/serviceDateTimesFromOpeningHours.mjs +4 -4
- package/package.json +36 -1
- package/toString-b771abdf.js +1 -0
- package/{toString-3b91b335.mjs → toString-ce418705.mjs} +10 -10
- package/_baseIsEqual-bcac9024.js +0 -1
- package/_baseIteratee-075c204c.js +0 -1
- package/_getTag-b8923c48.js +0 -1
- package/identity-1bae7cf8.js +0 -1
- package/isArray-0d9c7aaa.mjs +0 -38
- package/isArray-640f9811.js +0 -1
- package/toString-9eae9442.js +0 -1
package/index.mjs
CHANGED
|
@@ -10,20 +10,20 @@ import { default as ee } from "./outlet/getOutletTagInformation.mjs";
|
|
|
10
10
|
import { default as re } from "./outlet/getOutletAvailabilityInfo.mjs";
|
|
11
11
|
import { default as ae } from "./outlet/getOutletOfflineOrderFormats.mjs";
|
|
12
12
|
import { default as se } from "./outlet/getOutletAvailableOrderFormats.mjs";
|
|
13
|
-
import { default as
|
|
13
|
+
import { default as le } from "./outlet/getOutletFormattedDistance.mjs";
|
|
14
14
|
import { default as me } from "./outlet/isOutletAcceptingPreOrders.mjs";
|
|
15
15
|
import { default as pe } from "./outlet/getOutletDeliveryFee.mjs";
|
|
16
16
|
import { default as ne } from "./outlet/getOutletTodayOpeningTimes.mjs";
|
|
17
17
|
import { default as ge } from "./outlet/getOutletOrderFormats.mjs";
|
|
18
|
-
import { default as
|
|
18
|
+
import { default as Oe } from "./outlet/serviceDateTimesFromOpeningHours.mjs";
|
|
19
19
|
import { default as Ce } from "./outlet/getPickerIntervalsForDay.mjs";
|
|
20
20
|
import { default as Se } from "./outlet/getServiceIntervalRange.mjs";
|
|
21
21
|
import { default as Ae } from "./outlet/getServiceIntervalsForOrderFormat.mjs";
|
|
22
22
|
import { default as Ie } from "./outlet/getOutletFormattedAddress.mjs";
|
|
23
23
|
import { default as Ee } from "./outlet/getPartitionedOutletsList.mjs";
|
|
24
24
|
import { default as De } from "./outlet/getOutletPickerTimesForWeek.mjs";
|
|
25
|
-
import { default as
|
|
26
|
-
import { default as
|
|
25
|
+
import { default as Le } from "./outlet/getOutletPickerTimesForDay.mjs";
|
|
26
|
+
import { default as Re } from "./outlet/getOutletOrderPrepTime.mjs";
|
|
27
27
|
import { default as Ue } from "./outlet/getStructuredOutletAddress.mjs";
|
|
28
28
|
import { default as We } from "./outlet/getOutletNextOpeningTimeText.mjs";
|
|
29
29
|
import { default as Be } from "./outlet/getOutletCurrentClosingTimeText.mjs";
|
|
@@ -37,140 +37,143 @@ import { default as et } from "./outlet/isAOTippingEnabledForOrderFormat.mjs";
|
|
|
37
37
|
import { default as rt } from "./outlet/isMenuTreeHierarchyProductAvailable.mjs";
|
|
38
38
|
import { default as at } from "./outlet/getOutletMenuProductsSortCriteria.mjs";
|
|
39
39
|
import { default as st } from "./outlet/getOutletNextServiceTimeOffset.mjs";
|
|
40
|
-
import { default as
|
|
40
|
+
import { default as lt } from "./versioning/isVersionALessThanB.mjs";
|
|
41
41
|
import { default as mt } from "./versioning/cleanVersionString.mjs";
|
|
42
42
|
import { default as pt } from "./api/getUrlAndParams.mjs";
|
|
43
43
|
import { default as nt } from "./api/getEndpointWithVersion.mjs";
|
|
44
44
|
import { default as gt } from "./api/generateBackoffWithEqualJitter.mjs";
|
|
45
|
-
import { default as
|
|
45
|
+
import { default as Ot } from "./api/generateBackoffWithVariableJitter.mjs";
|
|
46
46
|
import { default as Ct } from "./api/isAcceptedResponse.mjs";
|
|
47
47
|
import { default as St } from "./api/isNoContentResponse.mjs";
|
|
48
48
|
import { default as At } from "./api/APIFilterBuilder.mjs";
|
|
49
49
|
import { default as It } from "./string/slugify.mjs";
|
|
50
50
|
import { default as Et } from "./string/truncate.mjs";
|
|
51
51
|
import { default as Dt } from "./string/getRandomAlphaNumericCode.mjs";
|
|
52
|
-
import { default as
|
|
53
|
-
import { default as
|
|
52
|
+
import { default as Lt } from "./string/getParsedJSONFromString.mjs";
|
|
53
|
+
import { default as Rt } from "./color/lighten.mjs";
|
|
54
54
|
import { default as Ut } from "./color/brighten.mjs";
|
|
55
55
|
import { default as Wt } from "./color/darken.mjs";
|
|
56
56
|
import { default as Bt } from "./color/isDarkBackground.mjs";
|
|
57
57
|
import { default as zt } from "./color/isColorsReadable.mjs";
|
|
58
58
|
import { default as wt } from "./color/isColorsEqual.mjs";
|
|
59
|
-
import { default as Kt } from "./
|
|
60
|
-
import { default as jt } from "./
|
|
61
|
-
import { default as Yt } from "./
|
|
62
|
-
import { default as _t } from "./user/
|
|
63
|
-
import { default as er } from "./user/
|
|
64
|
-
import { default as rr } from "./
|
|
65
|
-
import {
|
|
66
|
-
import { default as sr } from "./
|
|
67
|
-
import { default as
|
|
68
|
-
import {
|
|
69
|
-
import { default as pr } from "./
|
|
70
|
-
import { default as nr } from "./
|
|
71
|
-
import { default as gr } from "./printing/
|
|
72
|
-
import { default as
|
|
73
|
-
import { default as Cr } from "./printing/
|
|
74
|
-
import { default as Sr } from "./printing/
|
|
75
|
-
import { default as Ar } from "./
|
|
76
|
-
import { default as Ir } from "./
|
|
77
|
-
import { default as Er } from "./
|
|
78
|
-
import { default as Dr } from "./
|
|
79
|
-
import {
|
|
80
|
-
import { default as
|
|
81
|
-
import { default as
|
|
82
|
-
import { default as Hr } from "./checkout/
|
|
83
|
-
import { default as Vr } from "./checkout/
|
|
84
|
-
import { default as qr } from "./checkout/
|
|
85
|
-
import { default as Jr } from "./checkout/
|
|
86
|
-
import { default as Qr } from "./checkout/
|
|
87
|
-
import { default as Xr } from "./checkout/
|
|
88
|
-
import { default as Zr } from "./checkout/
|
|
89
|
-
import { default as $r } from "./checkout/
|
|
90
|
-
import { default as to } from "./checkout/
|
|
91
|
-
import { default as oo } from "./checkout/
|
|
92
|
-
import {
|
|
93
|
-
import { default as
|
|
94
|
-
import { default as
|
|
95
|
-
import { default as xo } from "./checkout/
|
|
96
|
-
import { default as co } from "./checkout/
|
|
97
|
-
import { default as
|
|
98
|
-
import { default as ko } from "./checkout/
|
|
99
|
-
import { default as Po } from "./checkout/
|
|
100
|
-
import { default as ho } from "./checkout/
|
|
101
|
-
import { default as Fo } from "./checkout/
|
|
102
|
-
import { default as yo } from "./checkout/
|
|
103
|
-
import { default as vo } from "./checkout/
|
|
104
|
-
import { default as bo } from "./
|
|
105
|
-
import { default as
|
|
106
|
-
import { default as No } from "./
|
|
107
|
-
import { default as Go } from "./
|
|
108
|
-
import { default as Ho } from "./
|
|
109
|
-
import { default as Vo } from "./
|
|
110
|
-
import { default as qo } from "./
|
|
111
|
-
import { default as Jo } from "./
|
|
112
|
-
import { default as Qo } from "./inventory/
|
|
113
|
-
import { default as Xo } from "./inventory/
|
|
114
|
-
import { default as Zo } from "./inventory/
|
|
115
|
-
import { default as $o } from "./inventory/
|
|
116
|
-
import { default as ta } from "./
|
|
117
|
-
import { default as oa } from "./
|
|
118
|
-
import { default as fa } from "./
|
|
119
|
-
import { default as ua } from "./
|
|
120
|
-
import { default as
|
|
121
|
-
import { default as ia } from "./error/
|
|
122
|
-
import { default as xa } from "./error/
|
|
123
|
-
import { default as ca } from "./error/
|
|
124
|
-
import { default as
|
|
125
|
-
import { default as ka } from "./error/
|
|
126
|
-
import { default as Pa } from "./error/
|
|
127
|
-
import { default as ha } from "./error/
|
|
128
|
-
import { default as Fa } from "./error/
|
|
129
|
-
import { default as ya } from "./error/
|
|
130
|
-
import { default as va } from "./error/
|
|
131
|
-
import { default as ba } from "./error/
|
|
132
|
-
import { default as
|
|
133
|
-
import { default as Na } from "./
|
|
134
|
-
import { default as Ga } from "./
|
|
135
|
-
import { default as Ha } from "./hangfire/
|
|
136
|
-
import { default as Va } from "./
|
|
137
|
-
import { default as qa } from "./
|
|
138
|
-
import { default as Ja } from "./
|
|
139
|
-
import { default as Qa } from "./product/
|
|
140
|
-
import { default as Xa } from "./product/
|
|
141
|
-
import { default as Za } from "./product/
|
|
142
|
-
import { default as $a } from "./
|
|
143
|
-
import { default as tf } from "./
|
|
144
|
-
import { default as of } from "./
|
|
145
|
-
import { default as ff } from "./
|
|
146
|
-
import { default as uf } from "./
|
|
147
|
-
import { default as
|
|
148
|
-
import { default as pf } from "./
|
|
149
|
-
import { default as nf } from "./
|
|
150
|
-
import { default as gf
|
|
151
|
-
import { default as
|
|
152
|
-
import { default as
|
|
153
|
-
import { default as Ff } from "./
|
|
154
|
-
import { default as yf } from "./
|
|
155
|
-
import { default as vf } from "./date/
|
|
156
|
-
import { default as bf } from "./date/
|
|
157
|
-
import { default as
|
|
158
|
-
import { default as Nf } from "./date/
|
|
159
|
-
import { default as Gf } from "./
|
|
160
|
-
import { default as Hf } from "./
|
|
161
|
-
import { default as Vf } from "./
|
|
162
|
-
import { default as qf } from "./time/
|
|
163
|
-
import { default as Jf } from "./time/
|
|
164
|
-
import { default as Qf } from "./time/
|
|
165
|
-
import { default as Xf } from "./time/
|
|
166
|
-
import { default as Zf } from "./time/
|
|
167
|
-
import { default as $f } from "./time/
|
|
168
|
-
import { default as ts } from "./time/
|
|
169
|
-
import { default as os } from "./
|
|
170
|
-
import { default as fs } from "./
|
|
171
|
-
import { default as us } from "./
|
|
172
|
-
import { default as
|
|
173
|
-
import { default as is } from "./
|
|
59
|
+
import { default as Kt } from "./color/getLuminance.mjs";
|
|
60
|
+
import { default as jt } from "./color/toHsl.mjs";
|
|
61
|
+
import { default as Yt } from "./color/hslToHex.mjs";
|
|
62
|
+
import { default as _t } from "./user/getFullName.mjs";
|
|
63
|
+
import { default as er } from "./user/getFullAddressString.mjs";
|
|
64
|
+
import { default as rr } from "./user/getCustomerAddressFromGeocoderResult.mjs";
|
|
65
|
+
import { default as ar } from "./user/getFormattedPhoneNumber.mjs";
|
|
66
|
+
import { default as sr } from "./user/getStructuredCustomerAddress.mjs";
|
|
67
|
+
import { default as lr } from "./logger/Logger.mjs";
|
|
68
|
+
import { LogLevel as mr } from "./logger/types.mjs";
|
|
69
|
+
import { default as pr } from "./logger/sanitizeAsStringDict.mjs";
|
|
70
|
+
import { default as nr } from "./logger/pascalCaseFormatter.mjs";
|
|
71
|
+
import { default as gr } from "./printing/getPrinterType.mjs";
|
|
72
|
+
import { default as Or } from "./printing/isValidPrinter.mjs";
|
|
73
|
+
import { default as Cr } from "./printing/isValidNetworkPrinter.mjs";
|
|
74
|
+
import { default as Sr } from "./printing/isValidStarCloudPrinter.mjs";
|
|
75
|
+
import { default as Ar } from "./printing/isTerminalPrinter.mjs";
|
|
76
|
+
import { default as Ir } from "./printing/isCloudPrintModeEnabled.mjs";
|
|
77
|
+
import { default as Er } from "./printing/createStarCloudScanHook.mjs";
|
|
78
|
+
import { default as Dr } from "./number/randomIntFromInterval.mjs";
|
|
79
|
+
import { default as Lr } from "./tables/decodeTableQRPayload.mjs";
|
|
80
|
+
import { default as Rr } from "./checkout/getCheckoutItemModifications.mjs";
|
|
81
|
+
import { default as Ur } from "./checkout/getCheckoutProductName.mjs";
|
|
82
|
+
import { TranslationKey as Wr, default as Hr } from "./checkout/getCheckoutOrderStatusTexts.mjs";
|
|
83
|
+
import { default as Vr } from "./checkout/getCheckoutItemsMappedByTicketItemStatus.mjs";
|
|
84
|
+
import { default as qr } from "./checkout/isCheckoutOrderSummary.mjs";
|
|
85
|
+
import { default as Jr } from "./checkout/buildCheckoutRequestItem.mjs";
|
|
86
|
+
import { default as Qr } from "./checkout/getCheckoutGrandTotalAmount.mjs";
|
|
87
|
+
import { default as Xr } from "./checkout/getCheckoutRequestItemFromCheckoutItem.mjs";
|
|
88
|
+
import { default as Zr } from "./checkout/isCheckoutItemsAreEqual.mjs";
|
|
89
|
+
import { default as $r } from "./checkout/checkoutHasWallet.mjs";
|
|
90
|
+
import { default as to } from "./checkout/getWalletMetaFromCheckout.mjs";
|
|
91
|
+
import { default as oo } from "./checkout/isPreOrderServiceTime.mjs";
|
|
92
|
+
import { default as fo } from "./checkout/isPreOrderCheckout.mjs";
|
|
93
|
+
import { default as uo } from "./checkout/isUpdatingCheckoutAllowed.mjs";
|
|
94
|
+
import { default as mo } from "./checkout/isCheckoutAlreadyPaidStatus.mjs";
|
|
95
|
+
import { CheckoutPaymentErrorTranslationKey as po, default as xo } from "./checkout/getCheckoutPaymentErrorTranslationTexts.mjs";
|
|
96
|
+
import { default as co } from "./checkout/isDeletingCheckoutAllowed.mjs";
|
|
97
|
+
import { default as To } from "./checkout/getTotalCheckoutItemsQuantity.mjs";
|
|
98
|
+
import { default as ko } from "./checkout/getCheckoutPenguinLockersMetaData.mjs";
|
|
99
|
+
import { default as Po } from "./checkout/getUniqueCheckoutPenguinDeliveryCodes.mjs";
|
|
100
|
+
import { default as ho } from "./checkout/isWoltDeliveryInProgress.mjs";
|
|
101
|
+
import { default as Fo } from "./checkout/isWalletTopUpCheckoutItem.mjs";
|
|
102
|
+
import { default as yo } from "./checkout/isWalletTopUpCheckout.mjs";
|
|
103
|
+
import { default as vo } from "./checkout/getCheckoutWalletTopUpMetaData.mjs";
|
|
104
|
+
import { default as bo } from "./checkout/isGiftCardCheckout.mjs";
|
|
105
|
+
import { default as Mo } from "./checkout/isGiftCardCheckoutItem.mjs";
|
|
106
|
+
import { default as No } from "./checkout/getCheckoutGiftCardMetaData.mjs";
|
|
107
|
+
import { default as Go } from "./order/getCheckOrderItemsMappedByTicketItemStatus.mjs";
|
|
108
|
+
import { default as Ho } from "./order/getCheckOrderMinimumStatusTicketItem.mjs";
|
|
109
|
+
import { default as Vo } from "./order/getMultiProductSubProductsTicketItems.mjs";
|
|
110
|
+
import { default as qo } from "./currency/getFormattedCurrency.mjs";
|
|
111
|
+
import { default as Jo } from "./currency/getFormattedCurrencyPostfix.mjs";
|
|
112
|
+
import { default as Qo } from "./inventory/isDetailedProductOutOfStock.mjs";
|
|
113
|
+
import { default as Xo } from "./inventory/isDetailedProductVariantOutOfStocks.mjs";
|
|
114
|
+
import { default as Zo } from "./inventory/isMenuTreeProductOutOfStock.mjs";
|
|
115
|
+
import { default as $o } from "./inventory/isDetailedProductUpSellsOutOfStock.mjs";
|
|
116
|
+
import { default as ta } from "./inventory/isUpSellProductOutStock.mjs";
|
|
117
|
+
import { default as oa } from "./inventory/isDetailedProductOutletStockOutOfStock.mjs";
|
|
118
|
+
import { default as fa } from "./inventory/getDetailedProductVariantStock.mjs";
|
|
119
|
+
import { default as ua } from "./signalr/createUseSignalRHook.mjs";
|
|
120
|
+
import { default as da } from "./signalr/SignalR.mjs";
|
|
121
|
+
import { default as ia } from "./error/createCodedError.mjs";
|
|
122
|
+
import { default as xa } from "./error/isCodedError.mjs";
|
|
123
|
+
import { default as ca } from "./error/isNetworkError.mjs";
|
|
124
|
+
import { default as Ta } from "./error/isLockedError.mjs";
|
|
125
|
+
import { default as ka } from "./error/isNotFoundError.mjs";
|
|
126
|
+
import { default as Pa } from "./error/isAPIError.mjs";
|
|
127
|
+
import { default as ha } from "./error/isSerializedAPIError.mjs";
|
|
128
|
+
import { default as Fa } from "./error/isSerializedCodedError.mjs";
|
|
129
|
+
import { default as ya } from "./error/serializeError.mjs";
|
|
130
|
+
import { default as va } from "./error/getErrorCode.mjs";
|
|
131
|
+
import { default as ba } from "./error/isErrorWithStatusCode.mjs";
|
|
132
|
+
import { default as Ma } from "./error/isBadGatewayError.mjs";
|
|
133
|
+
import { default as Na } from "./error/isServiceUnavailableError.mjs";
|
|
134
|
+
import { default as Ga } from "./error/isTooManyRequestsError.mjs";
|
|
135
|
+
import { default as Ha } from "./hangfire/isHangfireResponse.mjs";
|
|
136
|
+
import { default as Va } from "./hangfire/isHangfireWorkerExpiredOrInvalidError.mjs";
|
|
137
|
+
import { default as qa } from "./hangfire/createHangfirePoller.mjs";
|
|
138
|
+
import { default as Ja } from "./hangfire/createMakeHangfireRequest.mjs";
|
|
139
|
+
import { default as Qa } from "./product/extractProductsFromMenuTree.mjs";
|
|
140
|
+
import { default as Xa } from "./product/calculateIngredientsCost.mjs";
|
|
141
|
+
import { default as Za } from "./product/calculateAddonGroupCost.mjs";
|
|
142
|
+
import { default as $a } from "./product/getAddonGroupInfoBySettings.mjs";
|
|
143
|
+
import { default as tf } from "./product/calculateWeightProductPrice.mjs";
|
|
144
|
+
import { default as of } from "./product/calculateProductWeightByPrice.mjs";
|
|
145
|
+
import { default as ff } from "./codec/base64URLEncode.mjs";
|
|
146
|
+
import { default as uf } from "./codec/base64URLDecode.mjs";
|
|
147
|
+
import { default as df } from "./hashing/getSHA256Hash.mjs";
|
|
148
|
+
import { default as pf } from "./preOrder/isPreOrderSharable.mjs";
|
|
149
|
+
import { default as nf } from "./preOrder/isPreOrderLink.mjs";
|
|
150
|
+
import { default as gf } from "./preOrder/isGroupPreOrder.mjs";
|
|
151
|
+
import { default as Of } from "./phoneNumber/isPhoneNumberValid.mjs";
|
|
152
|
+
import { default as Cf } from "./phoneNumber/formatPhoneNumber.mjs";
|
|
153
|
+
import { default as Sf, isLicenseExpired as hf, isLicenseExtended as Af, isLicenseTerminated as Ff } from "./license/getLicenseUIState.mjs";
|
|
154
|
+
import { default as yf } from "./googleMap/getComponentNameFromGeocoderResult.mjs";
|
|
155
|
+
import { default as vf } from "./date/createLocalTimezoneDate.mjs";
|
|
156
|
+
import { default as bf } from "./date/createLocalTimezoneMoment.mjs";
|
|
157
|
+
import { default as Mf } from "./date/getFormattedUTCDateTime.mjs";
|
|
158
|
+
import { default as Nf } from "./date/convertToLocalTimezone.mjs";
|
|
159
|
+
import { default as Gf } from "./date/convertToSpecificTimezone.mjs";
|
|
160
|
+
import { default as Hf } from "./date/getTimezoneUtcOffsetDifference.mjs";
|
|
161
|
+
import { default as Vf } from "./date/isDSTShiftPresentInRange.mjs";
|
|
162
|
+
import { default as qf } from "./time/toMinutes.mjs";
|
|
163
|
+
import { default as Jf } from "./time/getNextTenthMinute.mjs";
|
|
164
|
+
import { default as Qf } from "./time/getPrevNthMinute.mjs";
|
|
165
|
+
import { default as Xf } from "./time/getTimeSpanParts.mjs";
|
|
166
|
+
import { default as Zf } from "./time/getEndTimeSpanOfTimePeriod.mjs";
|
|
167
|
+
import { default as $f } from "./time/createTimeSpan.mjs";
|
|
168
|
+
import { default as ts } from "./time/formatTimeSpan.mjs";
|
|
169
|
+
import { default as os } from "./time/getDurationBetweenTimeSpans.mjs";
|
|
170
|
+
import { default as fs } from "./time/convertSecondsToTimeSpan.mjs";
|
|
171
|
+
import { default as us } from "./time/convertTimeSpanToSeconds.mjs";
|
|
172
|
+
import { default as ds } from "./ticketItem/isTicketItemReady.mjs";
|
|
173
|
+
import { default as is } from "./ticketItem/isTicketItemClosed.mjs";
|
|
174
|
+
import { default as xs } from "./quantity/getFormattedQuantity.mjs";
|
|
175
|
+
import { default as cs } from "./checkAuditLog/isPayAndGoCheckAuditLogAction.mjs";
|
|
176
|
+
import { default as Ts } from "./checkAuditLog/getCheckAuditLogProductName.mjs";
|
|
174
177
|
import "react";
|
|
175
178
|
import "moment";
|
|
176
179
|
import "@ancon/wildcat-types";
|
|
@@ -179,12 +182,12 @@ import "./outlet/getOutletCurrentActiveOperatingHour.mjs";
|
|
|
179
182
|
import "./outlet/getTimezoneAdjustedServiceInterval.mjs";
|
|
180
183
|
import "./outlet/getServiceIntervalTimeSpanMoment.mjs";
|
|
181
184
|
import "./outlet/searchNextOpeningMoment.mjs";
|
|
182
|
-
import "./_baseIteratee-
|
|
183
|
-
import "./_getTag-
|
|
184
|
-
import "./
|
|
185
|
-
import "./_baseIsEqual-
|
|
186
|
-
import "./identity-
|
|
187
|
-
import "./toString-
|
|
185
|
+
import "./_baseIteratee-db1f278d.mjs";
|
|
186
|
+
import "./_getTag-fcc5160b.mjs";
|
|
187
|
+
import "./isObjectLike-54341556.mjs";
|
|
188
|
+
import "./_baseIsEqual-5e6adb07.mjs";
|
|
189
|
+
import "./identity-cf449299.mjs";
|
|
190
|
+
import "./toString-ce418705.mjs";
|
|
188
191
|
import "./noop-378485d5.mjs";
|
|
189
192
|
import "./_baseSlice-4d543985.mjs";
|
|
190
193
|
import "./shared/constants.mjs";
|
|
@@ -209,75 +212,76 @@ import "google-libphonenumber";
|
|
|
209
212
|
import "./license/types.mjs";
|
|
210
213
|
export {
|
|
211
214
|
At as APIFilterBuilder,
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
215
|
+
po as CheckoutPaymentErrorTranslationKey,
|
|
216
|
+
mr as LogLevel,
|
|
217
|
+
lr as Logger,
|
|
218
|
+
da as SignalR,
|
|
219
|
+
Wr as TranslationKey,
|
|
220
|
+
uf as base64URLDecode,
|
|
221
|
+
ff as base64URLEncode,
|
|
219
222
|
Ut as brighten,
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
223
|
+
Jr as buildCheckoutRequestItem,
|
|
224
|
+
Za as calculateAddonGroupsCost,
|
|
225
|
+
Xa as calculateIngredientsCost,
|
|
226
|
+
of as calculateProductWeightByPrice,
|
|
227
|
+
tf as calculateWeightProductPrice,
|
|
228
|
+
$r as checkoutHasWallet,
|
|
226
229
|
mt as cleanVersionString,
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
230
|
+
fs as convertSecondsToTimeSpan,
|
|
231
|
+
us as convertTimeSpanToSeconds,
|
|
232
|
+
Nf as convertToLocalTimezone,
|
|
233
|
+
Gf as convertToSpecificTimezone,
|
|
234
|
+
ia as createCodedError,
|
|
235
|
+
qa as createHangfirePoller,
|
|
236
|
+
vf as createLocalTimezoneDate,
|
|
237
|
+
bf as createLocalTimezoneMoment,
|
|
238
|
+
Ja as createMakeHangfireRequest,
|
|
239
|
+
$f as createTimeSpan,
|
|
240
|
+
ua as createUseSignalRHook,
|
|
241
|
+
Er as createUseStarCloudScanHook,
|
|
239
242
|
Wt as darken,
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
243
|
+
Lr as decodeTableQRPayload,
|
|
244
|
+
Qa as extractProductsFromMenuTree,
|
|
245
|
+
Cf as formatPhoneNumber,
|
|
246
|
+
ts as formatTimeSpan,
|
|
244
247
|
gt as generateBackoffWithEqualJitter,
|
|
245
|
-
|
|
248
|
+
Ot as generateBackoffWithVariableJitter,
|
|
246
249
|
B as generateId,
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
250
|
+
$a as getAddonGroupInfoBySettings,
|
|
251
|
+
Ts as getCheckAuditLogProductName,
|
|
252
|
+
Go as getCheckOrderItemsMappedByTicketItemStatus,
|
|
253
|
+
Ho as getCheckOrderMinimumStatusTicketItem,
|
|
254
|
+
No as getCheckoutGiftCardMetaData,
|
|
255
|
+
Qr as getCheckoutGrandTotalAmount,
|
|
256
|
+
Rr as getCheckoutGroupedModifications,
|
|
257
|
+
Vr as getCheckoutItemsMappedByTicketItemStatus,
|
|
258
|
+
Hr as getCheckoutOrderStatusTexts,
|
|
259
|
+
xo as getCheckoutPaymentErrorTranslationTexts,
|
|
260
|
+
ko as getCheckoutPenguinLockersMetaData,
|
|
261
|
+
Ur as getCheckoutProductName,
|
|
262
|
+
Xr as getCheckoutRequestItemFromCheckoutItem,
|
|
263
|
+
vo as getCheckoutWalletTopUpMetaData,
|
|
264
|
+
yf as getComponentNameFromGeocoderResult,
|
|
265
|
+
rr as getCustomerAddressFromGeocoderResult,
|
|
266
|
+
fa as getDetailedProductVariantStock,
|
|
267
|
+
os as getDurationBetweenTimeSpans,
|
|
268
|
+
Zf as getEndTimeSpanOfTimePeriod,
|
|
266
269
|
nt as getEndpointWithVersion,
|
|
267
|
-
|
|
270
|
+
va as getErrorCode,
|
|
268
271
|
je as getExpressAvailableOrderFormats,
|
|
269
272
|
Ye as getExpressNextAvailabilityShiftTime,
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
273
|
+
qo as getFormattedCurrency,
|
|
274
|
+
Jo as getFormattedCurrencyPostfix,
|
|
275
|
+
ar as getFormattedPhoneNumber,
|
|
276
|
+
xs as getFormattedQuantity,
|
|
277
|
+
Mf as getFormattedUTCDateTime,
|
|
278
|
+
er as getFullAddressString,
|
|
279
|
+
_t as getFullName,
|
|
280
|
+
Sf as getLicenseUIState,
|
|
278
281
|
_ as getListOutletOpeningHoursTable,
|
|
279
|
-
|
|
280
|
-
|
|
282
|
+
Kt as getLuminance,
|
|
283
|
+
Vo as getMultiProductSubProductsTicketItems,
|
|
284
|
+
Jf as getNextTenthMinute,
|
|
281
285
|
_e as getOrderFormatAOTipSettings,
|
|
282
286
|
re as getOutletAvailabilityInfo,
|
|
283
287
|
se as getOutletAvailableOrderFormats,
|
|
@@ -285,7 +289,7 @@ export {
|
|
|
285
289
|
Be as getOutletCurrentClosingTimeText,
|
|
286
290
|
pe as getOutletDeliveryFee,
|
|
287
291
|
Ie as getOutletFormattedAddress,
|
|
288
|
-
|
|
292
|
+
le as getOutletFormattedDistance,
|
|
289
293
|
at as getOutletMenuProductsSortCriteria,
|
|
290
294
|
we as getOutletNextOpeningTagInformation,
|
|
291
295
|
We as getOutletNextOpeningTimeText,
|
|
@@ -293,95 +297,97 @@ export {
|
|
|
293
297
|
st as getOutletNextServiceTimeOffset,
|
|
294
298
|
ae as getOutletOfflineOrderFormats,
|
|
295
299
|
ge as getOutletOrderFormats,
|
|
296
|
-
|
|
297
|
-
|
|
300
|
+
Re as getOutletOrderPreparationTime,
|
|
301
|
+
Le as getOutletPickerTimesForDay,
|
|
298
302
|
De as getOutletPickerTimesForWeek,
|
|
299
303
|
ee as getOutletTagInformation,
|
|
300
304
|
ne as getOutletTodayOpeningTimes,
|
|
301
|
-
|
|
305
|
+
Lt as getParsedJSONFromString,
|
|
302
306
|
Ee as getPartitionedOutletsList,
|
|
303
307
|
Ce as getPickerIntervalsForDay,
|
|
304
|
-
|
|
305
|
-
|
|
308
|
+
Qf as getPrevNthMinute,
|
|
309
|
+
gr as getPrinterType,
|
|
306
310
|
Dt as getRandomAlphaNumericCode,
|
|
307
|
-
|
|
311
|
+
df as getSHA256Hash,
|
|
308
312
|
Se as getServiceIntervalRange,
|
|
309
313
|
Ae as getServiceIntervalsForOrderFormat,
|
|
310
|
-
|
|
314
|
+
sr as getStructuredCustomerAddress,
|
|
311
315
|
Ue as getStructuredOutletAddress,
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
+
Xf as getTimeSpanParts,
|
|
317
|
+
Hf as getTimezoneUtcOffsetDifference,
|
|
318
|
+
To as getTotalCheckoutItemsQuantity,
|
|
319
|
+
Po as getUniqueCheckoutPenguinDeliveryCodes,
|
|
316
320
|
pt as getUrlAndParams,
|
|
317
|
-
|
|
321
|
+
to as getWalletMetaFromCheckout,
|
|
318
322
|
K as gramToKiloGram,
|
|
323
|
+
Yt as hslToHex,
|
|
319
324
|
et as isAOTippingEnabledForOrderFormat,
|
|
320
|
-
|
|
325
|
+
Pa as isAPIError,
|
|
321
326
|
Ct as isAcceptedResponse,
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
327
|
+
Ma as isBadGatewayError,
|
|
328
|
+
mo as isCheckoutAlreadyPaidStatus,
|
|
329
|
+
Zr as isCheckoutItemsAreEqual,
|
|
330
|
+
qr as isCheckoutOrderSummary,
|
|
331
|
+
Ir as isCloudPrintModeEnabled,
|
|
332
|
+
xa as isCodedError,
|
|
328
333
|
wt as isColorsEqual,
|
|
329
334
|
zt as isColorsReadable,
|
|
330
|
-
|
|
335
|
+
Vf as isDSTShiftPresentInRange,
|
|
331
336
|
Bt as isDarkBackground,
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
337
|
+
co as isDeletingCheckoutAllowed,
|
|
338
|
+
Qo as isDetailedProductOutOfStock,
|
|
339
|
+
oa as isDetailedProductOutletStockOutOfStock,
|
|
340
|
+
$o as isDetailedProductUpSellsOutOfStock,
|
|
341
|
+
Xo as isDetailedProductVariantOutOfStocks,
|
|
342
|
+
ba as isErrorWithStatusCode,
|
|
343
|
+
bo as isGiftCardCheckout,
|
|
344
|
+
Mo as isGiftCardCheckoutItem,
|
|
345
|
+
gf as isGroupPreOrder,
|
|
346
|
+
Ha as isHangfireResponse,
|
|
347
|
+
Va as isHangfireWorkerExpiredOrInvalidError,
|
|
348
|
+
hf as isLicenseExpired,
|
|
349
|
+
Af as isLicenseExtended,
|
|
350
|
+
Ff as isLicenseTerminated,
|
|
351
|
+
Ta as isLockedError,
|
|
347
352
|
rt as isMenuTreeHierarchyProductAvailable,
|
|
348
|
-
|
|
349
|
-
|
|
353
|
+
Zo as isMenuTreeProductOutOfStock,
|
|
354
|
+
ca as isNetworkError,
|
|
350
355
|
St as isNoContentResponse,
|
|
351
|
-
|
|
356
|
+
ka as isNotFoundError,
|
|
352
357
|
me as isOutletAcceptingPreOrders,
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
358
|
+
cs as isPayAndGoCheckAuditLogAction,
|
|
359
|
+
Of as isPhoneNumberValid,
|
|
360
|
+
fo as isPreOrderCheckout,
|
|
361
|
+
nf as isPreOrderLink,
|
|
362
|
+
oo as isPreOrderServiceTime,
|
|
363
|
+
pf as isPreOrderSharable,
|
|
364
|
+
ha as isSerializedAPIError,
|
|
365
|
+
Fa as isSerializedCodedError,
|
|
366
|
+
Na as isServiceUnavailableError,
|
|
367
|
+
Ar as isTerminalPrinter,
|
|
368
|
+
is as isTicketItemClosed,
|
|
369
|
+
ds as isTicketItemReady,
|
|
370
|
+
Ga as isTooManyRequestsError,
|
|
371
|
+
ta as isUpSellProductOutOfStock,
|
|
372
|
+
uo as isUpdatingCheckoutAllowed,
|
|
373
|
+
Cr as isValidNetworkPrinter,
|
|
374
|
+
Or as isValidPrinter,
|
|
375
|
+
Sr as isValidStarCloudPrinter,
|
|
376
|
+
lt as isVersionALessThanB,
|
|
377
|
+
yo as isWalletTopUpCheckout,
|
|
378
|
+
Fo as isWalletTopUpCheckoutItem,
|
|
374
379
|
W as isWithinFlag,
|
|
375
|
-
|
|
380
|
+
ho as isWoltDeliveryInProgress,
|
|
376
381
|
w as kiloGramToGram,
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
382
|
+
Rt as lighten,
|
|
383
|
+
nr as pascalCaseFormatter,
|
|
384
|
+
Dr as randomIntFromInterval,
|
|
385
|
+
pr as sanitizeAsStringDict,
|
|
386
|
+
ya as serializeError,
|
|
387
|
+
Oe as serviceDateTimesFromOpeningHours,
|
|
383
388
|
It as slugify,
|
|
384
|
-
|
|
389
|
+
jt as toHsl,
|
|
390
|
+
qf as toMinutes,
|
|
385
391
|
Et as truncate,
|
|
386
392
|
Y as useMountedRef,
|
|
387
393
|
j as usePrevious,
|