@bcrumbs.net/bc-api 0.0.45 → 0.0.47

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/index.esm.js CHANGED
@@ -259,15 +259,15 @@ var objectPropertyIsEnumerable = {};
259
259
 
260
260
  var $propertyIsEnumerable = {}.propertyIsEnumerable;
261
261
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
262
- var getOwnPropertyDescriptor$2 = Object.getOwnPropertyDescriptor;
262
+ var getOwnPropertyDescriptor$3 = Object.getOwnPropertyDescriptor;
263
263
 
264
264
  // Nashorn ~ JDK8 bug
265
- var NASHORN_BUG = getOwnPropertyDescriptor$2 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
265
+ var NASHORN_BUG = getOwnPropertyDescriptor$3 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
266
266
 
267
267
  // `Object.prototype.propertyIsEnumerable` method implementation
268
268
  // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
269
269
  objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
270
- var descriptor = getOwnPropertyDescriptor$2(this, V);
270
+ var descriptor = getOwnPropertyDescriptor$3(this, V);
271
271
  return !!descriptor && descriptor.enumerable;
272
272
  } : $propertyIsEnumerable;
273
273
 
@@ -292,21 +292,21 @@ var functionUncurryThis = NATIVE_BIND$2 ? uncurryThisWithBind : function (fn) {
292
292
  };
293
293
  };
294
294
 
295
- var uncurryThis$i = functionUncurryThis;
295
+ var uncurryThis$j = functionUncurryThis;
296
296
 
297
- var toString$6 = uncurryThis$i({}.toString);
298
- var stringSlice$5 = uncurryThis$i(''.slice);
297
+ var toString$7 = uncurryThis$j({}.toString);
298
+ var stringSlice$6 = uncurryThis$j(''.slice);
299
299
 
300
300
  var classofRaw$2 = function (it) {
301
- return stringSlice$5(toString$6(it), 8, -1);
301
+ return stringSlice$6(toString$7(it), 8, -1);
302
302
  };
303
303
 
304
- var uncurryThis$h = functionUncurryThis;
304
+ var uncurryThis$i = functionUncurryThis;
305
305
  var fails$g = fails$j;
306
- var classof$6 = classofRaw$2;
306
+ var classof$7 = classofRaw$2;
307
307
 
308
308
  var $Object$4 = Object;
309
- var split = uncurryThis$h(''.split);
309
+ var split = uncurryThis$i(''.split);
310
310
 
