@liquidcommercedev/rmn-sdk 1.5.0-beta.49 → 1.5.0-beta.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -275,6 +275,13 @@ performance.now ||
275
275
  var browser$1 = {
276
276
  nextTick: nextTick};
277
277
 
278
+ /**
279
+ * Create a bound version of a function with a specified `this` context
280
+ *
281
+ * @param {Function} fn - The function to bind
282
+ * @param {*} thisArg - The value to be passed as the `this` parameter
283
+ * @returns {Function} A new function that will call the original function with the specified `this` context
284
+ */
278
285
  function bind(fn, thisArg) {
279
286
  return function wrap() {
280
287
  return fn.apply(thisArg, arguments);
@@ -3504,7 +3511,7 @@ class InterceptorManager {
3504
3511
  *
3505
3512
  * @param {Number} id The ID that was returned by `use`
3506
3513
  *
3507
- * @returns {Boolean} `true` if the interceptor was removed, `false` otherwise
3514
+ * @returns {void}
3508
3515
  */
3509
3516
  eject(id) {
3510
3517
  if (this.handlers[id]) {
@@ -4464,27 +4471,38 @@ var cookies = platform.hasStandardBrowserEnv ?
4464
4471
 
4465
4472
  // Standard browser envs support document.cookie
4466
4473
  {
4467
- write(name, value, expires, path, domain, secure) {
4468
- const cookie = [name + '=' + encodeURIComponent(value)];
4469
-
4470
- utils$1.isNumber(expires) && cookie.push('expires=' + new Date(expires).toGMTString());
4471
-
4472
- utils$1.isString(path) && cookie.push('path=' + path);
4474
+ write(name, value, expires, path, domain, secure, sameSite) {
4475
+ if (typeof document === 'undefined') return;
4473
4476
 
4474
- utils$1.isString(domain) && cookie.push('domain=' + domain);
4477
+ const cookie = [`${name}=${encodeURIComponent(value)}`];
4475
4478
 
4476
- secure === true && cookie.push('secure');
4479
+ if (utils$1.isNumber(expires)) {
4480
+ cookie.push(`expires=${new Date(expires).toUTCString()}`);
4481
+ }
4482
+ if (utils$1.isString(path)) {
4483
+ cookie.push(`path=${path}`);
4484
+ }
4485
+ if (utils$1.isString(domain)) {
4486
+ cookie.push(`domain=${domain}`);
4487
+ }
4488
+ if (secure === true) {
4489
+ cookie.push('secure');
4490
+ }
4491
+ if (utils$1.isString(sameSite)) {
4492
+ cookie.push(`SameSite=${sameSite}`);
4493
+ }
4477
4494
 
4478
4495
  document.cookie = cookie.join('; ');
4479
4496
  },
4480
4497
 
4481
4498
  read(name) {
4482
- const match = document.cookie.match(new RegExp('(^|;\\s*)(' + name + ')=([^;]*)'));
4483
- return (match ? decodeURIComponent(match[3]) : null);
4499
+ if (typeof document === 'undefined') return null;
4500
+ const match = document.cookie.match(new RegExp('(?:^|; )' + name + '=([^;]*)'));
4501
+ return match ? decodeURIComponent(match[1]) : null;
4484
4502
  },
4485
4503
 
4486
4504
  remove(name) {
4487
- this.write(name, '', Date.now() - 86400000);
4505
+ this.write(name, '', Date.now() - 86400000, '/');
4488
4506
  }
4489
4507
  }
4490
4508
 
@@ -4573,11 +4591,11 @@ function mergeConfig$1(config1, config2) {
4573
4591
  }
4574
4592
 
4575
4593
  // eslint-disable-next-line consistent-return
4576
- function mergeDeepProperties(a, b, prop , caseless) {
4594
+ function mergeDeepProperties(a, b, prop, caseless) {
4577
4595
  if (!utils$1.isUndefined(b)) {
4578
- return getMergedValue(a, b, prop , caseless);
4596
+ return getMergedValue(a, b, prop, caseless);
4579
4597
  } else if (!utils$1.isUndefined(a)) {
4580
- return getMergedValue(undefined, a, prop , caseless);
4598
+ return getMergedValue(undefined, a, prop, caseless);
4581
4599
  }
4582
4600
  }
4583
4601
 
@@ -4635,7 +4653,7 @@ function mergeConfig$1(config1, config2) {
4635
4653
  socketPath: defaultToConfig2,
4636
4654
  responseEncoding: defaultToConfig2,
4637
4655
  validateStatus: mergeDirectKeys,
4638
- headers: (a, b , prop) => mergeDeepProperties(headersToObject(a), headersToObject(b),prop, true)
4656
+ headers: (a, b, prop) => mergeDeepProperties(headersToObject(a), headersToObject(b), prop, true)
4639
4657
  };
4640
4658
 
4641
4659
  utils$1.forEach(Object.keys({...config1, ...config2}), function computeConfigValue(prop) {
@@ -5273,7 +5291,7 @@ const factory = (env) => {
5273
5291
  const seedCache = new Map();
5274
5292
 
5275
5293
  const getFetch = (config) => {
5276
- let env = config ? config.env : {};
5294
+ let env = (config && config.env) || {};
5277
5295
  const {fetch, Request, Response} = env;
5278
5296
  const seeds = [
5279
5297
  Request, Response, fetch
@@ -5296,6 +5314,15 @@ const getFetch = (config) => {
5296
5314
 
5297
5315
  getFetch();
5298
5316
 
5317
+ /**
5318
+ * Known adapters mapping.
5319
+ * Provides environment-specific adapters for Axios:
5320
+ * - `http` for Node.js
5321
+ * - `xhr` for browsers
5322
+ * - `fetch` for fetch API-based requests
5323
+ *
5324
+ * @type {Object<string, Function|Object>}
5325
+ */
5299
5326
  const knownAdapters = {
5300
5327
  http: httpAdapter,
5301
5328
  xhr: xhrAdapter,
@@ -5304,71 +5331,107 @@ const knownAdapters = {
5304
5331
  }
5305
5332
  };
5306
5333
 
5334
+ // Assign adapter names for easier debugging and identification
5307
5335
  utils$1.forEach(knownAdapters, (fn, value) => {
5308
5336
  if (fn) {
5309
5337
  try {
5310
- Object.defineProperty(fn, 'name', {value});
5338
+ Object.defineProperty(fn, 'name', { value });
5311
5339
  } catch (e) {
5312
5340
  // eslint-disable-next-line no-empty
5313
5341
  }
5314
- Object.defineProperty(fn, 'adapterName', {value});
5342
+ Object.defineProperty(fn, 'adapterName', { value });
5315
5343
  }
5316
5344
  });
5317
5345
 
5346
+ /**
5347
+ * Render a rejection reason string for unknown or unsupported adapters
5348
+ *
5349
+ * @param {string} reason
5350
+ * @returns {string}
5351
+ */
5318
5352
  const renderReason = (reason) => `- ${reason}`;
5319
5353
 
5354
+ /**
5355
+ * Check if the adapter is resolved (function, null, or false)
5356
+ *
5357
+ * @param {Function|null|false} adapter
5358
+ * @returns {boolean}
5359
+ */
5320
5360
  const isResolvedHandle = (adapter) => utils$1.isFunction(adapter) || adapter === null || adapter === false;
5321
5361
 
5322
- var adapters = {
5323
- getAdapter: (adapters, config) => {
5324
- adapters = utils$1.isArray(adapters) ? adapters : [adapters];
5362
+ /**
5363
+ * Get the first suitable adapter from the provided list.
5364
+ * Tries each adapter in order until a supported one is found.
5365
+ * Throws an AxiosError if no adapter is suitable.
5366
+ *
5367
+ * @param {Array<string|Function>|string|Function} adapters - Adapter(s) by name or function.
5368
+ * @param {Object} config - Axios request configuration
5369
+ * @throws {AxiosError} If no suitable adapter is available
5370
+ * @returns {Function} The resolved adapter function
5371
+ */
5372
+ function getAdapter$1(adapters, config) {
5373
+ adapters = utils$1.isArray(adapters) ? adapters : [adapters];
5325
5374
 
5326
- const {length} = adapters;
5327
- let nameOrAdapter;
5328
- let adapter;
5375
+ const { length } = adapters;
5376
+ let nameOrAdapter;
5377
+ let adapter;
5329
5378
 
5330
- const rejectedReasons = {};
5379
+ const rejectedReasons = {};
5331
5380
 
5332
- for (let i = 0; i < length; i++) {
5333
- nameOrAdapter = adapters[i];
5334
- let id;
5381
+ for (let i = 0; i < length; i++) {
5382
+ nameOrAdapter = adapters[i];
5383
+ let id;
5335
5384
 
5336
- adapter = nameOrAdapter;
5385
+ adapter = nameOrAdapter;
5337
5386
 
5338
- if (!isResolvedHandle(nameOrAdapter)) {
5339
- adapter = knownAdapters[(id = String(nameOrAdapter)).toLowerCase()];
5387
+ if (!isResolvedHandle(nameOrAdapter)) {
5388
+ adapter = knownAdapters[(id = String(nameOrAdapter)).toLowerCase()];
5340
5389
 
5341
- if (adapter === undefined) {
5342
- throw new AxiosError$1(`Unknown adapter '${id}'`);
5343
- }
5344
- }
5345
-
5346
- if (adapter && (utils$1.isFunction(adapter) || (adapter = adapter.get(config)))) {
5347
- break;
5390
+ if (adapter === undefined) {
5391
+ throw new AxiosError$1(`Unknown adapter '${id}'`);
5348
5392
  }
5393
+ }
5349
5394
 
5350
- rejectedReasons[id || '#' + i] = adapter;
5395
+ if (adapter && (utils$1.isFunction(adapter) || (adapter = adapter.get(config)))) {
5396
+ break;
5351
5397
  }
5352
5398
 
5353
- if (!adapter) {
5399
+ rejectedReasons[id || '#' + i] = adapter;
5400
+ }
5354
5401
 
5355
- const reasons = Object.entries(rejectedReasons)
5356
- .map(([id, state]) => `adapter ${id} ` +
5357
- (state === false ? 'is not supported by the environment' : 'is not available in the build')
5358
- );
5402
+ if (!adapter) {
5403
+ const reasons = Object.entries(rejectedReasons)
5404
+ .map(([id, state]) => `adapter ${id} ` +
5405
+ (state === false ? 'is not supported by the environment' : 'is not available in the build')
5406
+ );
5359
5407
 
5360
- let s = length ?
5361
- (reasons.length > 1 ? 'since :\n' + reasons.map(renderReason).join('\n') : ' ' + renderReason(reasons[0])) :
5362
- 'as no adapter specified';
5408
+ let s = length ?
5409
+ (reasons.length > 1 ? 'since :\n' + reasons.map(renderReason).join('\n') : ' ' + renderReason(reasons[0])) :
5410
+ 'as no adapter specified';
5363
5411
 
5364
- throw new AxiosError$1(
5365
- `There is no suitable adapter to dispatch the request ` + s,
5366
- 'ERR_NOT_SUPPORT'
5367
- );
5368
- }
5412
+ throw new AxiosError$1(
5413
+ `There is no suitable adapter to dispatch the request ` + s,
5414
+ 'ERR_NOT_SUPPORT'
5415
+ );
5416
+ }
5369
5417
 
5370
- return adapter;
5371
- },
5418
+ return adapter;
5419
+ }
5420
+
5421
+ /**
5422
+ * Exports Axios adapters and utility to resolve an adapter
5423
+ */
5424
+ var adapters = {
5425
+ /**
5426
+ * Resolve an adapter from a list of adapter names or functions.
5427
+ * @type {Function}
5428
+ */
5429
+ getAdapter: getAdapter$1,
5430
+
5431
+ /**
5432
+ * Exposes all known adapters
5433
+ * @type {Object<string, Function|Object>}
5434
+ */
5372
5435
  adapters: knownAdapters
5373
5436
  };
5374
5437
 
@@ -5445,7 +5508,7 @@ function dispatchRequest(config) {
5445
5508
  });
5446
5509
  }
5447
5510
 
5448
- const VERSION$1 = "1.12.2";
5511
+ const VERSION$1 = "1.13.2";
5449
5512
 
5450
5513
  const validators$1 = {};
5451
5514
 
@@ -6000,6 +6063,12 @@ const HttpStatusCode$1 = {
6000
6063
  LoopDetected: 508,
6001
6064
  NotExtended: 510,
6002
6065
  NetworkAuthenticationRequired: 511,
6066
+ WebServerIsDown: 521,
6067
+ ConnectionTimedOut: 522,
6068
+ OriginIsUnreachable: 523,
6069
+ TimeoutOccurred: 524,
6070
+ SslHandshakeFailed: 525,
6071
+ InvalidSslCertificate: 526,
6003
6072
  };
6004
6073
 
6005
6074
  Object.entries(HttpStatusCode$1).forEach(([key, value]) => {
@@ -8060,7 +8129,7 @@ var hasRequiredCore;
8060
8129
  function requireCore () {
8061
8130
  if (hasRequiredCore) return core$1.exports;
8062
8131
  hasRequiredCore = 1;
8063
- (function (module, exports) {
8132
+ (function (module, exports$1) {
8064
8133
  (function (root, factory) {
8065
8134
  {
8066
8135
  // CommonJS
@@ -8873,7 +8942,7 @@ var hasRequiredX64Core;
8873
8942
  function requireX64Core () {
8874
8943
  if (hasRequiredX64Core) return x64Core$1.exports;
8875
8944
  hasRequiredX64Core = 1;
8876
- (function (module, exports) {
8945
+ (function (module, exports$1) {
8877
8946
  (function (root, factory) {
8878
8947
  {
8879
8948
  // CommonJS
@@ -9183,7 +9252,7 @@ var hasRequiredLibTypedarrays;
9183
9252
  function requireLibTypedarrays () {
9184
9253
  if (hasRequiredLibTypedarrays) return libTypedarrays$1.exports;
9185
9254
  hasRequiredLibTypedarrays = 1;
9186
- (function (module, exports) {
9255
+ (function (module, exports$1) {
9187
9256
  (function (root, factory) {
9188
9257
  {
9189
9258
  // CommonJS
@@ -9265,7 +9334,7 @@ var hasRequiredEncUtf16;
9265
9334
  function requireEncUtf16 () {
9266
9335
  if (hasRequiredEncUtf16) return encUtf16$1.exports;
9267
9336
  hasRequiredEncUtf16 = 1;
9268
- (function (module, exports) {
9337
+ (function (module, exports$1) {
9269
9338
  (function (root, factory) {
9270
9339
  {
9271
9340
  // CommonJS
@@ -9420,7 +9489,7 @@ var hasRequiredEncBase64;
9420
9489
  function requireEncBase64 () {
9421
9490
  if (hasRequiredEncBase64) return encBase64$1.exports;
9422
9491
  hasRequiredEncBase64 = 1;
9423
- (function (module, exports) {
9492
+ (function (module, exports$1) {
9424
9493
  (function (root, factory) {
9425
9494
  {
9426
9495
  // CommonJS
@@ -9562,7 +9631,7 @@ var hasRequiredEncBase64url;
9562
9631
  function requireEncBase64url () {
9563
9632
  if (hasRequiredEncBase64url) return encBase64url$1.exports;
9564
9633
  hasRequiredEncBase64url = 1;
9565
- (function (module, exports) {
9634
+ (function (module, exports$1) {
9566
9635
  (function (root, factory) {
9567
9636
  {
9568
9637
  // CommonJS
@@ -9716,7 +9785,7 @@ var hasRequiredMd5;
9716
9785
  function requireMd5 () {
9717
9786
  if (hasRequiredMd5) return md5$1.exports;
9718
9787
  hasRequiredMd5 = 1;
9719
- (function (module, exports) {
9788
+ (function (module, exports$1) {
9720
9789
  (function (root, factory) {
9721
9790
  {
9722
9791
  // CommonJS
@@ -9990,7 +10059,7 @@ var hasRequiredSha1;
9990
10059
  function requireSha1 () {
9991
10060
  if (hasRequiredSha1) return sha1$1.exports;
9992
10061
  hasRequiredSha1 = 1;
9993
- (function (module, exports) {
10062
+ (function (module, exports$1) {
9994
10063
  (function (root, factory) {
9995
10064
  {
9996
10065
  // CommonJS
@@ -10146,7 +10215,7 @@ var hasRequiredSha256;
10146
10215
  function requireSha256 () {
10147
10216
  if (hasRequiredSha256) return sha256$1.exports;
10148
10217
  hasRequiredSha256 = 1;
10149
- (function (module, exports) {
10218
+ (function (module, exports$1) {
10150
10219
  (function (root, factory) {
10151
10220
  {
10152
10221
  // CommonJS
@@ -10351,7 +10420,7 @@ var hasRequiredSha224;
10351
10420
  function requireSha224 () {
10352
10421
  if (hasRequiredSha224) return sha224$1.exports;
10353
10422
  hasRequiredSha224 = 1;
10354
- (function (module, exports) {
10423
+ (function (module, exports$1) {
10355
10424
  (function (root, factory, undef) {
10356
10425
  {
10357
10426
  // CommonJS
@@ -10437,7 +10506,7 @@ var hasRequiredSha512;
10437
10506
  function requireSha512 () {
10438
10507
  if (hasRequiredSha512) return sha512$1.exports;
10439
10508
  hasRequiredSha512 = 1;
10440
- (function (module, exports) {
10509
+ (function (module, exports$1) {
10441
10510
  (function (root, factory, undef) {
10442
10511
  {
10443
10512
  // CommonJS
@@ -10769,7 +10838,7 @@ var hasRequiredSha384;
10769
10838
  function requireSha384 () {
10770
10839
  if (hasRequiredSha384) return sha384$1.exports;
10771
10840
  hasRequiredSha384 = 1;
10772
- (function (module, exports) {
10841
+ (function (module, exports$1) {
10773
10842
  (function (root, factory, undef) {
10774
10843
  {
10775
10844
  // CommonJS
@@ -10858,7 +10927,7 @@ var hasRequiredSha3;
10858
10927
  function requireSha3 () {
10859
10928
  if (hasRequiredSha3) return sha3$1.exports;
10860
10929
  hasRequiredSha3 = 1;
10861
- (function (module, exports) {
10930
+ (function (module, exports$1) {
10862
10931
  (function (root, factory, undef) {
10863
10932
  {
10864
10933
  // CommonJS
@@ -11190,7 +11259,7 @@ var hasRequiredRipemd160;
11190
11259
  function requireRipemd160 () {
11191
11260
  if (hasRequiredRipemd160) return ripemd160$1.exports;
11192
11261
  hasRequiredRipemd160 = 1;
11193
- (function (module, exports) {
11262
+ (function (module, exports$1) {
11194
11263
  (function (root, factory) {
11195
11264
  {
11196
11265
  // CommonJS
@@ -11463,7 +11532,7 @@ var hasRequiredHmac;
11463
11532
  function requireHmac () {
11464
11533
  if (hasRequiredHmac) return hmac$1.exports;
11465
11534
  hasRequiredHmac = 1;
11466
- (function (module, exports) {
11535
+ (function (module, exports$1) {
11467
11536
  (function (root, factory) {
11468
11537
  {
11469
11538
  // CommonJS
@@ -11612,7 +11681,7 @@ var hasRequiredPbkdf2;
11612
11681
  function requirePbkdf2 () {
11613
11682
  if (hasRequiredPbkdf2) return pbkdf2$1.exports;
11614
11683
  hasRequiredPbkdf2 = 1;
11615
- (function (module, exports) {
11684
+ (function (module, exports$1) {
11616
11685
  (function (root, factory, undef) {
11617
11686
  {
11618
11687
  // CommonJS
@@ -11763,7 +11832,7 @@ var hasRequiredEvpkdf;
11763
11832
  function requireEvpkdf () {
11764
11833
  if (hasRequiredEvpkdf) return evpkdf$1.exports;
11765
11834
  hasRequiredEvpkdf = 1;
11766
- (function (module, exports) {
11835
+ (function (module, exports$1) {
11767
11836
  (function (root, factory, undef) {
11768
11837
  {
11769
11838
  // CommonJS
@@ -11903,7 +11972,7 @@ var hasRequiredCipherCore;
11903
11972
  function requireCipherCore () {
11904
11973
  if (hasRequiredCipherCore) return cipherCore$1.exports;
11905
11974
  hasRequiredCipherCore = 1;
11906
- (function (module, exports) {
11975
+ (function (module, exports$1) {
11907
11976
  (function (root, factory, undef) {
11908
11977
  {
11909
11978
  // CommonJS
@@ -12804,7 +12873,7 @@ var hasRequiredModeCfb;
12804
12873
  function requireModeCfb () {
12805
12874
  if (hasRequiredModeCfb) return modeCfb$1.exports;
12806
12875
  hasRequiredModeCfb = 1;
12807
- (function (module, exports) {
12876
+ (function (module, exports$1) {
12808
12877
  (function (root, factory, undef) {
12809
12878
  {
12810
12879
  // CommonJS
@@ -12890,7 +12959,7 @@ var hasRequiredModeCtr;
12890
12959
  function requireModeCtr () {
12891
12960
  if (hasRequiredModeCtr) return modeCtr$1.exports;
12892
12961
  hasRequiredModeCtr = 1;
12893
- (function (module, exports) {
12962
+ (function (module, exports$1) {
12894
12963
  (function (root, factory, undef) {
12895
12964
  {
12896
12965
  // CommonJS
@@ -12954,7 +13023,7 @@ var hasRequiredModeCtrGladman;
12954
13023
  function requireModeCtrGladman () {
12955
13024
  if (hasRequiredModeCtrGladman) return modeCtrGladman$1.exports;
12956
13025
  hasRequiredModeCtrGladman = 1;
12957
- (function (module, exports) {
13026
+ (function (module, exports$1) {
12958
13027
  (function (root, factory, undef) {
12959
13028
  {
12960
13029
  // CommonJS
@@ -13076,7 +13145,7 @@ var hasRequiredModeOfb;
13076
13145
  function requireModeOfb () {
13077
13146
  if (hasRequiredModeOfb) return modeOfb$1.exports;
13078
13147
  hasRequiredModeOfb = 1;
13079
- (function (module, exports) {
13148
+ (function (module, exports$1) {
13080
13149
  (function (root, factory, undef) {
13081
13150
  {
13082
13151
  // CommonJS
@@ -13136,7 +13205,7 @@ var hasRequiredModeEcb;
13136
13205
  function requireModeEcb () {
13137
13206
  if (hasRequiredModeEcb) return modeEcb$1.exports;
13138
13207
  hasRequiredModeEcb = 1;
13139
- (function (module, exports) {
13208
+ (function (module, exports$1) {
13140
13209
  (function (root, factory, undef) {
13141
13210
  {
13142
13211
  // CommonJS
@@ -13182,7 +13251,7 @@ var hasRequiredPadAnsix923;
13182
13251
  function requirePadAnsix923 () {
13183
13252
  if (hasRequiredPadAnsix923) return padAnsix923$1.exports;
13184
13253
  hasRequiredPadAnsix923 = 1;
13185
- (function (module, exports) {
13254
+ (function (module, exports$1) {
13186
13255
  (function (root, factory, undef) {
13187
13256
  {
13188
13257
  // CommonJS
@@ -13237,7 +13306,7 @@ var hasRequiredPadIso10126;
13237
13306
  function requirePadIso10126 () {
13238
13307
  if (hasRequiredPadIso10126) return padIso10126$1.exports;
13239
13308
  hasRequiredPadIso10126 = 1;
13240
- (function (module, exports) {
13309
+ (function (module, exports$1) {
13241
13310
  (function (root, factory, undef) {
13242
13311
  {
13243
13312
  // CommonJS
@@ -13287,7 +13356,7 @@ var hasRequiredPadIso97971;
13287
13356
  function requirePadIso97971 () {
13288
13357
  if (hasRequiredPadIso97971) return padIso97971$1.exports;
13289
13358
  hasRequiredPadIso97971 = 1;
13290
- (function (module, exports) {
13359
+ (function (module, exports$1) {
13291
13360
  (function (root, factory, undef) {
13292
13361
  {
13293
13362
  // CommonJS
@@ -13333,7 +13402,7 @@ var hasRequiredPadZeropadding;
13333
13402
  function requirePadZeropadding () {
13334
13403
  if (hasRequiredPadZeropadding) return padZeropadding$1.exports;
13335
13404
  hasRequiredPadZeropadding = 1;
13336
- (function (module, exports) {
13405
+ (function (module, exports$1) {
13337
13406
  (function (root, factory, undef) {
13338
13407
  {
13339
13408
  // CommonJS
@@ -13386,7 +13455,7 @@ var hasRequiredPadNopadding;
13386
13455
  function requirePadNopadding () {
13387
13456
  if (hasRequiredPadNopadding) return padNopadding$1.exports;
13388
13457
  hasRequiredPadNopadding = 1;
13389
- (function (module, exports) {
13458
+ (function (module, exports$1) {
13390
13459
  (function (root, factory, undef) {
13391
13460
  {
13392
13461
  // CommonJS
@@ -13422,7 +13491,7 @@ var hasRequiredFormatHex;
13422
13491
  function requireFormatHex () {
13423
13492
  if (hasRequiredFormatHex) return formatHex$1.exports;
13424
13493
  hasRequiredFormatHex = 1;
13425
- (function (module, exports) {
13494
+ (function (module, exports$1) {
13426
13495
  (function (root, factory, undef) {
13427
13496
  {
13428
13497
  // CommonJS
@@ -13494,7 +13563,7 @@ var hasRequiredAes;
13494
13563
  function requireAes () {
13495
13564
  if (hasRequiredAes) return aes$1.exports;
13496
13565
  hasRequiredAes = 1;
13497
- (function (module, exports) {
13566
+ (function (module, exports$1) {
13498
13567
  (function (root, factory, undef) {
13499
13568
  {
13500
13569
  // CommonJS
@@ -13734,7 +13803,7 @@ var hasRequiredTripledes;
13734
13803
  function requireTripledes () {
13735
13804
  if (hasRequiredTripledes) return tripledes$1.exports;
13736
13805
  hasRequiredTripledes = 1;
13737
- (function (module, exports) {
13806
+ (function (module, exports$1) {
13738
13807
  (function (root, factory, undef) {
13739
13808
  {
13740
13809
  // CommonJS
@@ -14519,7 +14588,7 @@ var hasRequiredRc4;
14519
14588
  function requireRc4 () {
14520
14589
  if (hasRequiredRc4) return rc4$1.exports;
14521
14590
  hasRequiredRc4 = 1;
14522
- (function (module, exports) {
14591
+ (function (module, exports$1) {
14523
14592
  (function (root, factory, undef) {
14524
14593
  {
14525
14594
  // CommonJS
@@ -14664,7 +14733,7 @@ var hasRequiredRabbit;
14664
14733
  function requireRabbit () {
14665
14734
  if (hasRequiredRabbit) return rabbit$1.exports;
14666
14735
  hasRequiredRabbit = 1;
14667
- (function (module, exports) {
14736
+ (function (module, exports$1) {
14668
14737
  (function (root, factory, undef) {
14669
14738
  {
14670
14739
  // CommonJS
@@ -14862,7 +14931,7 @@ var hasRequiredRabbitLegacy;
14862
14931
  function requireRabbitLegacy () {
14863
14932
  if (hasRequiredRabbitLegacy) return rabbitLegacy$1.exports;
14864
14933
  hasRequiredRabbitLegacy = 1;
14865
- (function (module, exports) {
14934
+ (function (module, exports$1) {
14866
14935
  (function (root, factory, undef) {
14867
14936
  {
14868
14937
  // CommonJS
@@ -15058,7 +15127,7 @@ var hasRequiredBlowfish;
15058
15127
  function requireBlowfish () {
15059
15128
  if (hasRequiredBlowfish) return blowfish$1.exports;
15060
15129
  hasRequiredBlowfish = 1;
15061
- (function (module, exports) {
15130
+ (function (module, exports$1) {
15062
15131
  (function (root, factory, undef) {
15063
15132
  {
15064
15133
  // CommonJS
@@ -15533,7 +15602,7 @@ var hasRequiredCryptoJs;
15533
15602
  function requireCryptoJs () {
15534
15603
  if (hasRequiredCryptoJs) return cryptoJs$1.exports;
15535
15604
  hasRequiredCryptoJs = 1;
15536
- (function (module, exports) {
15605
+ (function (module, exports$1) {
15537
15606
  (function (root, factory, undef) {
15538
15607
  {
15539
15608
  // CommonJS
@@ -17512,7 +17581,7 @@ class LocalStorageService {
17512
17581
  }
17513
17582
  LocalStorageService.localStorageKeyPrefix = 'lc_rmn';
17514
17583
  LocalStorageService.localStorageKey = '';
17515
- LocalStorageService.spotExpirationTime = 1000 * 60 * 60 * 24 * 7; // 7 days
17584
+ LocalStorageService.spotExpirationTime = 1000 * 60 * 60 * 24 * 30; // 30 days expiration time
17516
17585
  LocalStorageService.encryptData = true;
17517
17586
 
17518
17587
  class ProximityObserver {