@techstuff-dev/foundation-api-utils 1.49.0 → 1.50.0
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/cjs/chunks/{shared-2Qy1c7Qz.js → shared-C7VXez72.js} +2 -2
- package/dist/cjs/chunks/{shared-2Qy1c7Qz.js.map → shared-C7VXez72.js.map} +1 -1
- package/dist/cjs/chunks/{slice-DsZzY7T7.js → slice-DbSCDBSE.js} +150 -49
- package/dist/cjs/chunks/slice-DbSCDBSE.js.map +1 -0
- package/dist/cjs/index.js +9 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/store/index.native.js +13 -18
- package/dist/cjs/store/index.native.js.map +1 -1
- package/dist/cjs/store/index.web.js +5 -3
- package/dist/cjs/store/index.web.js.map +1 -1
- package/dist/esm/chunks/{shared--CrxBBZ8.js → shared-DA5G5YG-.js} +2 -2
- package/dist/esm/chunks/{shared--CrxBBZ8.js.map → shared-DA5G5YG-.js.map} +1 -1
- package/dist/esm/chunks/{slice-3o-PH5Gz.js → slice-BL46K1jn.js} +143 -50
- package/dist/esm/chunks/slice-BL46K1jn.js.map +1 -0
- package/dist/esm/index.js +1 -1
- package/dist/esm/store/index.native.js +13 -18
- package/dist/esm/store/index.native.js.map +1 -1
- package/dist/esm/store/index.web.js +5 -3
- package/dist/esm/store/index.web.js.map +1 -1
- package/dist/types/hooks/index.d.ts +10 -1
- package/dist/types/{index-BDQnFTra.d.ts → index-UQCqBQLx.d.ts} +2 -2
- package/dist/types/index.d.ts +47 -4
- package/dist/types/store/index.d.ts +1 -1
- package/package.json +10 -3
- package/dist/cjs/chunks/index-CfrYa4U_.js +0 -9
- package/dist/cjs/chunks/index-CfrYa4U_.js.map +0 -1
- package/dist/cjs/chunks/slice-DsZzY7T7.js.map +0 -1
- package/dist/esm/chunks/index-KjhWa1AL.js +0 -6
- package/dist/esm/chunks/index-KjhWa1AL.js.map +0 -1
- package/dist/esm/chunks/slice-3o-PH5Gz.js.map +0 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
var toolkit = require('@reduxjs/toolkit');
|
|
4
|
-
var slice = require('./slice-
|
|
4
|
+
var slice = require('./slice-DbSCDBSE.js');
|
|
5
5
|
var slice$1 = require('./slice-CkWobkWw.js');
|
|
6
6
|
|
|
7
7
|
function getDefaultExportFromCjs (x) {
|
|
@@ -16,4 +16,4 @@ const rootReducer = toolkit.combineSlices(slice.cartSlice, slice$1.authSlice, sl
|
|
|
16
16
|
|
|
17
17
|
exports.getDefaultExportFromCjs = getDefaultExportFromCjs;
|
|
18
18
|
exports.rootReducer = rootReducer;
|
|
19
|
-
//# sourceMappingURL=shared-
|
|
19
|
+
//# sourceMappingURL=shared-C7VXez72.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shared-
|
|
1
|
+
{"version":3,"file":"shared-C7VXez72.js","sources":["../../../lib/store/shared.ts"],"sourcesContent":[null],"names":["combineSlices","cartSlice","authSlice","authApi","contentApi","paymentApi","ordersApi"],"mappings":";;;;;;;;;;AAAA;AACA;AASA;AAEA;AACO,MAAM,WAAW,GAAGA,qBAAa,CACtCC,eAAS,EACTC,iBAAS,EACTC,aAAO,EACPC,gBAAU,EACVC,gBAAU,EACVC,eAAS;;;;;"}
|
|
@@ -4083,8 +4083,8 @@ function useShallowStableValue(value) {
|
|
|
4083
4083
|
var canUseDOM = () => !!(typeof window !== "undefined" && typeof window.document !== "undefined" && typeof window.document.createElement !== "undefined");
|
|
4084
4084
|
var isDOM = /* @__PURE__ */ canUseDOM();
|
|
4085
4085
|
var isRunningInReactNative = () => typeof navigator !== "undefined" && navigator.product === "ReactNative";
|
|
4086
|
-
var isReactNative = /* @__PURE__ */ isRunningInReactNative();
|
|
4087
|
-
var getUseIsomorphicLayoutEffect = () => isDOM || isReactNative ? React.useLayoutEffect : React.useEffect;
|
|
4086
|
+
var isReactNative$1 = /* @__PURE__ */ isRunningInReactNative();
|
|
4087
|
+
var getUseIsomorphicLayoutEffect = () => isDOM || isReactNative$1 ? React.useLayoutEffect : React.useEffect;
|
|
4088
4088
|
var useIsomorphicLayoutEffect = /* @__PURE__ */ getUseIsomorphicLayoutEffect();
|
|
4089
4089
|
var noPendingQueryStateSelector = (selected) => {
|
|
4090
4090
|
if (selected.isUninitialized) {
|
|
@@ -4684,6 +4684,9 @@ Hook ${hookName} was either not provided or not a function.`);
|
|
|
4684
4684
|
// src/query/react/index.ts
|
|
4685
4685
|
var createApi = /* @__PURE__ */ buildCreateApi(coreModule(), reactHooksModule());
|
|
4686
4686
|
|
|
4687
|
+
function onlyUnique(value, index, self) {
|
|
4688
|
+
return self.indexOf(value) === index;
|
|
4689
|
+
}
|
|
4687
4690
|
function applyCoupon(coupon, netTotal) {
|
|
4688
4691
|
const discountedAmount = netTotal * (Number(coupon.discount) / 100);
|
|
4689
4692
|
const discountedTotal = netTotal - discountedAmount;
|
|
@@ -4706,7 +4709,7 @@ function toCamelCaseObject(obj) {
|
|
|
4706
4709
|
};
|
|
4707
4710
|
const camelCaseObject = {};
|
|
4708
4711
|
for (const key in obj) {
|
|
4709
|
-
if (
|
|
4712
|
+
if (Object.prototype.hasOwnProperty.call(obj, key)) {
|
|
4710
4713
|
const camelKey = toCamelCase(key);
|
|
4711
4714
|
camelCaseObject[camelKey] = obj[key];
|
|
4712
4715
|
}
|
|
@@ -4971,7 +4974,7 @@ function formatSchedule(data) {
|
|
|
4971
4974
|
return {
|
|
4972
4975
|
end: item?._source?.monday_end?.[index],
|
|
4973
4976
|
start: item?._source?.monday_start?.[index],
|
|
4974
|
-
title
|
|
4977
|
+
title,
|
|
4975
4978
|
video: item?._source?.monday_video?.[index],
|
|
4976
4979
|
live: item?._source?.monday_live?.[index],
|
|
4977
4980
|
};
|
|
@@ -4982,7 +4985,7 @@ function formatSchedule(data) {
|
|
|
4982
4985
|
return {
|
|
4983
4986
|
end: item?._source?.tuesday_end?.[index],
|
|
4984
4987
|
start: item?._source?.tuesday_start?.[index],
|
|
4985
|
-
title
|
|
4988
|
+
title,
|
|
4986
4989
|
video: item?._source?.tuesday_video?.[index],
|
|
4987
4990
|
live: item?._source?.tuesday_live?.[index],
|
|
4988
4991
|
};
|
|
@@ -4993,7 +4996,7 @@ function formatSchedule(data) {
|
|
|
4993
4996
|
return {
|
|
4994
4997
|
end: item?._source?.wednesday_end?.[index],
|
|
4995
4998
|
start: item?._source?.wednesday_start?.[index],
|
|
4996
|
-
title
|
|
4999
|
+
title,
|
|
4997
5000
|
video: item?._source?.wednesday_video?.[index],
|
|
4998
5001
|
live: item?._source?.wednesday_live?.[index],
|
|
4999
5002
|
};
|
|
@@ -5004,7 +5007,7 @@ function formatSchedule(data) {
|
|
|
5004
5007
|
return {
|
|
5005
5008
|
end: item?._source?.thursday_end?.[index],
|
|
5006
5009
|
start: item?._source?.thursday_start?.[index],
|
|
5007
|
-
title
|
|
5010
|
+
title,
|
|
5008
5011
|
video: item?._source?.thursday_video?.[index],
|
|
5009
5012
|
live: item?._source?.thursday_live?.[index],
|
|
5010
5013
|
};
|
|
@@ -5015,7 +5018,7 @@ function formatSchedule(data) {
|
|
|
5015
5018
|
return {
|
|
5016
5019
|
end: item?._source?.friday_end?.[index],
|
|
5017
5020
|
start: item?._source?.friday_start?.[index],
|
|
5018
|
-
title
|
|
5021
|
+
title,
|
|
5019
5022
|
video: item?._source?.friday_video?.[index],
|
|
5020
5023
|
live: item?._source?.friday_live?.[index],
|
|
5021
5024
|
};
|
|
@@ -5026,7 +5029,7 @@ function formatSchedule(data) {
|
|
|
5026
5029
|
return {
|
|
5027
5030
|
end: item?._source?.saturday_end?.[index],
|
|
5028
5031
|
start: item?._source?.saturday_start?.[index],
|
|
5029
|
-
title
|
|
5032
|
+
title,
|
|
5030
5033
|
video: item?._source?.saturday_video?.[index],
|
|
5031
5034
|
live: item?._source?.saturday_live?.[index],
|
|
5032
5035
|
};
|
|
@@ -5037,7 +5040,7 @@ function formatSchedule(data) {
|
|
|
5037
5040
|
return {
|
|
5038
5041
|
end: item?._source?.sunday_end?.[index],
|
|
5039
5042
|
start: item?._source?.sunday_start?.[index],
|
|
5040
|
-
title
|
|
5043
|
+
title,
|
|
5041
5044
|
video: item?._source?.sunday_video?.[index],
|
|
5042
5045
|
live: item?._source?.sunday_live?.[index],
|
|
5043
5046
|
};
|
|
@@ -5317,39 +5320,127 @@ const formatMediaItem = (data) => {
|
|
|
5317
5320
|
});
|
|
5318
5321
|
};
|
|
5319
5322
|
|
|
5320
|
-
|
|
5321
|
-
|
|
5322
|
-
|
|
5323
|
-
|
|
5324
|
-
|
|
5325
|
-
|
|
5326
|
-
|
|
5327
|
-
|
|
5328
|
-
|
|
5329
|
-
|
|
5330
|
-
|
|
5331
|
-
|
|
5332
|
-
|
|
5333
|
-
|
|
5334
|
-
|
|
5335
|
-
|
|
5336
|
-
|
|
5337
|
-
process.env?.
|
|
5338
|
-
|
|
5339
|
-
|
|
5340
|
-
|
|
5341
|
-
|
|
5342
|
-
|
|
5343
|
-
|
|
5344
|
-
|
|
5345
|
-
|
|
5346
|
-
|
|
5347
|
-
|
|
5348
|
-
|
|
5323
|
+
/**
|
|
5324
|
+
* Platform detection utilities for cross-platform React/React Native applications
|
|
5325
|
+
*/
|
|
5326
|
+
/**
|
|
5327
|
+
* Detects if running in a web environment (Next.js, browser)
|
|
5328
|
+
* Uses multiple checks for robustness
|
|
5329
|
+
*/
|
|
5330
|
+
const isWeb = () => {
|
|
5331
|
+
// Check for explicit web app flag
|
|
5332
|
+
if (typeof process !== 'undefined' && process.env?.NEXT_PUBLIC_WEB_APP) {
|
|
5333
|
+
return true;
|
|
5334
|
+
}
|
|
5335
|
+
// Check for DOM availability (browser environment)
|
|
5336
|
+
if (typeof window !== 'undefined' && typeof document !== 'undefined') {
|
|
5337
|
+
return true;
|
|
5338
|
+
}
|
|
5339
|
+
// Check for Next.js specific environment variables
|
|
5340
|
+
if (typeof process !== 'undefined' && process.env?.NEXT_RUNTIME) {
|
|
5341
|
+
return true;
|
|
5342
|
+
}
|
|
5343
|
+
return false;
|
|
5344
|
+
};
|
|
5345
|
+
/**
|
|
5346
|
+
* Detects if running in a React Native environment
|
|
5347
|
+
*/
|
|
5348
|
+
const isReactNative = () => {
|
|
5349
|
+
// Check for React Native specific globals
|
|
5350
|
+
if (typeof navigator !== 'undefined' && navigator.product === 'ReactNative') {
|
|
5351
|
+
return true;
|
|
5352
|
+
}
|
|
5353
|
+
// Check for React Native Metro bundler
|
|
5354
|
+
if (typeof __DEV__ !== 'undefined') {
|
|
5355
|
+
return true;
|
|
5356
|
+
}
|
|
5357
|
+
// Check for absence of DOM and presence of React Native modules
|
|
5358
|
+
if (typeof window === 'undefined' && typeof require !== 'undefined') {
|
|
5359
|
+
try {
|
|
5360
|
+
require.resolve('react-native');
|
|
5361
|
+
return true;
|
|
5362
|
+
}
|
|
5363
|
+
catch {
|
|
5364
|
+
// react-native not available
|
|
5365
|
+
}
|
|
5366
|
+
}
|
|
5367
|
+
return false;
|
|
5368
|
+
};
|
|
5369
|
+
const getPlatform = () => {
|
|
5370
|
+
if (isReactNative())
|
|
5371
|
+
return 'native';
|
|
5372
|
+
if (isWeb())
|
|
5373
|
+
return 'web';
|
|
5374
|
+
return 'unknown';
|
|
5375
|
+
};
|
|
5376
|
+
/**
|
|
5377
|
+
* Platform-specific execution helper
|
|
5378
|
+
*/
|
|
5379
|
+
const runOnPlatform = (config) => {
|
|
5380
|
+
const platform = getPlatform();
|
|
5381
|
+
if (platform === 'web' && config.web) {
|
|
5382
|
+
return config.web();
|
|
5383
|
+
}
|
|
5384
|
+
if (platform === 'native' && config.native) {
|
|
5385
|
+
return config.native();
|
|
5386
|
+
}
|
|
5387
|
+
if (config.default) {
|
|
5388
|
+
return config.default();
|
|
5389
|
+
}
|
|
5390
|
+
return undefined;
|
|
5391
|
+
};
|
|
5392
|
+
|
|
5393
|
+
/**
|
|
5394
|
+
* Cross-platform API configuration
|
|
5395
|
+
*
|
|
5396
|
+
* This file automatically detects the platform and imports the appropriate
|
|
5397
|
+
* configuration. Build tools should resolve this to platform-specific files.
|
|
5398
|
+
*/
|
|
5399
|
+
// Import platform-specific configurations
|
|
5400
|
+
const getApiConfig = () => {
|
|
5401
|
+
return runOnPlatform({
|
|
5402
|
+
web: () => {
|
|
5403
|
+
// eslint-disable-next-line @typescript-eslint/no-require-imports
|
|
5404
|
+
return require('./index.web');
|
|
5405
|
+
},
|
|
5406
|
+
native: () => {
|
|
5407
|
+
// eslint-disable-next-line @typescript-eslint/no-require-imports
|
|
5408
|
+
return require('./index.native');
|
|
5409
|
+
},
|
|
5410
|
+
default: () => {
|
|
5411
|
+
// eslint-disable-next-line no-console
|
|
5412
|
+
console.warn('Platform detection failed, falling back to web configuration');
|
|
5413
|
+
// eslint-disable-next-line @typescript-eslint/no-require-imports
|
|
5414
|
+
return require('./index.web');
|
|
5415
|
+
}
|
|
5416
|
+
});
|
|
5417
|
+
};
|
|
5418
|
+
const apiConfig = getApiConfig();
|
|
5419
|
+
// Re-export all API configuration constants
|
|
5420
|
+
apiConfig.API_PREFIX;
|
|
5421
|
+
const API_AUTH_PREFIX = apiConfig.API_AUTH_PREFIX;
|
|
5422
|
+
const API_PAYMENTS_PREFIX = apiConfig.API_PAYMENTS_PREFIX;
|
|
5423
|
+
const API_ORDERS_PREFIX = apiConfig.API_ORDERS_PREFIX;
|
|
5424
|
+
apiConfig.APP_BASE_URL;
|
|
5425
|
+
const APP_ES_INSTANCE = apiConfig.APP_ES_INSTANCE;
|
|
5426
|
+
const APP_ES_AUTH = apiConfig.APP_ES_AUTH;
|
|
5427
|
+
apiConfig.APP_ES_PROMO_PANEL_INDEX;
|
|
5428
|
+
apiConfig.APP_ES_FAQ_INDEX;
|
|
5429
|
+
apiConfig.APP_ES_PAGES_INDEX;
|
|
5430
|
+
apiConfig.APP_ES_SETTINGS_INDEX;
|
|
5431
|
+
apiConfig.APP_ES_PRESS_INDEX;
|
|
5432
|
+
apiConfig.APP_ES_GUESTS_INDEX;
|
|
5433
|
+
apiConfig.APP_ES_VIDEOS_INDEX;
|
|
5434
|
+
apiConfig.APP_ES_SECTIONS_INDEX;
|
|
5435
|
+
apiConfig.APP_ES_WORKOUTS_INDEX;
|
|
5436
|
+
apiConfig.APP_ES_SCHEDULE_INDEX;
|
|
5437
|
+
apiConfig.APP_ES_CHALLENGES_INDEX;
|
|
5438
|
+
apiConfig.APP_ES_CHALLENGE_DAYS_INDEX;
|
|
5439
|
+
apiConfig.PLATFORM;
|
|
5349
5440
|
|
|
5350
5441
|
const authDataBaseQuery = fetchBaseQuery({
|
|
5351
5442
|
baseUrl: API_AUTH_PREFIX,
|
|
5352
|
-
prepareHeaders: async (headers
|
|
5443
|
+
prepareHeaders: async (headers) => {
|
|
5353
5444
|
headers.set('Content-Type', 'application/json');
|
|
5354
5445
|
try {
|
|
5355
5446
|
// add accessToken to headers from slice using selectAccessToken selector
|
|
@@ -5364,6 +5455,7 @@ const authDataBaseQuery = fetchBaseQuery({
|
|
|
5364
5455
|
return headers;
|
|
5365
5456
|
}
|
|
5366
5457
|
catch (error) {
|
|
5458
|
+
// eslint-disable-next-line no-console
|
|
5367
5459
|
console.error('authDataBaseQuery: ', error);
|
|
5368
5460
|
return headers;
|
|
5369
5461
|
}
|
|
@@ -5446,6 +5538,7 @@ const authApi = createApi({
|
|
|
5446
5538
|
dispatch(slice.resetCreating());
|
|
5447
5539
|
}
|
|
5448
5540
|
catch (err) {
|
|
5541
|
+
// eslint-disable-next-line no-console
|
|
5449
5542
|
console.error('REGISTER: ', err);
|
|
5450
5543
|
}
|
|
5451
5544
|
},
|
|
@@ -5602,7 +5695,7 @@ const paymentApi = createApi({
|
|
|
5602
5695
|
reducerPath: 'paymentApi',
|
|
5603
5696
|
baseQuery: fetchBaseQuery({
|
|
5604
5697
|
baseUrl: API_PAYMENTS_PREFIX,
|
|
5605
|
-
prepareHeaders: async (headers
|
|
5698
|
+
prepareHeaders: async (headers) => {
|
|
5606
5699
|
headers.set('Content-Type', 'application/json');
|
|
5607
5700
|
// add accessToken to headers from slice using selectAccessToken selector
|
|
5608
5701
|
const session = await awsAmplify.Auth.currentSession();
|
|
@@ -5660,7 +5753,7 @@ const { useCheckUserSubscriptionQuery, useLazyCheckUserSubscriptionQuery, useGet
|
|
|
5660
5753
|
|
|
5661
5754
|
const dataBaseQuery = fetchBaseQuery({
|
|
5662
5755
|
baseUrl: API_ORDERS_PREFIX,
|
|
5663
|
-
prepareHeaders: async (headers
|
|
5756
|
+
prepareHeaders: async (headers) => {
|
|
5664
5757
|
headers.set('Content-Type', 'application/json');
|
|
5665
5758
|
// add accessToken to headers from slice using selectAccessToken selector
|
|
5666
5759
|
const session = await awsAmplify.Auth.currentSession();
|
|
@@ -5763,7 +5856,7 @@ const cartSlice = toolkit.createSlice({
|
|
|
5763
5856
|
grossTotal,
|
|
5764
5857
|
};
|
|
5765
5858
|
},
|
|
5766
|
-
resetTaxRate: (state,
|
|
5859
|
+
resetTaxRate: (state, _action) => {
|
|
5767
5860
|
return {
|
|
5768
5861
|
...state,
|
|
5769
5862
|
taxRate: {
|
|
@@ -5790,7 +5883,7 @@ const cartSlice = toolkit.createSlice({
|
|
|
5790
5883
|
grossTotal,
|
|
5791
5884
|
};
|
|
5792
5885
|
},
|
|
5793
|
-
removePromoCode: (state,
|
|
5886
|
+
removePromoCode: (state, _action) => {
|
|
5794
5887
|
const { netTotal, taxRate } = state;
|
|
5795
5888
|
const taxAmount = applyTax(taxRate, netTotal);
|
|
5796
5889
|
const grossTotal = netTotal + taxAmount;
|
|
@@ -5813,9 +5906,9 @@ const cartSlice = toolkit.createSlice({
|
|
|
5813
5906
|
const addedItems = [...state.addedItems, addItem];
|
|
5814
5907
|
return {
|
|
5815
5908
|
...state,
|
|
5816
|
-
addedItems
|
|
5909
|
+
addedItems,
|
|
5817
5910
|
netTotal: newTotal,
|
|
5818
|
-
grossTotal
|
|
5911
|
+
grossTotal,
|
|
5819
5912
|
};
|
|
5820
5913
|
},
|
|
5821
5914
|
updateCart: (state, action) => {
|
|
@@ -5824,7 +5917,7 @@ const cartSlice = toolkit.createSlice({
|
|
|
5824
5917
|
...state,
|
|
5825
5918
|
addedItems: state.addedItems.map((item) => item && {
|
|
5826
5919
|
...item,
|
|
5827
|
-
options
|
|
5920
|
+
options,
|
|
5828
5921
|
}),
|
|
5829
5922
|
};
|
|
5830
5923
|
},
|
|
@@ -5837,7 +5930,7 @@ const cartSlice = toolkit.createSlice({
|
|
|
5837
5930
|
...state,
|
|
5838
5931
|
addedItems: state.addedItems.filter((item) => item && item.uuid !== id),
|
|
5839
5932
|
netTotal: newTotal,
|
|
5840
|
-
grossTotal
|
|
5933
|
+
grossTotal,
|
|
5841
5934
|
};
|
|
5842
5935
|
},
|
|
5843
5936
|
toggleCart: (state, action) => {
|
|
@@ -5877,6 +5970,8 @@ const selectCartItemsIds = toolkit.createSelector([selectMediaInCart], (items) =
|
|
|
5877
5970
|
cartSlice.reducer;
|
|
5878
5971
|
|
|
5879
5972
|
exports.addToCart = addToCart;
|
|
5973
|
+
exports.applyCoupon = applyCoupon;
|
|
5974
|
+
exports.applyTax = applyTax;
|
|
5880
5975
|
exports.authApi = authApi;
|
|
5881
5976
|
exports.cartSlice = cartSlice;
|
|
5882
5977
|
exports.contentApi = contentApi;
|
|
@@ -5907,11 +6002,16 @@ exports.formatTaxonomies = formatTaxonomies;
|
|
|
5907
6002
|
exports.formatUserPayload = formatUserPayload;
|
|
5908
6003
|
exports.formatVideos = formatVideos;
|
|
5909
6004
|
exports.formatWorkout = formatWorkout;
|
|
6005
|
+
exports.getPlatform = getPlatform;
|
|
6006
|
+
exports.isReactNative = isReactNative;
|
|
6007
|
+
exports.isWeb = isWeb;
|
|
6008
|
+
exports.onlyUnique = onlyUnique;
|
|
5910
6009
|
exports.ordersApi = ordersApi;
|
|
5911
6010
|
exports.paymentApi = paymentApi;
|
|
5912
6011
|
exports.removeFromCart = removeFromCart;
|
|
5913
6012
|
exports.removePromoCode = removePromoCode;
|
|
5914
6013
|
exports.resetTaxRate = resetTaxRate;
|
|
6014
|
+
exports.runOnPlatform = runOnPlatform;
|
|
5915
6015
|
exports.selectCartCount = selectCartCount;
|
|
5916
6016
|
exports.selectCartItems = selectCartItems;
|
|
5917
6017
|
exports.selectCartItemsIds = selectCartItemsIds;
|
|
@@ -5924,6 +6024,7 @@ exports.selectMediaInCart = selectMediaInCart;
|
|
|
5924
6024
|
exports.selectPromoCode = selectPromoCode;
|
|
5925
6025
|
exports.setPromoCode = setPromoCode;
|
|
5926
6026
|
exports.setTaxRate = setTaxRate;
|
|
6027
|
+
exports.toCamelCaseObject = toCamelCaseObject;
|
|
5927
6028
|
exports.toggleCart = toggleCart;
|
|
5928
6029
|
exports.updateCart = updateCart;
|
|
5929
6030
|
exports.useForgottenPasswordMutation = useForgottenPasswordMutation;
|
|
@@ -5940,4 +6041,4 @@ exports.useUpdateUserMutation = useUpdateUserMutation;
|
|
|
5940
6041
|
exports.useVerifyUserAttributesQuery = useVerifyUserAttributesQuery;
|
|
5941
6042
|
exports.useVerifyUserQuery = useVerifyUserQuery;
|
|
5942
6043
|
exports.useVerifyUserResendQuery = useVerifyUserResendQuery;
|
|
5943
|
-
//# sourceMappingURL=slice-
|
|
6044
|
+
//# sourceMappingURL=slice-DbSCDBSE.js.map
|