311
311
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
312
312
  var indexedObject = fails$g(function () {
@@ -314,7 +314,7 @@ var indexedObject = fails$g(function () {
314
314
  // eslint-disable-next-line no-prototype-builtins -- safe
315
315
  return !$Object$4('z').propertyIsEnumerable(0);
316
316
  }) ? function (it) {
317
- return classof$6(it) === 'String' ? split(it, '') : $Object$4(it);
317
+ return classof$7(it) === 'String' ? split(it, '') : $Object$4(it);
318
318
  } : $Object$4;
319
319
 
320
320
  // we can't use just `it == null` since of `document.all` special case
@@ -325,21 +325,21 @@ var isNullOrUndefined$6 = function (it) {
325
325
 
326
326
  var isNullOrUndefined$5 = isNullOrUndefined$6;
327
327
 
328
- var $TypeError$e = TypeError;
328
+ var $TypeError$f = TypeError;
329
329
 
330
330
  // `RequireObjectCoercible` abstract operation
331
331
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
332
- var requireObjectCoercible$6 = function (it) {
333
- if (isNullOrUndefined$5(it)) throw new $TypeError$e("Can't call method on " + it);
332
+ var requireObjectCoercible$7 = function (it) {
333
+ if (isNullOrUndefined$5(it)) throw new $TypeError$f("Can't call method on " + it);
334
334
  return it;
335
335
  };
336
336
 
337
337
  // toObject with fallback for non-array-like ES3 strings
338
338
  var IndexedObject$1 = indexedObject;
339
- var requireObjectCoercible$5 = requireObjectCoercible$6;
339
+ var requireObjectCoercible$6 = requireObjectCoercible$7;
340
340
 
341
341
  var toIndexedObject$5 = function (it) {
342
- return IndexedObject$1(requireObjectCoercible$5(it));
342
+ return IndexedObject$1(requireObjectCoercible$6(it));
343
343
  };
344
344
 
345
345
  // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
@@ -356,7 +356,7 @@ var isCallable$m = typeof documentAll == 'undefined' && documentAll !== undefine
356
356
 
357
357
  var isCallable$l = isCallable$m;
358
358
 
359
- var isObject$a = function (it) {
359
+ var isObject$b = function (it) {
360
360
  return typeof it == 'object' ? it !== null : isCallable$l(it);
361
361
  };
362
362
 
@@ -371,9 +371,9 @@ var getBuiltIn$7 = function (namespace, method) {
371
371
  return arguments.length < 2 ? aFunction(global$l[namespace]) : global$l[namespace] && global$l[namespace][method];
372
372
  };
373
373
 
374
- var uncurryThis$g = functionUncurryThis;
374
+ var uncurryThis$h = functionUncurryThis;
375
375
 
376
- var objectIsPrototypeOf = uncurryThis$g({}.isPrototypeOf);
376
+ var objectIsPrototypeOf = uncurryThis$h({}.isPrototypeOf);
377
377
 
378
378
  var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
379
379
 
@@ -458,12 +458,12 @@ var tryToString$4 = function (argument) {
458
458
  var isCallable$i = isCallable$m;
459
459
  var tryToString$3 = tryToString$4;
460
460
 
461
- var $TypeError$d = TypeError;
461
+ var $TypeError$e = TypeError;
462
462
 
463
463
  // `Assert: IsCallable(argument) is true`
464
464
  var aCallable$a = function (argument) {
465
465
  if (isCallable$i(argument)) return argument;
466
- throw new $TypeError$d(tryToString$3(argument) + ' is not a function');
466
+ throw new $TypeError$e(tryToString$3(argument) + ' is not a function');
467
467
  };
468
468
 
469
469
  var aCallable$9 = aCallable$a;
@@ -478,18 +478,18 @@ var getMethod$5 = function (V, P) {
478
478
 
479
479
  var call$g = functionCall;
480
480
  var isCallable$h = isCallable$m;
481
- var isObject$9 = isObject$a;
481
+ var isObject$a = isObject$b;
482
482
 
483
- var $TypeError$c = TypeError;
483
+ var $TypeError$d = TypeError;
484
484
 
485
485
  // `OrdinaryToPrimitive` abstract operation
486
486
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
487
487
  var ordinaryToPrimitive$1 = function (input, pref) {
488
488
  var fn, val;
489
- if (pref === 'string' && isCallable$h(fn = input.toString) && !isObject$9(val = call$g(fn, input))) return val;
490
- if (isCallable$h(fn = input.valueOf) && !isObject$9(val = call$g(fn, input))) return val;
491
- if (pref !== 'string' && isCallable$h(fn = input.toString) && !isObject$9(val = call$g(fn, input))) return val;
492
- throw new $TypeError$c("Can't convert object to primitive value");
489
+ if (pref === 'string' && isCallable$h(fn = input.toString) && !isObject$a(val = call$g(fn, input))) return val;
490
+ if (isCallable$h(fn = input.valueOf) && !isObject$a(val = call$g(fn, input))) return val;
491
+ if (pref !== 'string' && isCallable$h(fn = input.toString) && !isObject$a(val = call$g(fn, input))) return val;
492
+ throw new $TypeError$d("Can't convert object to primitive value");
493
493
  };
494
494
 
495
495
  var sharedStore = {exports: {}};
@@ -529,20 +529,20 @@ var shared$4 = function (key, value) {
529
529
  return store$2[key] || (store$2[key] = value || {});
530
530
  };
531
531
 
532
- var requireObjectCoercible$4 = requireObjectCoercible$6;
532
+ var requireObjectCoercible$5 = requireObjectCoercible$7;
533
533
 
534
534
  var $Object$2 = Object;
535
535
 
536
536
  // `ToObject` abstract operation
537
537
  // https://tc39.es/ecma262/#sec-toobject
538
538
  var toObject$4 = function (argument) {
539
- return $Object$2(requireObjectCoercible$4(argument));
539
+ return $Object$2(requireObjectCoercible$5(argument));
540
540
  };
541
541
 
542
- var uncurryThis$f = functionUncurryThis;
542
+ var uncurryThis$g = functionUncurryThis;
543
543
  var toObject$3 = toObject$4;
544
544
 
545
- var hasOwnProperty = uncurryThis$f({}.hasOwnProperty);
545
+ var hasOwnProperty = uncurryThis$g({}.hasOwnProperty);
546
546
 
547
547
  // `HasOwnProperty` abstract operation
548
548
  // https://tc39.es/ecma262/#sec-hasownproperty
@@ -551,14 +551,14 @@ var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
551
551
  return hasOwnProperty(toObject$3(it), key);
552
552
  };
553
553
 
554
- var uncurryThis$e = functionUncurryThis;
554
+ var uncurryThis$f = functionUncurryThis;
555
555
 
556
556
  var id = 0;
557
557
  var postfix = Math.random();
558
- var toString$5 = uncurryThis$e(1.0.toString);
558
+ var toString$6 = uncurryThis$f(1.0.toString);
559
559
 
560
560
  var uid$2 = function (key) {
561
- return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$5(++id + postfix, 36);
561
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$6(++id + postfix, 36);
562
562
  };
563
563
 
564
564
  var global$h = global$m;
@@ -572,7 +572,7 @@ var Symbol$1 = global$h.Symbol;
572
572
  var WellKnownSymbolsStore = shared$3('wks');
573
573
  var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
574
574
 
575
- var wellKnownSymbol$h = function (name) {
575
+ var wellKnownSymbol$j = function (name) {
576
576
  if (!hasOwn$a(WellKnownSymbolsStore, name)) {
577
577
  WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn$a(Symbol$1, name)
578
578
  ? Symbol$1[name]
@@ -581,26 +581,26 @@ var wellKnownSymbol$h = function (name) {
581
581
  };
582
582
 
583
583
  var call$f = functionCall;
584
- var isObject$8 = isObject$a;
584
+ var isObject$9 = isObject$b;
585
585
  var isSymbol$1 = isSymbol$2;
586
586
  var getMethod$4 = getMethod$5;
587
587
  var ordinaryToPrimitive = ordinaryToPrimitive$1;
588
- var wellKnownSymbol$g = wellKnownSymbol$h;
588
+ var wellKnownSymbol$i = wellKnownSymbol$j;
589
589
 
590
- var $TypeError$b = TypeError;
591
- var TO_PRIMITIVE = wellKnownSymbol$g('toPrimitive');
590
+ var $TypeError$c = TypeError;
591
+ var TO_PRIMITIVE = wellKnownSymbol$i('toPrimitive');
592
592
 
593
593
  // `ToPrimitive` abstract operation
594
594
  // https://tc39.es/ecma262/#sec-toprimitive
595
595
  var toPrimitive$1 = function (input, pref) {
596
- if (!isObject$8(input) || isSymbol$1(input)) return input;
596
+ if (!isObject$9(input) || isSymbol$1(input)) return input;
597
597
  var exoticToPrim = getMethod$4(input, TO_PRIMITIVE);
598
598
  var result;
599
599
  if (exoticToPrim) {
600
600
  if (pref === undefined) pref = 'default';
601
601
  result = call$f(exoticToPrim, input, pref);
602
- if (!isObject$8(result) || isSymbol$1(result)) return result;
603
- throw new $TypeError$b("Can't convert object to primitive value");
602
+ if (!isObject$9(result) || isSymbol$1(result)) return result;
603
+ throw new $TypeError$c("Can't convert object to primitive value");
604
604
  }
605
605
  if (pref === undefined) pref = 'number';
606
606
  return ordinaryToPrimitive(input, pref);
@@ -617,11 +617,11 @@ var toPropertyKey$2 = function (argument) {
617
617
  };
618
618
 
619
619
  var global$g = global$m;
620
- var isObject$7 = isObject$a;
620
+ var isObject$8 = isObject$b;
621
621
 
622
622
  var document$3 = global$g.document;
623
623
  // typeof document.createElement is 'object' in old IE
624
- var EXISTS$1 = isObject$7(document$3) && isObject$7(document$3.createElement);
624
+ var EXISTS$1 = isObject$8(document$3) && isObject$8(document$3.createElement);
625
625
 
626
626
  var documentCreateElement$2 = function (it) {
627
627
  return EXISTS$1 ? document$3.createElement(it) : {};
@@ -677,15 +677,15 @@ var v8PrototypeDefineBug = DESCRIPTORS$b && fails$d(function () {
677
677
  }).prototype !== 42;
678
678
  });
679
679
 
680
- var isObject$6 = isObject$a;
680
+ var isObject$7 = isObject$b;
681
681
 
682
682
  var $String$3 = String;
683
- var $TypeError$a = TypeError;
683
+ var $TypeError$b = TypeError;
684
684
 
685
685
  // `Assert: Type(argument) is Object`
686
686
  var anObject$g = function (argument) {
687
- if (isObject$6(argument)) return argument;
688
- throw new $TypeError$a($String$3(argument) + ' is not an object');
687
+ if (isObject$7(argument)) return argument;
688
+ throw new $TypeError$b($String$3(argument) + ' is not an object');
689
689
  };
690
690
 
691
691
  var DESCRIPTORS$a = descriptors;
@@ -694,7 +694,7 @@ var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
694
694
  var anObject$f = anObject$g;
695
695
  var toPropertyKey = toPropertyKey$2;
696
696
 
697
- var $TypeError$9 = TypeError;
697
+ var $TypeError$a = TypeError;
698
698
  // eslint-disable-next-line es/no-object-defineproperty -- safe
699
699
  var $defineProperty = Object.defineProperty;
700
700
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
@@ -727,7 +727,7 @@ objectDefineProperty.f = DESCRIPTORS$a ? V8_PROTOTYPE_DEFINE_BUG$1 ? function de
727
727
  if (IE8_DOM_DEFINE) try {
728
728
  return $defineProperty(O, P, Attributes);
729
729
  } catch (error) { /* empty */ }
730
- if ('get' in Attributes || 'set' in Attributes) throw new $TypeError$9('Accessors not supported');
730
+ if ('get' in Attributes || 'set' in Attributes) throw new $TypeError$a('Accessors not supported');
731
731
  if ('value' in Attributes) O[P] = Attributes.value;
732
732
  return O;
733
733
  };
@@ -762,11 +762,11 @@ var functionName = {
762
762
  CONFIGURABLE: CONFIGURABLE
763
763
  };
764
764
 
765
- var uncurryThis$d = functionUncurryThis;
765
+ var uncurryThis$e = functionUncurryThis;
766
766
  var isCallable$g = isCallable$m;
767
767
  var store$1 = sharedStoreExports;
768
768
 
769
- var functionToString = uncurryThis$d(Function.toString);
769
+ var functionToString = uncurryThis$e(Function.toString);
770
770
 
771
771
  // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
772
772
  if (!isCallable$g(store$1.inspectSource)) {
@@ -797,7 +797,7 @@ var hiddenKeys$4 = {};
797
797
 
798
798
  var NATIVE_WEAK_MAP = weakMapBasicDetection;
799
799
  var global$e = global$m;
800
- var isObject$5 = isObject$a;
800
+ var isObject$6 = isObject$b;
801
801
  var createNonEnumerableProperty$4 = createNonEnumerableProperty$5;
802
802
  var hasOwn$7 = hasOwnProperty_1;
803
803
  var shared$1 = sharedStoreExports;
@@ -816,7 +816,7 @@ var enforce = function (it) {
816
816
  var getterFor = function (TYPE) {
817
817
  return function (it) {
818
818
  var state;
819
- if (!isObject$5(it) || (state = get(it)).type !== TYPE) {
819
+ if (!isObject$6(it) || (state = get(it)).type !== TYPE) {
820
820
  throw new TypeError$2('Incompatible receiver, ' + TYPE + ' required');
821
821
  } return state;
822
822
  };
@@ -866,7 +866,7 @@ var internalState = {
866
866
  getterFor: getterFor
867
867
  };
868
868
 
869
- var uncurryThis$c = functionUncurryThis;
869
+ var uncurryThis$d = functionUncurryThis;
870
870
  var fails$c = fails$j;
871
871
  var isCallable$e = isCallable$m;
872
872
  var hasOwn$6 = hasOwnProperty_1;
@@ -880,9 +880,9 @@ var getInternalState$2 = InternalStateModule$2.get;
880
880
  var $String$2 = String;
881
881
  // eslint-disable-next-line es/no-object-defineproperty -- safe
882
882
  var defineProperty$5 = Object.defineProperty;
883
- var stringSlice$4 = uncurryThis$c(''.slice);
884
- var replace$2 = uncurryThis$c(''.replace);
885
- var join = uncurryThis$c([].join);
883
+ var stringSlice$5 = uncurryThis$d(''.slice);
884
+ var replace$2 = uncurryThis$d(''.replace);
885
+ var join = uncurryThis$d([].join);
886
886
 
887
887
  var CONFIGURABLE_LENGTH = DESCRIPTORS$7 && !fails$c(function () {
888
888
  return defineProperty$5(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
@@ -891,7 +891,7 @@ var CONFIGURABLE_LENGTH = DESCRIPTORS$7 && !fails$c(function () {
891
891
  var TEMPLATE = String(String).split('String');
892
892
 
893
893
  var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
894
- if (stringSlice$4($String$2(name), 0, 7) === 'Symbol(') {
894
+ if (stringSlice$5($String$2(name), 0, 7) === 'Symbol(') {
895
895
  name = '[' + replace$2($String$2(name), /^Symbol\(([^)]*)\).*$/, '$1') + ']';
896
896
  }
897
897
  if (options && options.getter) name = 'get ' + name;
@@ -977,33 +977,33 @@ var toIntegerOrInfinity$4 = function (argument) {
977
977
  var toIntegerOrInfinity$3 = toIntegerOrInfinity$4;
978
978
 
979
979
  var max$1 = Math.max;
980
- var min$2 = Math.min;
980
+ var min$3 = Math.min;
981
981
 
982
982
  // Helper for a popular repeating case of the spec:
983
983
  // Let integer be ? ToInteger(index).
984
984
  // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
985
985
  var toAbsoluteIndex$1 = function (index, length) {
986
986
  var integer = toIntegerOrInfinity$3(index);
987
- return integer < 0 ? max$1(integer + length, 0) : min$2(integer, length);
987
+ return integer < 0 ? max$1(integer + length, 0) : min$3(integer, length);
988
988
  };
989
989
 
990
990
  var toIntegerOrInfinity$2 = toIntegerOrInfinity$4;
991
991
 
992
- var min$1 = Math.min;
992
+ var min$2 = Math.min;
993
993
 
994
994
  // `ToLength` abstract operation
995
995
  // https://tc39.es/ecma262/#sec-tolength
996
- var toLength$2 = function (argument) {
996
+ var toLength$3 = function (argument) {
997
997
  var len = toIntegerOrInfinity$2(argument);
998
- return len > 0 ? min$1(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
998
+ return len > 0 ? min$2(len, 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
999
999
  };
1000
1000
 
1001
- var toLength$1 = toLength$2;
1001
+ var toLength$2 = toLength$3;
1002
1002
 
1003
1003
  // `LengthOfArrayLike` abstract operation
1004
1004
  // https://tc39.es/ecma262/#sec-lengthofarraylike
1005
1005
  var lengthOfArrayLike$2 = function (obj) {
1006
- return toLength$1(obj.length);
1006
+ return toLength$2(obj.length);
1007
1007
  };
1008
1008
 
1009
1009
  var toIndexedObject$3 = toIndexedObject$5;
@@ -1037,13 +1037,13 @@ var arrayIncludes = {
1037
1037
  indexOf: createMethod$1(false)
1038
1038
  };
1039
1039
 
1040
- var uncurryThis$b = functionUncurryThis;
1040
+ var uncurryThis$c = functionUncurryThis;
1041
1041
  var hasOwn$5 = hasOwnProperty_1;
1042
1042
  var toIndexedObject$2 = toIndexedObject$5;
1043
1043
  var indexOf$1 = arrayIncludes.indexOf;
1044
1044
  var hiddenKeys$2 = hiddenKeys$4;
1045
1045
 
1046
- var push$1 = uncurryThis$b([].push);
1046
+ var push$1 = uncurryThis$c([].push);
1047
1047
 
1048
1048
  var objectKeysInternal = function (object, names) {
1049
1049
  var O = toIndexedObject$2(object);
@@ -1087,12 +1087,12 @@ var objectGetOwnPropertySymbols = {};
1087
1087
  objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
1088
1088
 
1089
1089
  var getBuiltIn$5 = getBuiltIn$7;
1090
- var uncurryThis$a = functionUncurryThis;
1090
+ var uncurryThis$b = functionUncurryThis;
1091
1091
  var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
1092
1092
  var getOwnPropertySymbolsModule$1 = objectGetOwnPropertySymbols;
1093
1093
  var anObject$e = anObject$g;
1094
1094
 
1095
- var concat$2 = uncurryThis$a([].concat);
1095
+ var concat$2 = uncurryThis$b([].concat);
1096
1096
 
1097
1097
  // all object keys, includes non-enumerable and symbols
1098
1098
  var ownKeys$1 = getBuiltIn$5('Reflect', 'ownKeys') || function ownKeys(it) {
@@ -1142,7 +1142,7 @@ var POLYFILL = isForced$2.POLYFILL = 'P';
1142
1142
  var isForced_1 = isForced$2;
1143
1143
 
1144
1144
  var global$d = global$m;
1145
- var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
1145
+ var getOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor.f;
1146
1146
  var createNonEnumerableProperty$3 = createNonEnumerableProperty$5;
1147
1147
  var defineBuiltIn$5 = defineBuiltIn$6;
1148
1148
  var defineGlobalProperty = defineGlobalProperty$3;
@@ -1179,7 +1179,7 @@ var _export = function (options, source) {
1179
1179
  if (target) for (key in source) {
1180
1180
  sourceProperty = source[key];
1181
1181
  if (options.dontCallGetSet) {
1182
- descriptor = getOwnPropertyDescriptor$1(target, key);
1182
+ descriptor = getOwnPropertyDescriptor$2(target, key);
1183
1183
  targetProperty = descriptor && descriptor.value;
1184
1184
  } else targetProperty = target[key];
1185
1185
  FORCED = isForced$1(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
@@ -1207,7 +1207,7 @@ var objectKeys$2 = Object.keys || function keys(O) {
1207
1207
  };
1208
1208
 
1209
1209
  var DESCRIPTORS$6 = descriptors;
1210
- var uncurryThis$9 = functionUncurryThis;
1210
+ var uncurryThis$a = functionUncurryThis;
1211
1211
  var call$d = functionCall;
1212
1212
  var fails$a = fails$j;
1213
1213
  var objectKeys$1 = objectKeys$2;
@@ -1220,7 +1220,7 @@ var IndexedObject = indexedObject;
1220
1220
  var $assign = Object.assign;
1221
1221
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1222
1222
  var defineProperty$4 = Object.defineProperty;
1223
- var concat$1 = uncurryThis$9([].concat);
1223
+ var concat$1 = uncurryThis$a([].concat);
1224
1224
 
1225
1225
  // `Object.assign` method
1226
1226
  // https://tc39.es/ecma262/#sec-object.assign
@@ -1263,19 +1263,19 @@ var objectAssign = !$assign || fails$a(function () {
1263
1263
  } return T;
1264
1264
  } : $assign;
1265
1265
 
1266
- var $$b = _export;
1266
+ var $$c = _export;
1267
1267
  var assign = objectAssign;
1268
1268
 
1269
1269
  // `Object.assign` method
1270
1270
  // https://tc39.es/ecma262/#sec-object.assign
1271
1271
  // eslint-disable-next-line es/no-object-assign -- required for testing
1272
- $$b({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
1272
+ $$c({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
1273
1273
  assign: assign
1274
1274
  });
1275
1275
 
1276
- var wellKnownSymbol$f = wellKnownSymbol$h;
1276
+ var wellKnownSymbol$h = wellKnownSymbol$j;
1277
1277
 
1278
- var TO_STRING_TAG$3 = wellKnownSymbol$f('toStringTag');
1278
+ var TO_STRING_TAG$3 = wellKnownSymbol$h('toStringTag');
1279
1279
  var test = {};
1280
1280
 
1281
1281
  test[TO_STRING_TAG$3] = 'z';
@@ -1285,9 +1285,9 @@ var toStringTagSupport = String(test) === '[object z]';
1285
1285
  var TO_STRING_TAG_SUPPORT = toStringTagSupport;
1286
1286
  var isCallable$b = isCallable$m;
1287
1287
  var classofRaw$1 = classofRaw$2;
1288
- var wellKnownSymbol$e = wellKnownSymbol$h;
1288
+ var wellKnownSymbol$g = wellKnownSymbol$j;
1289
1289
 
1290
- var TO_STRING_TAG$2 = wellKnownSymbol$e('toStringTag');
1290
+ var TO_STRING_TAG$2 = wellKnownSymbol$g('toStringTag');
1291
1291
  var $Object$1 = Object;
1292
1292
 
1293
1293
  // ES3 wrong here
@@ -1301,7 +1301,7 @@ var tryGet = function (it, key) {
1301
1301
  };
1302
1302
 
1303
1303
  // getting tag from ES6+ `Object.prototype.toString`
1304
- var classof$5 = TO_STRING_TAG_SUPPORT ? classofRaw$1 : function (it) {
1304
+ var classof$6 = TO_STRING_TAG_SUPPORT ? classofRaw$1 : function (it) {
1305
1305
  var O, tag, result;
1306
1306
  return it === undefined ? 'Undefined' : it === null ? 'Null'
1307
1307
  // @@toStringTag case
@@ -1312,12 +1312,12 @@ var classof$5 = TO_STRING_TAG_SUPPORT ? classofRaw$1 : function (it) {
1312
1312
  : (result = classofRaw$1(O)) === 'Object' && isCallable$b(O.callee) ? 'Arguments' : result;
1313
1313
  };
1314
1314
 
1315
- var classof$4 = classof$5;
1315
+ var classof$5 = classof$6;
1316
1316
 
1317
1317
  var $String$1 = String;
1318
1318
 
1319
- var toString$4 = function (argument) {
1320
- if (classof$4(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
1319
+ var toString$5 = function (argument) {
1320
+ if (classof$5(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
1321
1321
  return $String$1(argument);
1322
1322
  };
1323
1323
 
@@ -1504,8 +1504,8 @@ var regexpUnsupportedNcg = fails$7(function () {
1504
1504
  /* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
1505
1505
  /* eslint-disable regexp/no-useless-quantifier -- testing */
1506
1506
  var call$c = functionCall;
1507
- var uncurryThis$8 = functionUncurryThis;
1508
- var toString$3 = toString$4;
1507
+ var uncurryThis$9 = functionUncurryThis;
1508
+ var toString$4 = toString$5;
1509
1509
  var regexpFlags = regexpFlags$1;
1510
1510
  var stickyHelpers = regexpStickyHelpers;
1511
1511
  var shared = shared$4;
@@ -1517,10 +1517,10 @@ var UNSUPPORTED_NCG = regexpUnsupportedNcg;
1517
1517
  var nativeReplace = shared('native-string-replace', String.prototype.replace);
1518
1518
  var nativeExec = RegExp.prototype.exec;
1519
1519
  var patchedExec = nativeExec;
1520
- var charAt$3 = uncurryThis$8(''.charAt);
1521
- var indexOf = uncurryThis$8(''.indexOf);
1522
- var replace$1 = uncurryThis$8(''.replace);
1523
- var stringSlice$3 = uncurryThis$8(''.slice);
1520
+ var charAt$3 = uncurryThis$9(''.charAt);
1521
+ var indexOf = uncurryThis$9(''.indexOf);
1522
+ var replace$1 = uncurryThis$9(''.replace);
1523
+ var stringSlice$4 = uncurryThis$9(''.slice);
1524
1524
 
1525
1525
  var UPDATES_LAST_INDEX_WRONG = (function () {
1526
1526
  var re1 = /a/;
@@ -1541,7 +1541,7 @@ if (PATCH) {
1541
1541
  patchedExec = function exec(string) {
1542
1542
  var re = this;
1543
1543
  var state = getInternalState$1(re);
1544
- var str = toString$3(string);
1544
+ var str = toString$4(string);
1545
1545
  var raw = state.raw;
1546
1546
  var result, reCopy, lastIndex, match, i, object, group;
1547
1547
 
@@ -1565,7 +1565,7 @@ if (PATCH) {
1565
1565
  flags += 'g';
1566
1566
  }
1567
1567
 
1568
- strCopy = stringSlice$3(str, re.lastIndex);
1568
+ strCopy = stringSlice$4(str, re.lastIndex);
1569
1569
  // Support anchored sticky behavior.
1570
1570
  if (re.lastIndex > 0 && (!re.multiline || re.multiline && charAt$3(str, re.lastIndex - 1) !== '\n')) {
1571
1571
  source = '(?: ' + source + ')';
@@ -1586,8 +1586,8 @@ if (PATCH) {
1586
1586
 
1587
1587
  if (sticky) {
1588
1588
  if (match) {
1589
- match.input = stringSlice$3(match.input, charsAdded);
1590
- match[0] = stringSlice$3(match[0], charsAdded);
1589
+ match.input = stringSlice$4(match.input, charsAdded);
1590
+ match[0] = stringSlice$4(match[0], charsAdded);
1591
1591
  match.index = re.lastIndex;
1592
1592
  re.lastIndex += match[0].length;
1593
1593
  } else re.lastIndex = 0;
@@ -1618,12 +1618,12 @@ if (PATCH) {
1618
1618
 
1619
1619
  var regexpExec$2 = patchedExec;
1620
1620
 
1621
- var $$a = _export;
1621
+ var $$b = _export;
1622
1622
  var exec$1 = regexpExec$2;
1623
1623
 
1624
1624
  // `RegExp.prototype.exec` method
1625
1625
  // https://tc39.es/ecma262/#sec-regexp.prototype.exec
1626
- $$a({ target: 'RegExp', proto: true, forced: /./.exec !== exec$1 }, {
1626
+ $$b({ target: 'RegExp', proto: true, forced: /./.exec !== exec$1 }, {
1627
1627
  exec: exec$1
1628
1628
  });
1629
1629
 
@@ -1644,14 +1644,14 @@ var call$a = functionCall;
1644
1644
  var defineBuiltIn$4 = defineBuiltIn$6;
1645
1645
  var regexpExec$1 = regexpExec$2;
1646
1646
  var fails$6 = fails$j;
1647
- var wellKnownSymbol$d = wellKnownSymbol$h;
1647
+ var wellKnownSymbol$f = wellKnownSymbol$j;
1648
1648
  var createNonEnumerableProperty$2 = createNonEnumerableProperty$5;
1649
1649
 
1650
- var SPECIES$3 = wellKnownSymbol$d('species');
1650
+ var SPECIES$3 = wellKnownSymbol$f('species');
1651
1651
  var RegExpPrototype = RegExp.prototype;
1652
1652
 
1653
1653
  var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
1654
- var SYMBOL = wellKnownSymbol$d(KEY);
1654
+ var SYMBOL = wellKnownSymbol$f(KEY);
1655
1655
 
1656
1656
  var DELEGATES_TO_SYMBOL = !fails$6(function () {
1657
1657
  // String methods call symbol-named RegExp methods
@@ -1714,18 +1714,18 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
1714
1714
  if (SHAM) createNonEnumerableProperty$2(RegExpPrototype[SYMBOL], 'sham', true);
1715
1715
  };
1716
1716
 
1717
- var uncurryThis$7 = functionUncurryThis;
1717
+ var uncurryThis$8 = functionUncurryThis;
1718
1718
  var toIntegerOrInfinity$1 = toIntegerOrInfinity$4;
1719
- var toString$2 = toString$4;
1720
- var requireObjectCoercible$3 = requireObjectCoercible$6;
1719
+ var toString$3 = toString$5;
1720
+ var requireObjectCoercible$4 = requireObjectCoercible$7;
1721
1721
 
1722
- var charAt$2 = uncurryThis$7(''.charAt);
1723
- var charCodeAt = uncurryThis$7(''.charCodeAt);
1724
- var stringSlice$2 = uncurryThis$7(''.slice);
1722
+ var charAt$2 = uncurryThis$8(''.charAt);
1723
+ var charCodeAt = uncurryThis$8(''.charCodeAt);
1724
+ var stringSlice$3 = uncurryThis$8(''.slice);
1725
1725
 
1726
1726
  var createMethod = function (CONVERT_TO_STRING) {
1727
1727
  return function ($this, pos) {
1728
- var S = toString$2(requireObjectCoercible$3($this));
1728
+ var S = toString$3(requireObjectCoercible$4($this));
1729
1729
  var position = toIntegerOrInfinity$1(pos);
1730
1730
  var size = S.length;
1731
1731
  var first, second;
@@ -1737,7 +1737,7 @@ var createMethod = function (CONVERT_TO_STRING) {
1737
1737
  ? charAt$2(S, position)
1738
1738
  : first
1739
1739
  : CONVERT_TO_STRING
1740
- ? stringSlice$2(S, position, position + 2)
1740
+ ? stringSlice$3(S, position, position + 2)
1741
1741
  : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
1742
1742
  };
1743
1743
  };
@@ -1756,13 +1756,13 @@ var advanceStringIndex$1 = function (S, index, unicode) {
1756
1756
  return index + (unicode ? charAt$1(S, index).length : 1);
1757
1757
  };
1758
1758
 
1759
- var uncurryThis$6 = functionUncurryThis;
1759
+ var uncurryThis$7 = functionUncurryThis;
1760
1760
  var toObject$1 = toObject$4;
1761
1761
 
1762
1762
  var floor = Math.floor;
1763
- var charAt = uncurryThis$6(''.charAt);
1764
- var replace = uncurryThis$6(''.replace);
1765
- var stringSlice$1 = uncurryThis$6(''.slice);
1763
+ var charAt = uncurryThis$7(''.charAt);
1764
+ var replace = uncurryThis$7(''.replace);
1765
+ var stringSlice$2 = uncurryThis$7(''.slice);
1766
1766
  // eslint-disable-next-line redos/no-vulnerable -- safe
1767
1767
  var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g;
1768
1768
  var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g;
@@ -1782,10 +1782,10 @@ var getSubstitution$1 = function (matched, str, position, captures, namedCapture
1782
1782
  switch (charAt(ch, 0)) {
1783
1783
  case '$': return '$';
1784
1784
  case '&': return matched;
1785
- case '`': return stringSlice$1(str, 0, position);
1786
- case "'": return stringSlice$1(str, tailPos);
1785
+ case '`': return stringSlice$2(str, 0, position);
1786
+ case "'": return stringSlice$2(str, tailPos);
1787
1787
  case '<':
1788
- capture = namedCaptures[stringSlice$1(ch, 1, -1)];
1788
+ capture = namedCaptures[stringSlice$2(ch, 1, -1)];
1789
1789
  break;
1790
1790
  default: // \d\d?
1791
1791
  var n = +ch;
@@ -1805,10 +1805,10 @@ var getSubstitution$1 = function (matched, str, position, captures, namedCapture
1805
1805
  var call$9 = functionCall;
1806
1806
  var anObject$a = anObject$g;
1807
1807
  var isCallable$a = isCallable$m;
1808
- var classof$3 = classofRaw$2;
1808
+ var classof$4 = classofRaw$2;
1809
1809
  var regexpExec = regexpExec$2;
1810
1810
 
1811
- var $TypeError$8 = TypeError;
1811
+ var $TypeError$9 = TypeError;
1812
1812
 
1813
1813
  // `RegExpExec` abstract operation
1814
1814
  // https://tc39.es/ecma262/#sec-regexpexec
@@ -1819,35 +1819,35 @@ var regexpExecAbstract = function (R, S) {
1819
1819
  if (result !== null) anObject$a(result);
1820
1820
  return result;
1821
1821
  }
1822
- if (classof$3(R) === 'RegExp') return call$9(regexpExec, R, S);
1823
- throw new $TypeError$8('RegExp#exec called on incompatible receiver');
1822
+ if (classof$4(R) === 'RegExp') return call$9(regexpExec, R, S);
1823
+ throw new $TypeError$9('RegExp#exec called on incompatible receiver');
1824
1824
  };
1825
1825
 
1826
1826
  var apply$1 = functionApply;
1827
1827
  var call$8 = functionCall;
1828
- var uncurryThis$5 = functionUncurryThis;
1828
+ var uncurryThis$6 = functionUncurryThis;
1829
1829
  var fixRegExpWellKnownSymbolLogic$1 = fixRegexpWellKnownSymbolLogic;
1830
1830
  var fails$5 = fails$j;
1831
1831
  var anObject$9 = anObject$g;
1832
1832
  var isCallable$9 = isCallable$m;
1833
1833
  var isNullOrUndefined$3 = isNullOrUndefined$6;
1834
1834
  var toIntegerOrInfinity = toIntegerOrInfinity$4;
1835
- var toLength = toLength$2;
1836
- var toString$1 = toString$4;
1837
- var requireObjectCoercible$2 = requireObjectCoercible$6;
1835
+ var toLength$1 = toLength$3;
1836
+ var toString$2 = toString$5;
1837
+ var requireObjectCoercible$3 = requireObjectCoercible$7;
1838
1838
  var advanceStringIndex = advanceStringIndex$1;
1839
1839
  var getMethod$3 = getMethod$5;
1840
1840
  var getSubstitution = getSubstitution$1;
1841
1841
  var regExpExec$1 = regexpExecAbstract;
1842
- var wellKnownSymbol$c = wellKnownSymbol$h;
1842
+ var wellKnownSymbol$e = wellKnownSymbol$j;
1843
1843
 
1844
- var REPLACE = wellKnownSymbol$c('replace');
1844
+ var REPLACE = wellKnownSymbol$e('replace');
1845
1845
  var max = Math.max;
1846
- var min = Math.min;
1847
- var concat = uncurryThis$5([].concat);
1848
- var push = uncurryThis$5([].push);
1849
- var stringIndexOf = uncurryThis$5(''.indexOf);
1850
- var stringSlice = uncurryThis$5(''.slice);
1846
+ var min$1 = Math.min;
1847
+ var concat = uncurryThis$6([].concat);
1848
+ var push = uncurryThis$6([].push);
1849
+ var stringIndexOf = uncurryThis$6(''.indexOf);
1850
+ var stringSlice$1 = uncurryThis$6(''.slice);
1851
1851
 
1852
1852
  var maybeToString = function (it) {
1853
1853
  return it === undefined ? it : String(it);
@@ -1887,17 +1887,17 @@ fixRegExpWellKnownSymbolLogic$1('replace', function (_, nativeReplace, maybeCall
1887
1887
  // `String.prototype.replace` method
1888
1888
  // https://tc39.es/ecma262/#sec-string.prototype.replace
1889
1889
  function replace(searchValue, replaceValue) {
1890
- var O = requireObjectCoercible$2(this);
1890
+ var O = requireObjectCoercible$3(this);
1891
1891
  var replacer = isNullOrUndefined$3(searchValue) ? undefined : getMethod$3(searchValue, REPLACE);
1892
1892
  return replacer
1893
1893
  ? call$8(replacer, searchValue, O, replaceValue)
1894
- : call$8(nativeReplace, toString$1(O), searchValue, replaceValue);
1894
+ : call$8(nativeReplace, toString$2(O), searchValue, replaceValue);
1895
1895
  },
1896
1896
  // `RegExp.prototype[@@replace]` method
1897
1897
  // https://tc39.es/ecma262/#sec-regexp.prototype-@@replace
1898
1898
  function (string, replaceValue) {
1899
1899
  var rx = anObject$9(this);
1900
- var S = toString$1(string);
1900
+ var S = toString$2(string);
1901
1901
 
1902
1902
  if (
1903
1903
  typeof replaceValue == 'string' &&
@@ -1909,7 +1909,7 @@ fixRegExpWellKnownSymbolLogic$1('replace', function (_, nativeReplace, maybeCall
1909
1909
  }
1910
1910
 
1911
1911
  var functionalReplace = isCallable$9(replaceValue);
1912
- if (!functionalReplace) replaceValue = toString$1(replaceValue);
1912
+ if (!functionalReplace) replaceValue = toString$2(replaceValue);
1913
1913
 
1914
1914
  var global = rx.global;
1915
1915
  var fullUnicode;
@@ -1927,8 +1927,8 @@ fixRegExpWellKnownSymbolLogic$1('replace', function (_, nativeReplace, maybeCall
1927
1927
  push(results, result);
1928
1928
  if (!global) break;
1929
1929
 
1930
- var matchStr = toString$1(result[0]);
1931
- if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
1930
+ var matchStr = toString$2(result[0]);
1931
+ if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength$1(rx.lastIndex), fullUnicode);
1932
1932
  }
1933
1933
 
1934
1934
  var accumulatedResult = '';
@@ -1936,8 +1936,8 @@ fixRegExpWellKnownSymbolLogic$1('replace', function (_, nativeReplace, maybeCall
1936
1936
  for (var i = 0; i < results.length; i++) {
1937
1937
  result = results[i];
1938
1938
 
1939
- var matched = toString$1(result[0]);
1940
- var position = max(min(toIntegerOrInfinity(result.index), S.length), 0);
1939
+ var matched = toString$2(result[0]);
1940
+ var position = max(min$1(toIntegerOrInfinity(result.index), S.length), 0);
1941
1941
  var captures = [];
1942
1942
  var replacement;
1943
1943
  // NOTE: This is equivalent to
@@ -1950,17 +1950,17 @@ fixRegExpWellKnownSymbolLogic$1('replace', function (_, nativeReplace, maybeCall
1950
1950
  if (functionalReplace) {
1951
1951
  var replacerArgs = concat([matched], captures, position, S);
1952
1952
  if (namedCaptures !== undefined) push(replacerArgs, namedCaptures);
1953
- replacement = toString$1(apply$1(replaceValue, undefined, replacerArgs));
1953
+ replacement = toString$2(apply$1(replaceValue, undefined, replacerArgs));
1954
1954
  } else {
1955
1955
  replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
1956
1956
  }
1957
1957
  if (position >= nextSourcePosition) {
1958
- accumulatedResult += stringSlice(S, nextSourcePosition, position) + replacement;
1958
+ accumulatedResult += stringSlice$1(S, nextSourcePosition, position) + replacement;
1959
1959
  nextSourcePosition = position + matched.length;
1960
1960
  }
1961
1961
  }
1962
1962
 
1963
- return accumulatedResult + stringSlice(S, nextSourcePosition);
1963
+ return accumulatedResult + stringSlice$1(S, nextSourcePosition);
1964
1964
  }
1965
1965
  ];
1966
1966
  }, !REPLACE_SUPPORTS_NAMED_GROUPS || !REPLACE_KEEPS_$0 || REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE);
@@ -1977,9 +1977,9 @@ var call$7 = functionCall;
1977
1977
  var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
1978
1978
  var anObject$8 = anObject$g;
1979
1979
  var isNullOrUndefined$2 = isNullOrUndefined$6;
1980
- var requireObjectCoercible$1 = requireObjectCoercible$6;
1980
+ var requireObjectCoercible$2 = requireObjectCoercible$7;
1981
1981
  var sameValue = sameValue$1;
1982
- var toString = toString$4;
1982
+ var toString$1 = toString$5;
1983
1983
  var getMethod$2 = getMethod$5;
1984
1984
  var regExpExec = regexpExecAbstract;
1985
1985
 
@@ -1989,15 +1989,15 @@ fixRegExpWellKnownSymbolLogic('search', function (SEARCH, nativeSearch, maybeCal
1989
1989
  // `String.prototype.search` method
1990
1990
  // https://tc39.es/ecma262/#sec-string.prototype.search
1991
1991
  function search(regexp) {
1992
- var O = requireObjectCoercible$1(this);
1992
+ var O = requireObjectCoercible$2(this);
1993
1993
  var searcher = isNullOrUndefined$2(regexp) ? undefined : getMethod$2(regexp, SEARCH);
1994
- return searcher ? call$7(searcher, regexp, O) : new RegExp(regexp)[SEARCH](toString(O));
1994
+ return searcher ? call$7(searcher, regexp, O) : new RegExp(regexp)[SEARCH](toString$1(O));
1995
1995
  },
1996
1996
  // `RegExp.prototype[@@search]` method
1997
1997
  // https://tc39.es/ecma262/#sec-regexp.prototype-@@search
1998
1998
  function (string) {
1999
1999
  var rx = anObject$8(this);
2000
- var S = toString(string);
2000
+ var S = toString$1(string);
2001
2001
  var res = maybeCallNative(nativeSearch, rx, S);
2002
2002
 
2003
2003
  if (res.done) return res.value;
@@ -2149,11 +2149,11 @@ function getPartner() {
2149
2149
  return undefined;
2150
2150
  }
2151
2151
 
2152
- var wellKnownSymbol$b = wellKnownSymbol$h;
2152
+ var wellKnownSymbol$d = wellKnownSymbol$j;
2153
2153
  var create$1 = objectCreate;
2154
2154
  var defineProperty$3 = objectDefineProperty.f;
2155
2155
 
2156
- var UNSCOPABLES = wellKnownSymbol$b('unscopables');
2156
+ var UNSCOPABLES = wellKnownSymbol$d('unscopables');
2157
2157
  var ArrayPrototype$1 = Array.prototype;
2158
2158
 
2159
2159
  // Array.prototype[@@unscopables]
@@ -2205,12 +2205,12 @@ var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object.getPrototypeOf : f
2205
2205
 
2206
2206
  var fails$3 = fails$j;
2207
2207
  var isCallable$7 = isCallable$m;
2208
- var isObject$4 = isObject$a;
2208
+ var isObject$5 = isObject$b;
2209
2209
  var getPrototypeOf$2 = objectGetPrototypeOf;
2210
2210
  var defineBuiltIn$3 = defineBuiltIn$6;
2211
- var wellKnownSymbol$a = wellKnownSymbol$h;
2211
+ var wellKnownSymbol$c = wellKnownSymbol$j;
2212
2212
 
2213
- var ITERATOR$6 = wellKnownSymbol$a('iterator');
2213
+ var ITERATOR$6 = wellKnownSymbol$c('iterator');
2214
2214
  var BUGGY_SAFARI_ITERATORS$1 = false;
2215
2215
 
2216
2216
  // `%IteratorPrototype%` object
@@ -2228,7 +2228,7 @@ if ([].keys) {
2228
2228
  }
2229
2229
  }
2230
2230
 
2231
- var NEW_ITERATOR_PROTOTYPE = !isObject$4(IteratorPrototype$3) || fails$3(function () {
2231
+ var NEW_ITERATOR_PROTOTYPE = !isObject$5(IteratorPrototype$3) || fails$3(function () {
2232
2232
  var test = {};
2233
2233
  // FF44- legacy iterators case
2234
2234
  return IteratorPrototype$3[ITERATOR$6].call(test) !== test;
@@ -2251,9 +2251,9 @@ var iteratorsCore = {
2251
2251
 
2252
2252
  var defineProperty$2 = objectDefineProperty.f;
2253
2253
  var hasOwn$2 = hasOwnProperty_1;
2254
- var wellKnownSymbol$9 = wellKnownSymbol$h;
2254
+ var wellKnownSymbol$b = wellKnownSymbol$j;
2255
2255
 
2256
- var TO_STRING_TAG$1 = wellKnownSymbol$9('toStringTag');
2256
+ var TO_STRING_TAG$1 = wellKnownSymbol$b('toStringTag');
2257
2257
 
2258
2258
  var setToStringTag$4 = function (target, TAG, STATIC) {
2259
2259
  if (target && !STATIC) target = target.prototype;
@@ -2278,36 +2278,36 @@ var iteratorCreateConstructor = function (IteratorConstructor, NAME, next, ENUME
2278
2278
  return IteratorConstructor;
2279
2279
  };
2280
2280
 
2281
- var uncurryThis$4 = functionUncurryThis;
2281
+ var uncurryThis$5 = functionUncurryThis;
2282
2282
  var aCallable$8 = aCallable$a;
2283
2283
 
2284
2284
  var functionUncurryThisAccessor = function (object, key, method) {
2285
2285
  try {
2286
2286
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
2287
- return uncurryThis$4(aCallable$8(Object.getOwnPropertyDescriptor(object, key)[method]));
2287
+ return uncurryThis$5(aCallable$8(Object.getOwnPropertyDescriptor(object, key)[method]));
2288
2288
  } catch (error) { /* empty */ }
2289
2289
  };
2290
2290
 
2291
- var isObject$3 = isObject$a;
2291
+ var isObject$4 = isObject$b;
2292
2292
 
2293
2293
  var isPossiblePrototype$1 = function (argument) {
2294
- return isObject$3(argument) || argument === null;
2294
+ return isObject$4(argument) || argument === null;
2295
2295
  };
2296
2296
 
2297
2297
  var isPossiblePrototype = isPossiblePrototype$1;
2298
2298
 
2299
2299
  var $String = String;
2300
- var $TypeError$7 = TypeError;
2300
+ var $TypeError$8 = TypeError;
2301
2301
 
2302
2302
  var aPossiblePrototype$1 = function (argument) {
2303
2303
  if (isPossiblePrototype(argument)) return argument;
2304
- throw new $TypeError$7("Can't set " + $String(argument) + ' as a prototype');
2304
+ throw new $TypeError$8("Can't set " + $String(argument) + ' as a prototype');
2305
2305
  };
2306
2306
 
2307
2307
  /* eslint-disable no-proto -- safe */
2308
2308
  var uncurryThisAccessor = functionUncurryThisAccessor;
2309
- var isObject$2 = isObject$a;
2310
- var requireObjectCoercible = requireObjectCoercible$6;
2309
+ var isObject$3 = isObject$b;
2310
+ var requireObjectCoercible$1 = requireObjectCoercible$7;
2311
2311
  var aPossiblePrototype = aPossiblePrototype$1;
2312
2312
 
2313
2313
  // `Object.setPrototypeOf` method
@@ -2324,16 +2324,16 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
2324
2324
  CORRECT_SETTER = test instanceof Array;
2325
2325
  } catch (error) { /* empty */ }
2326
2326
  return function setPrototypeOf(O, proto) {
2327
- requireObjectCoercible(O);
2327
+ requireObjectCoercible$1(O);
2328
2328
  aPossiblePrototype(proto);
2329
- if (!isObject$2(O)) return O;
2329
+ if (!isObject$3(O)) return O;
2330
2330
  if (CORRECT_SETTER) setter(O, proto);
2331
2331
  else O.__proto__ = proto;
2332
2332
  return O;
2333
2333
  };
2334
2334
  }() : undefined);
2335
2335
 
2336
- var $$9 = _export;
2336
+ var $$a = _export;
2337
2337
  var call$6 = functionCall;
2338
2338
  var FunctionName = functionName;
2339
2339
  var isCallable$6 = isCallable$m;
@@ -2343,7 +2343,7 @@ var setPrototypeOf$1 = objectSetPrototypeOf;
2343
2343
  var setToStringTag$2 = setToStringTag$4;
2344
2344
  var createNonEnumerableProperty$1 = createNonEnumerableProperty$5;
2345
2345
  var defineBuiltIn$2 = defineBuiltIn$6;
2346
- var wellKnownSymbol$8 = wellKnownSymbol$h;
2346
+ var wellKnownSymbol$a = wellKnownSymbol$j;
2347
2347
  var Iterators$3 = iterators;
2348
2348
  var IteratorsCore = iteratorsCore;
2349
2349
 
@@ -2351,7 +2351,7 @@ var PROPER_FUNCTION_NAME = FunctionName.PROPER;
2351
2351
  var CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE;
2352
2352
  var IteratorPrototype$1 = IteratorsCore.IteratorPrototype;
2353
2353
  var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
2354
- var ITERATOR$5 = wellKnownSymbol$8('iterator');
2354
+ var ITERATOR$5 = wellKnownSymbol$a('iterator');
2355
2355
  var KEYS = 'keys';
2356
2356
  var VALUES = 'values';
2357
2357
  var ENTRIES = 'entries';
@@ -2421,7 +2421,7 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
2421
2421
  if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
2422
2422
  defineBuiltIn$2(IterablePrototype, KEY, methods[KEY]);
2423
2423
  }
2424
- } else $$9({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
2424
+ } else $$a({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
2425
2425
  }
2426
2426
 
2427
2427
  // define iterator
@@ -2501,9 +2501,9 @@ if (DESCRIPTORS$4 && values.name !== 'values') try {
2501
2501
  } catch (error) { /* empty */ }
2502
2502
 
2503
2503
  var global$9 = global$m;
2504
- var classof$2 = classofRaw$2;
2504
+ var classof$3 = classofRaw$2;
2505
2505
 
2506
- var engineIsNode = classof$2(global$9.process) === 'process';
2506
+ var engineIsNode = classof$3(global$9.process) === 'process';
2507
2507
 
2508
2508
  var makeBuiltIn = makeBuiltInExports;
2509
2509
  var defineProperty = objectDefineProperty;
@@ -2516,10 +2516,10 @@ var defineBuiltInAccessor$2 = function (target, name, descriptor) {
2516
2516
 
2517
2517
  var getBuiltIn$3 = getBuiltIn$7;
2518
2518
  var defineBuiltInAccessor$1 = defineBuiltInAccessor$2;
2519
- var wellKnownSymbol$7 = wellKnownSymbol$h;
2519
+ var wellKnownSymbol$9 = wellKnownSymbol$j;
2520
2520
  var DESCRIPTORS$3 = descriptors;
2521
2521
 
2522
- var SPECIES$2 = wellKnownSymbol$7('species');
2522
+ var SPECIES$2 = wellKnownSymbol$9('species');
2523
2523
 
2524
2524
  var setSpecies$1 = function (CONSTRUCTOR_NAME) {
2525
2525
  var Constructor = getBuiltIn$3(CONSTRUCTOR_NAME);
@@ -2534,24 +2534,24 @@ var setSpecies$1 = function (CONSTRUCTOR_NAME) {
2534
2534
 
2535
2535
  var isPrototypeOf$1 = objectIsPrototypeOf;
2536
2536
 
2537
- var $TypeError$6 = TypeError;
2537
+ var $TypeError$7 = TypeError;
2538
2538
 
2539
2539
  var anInstance$2 = function (it, Prototype) {
2540
2540
  if (isPrototypeOf$1(Prototype, it)) return it;
2541
- throw new $TypeError$6('Incorrect invocation');
2541
+ throw new $TypeError$7('Incorrect invocation');
2542
2542
  };
2543
2543
 
2544
- var uncurryThis$3 = functionUncurryThis;
2544
+ var uncurryThis$4 = functionUncurryThis;
2545
2545
  var fails$2 = fails$j;
2546
2546
  var isCallable$5 = isCallable$m;
2547
- var classof$1 = classof$5;
2547
+ var classof$2 = classof$6;
2548
2548
  var getBuiltIn$2 = getBuiltIn$7;
2549
2549
  var inspectSource$1 = inspectSource$3;
2550
2550
 
2551
2551
  var noop = function () { /* empty */ };
2552
2552
  var construct = getBuiltIn$2('Reflect', 'construct');
2553
2553
  var constructorRegExp = /^\s*(?:class|function)\b/;
2554
- var exec = uncurryThis$3(constructorRegExp.exec);
2554
+ var exec = uncurryThis$4(constructorRegExp.exec);
2555
2555
  var INCORRECT_TO_STRING = !constructorRegExp.test(noop);
2556
2556
 
2557
2557
  var isConstructorModern = function isConstructor(argument) {
@@ -2566,7 +2566,7 @@ var isConstructorModern = function isConstructor(argument) {
2566
2566
 
2567
2567
  var isConstructorLegacy = function isConstructor(argument) {
2568
2568
  if (!isCallable$5(argument)) return false;
2569
- switch (classof$1(argument)) {
2569
+ switch (classof$2(argument)) {
2570
2570
  case 'AsyncFunction':
2571
2571
  case 'GeneratorFunction':
2572
2572
  case 'AsyncGeneratorFunction': return false;
@@ -2596,20 +2596,20 @@ var isConstructor$1 = !construct || fails$2(function () {
2596
2596
  var isConstructor = isConstructor$1;
2597
2597
  var tryToString$2 = tryToString$4;
2598
2598
 
2599
- var $TypeError$5 = TypeError;
2599
+ var $TypeError$6 = TypeError;
2600
2600
 
2601
2601
  // `Assert: IsConstructor(argument) is true`
2602
2602
  var aConstructor$1 = function (argument) {
2603
2603
  if (isConstructor(argument)) return argument;
2604
- throw new $TypeError$5(tryToString$2(argument) + ' is not a constructor');
2604
+ throw new $TypeError$6(tryToString$2(argument) + ' is not a constructor');
2605
2605
  };
2606
2606
 
2607
2607
  var anObject$7 = anObject$g;
2608
2608
  var aConstructor = aConstructor$1;
2609
2609
  var isNullOrUndefined$1 = isNullOrUndefined$6;
2610
- var wellKnownSymbol$6 = wellKnownSymbol$h;
2610
+ var wellKnownSymbol$8 = wellKnownSymbol$j;
2611
2611
 
2612
- var SPECIES$1 = wellKnownSymbol$6('species');
2612
+ var SPECIES$1 = wellKnownSymbol$8('species');
2613
2613
 
2614
2614
  // `SpeciesConstructor` abstract operation
2615
2615
  // https://tc39.es/ecma262/#sec-speciesconstructor
@@ -2620,20 +2620,20 @@ var speciesConstructor$1 = function (O, defaultConstructor) {
2620
2620
  };
2621
2621
 
2622
2622
  var classofRaw = classofRaw$2;
2623
- var uncurryThis$2 = functionUncurryThis;
2623
+ var uncurryThis$3 = functionUncurryThis;
2624
2624
 
2625
2625
  var functionUncurryThisClause = function (fn) {
2626
2626
  // Nashorn bug:
2627
2627
  // https://github.com/zloirock/core-js/issues/1128
2628
2628
  // https://github.com/zloirock/core-js/issues/1130
2629
- if (classofRaw(fn) === 'Function') return uncurryThis$2(fn);
2629
+ if (classofRaw(fn) === 'Function') return uncurryThis$3(fn);
2630
2630
  };
2631
2631
 
2632
- var uncurryThis$1 = functionUncurryThisClause;
2632
+ var uncurryThis$2 = functionUncurryThisClause;
2633
2633
  var aCallable$7 = aCallable$a;
2634
2634
  var NATIVE_BIND = functionBindNative;
2635
2635
 
2636
- var bind$4 = uncurryThis$1(uncurryThis$1.bind);
2636
+ var bind$4 = uncurryThis$2(uncurryThis$2.bind);
2637
2637
 
2638
2638
  // optional / simple context binding
2639
2639
  var functionBindContext = function (fn, that) {
@@ -2643,14 +2643,14 @@ var functionBindContext = function (fn, that) {
2643
2643
  };
2644
2644
  };
2645
2645
 
2646
- var uncurryThis = functionUncurryThis;
2646
+ var uncurryThis$1 = functionUncurryThis;
2647
2647
 
2648
- var arraySlice$1 = uncurryThis([].slice);
2648
+ var arraySlice$1 = uncurryThis$1([].slice);
2649
2649
 
2650
- var $TypeError$4 = TypeError;
2650
+ var $TypeError$5 = TypeError;
2651
2651
 
2652
2652
  var validateArgumentsLength$1 = function (passed, required) {
2653
- if (passed < required) throw new $TypeError$4('Not enough arguments');
2653
+ if (passed < required) throw new $TypeError$5('Not enough arguments');
2654
2654
  return passed;
2655
2655
  };
2656
2656
 
@@ -2778,12 +2778,12 @@ var global$7 = global$m;
2778
2778
  var DESCRIPTORS$2 = descriptors;
2779
2779
 
2780
2780
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
2781
- var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
2781
+ var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
2782
2782
 
2783
2783
  // Avoid NodeJS experimental warning
2784
2784
  var safeGetBuiltIn$1 = function (name) {
2785
2785
  if (!DESCRIPTORS$2) return global$7[name];
2786
- var descriptor = getOwnPropertyDescriptor(global$7, name);
2786
+ var descriptor = getOwnPropertyDescriptor$1(global$7, name);
2787
2787
  return descriptor && descriptor.value;
2788
2788
  };
2789
2789
 
@@ -2933,13 +2933,13 @@ var NativePromiseConstructor$3 = promiseNativeConstructor;
2933
2933
  var isCallable$3 = isCallable$m;
2934
2934
  var isForced = isForced_1;
2935
2935
  var inspectSource = inspectSource$3;
2936
- var wellKnownSymbol$5 = wellKnownSymbol$h;
2936
+ var wellKnownSymbol$7 = wellKnownSymbol$j;
2937
2937
  var IS_BROWSER = engineIsBrowser;
2938
2938
  var IS_DENO = engineIsDeno;
2939
2939
  var V8_VERSION = engineV8Version;
2940
2940
 
2941
2941
  NativePromiseConstructor$3 && NativePromiseConstructor$3.prototype;
2942
- var SPECIES = wellKnownSymbol$5('species');
2942
+ var SPECIES = wellKnownSymbol$7('species');
2943
2943
  var SUBCLASSING = false;
2944
2944
  var NATIVE_PROMISE_REJECTION_EVENT$1 = isCallable$3(global$4.PromiseRejectionEvent);
2945
2945
 
@@ -2977,12 +2977,12 @@ var newPromiseCapability$2 = {};
2977
2977
 
2978
2978
  var aCallable$6 = aCallable$a;
2979
2979
 
2980
- var $TypeError$3 = TypeError;
2980
+ var $TypeError$4 = TypeError;
2981
2981
 
2982
2982
  var PromiseCapability = function (C) {
2983
2983
  var resolve, reject;
2984
2984
  this.promise = new C(function ($$resolve, $$reject) {
2985
- if (resolve !== undefined || reject !== undefined) throw new $TypeError$3('Bad Promise constructor');
2985
+ if (resolve !== undefined || reject !== undefined) throw new $TypeError$4('Bad Promise constructor');
2986
2986
  resolve = $$resolve;
2987
2987
  reject = $$reject;
2988
2988
  });
@@ -2996,7 +2996,7 @@ newPromiseCapability$2.f = function (C) {
2996
2996
  return new PromiseCapability(C);
2997
2997
  };
2998
2998
 
2999
- var $$8 = _export;
2999
+ var $$9 = _export;
3000
3000
  var IS_NODE = engineIsNode;
3001
3001
  var global$3 = global$m;
3002
3002
  var call$5 = functionCall;
@@ -3006,7 +3006,7 @@ var setToStringTag$1 = setToStringTag$4;
3006
3006
  var setSpecies = setSpecies$1;
3007
3007
  var aCallable$5 = aCallable$a;
3008
3008
  var isCallable$2 = isCallable$m;
3009
- var isObject$1 = isObject$a;
3009
+ var isObject$2 = isObject$b;
3010
3010
  var anInstance$1 = anInstance$2;
3011
3011
  var speciesConstructor = speciesConstructor$1;
3012
3012
  var task = task$1.set;
@@ -3048,7 +3048,7 @@ var Internal, OwnPromiseCapability, PromiseWrapper, nativeThen;
3048
3048
  // helpers
3049
3049
  var isThenable = function (it) {
3050
3050
  var then;
3051
- return isObject$1(it) && isCallable$2(then = it.then) ? then : false;
3051
+ return isObject$2(it) && isCallable$2(then = it.then) ? then : false;
3052
3052
  };
3053
3053
 
3054
3054
  var callReaction = function (reaction, state) {
@@ -3276,17 +3276,17 @@ if (FORCED_PROMISE_CONSTRUCTOR$4) {
3276
3276
  }
3277
3277
  }
3278
3278
 
3279
- $$8({ global: true, constructor: true, wrap: true, forced: FORCED_PROMISE_CONSTRUCTOR$4 }, {
3279
+ $$9({ global: true, constructor: true, wrap: true, forced: FORCED_PROMISE_CONSTRUCTOR$4 }, {
3280
3280
  Promise: PromiseConstructor
3281
3281
  });
3282
3282
 
3283
3283
  setToStringTag$1(PromiseConstructor, PROMISE, false);
3284
3284
  setSpecies(PROMISE);
3285
3285
 
3286
- var wellKnownSymbol$4 = wellKnownSymbol$h;
3286
+ var wellKnownSymbol$6 = wellKnownSymbol$j;
3287
3287
  var Iterators$1 = iterators;
3288
3288
 
3289
- var ITERATOR$4 = wellKnownSymbol$4('iterator');
3289
+ var ITERATOR$4 = wellKnownSymbol$6('iterator');
3290
3290
  var ArrayPrototype = Array.prototype;
3291
3291
 
3292
3292
  // check on default Array iterator
@@ -3294,18 +3294,18 @@ var isArrayIteratorMethod$1 = function (it) {
3294
3294
  return it !== undefined && (Iterators$1.Array === it || ArrayPrototype[ITERATOR$4] === it);
3295
3295
  };
3296
3296
 
3297
- var classof = classof$5;
3297
+ var classof$1 = classof$6;
3298
3298
  var getMethod$1 = getMethod$5;
3299
3299
  var isNullOrUndefined = isNullOrUndefined$6;
3300
3300
  var Iterators = iterators;
3301
- var wellKnownSymbol$3 = wellKnownSymbol$h;
3301
+ var wellKnownSymbol$5 = wellKnownSymbol$j;
3302
3302
 
3303
- var ITERATOR$3 = wellKnownSymbol$3('iterator');
3303
+ var ITERATOR$3 = wellKnownSymbol$5('iterator');
3304
3304
 
3305
3305
  var getIteratorMethod$2 = function (it) {
3306
3306
  if (!isNullOrUndefined(it)) return getMethod$1(it, ITERATOR$3)
3307
3307
  || getMethod$1(it, '@@iterator')
3308
- || Iterators[classof(it)];
3308
+ || Iterators[classof$1(it)];
3309
3309
  };
3310
3310
 
3311
3311
  var call$4 = functionCall;
@@ -3314,12 +3314,12 @@ var anObject$6 = anObject$g;
3314
3314
  var tryToString$1 = tryToString$4;
3315
3315
  var getIteratorMethod$1 = getIteratorMethod$2;
3316
3316
 
3317
- var $TypeError$2 = TypeError;
3317
+ var $TypeError$3 = TypeError;
3318
3318
 
3319
3319
  var getIterator$1 = function (argument, usingIterator) {
3320
3320
  var iteratorMethod = arguments.length < 2 ? getIteratorMethod$1(argument) : usingIterator;
3321
3321
  if (aCallable$4(iteratorMethod)) return anObject$6(call$4(iteratorMethod, argument));
3322
- throw new $TypeError$2(tryToString$1(argument) + ' is not iterable');
3322
+ throw new $TypeError$3(tryToString$1(argument) + ' is not iterable');
3323
3323
  };
3324
3324
 
3325
3325
  var call$3 = functionCall;
@@ -3357,7 +3357,7 @@ var getIterator = getIterator$1;
3357
3357
  var getIteratorMethod = getIteratorMethod$2;
3358
3358
  var iteratorClose = iteratorClose$1;
3359
3359
 
3360
- var $TypeError$1 = TypeError;
3360
+ var $TypeError$2 = TypeError;
3361
3361
 
3362
3362
  var Result = function (stopped, result) {
3363
3363
  this.stopped = stopped;
@@ -3393,7 +3393,7 @@ var iterate$4 = function (iterable, unboundFunction, options) {
3393
3393
  iterator = iterable;
3394
3394
  } else {
3395
3395
  iterFn = getIteratorMethod(iterable);
3396
- if (!iterFn) throw new $TypeError$1(tryToString(iterable) + ' is not iterable');
3396
+ if (!iterFn) throw new $TypeError$2(tryToString(iterable) + ' is not iterable');
3397
3397
  // optimisation for array iterators
3398
3398
  if (isArrayIteratorMethod(iterFn)) {
3399
3399
  for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
@@ -3415,9 +3415,9 @@ var iterate$4 = function (iterable, unboundFunction, options) {
3415
3415
  } return new Result(false);
3416
3416
  };
3417
3417
 
3418
- var wellKnownSymbol$2 = wellKnownSymbol$h;
3418
+ var wellKnownSymbol$4 = wellKnownSymbol$j;
3419
3419
 
3420
- var ITERATOR$2 = wellKnownSymbol$2('iterator');
3420
+ var ITERATOR$2 = wellKnownSymbol$4('iterator');
3421
3421
  var SAFE_CLOSING = false;
3422
3422
 
3423
3423
  try {
@@ -3464,7 +3464,7 @@ var promiseStaticsIncorrectIteration = FORCED_PROMISE_CONSTRUCTOR$3 || !checkCor
3464
3464
  NativePromiseConstructor$1.all(iterable).then(undefined, function () { /* empty */ });
3465
3465
  });
3466
3466
 
3467
- var $$7 = _export;
3467
+ var $$8 = _export;
3468
3468
  var call$1 = functionCall;
3469
3469
  var aCallable$3 = aCallable$a;
3470
3470
  var newPromiseCapabilityModule$2 = newPromiseCapability$2;
@@ -3474,7 +3474,7 @@ var PROMISE_STATICS_INCORRECT_ITERATION$1 = promiseStaticsIncorrectIteration;
3474
3474
 
3475
3475
  // `Promise.all` method
3476
3476
  // https://tc39.es/ecma262/#sec-promise.all
3477
- $$7({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION$1 }, {
3477
+ $$8({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION$1 }, {
3478
3478
  all: function all(iterable) {
3479
3479
  var C = this;
3480
3480
  var capability = newPromiseCapabilityModule$2.f(C);
@@ -3503,7 +3503,7 @@ $$7({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION
3503
3503
  }
3504
3504
  });
3505
3505
 
3506
- var $$6 = _export;
3506
+ var $$7 = _export;
3507
3507
  var FORCED_PROMISE_CONSTRUCTOR$2 = promiseConstructorDetection.CONSTRUCTOR;
3508
3508
  var NativePromiseConstructor = promiseNativeConstructor;
3509
3509
  var getBuiltIn$1 = getBuiltIn$7;
@@ -3514,7 +3514,7 @@ var NativePromisePrototype = NativePromiseConstructor && NativePromiseConstructo
3514
3514
 
3515
3515
  // `Promise.prototype.catch` method
3516
3516
  // https://tc39.es/ecma262/#sec-promise.prototype.catch
3517
- $$6({ target: 'Promise', proto: true, forced: FORCED_PROMISE_CONSTRUCTOR$2, real: true }, {
3517
+ $$7({ target: 'Promise', proto: true, forced: FORCED_PROMISE_CONSTRUCTOR$2, real: true }, {
3518
3518
  'catch': function (onRejected) {
3519
3519
  return this.then(undefined, onRejected);
3520
3520
  }
@@ -3528,7 +3528,7 @@ if (isCallable$1(NativePromiseConstructor)) {
3528
3528
  }
3529
3529
  }
3530
3530
 
3531
- var $$5 = _export;
3531
+ var $$6 = _export;
3532
3532
  var call = functionCall;
3533
3533
  var aCallable$2 = aCallable$a;
3534
3534
  var newPromiseCapabilityModule$1 = newPromiseCapability$2;
@@ -3538,7 +3538,7 @@ var PROMISE_STATICS_INCORRECT_ITERATION = promiseStaticsIncorrectIteration;
3538
3538
 
3539
3539
  // `Promise.race` method
3540
3540
  // https://tc39.es/ecma262/#sec-promise.race
3541
- $$5({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION }, {
3541
+ $$6({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION }, {
3542
3542
  race: function race(iterable) {
3543
3543
  var C = this;
3544
3544
  var capability = newPromiseCapabilityModule$1.f(C);
@@ -3554,13 +3554,13 @@ $$5({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION
3554
3554
  }
3555
3555
  });
3556
3556
 
3557
- var $$4 = _export;
3557
+ var $$5 = _export;
3558
3558
  var newPromiseCapabilityModule = newPromiseCapability$2;
3559
3559
  var FORCED_PROMISE_CONSTRUCTOR$1 = promiseConstructorDetection.CONSTRUCTOR;
3560
3560
 
3561
3561
  // `Promise.reject` method
3562
3562
  // https://tc39.es/ecma262/#sec-promise.reject
3563
- $$4({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR$1 }, {
3563
+ $$5({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR$1 }, {
3564
3564
  reject: function reject(r) {
3565
3565
  var capability = newPromiseCapabilityModule.f(this);
3566
3566
  var capabilityReject = capability.reject;
@@ -3570,19 +3570,19 @@ $$4({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR$1 }, {
3570
3570
  });
3571
3571
 
3572
3572
  var anObject$3 = anObject$g;
3573
- var isObject = isObject$a;
3573
+ var isObject$1 = isObject$b;
3574
3574
  var newPromiseCapability = newPromiseCapability$2;
3575
3575
 
3576
3576
  var promiseResolve$1 = function (C, x) {
3577
3577
  anObject$3(C);
3578
- if (isObject(x) && x.constructor === C) return x;
3578
+ if (isObject$1(x) && x.constructor === C) return x;
3579
3579
  var promiseCapability = newPromiseCapability.f(C);
3580
3580
  var resolve = promiseCapability.resolve;
3581
3581
  resolve(x);
3582
3582
  return promiseCapability.promise;
3583
3583
  };
3584
3584
 
3585
- var $$3 = _export;
3585
+ var $$4 = _export;
3586
3586
  var getBuiltIn = getBuiltIn$7;
3587
3587
  var FORCED_PROMISE_CONSTRUCTOR = promiseConstructorDetection.CONSTRUCTOR;
3588
3588
  var promiseResolve = promiseResolve$1;
@@ -3591,12 +3591,82 @@ getBuiltIn('Promise');
3591
3591
 
3592
3592
  // `Promise.resolve` method
3593
3593
  // https://tc39.es/ecma262/#sec-promise.resolve
3594
- $$3({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR }, {
3594
+ $$4({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR }, {
3595
3595
  resolve: function resolve(x) {
3596
3596
  return promiseResolve(this, x);
3597
3597
  }
3598
3598
  });
3599
3599
 
3600
+ var isObject = isObject$b;
3601
+ var classof = classofRaw$2;
3602
+ var wellKnownSymbol$3 = wellKnownSymbol$j;
3603
+
3604
+ var MATCH$1 = wellKnownSymbol$3('match');
3605
+
3606
+ // `IsRegExp` abstract operation
3607
+ // https://tc39.es/ecma262/#sec-isregexp
3608
+ var isRegexp = function (it) {
3609
+ var isRegExp;
3610
+ return isObject(it) && ((isRegExp = it[MATCH$1]) !== undefined ? !!isRegExp : classof(it) === 'RegExp');
3611
+ };
3612
+
3613
+ var isRegExp = isRegexp;
3614
+
3615
+ var $TypeError$1 = TypeError;
3616
+
3617
+ var notARegexp = function (it) {
3618
+ if (isRegExp(it)) {
3619
+ throw new $TypeError$1("The method doesn't accept regular expressions");
3620
+ } return it;
3621
+ };
3622
+
3623
+ var wellKnownSymbol$2 = wellKnownSymbol$j;
3624
+
3625
+ var MATCH = wellKnownSymbol$2('match');
3626
+
3627
+ var correctIsRegexpLogic = function (METHOD_NAME) {
3628
+ var regexp = /./;
3629
+ try {
3630
+ '/./'[METHOD_NAME](regexp);
3631
+ } catch (error1) {
3632
+ try {
3633
+ regexp[MATCH] = false;
3634
+ return '/./'[METHOD_NAME](regexp);
3635
+ } catch (error2) { /* empty */ }
3636
+ } return false;
3637
+ };
3638
+
3639
+ var $$3 = _export;
3640
+ var uncurryThis = functionUncurryThisClause;
3641
+ var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
3642
+ var toLength = toLength$3;
3643
+ var toString = toString$5;
3644
+ var notARegExp = notARegexp;
3645
+ var requireObjectCoercible = requireObjectCoercible$7;
3646
+ var correctIsRegExpLogic = correctIsRegexpLogic;
3647
+
3648
+ var stringSlice = uncurryThis(''.slice);
3649
+ var min = Math.min;
3650
+
3651
+ var CORRECT_IS_REGEXP_LOGIC = correctIsRegExpLogic('startsWith');
3652
+ // https://github.com/zloirock/core-js/pull/702
3653
+ var MDN_POLYFILL_BUG = !CORRECT_IS_REGEXP_LOGIC && !!function () {
3654
+ var descriptor = getOwnPropertyDescriptor(String.prototype, 'startsWith');
3655
+ return descriptor && !descriptor.writable;
3656
+ }();
3657
+
3658
+ // `String.prototype.startsWith` method
3659
+ // https://tc39.es/ecma262/#sec-string.prototype.startswith
3660
+ $$3({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGEXP_LOGIC }, {
3661
+ startsWith: function startsWith(searchString /* , position = 0 */) {
3662
+ var that = toString(requireObjectCoercible(this));
3663
+ notARegExp(searchString);
3664
+ var index = toLength(min(arguments.length > 1 ? arguments[1] : undefined, that.length));
3665
+ var search = toString(searchString);
3666
+ return stringSlice(that, index, index + search.length) === search;
3667
+ }
3668
+ });
3669
+
3600
3670
  var DESCRIPTORS$1 = descriptors;
3601
3671
  var definePropertyModule = objectDefineProperty;
3602
3672
  var createPropertyDescriptor = createPropertyDescriptor$4;
@@ -3616,7 +3686,7 @@ var defineBuiltInAccessor = defineBuiltInAccessor$2;
3616
3686
  var createProperty = createProperty$1;
3617
3687
  var fails = fails$j;
3618
3688
  var hasOwn = hasOwnProperty_1;
3619
- var wellKnownSymbol$1 = wellKnownSymbol$h;
3689
+ var wellKnownSymbol$1 = wellKnownSymbol$j;
3620
3690
  var IteratorPrototype = iteratorsCore.IteratorPrototype;
3621
3691
  var DESCRIPTORS = descriptors;
3622
3692
 
@@ -3749,7 +3819,7 @@ var DOMTokenListPrototype = domTokenListPrototype;
3749
3819
  var ArrayIteratorMethods = es_array_iterator;
3750
3820
  var createNonEnumerableProperty = createNonEnumerableProperty$5;
3751
3821
  var setToStringTag = setToStringTag$4;
3752
- var wellKnownSymbol = wellKnownSymbol$h;
3822
+ var wellKnownSymbol = wellKnownSymbol$j;
3753
3823
 
3754
3824
  var ITERATOR = wellKnownSymbol('iterator');
3755
3825
  var ArrayValues = ArrayIteratorMethods.values;
@@ -3832,7 +3902,7 @@ const handleAuth = (operation_1, _a) => __awaiter(void 0, [operation_1, _a], voi
3832
3902
  headers
3833
3903
  }) {
3834
3904
  const currentUsertoken = yield getUserToken();
3835
- const isAPIKey = (currentUsertoken === null || currentUsertoken === void 0 ? void 0 : currentUsertoken.length) === 36;
3905
+ const isAPIKey = (currentUsertoken === null || currentUsertoken === void 0 ? void 0 : currentUsertoken.length) === 36 || (currentUsertoken === null || currentUsertoken === void 0 ? void 0 : currentUsertoken.startsWith('bcak'));
3836
3906
  const partner = getPartner();
3837
3907
  if (headers === undefined) {
3838
3908
  headers = {};
@@ -3890,9 +3960,9 @@ const redirectToLogin = () => {
3890
3960
  };
3891
3961
 
3892
3962
  const {
3893
- networkInterface: uri$5
3963
+ networkInterface: uri$7
3894
3964
  } = appConfig.dconfig;
3895
- const authLink$3 = setContext((operation_1, _a) => __awaiter(void 0, [operation_1, _a], void 0, function* (operation, {
3965
+ const authLink$4 = setContext((operation_1, _a) => __awaiter(void 0, [operation_1, _a], void 0, function* (operation, {
3896
3966
  headers
3897
3967
  }) {
3898
3968
  const currentUsertoken = yield getUserToken();
@@ -3916,8 +3986,8 @@ const authLink$3 = setContext((operation_1, _a) => __awaiter(void 0, [operation_
3916
3986
  };
3917
3987
  return resultHeaders;
3918
3988
  }));
3919
- const cache$5 = new InMemoryCache();
3920
- const errorLink$4 = onError(({
3989
+ const cache$6 = new InMemoryCache();
3990
+ const errorLink$6 = onError(({
3921
3991
  networkError
3922
3992
  }) => {
3923
3993
  if (networkError && networkError.statusCode === 401) {
@@ -3936,10 +4006,10 @@ const errorLink$4 = onError(({
3936
4006
  }
3937
4007
  });
3938
4008
  /* eslint-disable no-process-env */
3939
- const isDevEnv$5 = process.env['NODE_ENV'] !== 'production';
4009
+ const isDevEnv$7 = process.env['NODE_ENV'] !== 'production';
3940
4010
  /* eslint-enable no-process-env */
3941
4011
  const link_dconfig = new RestLink({
3942
- uri: uri$5 || 'https://api.bcrumbs.net',
4012
+ uri: uri$7 || 'https://api.bcrumbs.net',
3943
4013
  bodySerializers: {
3944
4014
  fileEncode: (data, headers) => {
3945
4015
  const formData = new FormData();
@@ -3953,9 +4023,9 @@ const link_dconfig = new RestLink({
3953
4023
  }
3954
4024
  });
3955
4025
  const dconfigClient = new ApolloClient({
3956
- link: from([authLink$3, errorLink$4, link_dconfig]),
3957
- cache: cache$5,
3958
- connectToDevTools: isDevEnv$5,
4026
+ link: from([authLink$4, errorLink$6, link_dconfig]),
4027
+ cache: cache$6,
4028
+ connectToDevTools: isDevEnv$7,
3959
4029
  queryDeduplication: true
3960
4030
  });
3961
4031
  const formSerializer = (data, headers) => {
@@ -3973,13 +4043,13 @@ const formSerializer = (data, headers) => {
3973
4043
  };
3974
4044
  };
3975
4045
  const link_dconfig_token = new RestLink({
3976
- uri: uri$5 || 'https://api.bcrumbs.net',
4046
+ uri: uri$7 || 'https://api.bcrumbs.net',
3977
4047
  defaultSerializer: formSerializer
3978
4048
  });
3979
4049
  const tokenClient = new ApolloClient({
3980
- link: from([link_dconfig_token, errorLink$4]),
3981
- cache: cache$5,
3982
- connectToDevTools: isDevEnv$5
4050
+ link: from([link_dconfig_token, errorLink$6]),
4051
+ cache: cache$6,
4052
+ connectToDevTools: isDevEnv$7
3983
4053
  });
3984
4054
 
3985
4055
  let _$8 = t => t,
@@ -4082,23 +4152,23 @@ const useModelChildrenQuery = (parentId, templateId) => useQuery(viewTypeChildre
4082
4152
  });
4083
4153
 
4084
4154
  const {
4085
- networkInterface: uri$4
4155
+ networkInterface: uri$6
4086
4156
  } = appConfig.dquery;
4087
- const cache$4 = new InMemoryCache();
4088
- const errorLink$3 = onError(handleHandler);
4157
+ const cache$5 = new InMemoryCache();
4158
+ const errorLink$5 = onError(handleHandler);
4089
4159
  /* eslint-disable no-process-env */
4090
- const isDevEnv$4 = process.env['NODE_ENV'] !== 'production';
4160
+ const isDevEnv$6 = process.env['NODE_ENV'] !== 'production';
4091
4161
  /* eslint-enable no-process-env */
4092
4162
  const link_dquery$1 = createHttpLink({
4093
- uri: uri$4,
4163
+ uri: uri$6,
4094
4164
  fetchOptions: {
4095
4165
  mode: 'cors'
4096
4166
  }
4097
4167
  });
4098
4168
  const dqueryClient = new ApolloClient({
4099
- link: from([errorLink$3, link_dquery$1]),
4100
- cache: cache$4,
4101
- connectToDevTools: isDevEnv$4,
4169
+ link: from([errorLink$5, link_dquery$1]),
4170
+ cache: cache$5,
4171
+ connectToDevTools: isDevEnv$6,
4102
4172
  queryDeduplication: true
4103
4173
  });
4104
4174
 
@@ -4589,6 +4659,28 @@ const useValidateCompanyName = name => useLazyQuery(VALIDATE_COMPANY_NAME, {
4589
4659
  }
4590
4660
  });
4591
4661
 
4662
+ const {
4663
+ networkInterface: uri$5
4664
+ } = appConfig.auth;
4665
+ /* eslint-disable no-process-env */
4666
+ const isDevEnv$5 = process.env['NODE_ENV'] !== 'production';
4667
+ /* eslint-enable no-process-env */
4668
+ const errorLink$4 = onError(() => {
4669
+ // Intentionally no global redirect — used for unauthenticated signup
4670
+ });
4671
+ const link_auth_rest = new RestLink({
4672
+ uri: uri$5 || '',
4673
+ headers: {
4674
+ Accept: 'application/json'
4675
+ }
4676
+ });
4677
+ const authRestClient = new ApolloClient({
4678
+ link: from([errorLink$4, link_auth_rest]),
4679
+ cache: new InMemoryCache(),
4680
+ connectToDevTools: isDevEnv$5,
4681
+ queryDeduplication: true
4682
+ });
4683
+
4592
4684
  let _$4 = t => t,
4593
4685
  _t$4,
4594
4686
  _t2$4,
@@ -4604,7 +4696,7 @@ const login = gql(_t$4 || (_t$4 = _$4`
4604
4696
  login(body: $body)
4605
4697
  @rest(
4606
4698
  type: "LoginType"
4607
- path: "/token"
4699
+ path: "/login"
4608
4700
  method: "POST"
4609
4701
  bodyKey: "body"
4610
4702
  ) {
@@ -4616,7 +4708,7 @@ const login = gql(_t$4 || (_t$4 = _$4`
4616
4708
  `));
4617
4709
  const loginOptions = {
4618
4710
  options: {
4619
- client: tokenClient
4711
+ client: authRestClient
4620
4712
  },
4621
4713
  props: ({
4622
4714
  ownProps,
@@ -4649,7 +4741,7 @@ const register = gql(_t2$4 || (_t2$4 = _$4`
4649
4741
  register(body: $body)
4650
4742
  @rest(
4651
4743
  type: "RegisterType"
4652
- path: "/Membership/bcRegister"
4744
+ path: "/register"
4653
4745
  method: "POST"
4654
4746
  bodyKey: "body"
4655
4747
  ) {
@@ -4660,18 +4752,18 @@ const register = gql(_t2$4 || (_t2$4 = _$4`
4660
4752
  `));
4661
4753
  const registerOptions = {
4662
4754
  options: {
4663
- client: dconfigClient
4755
+ client: authRestClient
4664
4756
  },
4665
4757
  props: ({
4666
4758
  ownProps,
4667
4759
  mutate
4668
4760
  }) => ({
4669
- register(FirstName, LastName, UserName, Email, Password, ConfirmPassword) {
4761
+ register(FirstName, LastName, UserName, Email, Password, ConfirmPassword, clientDistinctId) {
4670
4762
  return __awaiter(this, void 0, void 0, function* () {
4671
4763
  try {
4672
4764
  const payload = {
4673
4765
  variables: {
4674
- body: {
4766
+ body: Object.assign({
4675
4767
  FirstName,
4676
4768
  LastName,
4677
4769
  UserName,
@@ -4679,7 +4771,9 @@ const registerOptions = {
4679
4771
  Password,
4680
4772
  ConfirmPassword,
4681
4773
  RoleName: 'Powered Instances Owners'
4682
- }
4774
+ }, clientDistinctId ? {
4775
+ clientDistinctId
4776
+ } : {})
4683
4777
  }
4684
4778
  };
4685
4779
  const result = yield mutate(payload);
@@ -5420,19 +5514,19 @@ const useUpdateContentsOrderingMutation = () => useMutation(updateContentsOrderi
5420
5514
  });
5421
5515
 
5422
5516
  const {
5423
- networkInterface: uri$3
5517
+ networkInterface: uri$4
5424
5518
  } = appConfig.showcase;
5425
- const cache$3 = new InMemoryCache();
5519
+ const cache$4 = new InMemoryCache();
5426
5520
  /* eslint-disable no-process-env */
5427
- const isDevEnv$3 = process.env['NODE_ENV'] !== 'production';
5521
+ const isDevEnv$4 = process.env['NODE_ENV'] !== 'production';
5428
5522
  /* eslint-enable no-process-env */
5429
5523
  const link$1 = new RestLink({
5430
- uri: uri$3 || "https://api.bcrumbs.net"
5524
+ uri: uri$4 || "https://api.bcrumbs.net"
5431
5525
  });
5432
5526
  const showcaseRendererClient = new ApolloClient({
5433
5527
  link: link$1,
5434
- cache: cache$3,
5435
- connectToDevTools: isDevEnv$3,
5528
+ cache: cache$4,
5529
+ connectToDevTools: isDevEnv$4,
5436
5530
  queryDeduplication: true
5437
5531
  });
5438
5532
 
@@ -87472,22 +87566,22 @@ const showcaseClient = new ApolloClient({
87472
87566
  });
87473
87567
 
87474
87568
  const {
87475
- networkInterface: uri$2
87569
+ networkInterface: uri$3
87476
87570
  } = appConfig.core;
87477
- const authLink$2 = setContext(handleAuth);
87478
- const cache$2 = new InMemoryCache();
87479
- const errorLink$2 = onError(handleHandler);
87571
+ const authLink$3 = setContext(handleAuth);
87572
+ const cache$3 = new InMemoryCache();
87573
+ const errorLink$3 = onError(handleHandler);
87480
87574
  /* eslint-disable no-process-env */
87481
- const isDevEnv$2 = process.env['NODE_ENV'] !== 'production';
87575
+ const isDevEnv$3 = process.env['NODE_ENV'] !== 'production';
87482
87576
  /* eslint-enable no-process-env */
87483
- const httpLink = createHttpLink({
87484
- uri: `${uri$2}/gq`,
87577
+ const httpLink$1 = createHttpLink({
87578
+ uri: `${uri$3}/gq`,
87485
87579
  fetchOptions: {
87486
87580
  mode: 'cors'
87487
87581
  }
87488
87582
  });
87489
- const batchLink = new BatchHttpLink({
87490
- uri: `${uri$2}/gq`,
87583
+ const batchLink$1 = new BatchHttpLink({
87584
+ uri: `${uri$3}/gq`,
87491
87585
  batchMax: 5,
87492
87586
  // Max number of operations in a single batch
87493
87587
  batchInterval: 200,
@@ -87497,14 +87591,36 @@ const batchLink = new BatchHttpLink({
87497
87591
  }
87498
87592
  });
87499
87593
  // use batch link for queries and http link for mutations
87500
- const splitLink = split$1(({
87594
+ const splitLink$1 = split$1(({
87501
87595
  query
87502
87596
  }) => {
87503
87597
  const definition = getMainDefinition(query);
87504
87598
  return definition.kind === 'OperationDefinition' && definition.operation === 'query';
87505
- }, batchLink, httpLink);
87599
+ }, batchLink$1, httpLink$1);
87506
87600
  const coreClient = new ApolloClient({
87507
- link: from([authLink$2, errorLink$2, splitLink]),
87601
+ link: from([authLink$3, errorLink$3, splitLink$1]),
87602
+ cache: cache$3,
87603
+ connectToDevTools: isDevEnv$3,
87604
+ queryDeduplication: true
87605
+ });
87606
+
87607
+ const {
87608
+ networkInterface: uri$2
87609
+ } = appConfig.bot;
87610
+ const authLink$2 = setContext(handleAuth);
87611
+ const cache$2 = new InMemoryCache();
87612
+ const errorLink$2 = onError(handleHandler);
87613
+ /* eslint-disable no-process-env */
87614
+ const isDevEnv$2 = process.env['NODE_ENV'] !== 'production';
87615
+ /* eslint-enable no-process-env */
87616
+ const link_dquery = createHttpLink({
87617
+ uri: `${uri$2}/gq`,
87618
+ fetchOptions: {
87619
+ mode: 'cors'
87620
+ }
87621
+ });
87622
+ const botClient = new ApolloClient({
87623
+ link: from([authLink$2, errorLink$2, link_dquery]),
87508
87624
  cache: cache$2,
87509
87625
  connectToDevTools: isDevEnv$2,
87510
87626
  queryDeduplication: true
@@ -87512,21 +87628,21 @@ const coreClient = new ApolloClient({
87512
87628
 
87513
87629
  const {
87514
87630
  networkInterface: uri$1
87515
- } = appConfig.bot;
87631
+ } = appConfig.auth;
87516
87632
  const authLink$1 = setContext(handleAuth);
87517
87633
  const cache$1 = new InMemoryCache();
87518
87634
  const errorLink$1 = onError(handleHandler);
87519
87635
  /* eslint-disable no-process-env */
87520
87636
  const isDevEnv$1 = process.env['NODE_ENV'] !== 'production';
87521
87637
  /* eslint-enable no-process-env */
87522
- const link_dquery = createHttpLink({
87638
+ const link_auth = createHttpLink({
87523
87639
  uri: `${uri$1}/gq`,
87524
87640
  fetchOptions: {
87525
87641
  mode: 'cors'
87526
87642
  }
87527
87643
  });
87528
- const botClient = new ApolloClient({
87529
- link: from([authLink$1, errorLink$1, link_dquery]),
87644
+ const authClient = new ApolloClient({
87645
+ link: from([authLink$1, errorLink$1, link_auth]),
87530
87646
  cache: cache$1,
87531
87647
  connectToDevTools: isDevEnv$1,
87532
87648
  queryDeduplication: true
@@ -87534,21 +87650,35 @@ const botClient = new ApolloClient({
87534
87650
 
87535
87651
  const {
87536
87652
  networkInterface: uri
87537
- } = appConfig.auth;
87653
+ } = appConfig.billing;
87538
87654
  const authLink = setContext(handleAuth);
87539
87655
  const cache = new InMemoryCache();
87540
87656
  const errorLink = onError(handleHandler);
87541
87657
  /* eslint-disable no-process-env */
87542
87658
  const isDevEnv = process.env['NODE_ENV'] !== 'production';
87543
87659
  /* eslint-enable no-process-env */
87544
- const link_auth = createHttpLink({
87660
+ const httpLink = createHttpLink({
87545
87661
  uri: `${uri}/gq`,
87546
87662
  fetchOptions: {
87547
87663
  mode: 'cors'
87548
87664
  }
87549
87665
  });
87550
- const authClient = new ApolloClient({
87551
- link: from([authLink, errorLink, link_auth]),
87666
+ const batchLink = new BatchHttpLink({
87667
+ uri: `${uri}/gq`,
87668
+ batchMax: 5,
87669
+ batchInterval: 200,
87670
+ fetchOptions: {
87671
+ mode: 'cors'
87672
+ }
87673
+ });
87674
+ const splitLink = split$1(({
87675
+ query
87676
+ }) => {
87677
+ const definition = getMainDefinition(query);
87678
+ return definition.kind === 'OperationDefinition' && definition.operation === 'query';
87679
+ }, batchLink, httpLink);
87680
+ const billingClient = new ApolloClient({
87681
+ link: from([authLink, errorLink, splitLink]),
87552
87682
  cache,
87553
87683
  connectToDevTools: isDevEnv,
87554
87684
  queryDeduplication: true
@@ -87608,4 +87738,4 @@ var ModelFieldsTypes;
87608
87738
  ModelFieldsTypes["JSON"] = "JSON";
87609
87739
  })(ModelFieldsTypes || (ModelFieldsTypes = {}));
87610
87740
 
87611
- export { CreateCheckoutSessionUri, CreatePortalSessionUri, ModelFieldsTypes, ModelUtilities, VALIDATE_COMPANY_NAME, addDomain, addDomainOptions, apiBackend, apiV2Backend, appConfig, authClient, botClient, clearAuthData, companyUsersQuery, contentInstancesQuery, coreClient, createCompany, createContentInstanceMutation, createContentInstanceMutationOptions, createContentMutation, createContentMutationOptions, createFileMutation, createFolderMutation, dconfigClient, deleteFileMutation, deleteFolderMutation, dqueryClient, filesQuery, foldersTreeQuery, forgetPassword, forgetPasswordOptions, frontend, getErrorHandler, getPartner, getUserContext, getUserToken, handleAuth, handleHandler, inviteUser, inviteUserOptions, login, loginOptions, menuConfigurationQuery, portalThemeConfig, querySectionThumb, queryUsage, redirectToLogin, registeUsage, register, registerOptions, removeContentMutation, removeDomain, removeDomainOptions, removeUserFromCompany, removeUserFromCompanyOptions, resetPassword, resetPasswordOptions, setErrorHandler, showcaseClient, showcaseConfig, showcaseConfigById, showcaseConfigurationQuery, showcaseConfigurationQueryOptions, showcaseContentsQuery, showcaseContext, showcaseDomainsQuery, showcasePagesQuery, showcaseSectionQuery, showcaseSectionsQuery, showcaseTemplateSectionsThumbsMap, showcaseTemplatesQuery, showcaseTemplatesQueryOptions, subscriptionConfigurationQuery, subscriptionConfigurationQueryOptions, tokenClient, updateCompany, updateCompanyOptions, updateContentInstanceFieldValuesMutation, updateContentInstanceFieldValuesMutationOptions, updateContentsOrderingMutation, updateContentsOrderingMutationOptions, updateTemplateSectionThumb, updateUserPassword, updateUserPasswordOptions, updateUserProfile, updateUserProfileOptions, useContentInstancesQuery, useCreateCompanyMutation, useCreateContentInstanceMutation, useCreateContentMutation, useCreateFileMutation, useCreateFolderMutation, useDeleteContentMutation, useDeleteFileMutation, useDeleteFolderMutation, useDomainsQuery, useFilesQuery, useFoldersTreeQuery, useMenuConfigurationQuery, useModelChildrenQuery, useModelsQuery, usePortalThemeConfig, useQuerySectionThumb, useQueryUsage, useRegisterUsage, useShowcaseConfig, useShowcaseConfigById, useShowcaseConfigurationQuery, useShowcaseContentsQuery, useShowcaseContext, useShowcasePagesQuery, useShowcaseSectionQuery, useShowcaseSectionsQuery, useShowcaseTemplate, useShowcaseTemplateOptions, useShowcaseTemplateProgress, useShowcaseTemplateProgressQuery, useTemplateSectionsThumbsMap, useUpdateContentInstanceFieldValuesMutation, useUpdateContentsOrderingMutation, useUserCompaniesQuery, useValidateCompanyName, userCompaniesQuery, userCompaniesQueryOptions, userInfoQuery, userInfoQueryOptions, viewTypeChildrenQuery, viewTypeChildrenQueryOptions, viewTypesQuery, viewTypesQueryOptions };
87741
+ export { CreateCheckoutSessionUri, CreatePortalSessionUri, ModelFieldsTypes, ModelUtilities, VALIDATE_COMPANY_NAME, addDomain, addDomainOptions, apiBackend, apiV2Backend, appConfig, authClient, authRestClient, billingClient, botClient, clearAuthData, companyUsersQuery, contentInstancesQuery, coreClient, createCompany, createContentInstanceMutation, createContentInstanceMutationOptions, createContentMutation, createContentMutationOptions, createFileMutation, createFolderMutation, dconfigClient, deleteFileMutation, deleteFolderMutation, dqueryClient, filesQuery, foldersTreeQuery, forgetPassword, forgetPasswordOptions, frontend, getErrorHandler, getPartner, getUserContext, getUserToken, handleAuth, handleHandler, inviteUser, inviteUserOptions, login, loginOptions, menuConfigurationQuery, portalThemeConfig, querySectionThumb, queryUsage, redirectToLogin, registeUsage, register, registerOptions, removeContentMutation, removeDomain, removeDomainOptions, removeUserFromCompany, removeUserFromCompanyOptions, resetPassword, resetPasswordOptions, setErrorHandler, showcaseClient, showcaseConfig, showcaseConfigById, showcaseConfigurationQuery, showcaseConfigurationQueryOptions, showcaseContentsQuery, showcaseContext, showcaseDomainsQuery, showcasePagesQuery, showcaseSectionQuery, showcaseSectionsQuery, showcaseTemplateSectionsThumbsMap, showcaseTemplatesQuery, showcaseTemplatesQueryOptions, subscriptionConfigurationQuery, subscriptionConfigurationQueryOptions, tokenClient, updateCompany, updateCompanyOptions, updateContentInstanceFieldValuesMutation, updateContentInstanceFieldValuesMutationOptions, updateContentsOrderingMutation, updateContentsOrderingMutationOptions, updateTemplateSectionThumb, updateUserPassword, updateUserPasswordOptions, updateUserProfile, updateUserProfileOptions, useContentInstancesQuery, useCreateCompanyMutation, useCreateContentInstanceMutation, useCreateContentMutation, useCreateFileMutation, useCreateFolderMutation, useDeleteContentMutation, useDeleteFileMutation, useDeleteFolderMutation, useDomainsQuery, useFilesQuery, useFoldersTreeQuery, useMenuConfigurationQuery, useModelChildrenQuery, useModelsQuery, usePortalThemeConfig, useQuerySectionThumb, useQueryUsage, useRegisterUsage, useShowcaseConfig, useShowcaseConfigById, useShowcaseConfigurationQuery, useShowcaseContentsQuery, useShowcaseContext, useShowcasePagesQuery, useShowcaseSectionQuery, useShowcaseSectionsQuery, useShowcaseTemplate, useShowcaseTemplateOptions, useShowcaseTemplateProgress, useShowcaseTemplateProgressQuery, useTemplateSectionsThumbsMap, useUpdateContentInstanceFieldValuesMutation, useUpdateContentsOrderingMutation, useUserCompaniesQuery, useValidateCompanyName, userCompaniesQuery, userCompaniesQueryOptions, userInfoQuery, userInfoQueryOptions, viewTypeChildrenQuery, viewTypeChildrenQueryOptions, viewTypesQuery, viewTypesQueryOptions };