@shipengine/alchemy 6.0.52 → 6.0.54

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.
Files changed (3) hide show
  1. package/index.js +922 -1012
  2. package/index.mjs +922 -1013
  3. package/package.json +1 -1
package/index.mjs CHANGED
@@ -2266,7 +2266,7 @@ var syncFallback = function syncFallback(create) {
2266
2266
  var useInsertionEffect = React['useInsertion' + 'Effect'] ? React['useInsertion' + 'Effect'] : false;
2267
2267
  var useInsertionEffectAlwaysWithSyncFallback = useInsertionEffect || syncFallback;
2268
2268
 
2269
- var hasOwnProperty$a = {}.hasOwnProperty;
2269
+ var hasOwnProperty$b = {}.hasOwnProperty;
2270
2270
 
2271
2271
  var EmotionCacheContext = /* #__PURE__ */createContext( // we're doing this to avoid preconstruct's dead code elimination in this one case
2272
2272
  // because this module is primarily intended for the browser and node
@@ -2353,7 +2353,7 @@ var createEmotionProps = function createEmotionProps(type, props) {
2353
2353
  var newProps = {};
2354
2354
 
2355
2355
  for (var key in props) {
2356
- if (hasOwnProperty$a.call(props, key)) {
2356
+ if (hasOwnProperty$b.call(props, key)) {
2357
2357
  newProps[key] = props[key];
2358
2358
  }
2359
2359
  }
@@ -2414,7 +2414,7 @@ var Emotion = /* #__PURE__ */withEmotionCache(function (props, cache, ref) {
2414
2414
  var newProps = {};
2415
2415
 
2416
2416
  for (var key in props) {
2417
- if (hasOwnProperty$a.call(props, key) && key !== 'css' && key !== typePropName && (process.env.NODE_ENV === 'production' || key !== labelPropName)) {
2417
+ if (hasOwnProperty$b.call(props, key) && key !== 'css' && key !== typePropName && (process.env.NODE_ENV === 'production' || key !== labelPropName)) {
2418
2418
  newProps[key] = props[key];
2419
2419
  }
2420
2420
  }
@@ -2433,7 +2433,7 @@ if (process.env.NODE_ENV !== 'production') {
2433
2433
  }
2434
2434
 
2435
2435
  function jsx(type, props, key) {
2436
- if (!hasOwnProperty$a.call(props, 'css')) {
2436
+ if (!hasOwnProperty$b.call(props, 'css')) {
2437
2437
  return jsx$1(type, props, key);
2438
2438
  }
2439
2439
 
@@ -3413,20 +3413,12 @@ var _baseConvert = baseConvert$1;
3413
3413
  * // => true
3414
3414
  */
3415
3415
 
3416
- var identity_1;
3417
- var hasRequiredIdentity;
3418
-
3419
- function requireIdentity () {
3420
- if (hasRequiredIdentity) return identity_1;
3421
- hasRequiredIdentity = 1;
3422
- function identity(value) {
3423
- return value;
3424
- }
3425
-
3426
- identity_1 = identity;
3427
- return identity_1;
3416
+ function identity$3(value) {
3417
+ return value;
3428
3418
  }
3429
3419
 
3420
+ var identity_1 = identity$3;
3421
+
3430
3422
  /** Detect free variable `global` from Node.js. */
3431
3423
 
3432
3424
  var freeGlobal$1 = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal;
@@ -3439,31 +3431,31 @@ var freeGlobal = _freeGlobal;
3439
3431
  var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
3440
3432
 
3441
3433
  /** Used as a reference to the global object. */
3442
- var root$b = freeGlobal || freeSelf || Function('return this')();
3434
+ var root$c = freeGlobal || freeSelf || Function('return this')();
3443
3435
 
3444
- var _root = root$b;
3436
+ var _root = root$c;
3445
3437
 
3446
- var root$a = _root;
3438
+ var root$b = _root;
3447
3439
 
3448
3440
  /** Built-in value references. */
3449
- var Symbol$7 = root$a.Symbol;
3441
+ var Symbol$7 = root$b.Symbol;
3450
3442
 
3451
3443
  var _Symbol = Symbol$7;
3452
3444
 
3453
3445
  var Symbol$6 = _Symbol;
3454
3446
 
3455
3447
  /** Used for built-in method references. */
3456
- var objectProto$c = Object.prototype;
3448
+ var objectProto$d = Object.prototype;
3457
3449
 
3458
3450
  /** Used to check objects for own properties. */
3459
- var hasOwnProperty$9 = objectProto$c.hasOwnProperty;
3451
+ var hasOwnProperty$a = objectProto$d.hasOwnProperty;
3460
3452
 
3461
3453
  /**
3462
3454
  * Used to resolve the
3463
3455
  * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
3464
3456
  * of values.
3465
3457
  */
3466
- var nativeObjectToString$1 = objectProto$c.toString;
3458
+ var nativeObjectToString$1 = objectProto$d.toString;
3467
3459
 
3468
3460
  /** Built-in value references. */
3469
3461
  var symToStringTag$1 = Symbol$6 ? Symbol$6.toStringTag : undefined;
@@ -3476,7 +3468,7 @@ var symToStringTag$1 = Symbol$6 ? Symbol$6.toStringTag : undefined;
3476
3468
  * @returns {string} Returns the raw `toStringTag`.
3477
3469
  */
3478
3470
  function getRawTag$1(value) {
3479
- var isOwn = hasOwnProperty$9.call(value, symToStringTag$1),
3471
+ var isOwn = hasOwnProperty$a.call(value, symToStringTag$1),
3480
3472
  tag = value[symToStringTag$1];
3481
3473
 
3482
3474
  try {
@@ -3499,14 +3491,14 @@ var _getRawTag = getRawTag$1;
3499
3491
 
3500
3492
  /** Used for built-in method references. */
3501
3493
 
3502
- var objectProto$b = Object.prototype;
3494
+ var objectProto$c = Object.prototype;
3503
3495
 
3504
3496
  /**
3505
3497
  * Used to resolve the
3506
3498
  * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
3507
3499
  * of values.
3508
3500
  */
3509
- var nativeObjectToString = objectProto$b.toString;
3501
+ var nativeObjectToString = objectProto$c.toString;
3510
3502
 
3511
3503
  /**
3512
3504
  * Converts `value` to a string using `Object.prototype.toString`.
@@ -3576,23 +3568,15 @@ var _baseGetTag = baseGetTag$5;
3576
3568
  * // => false
3577
3569
  */
3578
3570
 
3579
- var isObject_1;
3580
- var hasRequiredIsObject;
3581
-
3582
- function requireIsObject () {
3583
- if (hasRequiredIsObject) return isObject_1;
3584
- hasRequiredIsObject = 1;
3585
- function isObject(value) {
3586
- var type = typeof value;
3587
- return value != null && (type == 'object' || type == 'function');
3588
- }
3589
-
3590
- isObject_1 = isObject;
3591
- return isObject_1;
3571
+ function isObject$8(value) {
3572
+ var type = typeof value;
3573
+ return value != null && (type == 'object' || type == 'function');
3592
3574
  }
3593
3575
 
3576
+ var isObject_1 = isObject$8;
3577
+
3594
3578
  var baseGetTag$4 = _baseGetTag,
3595
- isObject$6 = requireIsObject();
3579
+ isObject$7 = isObject_1;
3596
3580
 
3597
3581
  /** `Object#toString` result references. */
3598
3582
  var asyncTag = '[object AsyncFunction]',
@@ -3617,8 +3601,8 @@ var asyncTag = '[object AsyncFunction]',
3617
3601
  * _.isFunction(/abc/);
3618
3602
  * // => false
3619
3603
  */
3620
- function isFunction$2(value) {
3621
- if (!isObject$6(value)) {
3604
+ function isFunction$3(value) {
3605
+ if (!isObject$7(value)) {
3622
3606
  return false;
3623
3607
  }
3624
3608
  // The use of `Object#toString` avoids issues with the `typeof` operator
@@ -3627,12 +3611,12 @@ function isFunction$2(value) {
3627
3611
  return tag == funcTag$1 || tag == genTag$1 || tag == asyncTag || tag == proxyTag;
3628
3612
  }
3629
3613
 
3630
- var isFunction_1 = isFunction$2;
3614
+ var isFunction_1 = isFunction$3;
3631
3615
 
3632
- var root$9 = _root;
3616
+ var root$a = _root;
3633
3617
 
3634
3618
  /** Used to detect overreaching core-js shims. */
3635
- var coreJsData$1 = root$9['__core-js_shared__'];
3619
+ var coreJsData$1 = root$a['__core-js_shared__'];
3636
3620
 
3637
3621
  var _coreJsData = coreJsData$1;
3638
3622
 
@@ -3685,9 +3669,9 @@ function toSource$2(func) {
3685
3669
 
3686
3670
  var _toSource = toSource$2;
3687
3671
 
3688
- var isFunction$1 = isFunction_1,
3672
+ var isFunction$2 = isFunction_1,
3689
3673
  isMasked = _isMasked,
3690
- isObject$5 = requireIsObject(),
3674
+ isObject$6 = isObject_1,
3691
3675
  toSource$1 = _toSource;
3692
3676
 
3693
3677
  /**
@@ -3701,17 +3685,17 @@ var reIsHostCtor = /^\[object .+?Constructor\]$/;
3701
3685
 
3702
3686
  /** Used for built-in method references. */
3703
3687
  var funcProto$1 = Function.prototype,
3704
- objectProto$a = Object.prototype;
3688
+ objectProto$b = Object.prototype;
3705
3689
 
3706
3690
  /** Used to resolve the decompiled source of functions. */
3707
3691
  var funcToString$1 = funcProto$1.toString;
3708
3692
 
3709
3693
  /** Used to check objects for own properties. */
3710
- var hasOwnProperty$8 = objectProto$a.hasOwnProperty;
3694
+ var hasOwnProperty$9 = objectProto$b.hasOwnProperty;
3711
3695
 
3712
3696
  /** Used to detect if a method is native. */
3713
3697
  var reIsNative = RegExp('^' +
3714
- funcToString$1.call(hasOwnProperty$8).replace(reRegExpChar, '\\$&')
3698
+ funcToString$1.call(hasOwnProperty$9).replace(reRegExpChar, '\\$&')
3715
3699
  .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$'
3716
3700
  );
3717
3701
 
@@ -3724,10 +3708,10 @@ var reIsNative = RegExp('^' +
3724
3708
  * else `false`.
3725
3709
  */
3726
3710
  function baseIsNative$1(value) {
3727
- if (!isObject$5(value) || isMasked(value)) {
3711
+ if (!isObject$6(value) || isMasked(value)) {
3728
3712
  return false;
3729
3713
  }
3730
- var pattern = isFunction$1(value) ? reIsNative : reIsHostCtor;
3714
+ var pattern = isFunction$2(value) ? reIsNative : reIsHostCtor;
3731
3715
  return pattern.test(toSource$1(value));
3732
3716
  }
3733
3717
 
@@ -3759,18 +3743,18 @@ var baseIsNative = _baseIsNative,
3759
3743
  * @param {string} key The key of the method to get.
3760
3744
  * @returns {*} Returns the function if it's native, else `undefined`.
3761
3745
  */
3762
- function getNative$5(object, key) {
3746
+ function getNative$6(object, key) {
3763
3747
  var value = getValue(object, key);
3764
3748
  return baseIsNative(value) ? value : undefined;
3765
3749
  }
3766
3750
 
3767
- var _getNative = getNative$5;
3751
+ var _getNative = getNative$6;
3768
3752
 
3769
- var getNative$4 = _getNative,
3770
- root$8 = _root;
3753
+ var getNative$5 = _getNative,
3754
+ root$9 = _root;
3771
3755
 
3772
3756
  /* Built-in method references that are verified to be native. */
3773
- var WeakMap$3 = getNative$4(root$8, 'WeakMap');
3757
+ var WeakMap$3 = getNative$5(root$9, 'WeakMap');
3774
3758
 
3775
3759
  var _WeakMap = WeakMap$3;
3776
3760
 
@@ -3781,7 +3765,7 @@ var metaMap$2 = WeakMap$2 && new WeakMap$2;
3781
3765
 
3782
3766
  var _metaMap = metaMap$2;
3783
3767
 
3784
- var identity$1 = requireIdentity(),
3768
+ var identity$2 = identity_1,
3785
3769
  metaMap$1 = _metaMap;
3786
3770
 
3787
3771
  /**
@@ -3792,54 +3776,46 @@ var identity$1 = requireIdentity(),
3792
3776
  * @param {*} data The metadata.
3793
3777
  * @returns {Function} Returns `func`.
3794
3778
  */
3795
- var baseSetData$2 = !metaMap$1 ? identity$1 : function(func, data) {
3779
+ var baseSetData$2 = !metaMap$1 ? identity$2 : function(func, data) {
3796
3780
  metaMap$1.set(func, data);
3797
3781
  return func;
3798
3782
  };
3799
3783
 
3800
3784
  var _baseSetData = baseSetData$2;
3801
3785
 
3802
- var _baseCreate;
3803
- var hasRequired_baseCreate;
3804
-
3805
- function require_baseCreate () {
3806
- if (hasRequired_baseCreate) return _baseCreate;
3807
- hasRequired_baseCreate = 1;
3808
- var isObject = requireIsObject();
3786
+ var isObject$5 = isObject_1;
3809
3787
 
3810
- /** Built-in value references. */
3811
- var objectCreate = Object.create;
3788
+ /** Built-in value references. */
3789
+ var objectCreate = Object.create;
3812
3790
 
3813
- /**
3814
- * The base implementation of `_.create` without support for assigning
3815
- * properties to the created object.
3816
- *
3817
- * @private
3818
- * @param {Object} proto The object to inherit from.
3819
- * @returns {Object} Returns the new object.
3820
- */
3821
- var baseCreate = (function() {
3822
- function object() {}
3823
- return function(proto) {
3824
- if (!isObject(proto)) {
3825
- return {};
3826
- }
3827
- if (objectCreate) {
3828
- return objectCreate(proto);
3829
- }
3830
- object.prototype = proto;
3831
- var result = new object;
3832
- object.prototype = undefined;
3833
- return result;
3834
- };
3835
- }());
3791
+ /**
3792
+ * The base implementation of `_.create` without support for assigning
3793
+ * properties to the created object.
3794
+ *
3795
+ * @private
3796
+ * @param {Object} proto The object to inherit from.
3797
+ * @returns {Object} Returns the new object.
3798
+ */
3799
+ var baseCreate$4 = (function() {
3800
+ function object() {}
3801
+ return function(proto) {
3802
+ if (!isObject$5(proto)) {
3803
+ return {};
3804
+ }
3805
+ if (objectCreate) {
3806
+ return objectCreate(proto);
3807
+ }
3808
+ object.prototype = proto;
3809
+ var result = new object;
3810
+ object.prototype = undefined;
3811
+ return result;
3812
+ };
3813
+ }());
3836
3814
 
3837
- _baseCreate = baseCreate;
3838
- return _baseCreate;
3839
- }
3815
+ var _baseCreate = baseCreate$4;
3840
3816
 
3841
- var baseCreate$2 = require_baseCreate(),
3842
- isObject$4 = requireIsObject();
3817
+ var baseCreate$3 = _baseCreate,
3818
+ isObject$4 = isObject_1;
3843
3819
 
3844
3820
  /**
3845
3821
  * Creates a function that produces an instance of `Ctor` regardless of
@@ -3865,7 +3841,7 @@ function createCtor$4(Ctor) {
3865
3841
  case 6: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5]);
3866
3842
  case 7: return new Ctor(args[0], args[1], args[2], args[3], args[4], args[5], args[6]);
3867
3843
  }
3868
- var thisBinding = baseCreate$2(Ctor.prototype),
3844
+ var thisBinding = baseCreate$3(Ctor.prototype),
3869
3845
  result = Ctor.apply(thisBinding, args);
3870
3846
 
3871
3847
  // Mimic the constructor's `return` behavior.
@@ -3877,7 +3853,7 @@ function createCtor$4(Ctor) {
3877
3853
  var _createCtor = createCtor$4;
3878
3854
 
3879
3855
  var createCtor$3 = _createCtor,
3880
- root$7 = _root;
3856
+ root$8 = _root;
3881
3857
 
3882
3858
  /** Used to compose bitmasks for function metadata. */
3883
3859
  var WRAP_BIND_FLAG$6 = 1;
@@ -3897,7 +3873,7 @@ function createBind$1(func, bitmask, thisArg) {
3897
3873
  Ctor = createCtor$3(func);
3898
3874
 
3899
3875
  function wrapper() {
3900
- var fn = (this && this !== root$7 && this instanceof wrapper) ? Ctor : func;
3876
+ var fn = (this && this !== root$8 && this instanceof wrapper) ? Ctor : func;
3901
3877
  return fn.apply(isBind ? thisArg : this, arguments);
3902
3878
  }
3903
3879
  return wrapper;
@@ -3916,7 +3892,7 @@ var _createBind = createBind$1;
3916
3892
  * @returns {*} Returns the result of `func`.
3917
3893
  */
3918
3894
 
3919
- function apply$2(func, thisArg, args) {
3895
+ function apply$3(func, thisArg, args) {
3920
3896
  switch (args.length) {
3921
3897
  case 0: return func.call(thisArg);
3922
3898
  case 1: return func.call(thisArg, args[0]);
@@ -3926,11 +3902,11 @@ function apply$2(func, thisArg, args) {
3926
3902
  return func.apply(thisArg, args);
3927
3903
  }
3928
3904
 
3929
- var _apply = apply$2;
3905
+ var _apply = apply$3;
3930
3906
 
3931
3907
  /* Built-in method references for those with the same name as other `lodash` methods. */
3932
3908
 
3933
- var nativeMax$2 = Math.max;
3909
+ var nativeMax$3 = Math.max;
3934
3910
 
3935
3911
  /**
3936
3912
  * Creates an array that is the composition of partially applied arguments,
@@ -3949,7 +3925,7 @@ function composeArgs$2(args, partials, holders, isCurried) {
3949
3925
  holdersLength = holders.length,
3950
3926
  leftIndex = -1,
3951
3927
  leftLength = partials.length,
3952
- rangeLength = nativeMax$2(argsLength - holdersLength, 0),
3928
+ rangeLength = nativeMax$3(argsLength - holdersLength, 0),
3953
3929
  result = Array(leftLength + rangeLength),
3954
3930
  isUncurried = !isCurried;
3955
3931
 
@@ -3971,7 +3947,7 @@ var _composeArgs = composeArgs$2;
3971
3947
 
3972
3948
  /* Built-in method references for those with the same name as other `lodash` methods. */
3973
3949
 
3974
- var nativeMax$1 = Math.max;
3950
+ var nativeMax$2 = Math.max;
3975
3951
 
3976
3952
  /**
3977
3953
  * This function is like `composeArgs` except that the arguments composition
@@ -3991,7 +3967,7 @@ function composeArgsRight$2(args, partials, holders, isCurried) {
3991
3967
  holdersLength = holders.length,
3992
3968
  rightIndex = -1,
3993
3969
  rightLength = partials.length,
3994
- rangeLength = nativeMax$1(argsLength - holdersLength, 0),
3970
+ rangeLength = nativeMax$2(argsLength - holdersLength, 0),
3995
3971
  result = Array(rangeLength + rightLength),
3996
3972
  isUncurried = !isCurried;
3997
3973
 
@@ -4047,7 +4023,7 @@ function baseLodash$3() {
4047
4023
 
4048
4024
  var _baseLodash = baseLodash$3;
4049
4025
 
4050
- var baseCreate$1 = require_baseCreate(),
4026
+ var baseCreate$2 = _baseCreate,
4051
4027
  baseLodash$2 = _baseLodash;
4052
4028
 
4053
4029
  /** Used as references for the maximum length and index of an array. */
@@ -4071,7 +4047,7 @@ function LazyWrapper$3(value) {
4071
4047
  }
4072
4048
 
4073
4049
  // Ensure `LazyWrapper` is an instance of `baseLodash`.
4074
- LazyWrapper$3.prototype = baseCreate$1(baseLodash$2.prototype);
4050
+ LazyWrapper$3.prototype = baseCreate$2(baseLodash$2.prototype);
4075
4051
  LazyWrapper$3.prototype.constructor = LazyWrapper$3;
4076
4052
 
4077
4053
  var _LazyWrapper = LazyWrapper$3;
@@ -4120,10 +4096,10 @@ var _realNames = realNames$1;
4120
4096
  var realNames = _realNames;
4121
4097
 
4122
4098
  /** Used for built-in method references. */
4123
- var objectProto$9 = Object.prototype;
4099
+ var objectProto$a = Object.prototype;
4124
4100
 
4125
4101
  /** Used to check objects for own properties. */
4126
- var hasOwnProperty$7 = objectProto$9.hasOwnProperty;
4102
+ var hasOwnProperty$8 = objectProto$a.hasOwnProperty;
4127
4103
 
4128
4104
  /**
4129
4105
  * Gets the name of `func`.
@@ -4135,7 +4111,7 @@ var hasOwnProperty$7 = objectProto$9.hasOwnProperty;
4135
4111
  function getFuncName$1(func) {
4136
4112
  var result = (func.name + ''),
4137
4113
  array = realNames[result],
4138
- length = hasOwnProperty$7.call(realNames, result) ? array.length : 0;
4114
+ length = hasOwnProperty$8.call(realNames, result) ? array.length : 0;
4139
4115
 
4140
4116
  while (length--) {
4141
4117
  var data = array[length],
@@ -4149,7 +4125,7 @@ function getFuncName$1(func) {
4149
4125
 
4150
4126
  var _getFuncName = getFuncName$1;
4151
4127
 
4152
- var baseCreate = require_baseCreate(),
4128
+ var baseCreate$1 = _baseCreate,
4153
4129
  baseLodash$1 = _baseLodash;
4154
4130
 
4155
4131
  /**
@@ -4167,7 +4143,7 @@ function LodashWrapper$2(value, chainAll) {
4167
4143
  this.__values__ = undefined;
4168
4144
  }
4169
4145
 
4170
- LodashWrapper$2.prototype = baseCreate(baseLodash$1.prototype);
4146
+ LodashWrapper$2.prototype = baseCreate$1(baseLodash$1.prototype);
4171
4147
  LodashWrapper$2.prototype.constructor = LodashWrapper$2;
4172
4148
 
4173
4149
  var _LodashWrapper = LodashWrapper$2;
@@ -4196,9 +4172,9 @@ var _LodashWrapper = LodashWrapper$2;
4196
4172
  * // => false
4197
4173
  */
4198
4174
 
4199
- var isArray$g = Array.isArray;
4175
+ var isArray$h = Array.isArray;
4200
4176
 
4201
- var isArray_1 = isArray$g;
4177
+ var isArray_1 = isArray$h;
4202
4178
 
4203
4179
  /**
4204
4180
  * Checks if `value` is object-like. A value is object-like if it's not `null`
@@ -4280,15 +4256,15 @@ var _wrapperClone = wrapperClone$1;
4280
4256
  var LazyWrapper$1 = _LazyWrapper,
4281
4257
  LodashWrapper = _LodashWrapper,
4282
4258
  baseLodash = _baseLodash,
4283
- isArray$f = isArray_1,
4259
+ isArray$g = isArray_1,
4284
4260
  isObjectLike$7 = isObjectLike_1,
4285
4261
  wrapperClone = _wrapperClone;
4286
4262
 
4287
4263
  /** Used for built-in method references. */
4288
- var objectProto$8 = Object.prototype;
4264
+ var objectProto$9 = Object.prototype;
4289
4265
 
4290
4266
  /** Used to check objects for own properties. */
4291
- var hasOwnProperty$6 = objectProto$8.hasOwnProperty;
4267
+ var hasOwnProperty$7 = objectProto$9.hasOwnProperty;
4292
4268
 
4293
4269
  /**
4294
4270
  * Creates a `lodash` object which wraps `value` to enable implicit method
@@ -4408,11 +4384,11 @@ var hasOwnProperty$6 = objectProto$8.hasOwnProperty;
4408
4384
  * // => true
4409
4385
  */
4410
4386
  function lodash$2(value) {
4411
- if (isObjectLike$7(value) && !isArray$f(value) && !(value instanceof LazyWrapper$1)) {
4387
+ if (isObjectLike$7(value) && !isArray$g(value) && !(value instanceof LazyWrapper$1)) {
4412
4388
  if (value instanceof LodashWrapper) {
4413
4389
  return value;
4414
4390
  }
4415
- if (hasOwnProperty$6.call(value, '__wrapped__')) {
4391
+ if (hasOwnProperty$7.call(value, '__wrapped__')) {
4416
4392
  return wrapperClone(value);
4417
4393
  }
4418
4394
  }
@@ -4471,7 +4447,7 @@ var nativeNow = Date.now;
4471
4447
  * @param {Function} func The function to restrict.
4472
4448
  * @returns {Function} Returns the new shortable function.
4473
4449
  */
4474
- function shortOut$1(func) {
4450
+ function shortOut$2(func) {
4475
4451
  var count = 0,
4476
4452
  lastCalled = 0;
4477
4453
 
@@ -4491,10 +4467,10 @@ function shortOut$1(func) {
4491
4467
  };
4492
4468
  }
4493
4469
 
4494
- var _shortOut = shortOut$1;
4470
+ var _shortOut = shortOut$2;
4495
4471
 
4496
4472
  var baseSetData$1 = _baseSetData,
4497
- shortOut = _shortOut;
4473
+ shortOut$1 = _shortOut;
4498
4474
 
4499
4475
  /**
4500
4476
  * Sets metadata for `func`.
@@ -4510,7 +4486,7 @@ var baseSetData$1 = _baseSetData,
4510
4486
  * @param {*} data The metadata.
4511
4487
  * @returns {Function} Returns `func`.
4512
4488
  */
4513
- var setData$2 = shortOut(baseSetData$1);
4489
+ var setData$2 = shortOut$1(baseSetData$1);
4514
4490
 
4515
4491
  var _setData = setData$2;
4516
4492
 
@@ -4578,95 +4554,63 @@ var _insertWrapDetails = insertWrapDetails$1;
4578
4554
  * // => true
4579
4555
  */
4580
4556
 
4581
- var constant_1;
4582
- var hasRequiredConstant;
4583
-
4584
- function requireConstant () {
4585
- if (hasRequiredConstant) return constant_1;
4586
- hasRequiredConstant = 1;
4587
- function constant(value) {
4588
- return function() {
4589
- return value;
4590
- };
4591
- }
4592
-
4593
- constant_1 = constant;
4594
- return constant_1;
4557
+ function constant$1(value) {
4558
+ return function() {
4559
+ return value;
4560
+ };
4595
4561
  }
4596
4562
 
4597
- var _defineProperty;
4598
- var hasRequired_defineProperty;
4599
-
4600
- function require_defineProperty () {
4601
- if (hasRequired_defineProperty) return _defineProperty;
4602
- hasRequired_defineProperty = 1;
4603
- var getNative = _getNative;
4604
-
4605
- var defineProperty = (function() {
4606
- try {
4607
- var func = getNative(Object, 'defineProperty');
4608
- func({}, '', {});
4609
- return func;
4610
- } catch (e) {}
4611
- }());
4563
+ var constant_1 = constant$1;
4612
4564
 
4613
- _defineProperty = defineProperty;
4614
- return _defineProperty;
4615
- }
4565
+ var getNative$4 = _getNative;
4616
4566
 
4617
- var _baseSetToString;
4618
- var hasRequired_baseSetToString;
4567
+ var defineProperty$2 = (function() {
4568
+ try {
4569
+ var func = getNative$4(Object, 'defineProperty');
4570
+ func({}, '', {});
4571
+ return func;
4572
+ } catch (e) {}
4573
+ }());
4619
4574
 
4620
- function require_baseSetToString () {
4621
- if (hasRequired_baseSetToString) return _baseSetToString;
4622
- hasRequired_baseSetToString = 1;
4623
- var constant = requireConstant(),
4624
- defineProperty = require_defineProperty(),
4625
- identity = requireIdentity();
4575
+ var _defineProperty = defineProperty$2;
4626
4576
 
4627
- /**
4628
- * The base implementation of `setToString` without support for hot loop shorting.
4629
- *
4630
- * @private
4631
- * @param {Function} func The function to modify.
4632
- * @param {Function} string The `toString` result.
4633
- * @returns {Function} Returns `func`.
4634
- */
4635
- var baseSetToString = !defineProperty ? identity : function(func, string) {
4636
- return defineProperty(func, 'toString', {
4637
- 'configurable': true,
4638
- 'enumerable': false,
4639
- 'value': constant(string),
4640
- 'writable': true
4641
- });
4642
- };
4577
+ var constant = constant_1,
4578
+ defineProperty$1 = _defineProperty,
4579
+ identity$1 = identity_1;
4643
4580
 
4644
- _baseSetToString = baseSetToString;
4645
- return _baseSetToString;
4646
- }
4581
+ /**
4582
+ * The base implementation of `setToString` without support for hot loop shorting.
4583
+ *
4584
+ * @private
4585
+ * @param {Function} func The function to modify.
4586
+ * @param {Function} string The `toString` result.
4587
+ * @returns {Function} Returns `func`.
4588
+ */
4589
+ var baseSetToString$1 = !defineProperty$1 ? identity$1 : function(func, string) {
4590
+ return defineProperty$1(func, 'toString', {
4591
+ 'configurable': true,
4592
+ 'enumerable': false,
4593
+ 'value': constant(string),
4594
+ 'writable': true
4595
+ });
4596
+ };
4647
4597
 
4648
- var _setToString;
4649
- var hasRequired_setToString;
4598
+ var _baseSetToString = baseSetToString$1;
4650
4599
 
4651
- function require_setToString () {
4652
- if (hasRequired_setToString) return _setToString;
4653
- hasRequired_setToString = 1;
4654
- var baseSetToString = require_baseSetToString(),
4655
- shortOut = _shortOut;
4600
+ var baseSetToString = _baseSetToString,
4601
+ shortOut = _shortOut;
4656
4602
 
4657
- /**
4658
- * Sets the `toString` method of `func` to return `string`.
4659
- *
4660
- * @private
4661
- * @param {Function} func The function to modify.
4662
- * @param {Function} string The `toString` result.
4663
- * @returns {Function} Returns `func`.
4664
- */
4665
- var setToString = shortOut(baseSetToString);
4603
+ /**
4604
+ * Sets the `toString` method of `func` to return `string`.
4605
+ *
4606
+ * @private
4607
+ * @param {Function} func The function to modify.
4608
+ * @param {Function} string The `toString` result.
4609
+ * @returns {Function} Returns `func`.
4610
+ */
4611
+ var setToString$2 = shortOut(baseSetToString);
4666
4612
 
4667
- _setToString = setToString;
4668
- return _setToString;
4669
- }
4613
+ var _setToString = setToString$2;
4670
4614
 
4671
4615
  /**
4672
4616
  * A specialized version of `_.forEach` for arrays without support for
@@ -4845,7 +4789,7 @@ var _updateWrapDetails = updateWrapDetails$1;
4845
4789
 
4846
4790
  var getWrapDetails = _getWrapDetails,
4847
4791
  insertWrapDetails = _insertWrapDetails,
4848
- setToString$1 = require_setToString(),
4792
+ setToString$1 = _setToString,
4849
4793
  updateWrapDetails = _updateWrapDetails;
4850
4794
 
4851
4795
  /**
@@ -4939,41 +4883,33 @@ var _getHolder = getHolder$2;
4939
4883
 
4940
4884
  /** Used as references for various `Number` constants. */
4941
4885
 
4942
- var _isIndex;
4943
- var hasRequired_isIndex;
4944
-
4945
- function require_isIndex () {
4946
- if (hasRequired_isIndex) return _isIndex;
4947
- hasRequired_isIndex = 1;
4948
- var MAX_SAFE_INTEGER = 9007199254740991;
4886
+ var MAX_SAFE_INTEGER$1 = 9007199254740991;
4949
4887
 
4950
- /** Used to detect unsigned integer values. */
4951
- var reIsUint = /^(?:0|[1-9]\d*)$/;
4888
+ /** Used to detect unsigned integer values. */
4889
+ var reIsUint = /^(?:0|[1-9]\d*)$/;
4952
4890
 
4953
- /**
4954
- * Checks if `value` is a valid array-like index.
4955
- *
4956
- * @private
4957
- * @param {*} value The value to check.
4958
- * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.
4959
- * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.
4960
- */
4961
- function isIndex(value, length) {
4962
- var type = typeof value;
4963
- length = length == null ? MAX_SAFE_INTEGER : length;
4964
-
4965
- return !!length &&
4966
- (type == 'number' ||
4967
- (type != 'symbol' && reIsUint.test(value))) &&
4968
- (value > -1 && value % 1 == 0 && value < length);
4969
- }
4891
+ /**
4892
+ * Checks if `value` is a valid array-like index.
4893
+ *
4894
+ * @private
4895
+ * @param {*} value The value to check.
4896
+ * @param {number} [length=MAX_SAFE_INTEGER] The upper bounds of a valid index.
4897
+ * @returns {boolean} Returns `true` if `value` is a valid index, else `false`.
4898
+ */
4899
+ function isIndex$3(value, length) {
4900
+ var type = typeof value;
4901
+ length = length == null ? MAX_SAFE_INTEGER$1 : length;
4970
4902
 
4971
- _isIndex = isIndex;
4972
- return _isIndex;
4903
+ return !!length &&
4904
+ (type == 'number' ||
4905
+ (type != 'symbol' && reIsUint.test(value))) &&
4906
+ (value > -1 && value % 1 == 0 && value < length);
4973
4907
  }
4974
4908
 
4909
+ var _isIndex = isIndex$3;
4910
+
4975
4911
  var copyArray$2 = _copyArray,
4976
- isIndex$1 = require_isIndex();
4912
+ isIndex$2 = _isIndex;
4977
4913
 
4978
4914
  /* Built-in method references for those with the same name as other `lodash` methods. */
4979
4915
  var nativeMin$1 = Math.min;
@@ -4995,7 +4931,7 @@ function reorder$1(array, indexes) {
4995
4931
 
4996
4932
  while (length--) {
4997
4933
  var index = indexes[length];
4998
- array[length] = isIndex$1(index, arrLength) ? oldArray[index] : undefined;
4934
+ array[length] = isIndex$2(index, arrLength) ? oldArray[index] : undefined;
4999
4935
  }
5000
4936
  return array;
5001
4937
  }
@@ -5041,7 +4977,7 @@ var composeArgs$1 = _composeArgs,
5041
4977
  getHolder$1 = _getHolder,
5042
4978
  reorder = _reorder,
5043
4979
  replaceHolders$2 = _replaceHolders,
5044
- root$6 = _root;
4980
+ root$7 = _root;
5045
4981
 
5046
4982
  /** Used to compose bitmasks for function metadata. */
5047
4983
  var WRAP_BIND_FLAG$3 = 1,
@@ -5116,7 +5052,7 @@ function createHybrid$2(func, bitmask, thisArg, partials, holders, partialsRight
5116
5052
  if (isAry && ary < length) {
5117
5053
  args.length = ary;
5118
5054
  }
5119
- if (this && this !== root$6 && this instanceof wrapper) {
5055
+ if (this && this !== root$7 && this instanceof wrapper) {
5120
5056
  fn = Ctor || createCtor$2(fn);
5121
5057
  }
5122
5058
  return fn.apply(thisBinding, args);
@@ -5126,13 +5062,13 @@ function createHybrid$2(func, bitmask, thisArg, partials, holders, partialsRight
5126
5062
 
5127
5063
  var _createHybrid = createHybrid$2;
5128
5064
 
5129
- var apply$1 = _apply,
5065
+ var apply$2 = _apply,
5130
5066
  createCtor$1 = _createCtor,
5131
5067
  createHybrid$1 = _createHybrid,
5132
5068
  createRecurry = _createRecurry,
5133
5069
  getHolder = _getHolder,
5134
5070
  replaceHolders$1 = _replaceHolders,
5135
- root$5 = _root;
5071
+ root$6 = _root;
5136
5072
 
5137
5073
  /**
5138
5074
  * Creates a function that wraps `func` to enable currying.
@@ -5165,17 +5101,17 @@ function createCurry$1(func, bitmask, arity) {
5165
5101
  func, bitmask, createHybrid$1, wrapper.placeholder, undefined,
5166
5102
  args, holders, undefined, undefined, arity - length);
5167
5103
  }
5168
- var fn = (this && this !== root$5 && this instanceof wrapper) ? Ctor : func;
5169
- return apply$1(fn, this, args);
5104
+ var fn = (this && this !== root$6 && this instanceof wrapper) ? Ctor : func;
5105
+ return apply$2(fn, this, args);
5170
5106
  }
5171
5107
  return wrapper;
5172
5108
  }
5173
5109
 
5174
5110
  var _createCurry = createCurry$1;
5175
5111
 
5176
- var apply = _apply,
5112
+ var apply$1 = _apply,
5177
5113
  createCtor = _createCtor,
5178
- root$4 = _root;
5114
+ root$5 = _root;
5179
5115
 
5180
5116
  /** Used to compose bitmasks for function metadata. */
5181
5117
  var WRAP_BIND_FLAG$2 = 1;
@@ -5202,7 +5138,7 @@ function createPartial$1(func, bitmask, thisArg, partials) {
5202
5138
  leftIndex = -1,
5203
5139
  leftLength = partials.length,
5204
5140
  args = Array(leftLength + argsLength),
5205
- fn = (this && this !== root$4 && this instanceof wrapper) ? Ctor : func;
5141
+ fn = (this && this !== root$5 && this instanceof wrapper) ? Ctor : func;
5206
5142
 
5207
5143
  while (++leftIndex < leftLength) {
5208
5144
  args[leftIndex] = partials[leftIndex];
@@ -5210,7 +5146,7 @@ function createPartial$1(func, bitmask, thisArg, partials) {
5210
5146
  while (argsLength--) {
5211
5147
  args[leftIndex++] = arguments[++argsIndex];
5212
5148
  }
5213
- return apply(fn, isBind ? thisArg : this, args);
5149
+ return apply$1(fn, isBind ? thisArg : this, args);
5214
5150
  }
5215
5151
  return wrapper;
5216
5152
  }
@@ -5380,7 +5316,7 @@ function isSymbol$6(value) {
5380
5316
  var isSymbol_1 = isSymbol$6;
5381
5317
 
5382
5318
  var baseTrim = _baseTrim,
5383
- isObject$3 = requireIsObject(),
5319
+ isObject$3 = isObject_1,
5384
5320
  isSymbol$5 = isSymbol_1;
5385
5321
 
5386
5322
  /** Used as references for various `Number` constants. */
@@ -5547,7 +5483,7 @@ var WRAP_BIND_FLAG = 1,
5547
5483
  WRAP_PARTIAL_RIGHT_FLAG = 64;
5548
5484
 
5549
5485
  /* Built-in method references for those with the same name as other `lodash` methods. */
5550
- var nativeMax = Math.max;
5486
+ var nativeMax$1 = Math.max;
5551
5487
 
5552
5488
  /**
5553
5489
  * Creates a function that either curries or invokes `func` with optional
@@ -5584,7 +5520,7 @@ function createWrap$3(func, bitmask, thisArg, partials, holders, argPos, ary, ar
5584
5520
  bitmask &= ~(WRAP_PARTIAL_FLAG | WRAP_PARTIAL_RIGHT_FLAG);
5585
5521
  partials = holders = undefined;
5586
5522
  }
5587
- ary = ary === undefined ? ary : nativeMax(toInteger(ary), 0);
5523
+ ary = ary === undefined ? ary : nativeMax$1(toInteger(ary), 0);
5588
5524
  arity = arity === undefined ? arity : toInteger(arity);
5589
5525
  length -= holders ? holders.length : 0;
5590
5526
 
@@ -5611,7 +5547,7 @@ function createWrap$3(func, bitmask, thisArg, partials, holders, argPos, ary, ar
5611
5547
  holders = newData[4];
5612
5548
  arity = newData[9] = newData[9] === undefined
5613
5549
  ? (isBindKey ? 0 : func.length)
5614
- : nativeMax(newData[9] - length, 0);
5550
+ : nativeMax$1(newData[9] - length, 0);
5615
5551
 
5616
5552
  if (!arity && bitmask & (WRAP_CURRY_FLAG$1 | WRAP_CURRY_RIGHT_FLAG)) {
5617
5553
  bitmask &= ~(WRAP_CURRY_FLAG$1 | WRAP_CURRY_RIGHT_FLAG);
@@ -5661,40 +5597,32 @@ function ary(func, n, guard) {
5661
5597
 
5662
5598
  var ary_1 = ary;
5663
5599
 
5664
- var _baseAssignValue;
5665
- var hasRequired_baseAssignValue;
5666
-
5667
- function require_baseAssignValue () {
5668
- if (hasRequired_baseAssignValue) return _baseAssignValue;
5669
- hasRequired_baseAssignValue = 1;
5670
- var defineProperty = require_defineProperty();
5600
+ var defineProperty = _defineProperty;
5671
5601
 
5672
- /**
5673
- * The base implementation of `assignValue` and `assignMergeValue` without
5674
- * value checks.
5675
- *
5676
- * @private
5677
- * @param {Object} object The object to modify.
5678
- * @param {string} key The key of the property to assign.
5679
- * @param {*} value The value to assign.
5680
- */
5681
- function baseAssignValue(object, key, value) {
5682
- if (key == '__proto__' && defineProperty) {
5683
- defineProperty(object, key, {
5684
- 'configurable': true,
5685
- 'enumerable': true,
5686
- 'value': value,
5687
- 'writable': true
5688
- });
5689
- } else {
5690
- object[key] = value;
5691
- }
5692
- }
5693
-
5694
- _baseAssignValue = baseAssignValue;
5695
- return _baseAssignValue;
5602
+ /**
5603
+ * The base implementation of `assignValue` and `assignMergeValue` without
5604
+ * value checks.
5605
+ *
5606
+ * @private
5607
+ * @param {Object} object The object to modify.
5608
+ * @param {string} key The key of the property to assign.
5609
+ * @param {*} value The value to assign.
5610
+ */
5611
+ function baseAssignValue$2(object, key, value) {
5612
+ if (key == '__proto__' && defineProperty) {
5613
+ defineProperty(object, key, {
5614
+ 'configurable': true,
5615
+ 'enumerable': true,
5616
+ 'value': value,
5617
+ 'writable': true
5618
+ });
5619
+ } else {
5620
+ object[key] = value;
5621
+ }
5696
5622
  }
5697
5623
 
5624
+ var _baseAssignValue = baseAssignValue$2;
5625
+
5698
5626
  /**
5699
5627
  * Performs a
5700
5628
  * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
@@ -5742,14 +5670,14 @@ function requireEq () {
5742
5670
  return eq_1;
5743
5671
  }
5744
5672
 
5745
- var baseAssignValue$1 = require_baseAssignValue(),
5673
+ var baseAssignValue$1 = _baseAssignValue,
5746
5674
  eq$1 = requireEq();
5747
5675
 
5748
5676
  /** Used for built-in method references. */
5749
- var objectProto$7 = Object.prototype;
5677
+ var objectProto$8 = Object.prototype;
5750
5678
 
5751
5679
  /** Used to check objects for own properties. */
5752
- var hasOwnProperty$5 = objectProto$7.hasOwnProperty;
5680
+ var hasOwnProperty$6 = objectProto$8.hasOwnProperty;
5753
5681
 
5754
5682
  /**
5755
5683
  * Assigns `value` to `key` of `object` if the existing value is not equivalent
@@ -5763,7 +5691,7 @@ var hasOwnProperty$5 = objectProto$7.hasOwnProperty;
5763
5691
  */
5764
5692
  function assignValue$2(object, key, value) {
5765
5693
  var objValue = object[key];
5766
- if (!(hasOwnProperty$5.call(object, key) && eq$1(objValue, value)) ||
5694
+ if (!(hasOwnProperty$6.call(object, key) && eq$1(objValue, value)) ||
5767
5695
  (value === undefined && !(key in object))) {
5768
5696
  baseAssignValue$1(object, key, value);
5769
5697
  }
@@ -5772,7 +5700,7 @@ function assignValue$2(object, key, value) {
5772
5700
  var _assignValue = assignValue$2;
5773
5701
 
5774
5702
  var assignValue$1 = _assignValue,
5775
- baseAssignValue = require_baseAssignValue();
5703
+ baseAssignValue = _baseAssignValue;
5776
5704
 
5777
5705
  /**
5778
5706
  * Copies properties of `source` to `object`.
@@ -5822,26 +5750,18 @@ var _copyObject = copyObject$4;
5822
5750
  * @returns {Array} Returns the array of results.
5823
5751
  */
5824
5752
 
5825
- var _baseTimes;
5826
- var hasRequired_baseTimes;
5827
-
5828
- function require_baseTimes () {
5829
- if (hasRequired_baseTimes) return _baseTimes;
5830
- hasRequired_baseTimes = 1;
5831
- function baseTimes(n, iteratee) {
5832
- var index = -1,
5833
- result = Array(n);
5834
-
5835
- while (++index < n) {
5836
- result[index] = iteratee(index);
5837
- }
5838
- return result;
5839
- }
5753
+ function baseTimes$1(n, iteratee) {
5754
+ var index = -1,
5755
+ result = Array(n);
5840
5756
 
5841
- _baseTimes = baseTimes;
5842
- return _baseTimes;
5757
+ while (++index < n) {
5758
+ result[index] = iteratee(index);
5759
+ }
5760
+ return result;
5843
5761
  }
5844
5762
 
5763
+ var _baseTimes = baseTimes$1;
5764
+
5845
5765
  var _baseIsArguments;
5846
5766
  var hasRequired_baseIsArguments;
5847
5767
 
@@ -5915,7 +5835,7 @@ function requireIsArguments () {
5915
5835
  }
5916
5836
 
5917
5837
  var isBufferExports = {};
5918
- var isBuffer$4 = {
5838
+ var isBuffer$5 = {
5919
5839
  get exports(){ return isBufferExports; },
5920
5840
  set exports(v){ isBufferExports = v; },
5921
5841
  };
@@ -5934,113 +5854,90 @@ var isBuffer$4 = {
5934
5854
  * // => [false, false]
5935
5855
  */
5936
5856
 
5937
- var stubFalse_1;
5938
- var hasRequiredStubFalse;
5939
-
5940
- function requireStubFalse () {
5941
- if (hasRequiredStubFalse) return stubFalse_1;
5942
- hasRequiredStubFalse = 1;
5943
- function stubFalse() {
5944
- return false;
5945
- }
5946
-
5947
- stubFalse_1 = stubFalse;
5948
- return stubFalse_1;
5857
+ function stubFalse() {
5858
+ return false;
5949
5859
  }
5950
5860
 
5951
- var hasRequiredIsBuffer;
5952
-
5953
- function requireIsBuffer () {
5954
- if (hasRequiredIsBuffer) return isBufferExports;
5955
- hasRequiredIsBuffer = 1;
5956
- (function (module, exports) {
5957
- var root = _root,
5958
- stubFalse = requireStubFalse();
5959
-
5960
- /** Detect free variable `exports`. */
5961
- var freeExports = exports && !exports.nodeType && exports;
5962
-
5963
- /** Detect free variable `module`. */
5964
- var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
5861
+ var stubFalse_1 = stubFalse;
5965
5862
 
5966
- /** Detect the popular CommonJS extension `module.exports`. */
5967
- var moduleExports = freeModule && freeModule.exports === freeExports;
5968
-
5969
- /** Built-in value references. */
5970
- var Buffer = moduleExports ? root.Buffer : undefined;
5971
-
5972
- /* Built-in method references for those with the same name as other `lodash` methods. */
5973
- var nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined;
5863
+ (function (module, exports) {
5864
+ var root = _root,
5865
+ stubFalse = stubFalse_1;
5974
5866
 
5975
- /**
5976
- * Checks if `value` is a buffer.
5977
- *
5978
- * @static
5979
- * @memberOf _
5980
- * @since 4.3.0
5981
- * @category Lang
5982
- * @param {*} value The value to check.
5983
- * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.
5984
- * @example
5985
- *
5986
- * _.isBuffer(new Buffer(2));
5987
- * // => true
5988
- *
5989
- * _.isBuffer(new Uint8Array(2));
5990
- * // => false
5991
- */
5992
- var isBuffer = nativeIsBuffer || stubFalse;
5867
+ /** Detect free variable `exports`. */
5868
+ var freeExports = exports && !exports.nodeType && exports;
5993
5869
 
5994
- module.exports = isBuffer;
5995
- } (isBuffer$4, isBufferExports));
5996
- return isBufferExports;
5997
- }
5870
+ /** Detect free variable `module`. */
5871
+ var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
5998
5872
 
5999
- /** Used as references for various `Number` constants. */
5873
+ /** Detect the popular CommonJS extension `module.exports`. */
5874
+ var moduleExports = freeModule && freeModule.exports === freeExports;
6000
5875
 
6001
- var isLength_1;
6002
- var hasRequiredIsLength;
5876
+ /** Built-in value references. */
5877
+ var Buffer = moduleExports ? root.Buffer : undefined;
6003
5878
 
6004
- function requireIsLength () {
6005
- if (hasRequiredIsLength) return isLength_1;
6006
- hasRequiredIsLength = 1;
6007
- var MAX_SAFE_INTEGER = 9007199254740991;
5879
+ /* Built-in method references for those with the same name as other `lodash` methods. */
5880
+ var nativeIsBuffer = Buffer ? Buffer.isBuffer : undefined;
6008
5881
 
6009
5882
  /**
6010
- * Checks if `value` is a valid array-like length.
6011
- *
6012
- * **Note:** This method is loosely based on
6013
- * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).
5883
+ * Checks if `value` is a buffer.
6014
5884
  *
6015
5885
  * @static
6016
5886
  * @memberOf _
6017
- * @since 4.0.0
5887
+ * @since 4.3.0
6018
5888
  * @category Lang
6019
5889
  * @param {*} value The value to check.
6020
- * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
5890
+ * @returns {boolean} Returns `true` if `value` is a buffer, else `false`.
6021
5891
  * @example
6022
5892
  *
6023
- * _.isLength(3);
5893
+ * _.isBuffer(new Buffer(2));
6024
5894
  * // => true
6025
5895
  *
6026
- * _.isLength(Number.MIN_VALUE);
6027
- * // => false
6028
- *
6029
- * _.isLength(Infinity);
6030
- * // => false
6031
- *
6032
- * _.isLength('3');
5896
+ * _.isBuffer(new Uint8Array(2));
6033
5897
  * // => false
6034
5898
  */
6035
- function isLength(value) {
6036
- return typeof value == 'number' &&
6037
- value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
6038
- }
5899
+ var isBuffer = nativeIsBuffer || stubFalse;
5900
+
5901
+ module.exports = isBuffer;
5902
+ } (isBuffer$5, isBufferExports));
5903
+
5904
+ /** Used as references for various `Number` constants. */
6039
5905
 
6040
- isLength_1 = isLength;
6041
- return isLength_1;
5906
+ var MAX_SAFE_INTEGER = 9007199254740991;
5907
+
5908
+ /**
5909
+ * Checks if `value` is a valid array-like length.
5910
+ *
5911
+ * **Note:** This method is loosely based on
5912
+ * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).
5913
+ *
5914
+ * @static
5915
+ * @memberOf _
5916
+ * @since 4.0.0
5917
+ * @category Lang
5918
+ * @param {*} value The value to check.
5919
+ * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
5920
+ * @example
5921
+ *
5922
+ * _.isLength(3);
5923
+ * // => true
5924
+ *
5925
+ * _.isLength(Number.MIN_VALUE);
5926
+ * // => false
5927
+ *
5928
+ * _.isLength(Infinity);
5929
+ * // => false
5930
+ *
5931
+ * _.isLength('3');
5932
+ * // => false
5933
+ */
5934
+ function isLength$2(value) {
5935
+ return typeof value == 'number' &&
5936
+ value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
6042
5937
  }
6043
5938
 
5939
+ var isLength_1 = isLength$2;
5940
+
6044
5941
  var _baseIsTypedArray;
6045
5942
  var hasRequired_baseIsTypedArray;
6046
5943
 
@@ -6048,7 +5945,7 @@ function require_baseIsTypedArray () {
6048
5945
  if (hasRequired_baseIsTypedArray) return _baseIsTypedArray;
6049
5946
  hasRequired_baseIsTypedArray = 1;
6050
5947
  var baseGetTag = _baseGetTag,
6051
- isLength = requireIsLength(),
5948
+ isLength = isLength_1,
6052
5949
  isObjectLike = isObjectLike_1;
6053
5950
 
6054
5951
  /** `Object#toString` result references. */
@@ -6118,67 +6015,52 @@ function require_baseIsTypedArray () {
6118
6015
  * @returns {Function} Returns the new capped function.
6119
6016
  */
6120
6017
 
6121
- var _baseUnary;
6122
- var hasRequired_baseUnary;
6123
-
6124
- function require_baseUnary () {
6125
- if (hasRequired_baseUnary) return _baseUnary;
6126
- hasRequired_baseUnary = 1;
6127
- function baseUnary(func) {
6128
- return function(value) {
6129
- return func(value);
6130
- };
6131
- }
6132
-
6133
- _baseUnary = baseUnary;
6134
- return _baseUnary;
6018
+ function baseUnary$2(func) {
6019
+ return function(value) {
6020
+ return func(value);
6021
+ };
6135
6022
  }
6136
6023
 
6024
+ var _baseUnary = baseUnary$2;
6025
+
6137
6026
  var _nodeUtilExports = {};
6138
6027
  var _nodeUtil = {
6139
6028
  get exports(){ return _nodeUtilExports; },
6140
6029
  set exports(v){ _nodeUtilExports = v; },
6141
6030
  };
6142
6031
 
6143
- var hasRequired_nodeUtil;
6144
-
6145
- function require_nodeUtil () {
6146
- if (hasRequired_nodeUtil) return _nodeUtilExports;
6147
- hasRequired_nodeUtil = 1;
6148
- (function (module, exports) {
6149
- var freeGlobal = _freeGlobal;
6032
+ (function (module, exports) {
6033
+ var freeGlobal = _freeGlobal;
6150
6034
 
6151
- /** Detect free variable `exports`. */
6152
- var freeExports = exports && !exports.nodeType && exports;
6035
+ /** Detect free variable `exports`. */
6036
+ var freeExports = exports && !exports.nodeType && exports;
6153
6037
 
6154
- /** Detect free variable `module`. */
6155
- var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
6038
+ /** Detect free variable `module`. */
6039
+ var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
6156
6040
 
6157
- /** Detect the popular CommonJS extension `module.exports`. */
6158
- var moduleExports = freeModule && freeModule.exports === freeExports;
6041
+ /** Detect the popular CommonJS extension `module.exports`. */
6042
+ var moduleExports = freeModule && freeModule.exports === freeExports;
6159
6043
 
6160
- /** Detect free variable `process` from Node.js. */
6161
- var freeProcess = moduleExports && freeGlobal.process;
6044
+ /** Detect free variable `process` from Node.js. */
6045
+ var freeProcess = moduleExports && freeGlobal.process;
6162
6046
 
6163
- /** Used to access faster Node.js helpers. */
6164
- var nodeUtil = (function() {
6165
- try {
6166
- // Use `util.types` for Node.js 10+.
6167
- var types = freeModule && freeModule.require && freeModule.require('util').types;
6047
+ /** Used to access faster Node.js helpers. */
6048
+ var nodeUtil = (function() {
6049
+ try {
6050
+ // Use `util.types` for Node.js 10+.
6051
+ var types = freeModule && freeModule.require && freeModule.require('util').types;
6168
6052
 
6169
- if (types) {
6170
- return types;
6171
- }
6053
+ if (types) {
6054
+ return types;
6055
+ }
6172
6056
 
6173
- // Legacy `process.binding('util')` for Node.js < 10.
6174
- return freeProcess && freeProcess.binding && freeProcess.binding('util');
6175
- } catch (e) {}
6176
- }());
6057
+ // Legacy `process.binding('util')` for Node.js < 10.
6058
+ return freeProcess && freeProcess.binding && freeProcess.binding('util');
6059
+ } catch (e) {}
6060
+ }());
6177
6061
 
6178
- module.exports = nodeUtil;
6062
+ module.exports = nodeUtil;
6179
6063
  } (_nodeUtil, _nodeUtilExports));
6180
- return _nodeUtilExports;
6181
- }
6182
6064
 
6183
6065
  var isTypedArray_1;
6184
6066
  var hasRequiredIsTypedArray;
@@ -6187,8 +6069,8 @@ function requireIsTypedArray () {
6187
6069
  if (hasRequiredIsTypedArray) return isTypedArray_1;
6188
6070
  hasRequiredIsTypedArray = 1;
6189
6071
  var baseIsTypedArray = require_baseIsTypedArray(),
6190
- baseUnary = require_baseUnary(),
6191
- nodeUtil = require_nodeUtil();
6072
+ baseUnary = _baseUnary,
6073
+ nodeUtil = _nodeUtilExports;
6192
6074
 
6193
6075
  /* Node.js helper references. */
6194
6076
  var nodeIsTypedArray = nodeUtil && nodeUtil.isTypedArray;
@@ -6216,64 +6098,56 @@ function requireIsTypedArray () {
6216
6098
  return isTypedArray_1;
6217
6099
  }
6218
6100
 
6219
- var _arrayLikeKeys;
6220
- var hasRequired_arrayLikeKeys;
6221
-
6222
- function require_arrayLikeKeys () {
6223
- if (hasRequired_arrayLikeKeys) return _arrayLikeKeys;
6224
- hasRequired_arrayLikeKeys = 1;
6225
- var baseTimes = require_baseTimes(),
6226
- isArguments = requireIsArguments(),
6227
- isArray = isArray_1,
6228
- isBuffer = requireIsBuffer(),
6229
- isIndex = require_isIndex(),
6230
- isTypedArray = requireIsTypedArray();
6101
+ var baseTimes = _baseTimes,
6102
+ isArguments$2 = requireIsArguments(),
6103
+ isArray$f = isArray_1,
6104
+ isBuffer$4 = isBufferExports,
6105
+ isIndex$1 = _isIndex,
6106
+ isTypedArray$1 = requireIsTypedArray();
6231
6107
 
6232
- /** Used for built-in method references. */
6233
- var objectProto = Object.prototype;
6108
+ /** Used for built-in method references. */
6109
+ var objectProto$7 = Object.prototype;
6234
6110
 
6235
- /** Used to check objects for own properties. */
6236
- var hasOwnProperty = objectProto.hasOwnProperty;
6111
+ /** Used to check objects for own properties. */
6112
+ var hasOwnProperty$5 = objectProto$7.hasOwnProperty;
6237
6113
 
6238
- /**
6239
- * Creates an array of the enumerable property names of the array-like `value`.
6240
- *
6241
- * @private
6242
- * @param {*} value The value to query.
6243
- * @param {boolean} inherited Specify returning inherited property names.
6244
- * @returns {Array} Returns the array of property names.
6245
- */
6246
- function arrayLikeKeys(value, inherited) {
6247
- var isArr = isArray(value),
6248
- isArg = !isArr && isArguments(value),
6249
- isBuff = !isArr && !isArg && isBuffer(value),
6250
- isType = !isArr && !isArg && !isBuff && isTypedArray(value),
6251
- skipIndexes = isArr || isArg || isBuff || isType,
6252
- result = skipIndexes ? baseTimes(value.length, String) : [],
6253
- length = result.length;
6254
-
6255
- for (var key in value) {
6256
- if ((inherited || hasOwnProperty.call(value, key)) &&
6257
- !(skipIndexes && (
6258
- // Safari 9 has enumerable `arguments.length` in strict mode.
6259
- key == 'length' ||
6260
- // Node.js 0.10 has enumerable non-index properties on buffers.
6261
- (isBuff && (key == 'offset' || key == 'parent')) ||
6262
- // PhantomJS 2 has enumerable non-index properties on typed arrays.
6263
- (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||
6264
- // Skip index properties.
6265
- isIndex(key, length)
6266
- ))) {
6267
- result.push(key);
6268
- }
6269
- }
6270
- return result;
6271
- }
6114
+ /**
6115
+ * Creates an array of the enumerable property names of the array-like `value`.
6116
+ *
6117
+ * @private
6118
+ * @param {*} value The value to query.
6119
+ * @param {boolean} inherited Specify returning inherited property names.
6120
+ * @returns {Array} Returns the array of property names.
6121
+ */
6122
+ function arrayLikeKeys$1(value, inherited) {
6123
+ var isArr = isArray$f(value),
6124
+ isArg = !isArr && isArguments$2(value),
6125
+ isBuff = !isArr && !isArg && isBuffer$4(value),
6126
+ isType = !isArr && !isArg && !isBuff && isTypedArray$1(value),
6127
+ skipIndexes = isArr || isArg || isBuff || isType,
6128
+ result = skipIndexes ? baseTimes(value.length, String) : [],
6129
+ length = result.length;
6272
6130
 
6273
- _arrayLikeKeys = arrayLikeKeys;
6274
- return _arrayLikeKeys;
6131
+ for (var key in value) {
6132
+ if ((inherited || hasOwnProperty$5.call(value, key)) &&
6133
+ !(skipIndexes && (
6134
+ // Safari 9 has enumerable `arguments.length` in strict mode.
6135
+ key == 'length' ||
6136
+ // Node.js 0.10 has enumerable non-index properties on buffers.
6137
+ (isBuff && (key == 'offset' || key == 'parent')) ||
6138
+ // PhantomJS 2 has enumerable non-index properties on typed arrays.
6139
+ (isType && (key == 'buffer' || key == 'byteLength' || key == 'byteOffset')) ||
6140
+ // Skip index properties.
6141
+ isIndex$1(key, length)
6142
+ ))) {
6143
+ result.push(key);
6144
+ }
6145
+ }
6146
+ return result;
6275
6147
  }
6276
6148
 
6149
+ var _arrayLikeKeys = arrayLikeKeys$1;
6150
+
6277
6151
  /** Used for built-in method references. */
6278
6152
 
6279
6153
  var objectProto$6 = Object.prototype;
@@ -6285,14 +6159,14 @@ var objectProto$6 = Object.prototype;
6285
6159
  * @param {*} value The value to check.
6286
6160
  * @returns {boolean} Returns `true` if `value` is a prototype, else `false`.
6287
6161
  */
6288
- function isPrototype$1(value) {
6162
+ function isPrototype$2(value) {
6289
6163
  var Ctor = value && value.constructor,
6290
6164
  proto = (typeof Ctor == 'function' && Ctor.prototype) || objectProto$6;
6291
6165
 
6292
6166
  return value === proto;
6293
6167
  }
6294
6168
 
6295
- var _isPrototype = isPrototype$1;
6169
+ var _isPrototype = isPrototype$2;
6296
6170
 
6297
6171
  /**
6298
6172
  * Creates a unary function that invokes `func` with its argument transformed.
@@ -6318,7 +6192,7 @@ var nativeKeys$1 = overArg$1(Object.keys, Object);
6318
6192
 
6319
6193
  var _nativeKeys = nativeKeys$1;
6320
6194
 
6321
- var isPrototype = _isPrototype,
6195
+ var isPrototype$1 = _isPrototype,
6322
6196
  nativeKeys = _nativeKeys;
6323
6197
 
6324
6198
  /** Used for built-in method references. */
@@ -6335,7 +6209,7 @@ var hasOwnProperty$4 = objectProto$5.hasOwnProperty;
6335
6209
  * @returns {Array} Returns the array of property names.
6336
6210
  */
6337
6211
  function baseKeys$1(object) {
6338
- if (!isPrototype(object)) {
6212
+ if (!isPrototype$1(object)) {
6339
6213
  return nativeKeys(object);
6340
6214
  }
6341
6215
  var result = [];
@@ -6349,51 +6223,43 @@ function baseKeys$1(object) {
6349
6223
 
6350
6224
  var _baseKeys = baseKeys$1;
6351
6225
 
6352
- var isArrayLike_1;
6353
- var hasRequiredIsArrayLike;
6354
-
6355
- function requireIsArrayLike () {
6356
- if (hasRequiredIsArrayLike) return isArrayLike_1;
6357
- hasRequiredIsArrayLike = 1;
6358
- var isFunction = isFunction_1,
6359
- isLength = requireIsLength();
6360
-
6361
- /**
6362
- * Checks if `value` is array-like. A value is considered array-like if it's
6363
- * not a function and has a `value.length` that's an integer greater than or
6364
- * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.
6365
- *
6366
- * @static
6367
- * @memberOf _
6368
- * @since 4.0.0
6369
- * @category Lang
6370
- * @param {*} value The value to check.
6371
- * @returns {boolean} Returns `true` if `value` is array-like, else `false`.
6372
- * @example
6373
- *
6374
- * _.isArrayLike([1, 2, 3]);
6375
- * // => true
6376
- *
6377
- * _.isArrayLike(document.body.children);
6378
- * // => true
6379
- *
6380
- * _.isArrayLike('abc');
6381
- * // => true
6382
- *
6383
- * _.isArrayLike(_.noop);
6384
- * // => false
6385
- */
6386
- function isArrayLike(value) {
6387
- return value != null && isLength(value.length) && !isFunction(value);
6388
- }
6226
+ var isFunction$1 = isFunction_1,
6227
+ isLength$1 = isLength_1;
6389
6228
 
6390
- isArrayLike_1 = isArrayLike;
6391
- return isArrayLike_1;
6229
+ /**
6230
+ * Checks if `value` is array-like. A value is considered array-like if it's
6231
+ * not a function and has a `value.length` that's an integer greater than or
6232
+ * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.
6233
+ *
6234
+ * @static
6235
+ * @memberOf _
6236
+ * @since 4.0.0
6237
+ * @category Lang
6238
+ * @param {*} value The value to check.
6239
+ * @returns {boolean} Returns `true` if `value` is array-like, else `false`.
6240
+ * @example
6241
+ *
6242
+ * _.isArrayLike([1, 2, 3]);
6243
+ * // => true
6244
+ *
6245
+ * _.isArrayLike(document.body.children);
6246
+ * // => true
6247
+ *
6248
+ * _.isArrayLike('abc');
6249
+ * // => true
6250
+ *
6251
+ * _.isArrayLike(_.noop);
6252
+ * // => false
6253
+ */
6254
+ function isArrayLike$1(value) {
6255
+ return value != null && isLength$1(value.length) && !isFunction$1(value);
6392
6256
  }
6393
6257
 
6394
- var arrayLikeKeys = require_arrayLikeKeys(),
6258
+ var isArrayLike_1 = isArrayLike$1;
6259
+
6260
+ var arrayLikeKeys = _arrayLikeKeys,
6395
6261
  baseKeys = _baseKeys,
6396
- isArrayLike = requireIsArrayLike();
6262
+ isArrayLike = isArrayLike_1;
6397
6263
 
6398
6264
  /**
6399
6265
  * Creates an array of the own enumerable property names of `object`.
@@ -6774,10 +6640,10 @@ function require_stackHas () {
6774
6640
  }
6775
6641
 
6776
6642
  var getNative$3 = _getNative,
6777
- root$3 = _root;
6643
+ root$4 = _root;
6778
6644
 
6779
6645
  /* Built-in method references that are verified to be native. */
6780
- var Map$2 = getNative$3(root$3, 'Map');
6646
+ var Map$2 = getNative$3(root$4, 'Map');
6781
6647
 
6782
6648
  var _Map = Map$2;
6783
6649
 
@@ -7337,7 +7203,7 @@ var hasRequired_baseKeysIn;
7337
7203
  function require_baseKeysIn () {
7338
7204
  if (hasRequired_baseKeysIn) return _baseKeysIn;
7339
7205
  hasRequired_baseKeysIn = 1;
7340
- var isObject = requireIsObject(),
7206
+ var isObject = isObject_1,
7341
7207
  isPrototype = _isPrototype,
7342
7208
  nativeKeysIn = require_nativeKeysIn();
7343
7209
 
@@ -7379,9 +7245,9 @@ var hasRequiredKeysIn;
7379
7245
  function requireKeysIn () {
7380
7246
  if (hasRequiredKeysIn) return keysIn_1;
7381
7247
  hasRequiredKeysIn = 1;
7382
- var arrayLikeKeys = require_arrayLikeKeys(),
7248
+ var arrayLikeKeys = _arrayLikeKeys,
7383
7249
  baseKeysIn = require_baseKeysIn(),
7384
- isArrayLike = requireIsArrayLike();
7250
+ isArrayLike = isArrayLike_1;
7385
7251
 
7386
7252
  /**
7387
7253
  * Creates an array of the own and inherited enumerable property names of `object`.
@@ -7438,50 +7304,43 @@ var _cloneBuffer = {
7438
7304
  set exports(v){ _cloneBufferExports = v; },
7439
7305
  };
7440
7306
 
7441
- var hasRequired_cloneBuffer;
7442
-
7443
- function require_cloneBuffer () {
7444
- if (hasRequired_cloneBuffer) return _cloneBufferExports;
7445
- hasRequired_cloneBuffer = 1;
7446
- (function (module, exports) {
7447
- var root = _root;
7448
-
7449
- /** Detect free variable `exports`. */
7450
- var freeExports = exports && !exports.nodeType && exports;
7451
-
7452
- /** Detect free variable `module`. */
7453
- var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
7454
-
7455
- /** Detect the popular CommonJS extension `module.exports`. */
7456
- var moduleExports = freeModule && freeModule.exports === freeExports;
7457
-
7458
- /** Built-in value references. */
7459
- var Buffer = moduleExports ? root.Buffer : undefined,
7460
- allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined;
7461
-
7462
- /**
7463
- * Creates a clone of `buffer`.
7464
- *
7465
- * @private
7466
- * @param {Buffer} buffer The buffer to clone.
7467
- * @param {boolean} [isDeep] Specify a deep clone.
7468
- * @returns {Buffer} Returns the cloned buffer.
7469
- */
7470
- function cloneBuffer(buffer, isDeep) {
7471
- if (isDeep) {
7472
- return buffer.slice();
7473
- }
7474
- var length = buffer.length,
7475
- result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
7476
-
7477
- buffer.copy(result);
7478
- return result;
7479
- }
7307
+ (function (module, exports) {
7308
+ var root = _root;
7309
+
7310
+ /** Detect free variable `exports`. */
7311
+ var freeExports = exports && !exports.nodeType && exports;
7312
+
7313
+ /** Detect free variable `module`. */
7314
+ var freeModule = freeExports && 'object' == 'object' && module && !module.nodeType && module;
7315
+
7316
+ /** Detect the popular CommonJS extension `module.exports`. */
7317
+ var moduleExports = freeModule && freeModule.exports === freeExports;
7318
+
7319
+ /** Built-in value references. */
7320
+ var Buffer = moduleExports ? root.Buffer : undefined,
7321
+ allocUnsafe = Buffer ? Buffer.allocUnsafe : undefined;
7480
7322
 
7481
- module.exports = cloneBuffer;
7323
+ /**
7324
+ * Creates a clone of `buffer`.
7325
+ *
7326
+ * @private
7327
+ * @param {Buffer} buffer The buffer to clone.
7328
+ * @param {boolean} [isDeep] Specify a deep clone.
7329
+ * @returns {Buffer} Returns the cloned buffer.
7330
+ */
7331
+ function cloneBuffer(buffer, isDeep) {
7332
+ if (isDeep) {
7333
+ return buffer.slice();
7334
+ }
7335
+ var length = buffer.length,
7336
+ result = allocUnsafe ? allocUnsafe(length) : new buffer.constructor(length);
7337
+
7338
+ buffer.copy(result);
7339
+ return result;
7340
+ }
7341
+
7342
+ module.exports = cloneBuffer;
7482
7343
  } (_cloneBuffer, _cloneBufferExports));
7483
- return _cloneBufferExports;
7484
- }
7485
7344
 
7486
7345
  /**
7487
7346
  * A specialized version of `_.filter` for arrays without support for
@@ -7608,12 +7467,12 @@ var _arrayPush = arrayPush$3;
7608
7467
  var overArg = _overArg;
7609
7468
 
7610
7469
  /** Built-in value references. */
7611
- var getPrototype$2 = overArg(Object.getPrototypeOf, Object);
7470
+ var getPrototype$3 = overArg(Object.getPrototypeOf, Object);
7612
7471
 
7613
- var _getPrototype = getPrototype$2;
7472
+ var _getPrototype = getPrototype$3;
7614
7473
 
7615
7474
  var arrayPush$2 = _arrayPush,
7616
- getPrototype$1 = _getPrototype,
7475
+ getPrototype$2 = _getPrototype,
7617
7476
  getSymbols$1 = _getSymbols,
7618
7477
  stubArray = stubArray_1;
7619
7478
 
@@ -7631,7 +7490,7 @@ var getSymbolsIn$2 = !nativeGetSymbols ? stubArray : function(object) {
7631
7490
  var result = [];
7632
7491
  while (object) {
7633
7492
  arrayPush$2(result, getSymbols$1(object));
7634
- object = getPrototype$1(object);
7493
+ object = getPrototype$2(object);
7635
7494
  }
7636
7495
  return result;
7637
7496
  };
@@ -7712,26 +7571,26 @@ function getAllKeysIn$1(object) {
7712
7571
  var _getAllKeysIn = getAllKeysIn$1;
7713
7572
 
7714
7573
  var getNative$2 = _getNative,
7715
- root$2 = _root;
7574
+ root$3 = _root;
7716
7575
 
7717
7576
  /* Built-in method references that are verified to be native. */
7718
- var DataView$2 = getNative$2(root$2, 'DataView');
7577
+ var DataView$2 = getNative$2(root$3, 'DataView');
7719
7578
 
7720
7579
  var _DataView = DataView$2;
7721
7580
 
7722
7581
  var getNative$1 = _getNative,
7723
- root$1 = _root;
7582
+ root$2 = _root;
7724
7583
 
7725
7584
  /* Built-in method references that are verified to be native. */
7726
- var Promise$2 = getNative$1(root$1, 'Promise');
7585
+ var Promise$2 = getNative$1(root$2, 'Promise');
7727
7586
 
7728
7587
  var _Promise = Promise$2;
7729
7588
 
7730
7589
  var getNative = _getNative,
7731
- root = _root;
7590
+ root$1 = _root;
7732
7591
 
7733
7592
  /* Built-in method references that are verified to be native. */
7734
- var Set$2 = getNative(root, 'Set');
7593
+ var Set$2 = getNative(root$1, 'Set');
7735
7594
 
7736
7595
  var _Set = Set$2;
7737
7596
 
@@ -7822,47 +7681,31 @@ function initCloneArray$1(array) {
7822
7681
 
7823
7682
  var _initCloneArray = initCloneArray$1;
7824
7683
 
7825
- var _Uint8Array;
7826
- var hasRequired_Uint8Array;
7827
-
7828
- function require_Uint8Array () {
7829
- if (hasRequired_Uint8Array) return _Uint8Array;
7830
- hasRequired_Uint8Array = 1;
7831
- var root = _root;
7832
-
7833
- /** Built-in value references. */
7834
- var Uint8Array = root.Uint8Array;
7684
+ var root = _root;
7835
7685
 
7836
- _Uint8Array = Uint8Array;
7837
- return _Uint8Array;
7838
- }
7686
+ /** Built-in value references. */
7687
+ var Uint8Array$3 = root.Uint8Array;
7839
7688
 
7840
- var _cloneArrayBuffer;
7841
- var hasRequired_cloneArrayBuffer;
7689
+ var _Uint8Array = Uint8Array$3;
7842
7690
 
7843
- function require_cloneArrayBuffer () {
7844
- if (hasRequired_cloneArrayBuffer) return _cloneArrayBuffer;
7845
- hasRequired_cloneArrayBuffer = 1;
7846
- var Uint8Array = require_Uint8Array();
7691
+ var Uint8Array$2 = _Uint8Array;
7847
7692
 
7848
- /**
7849
- * Creates a clone of `arrayBuffer`.
7850
- *
7851
- * @private
7852
- * @param {ArrayBuffer} arrayBuffer The array buffer to clone.
7853
- * @returns {ArrayBuffer} Returns the cloned array buffer.
7854
- */
7855
- function cloneArrayBuffer(arrayBuffer) {
7856
- var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
7857
- new Uint8Array(result).set(new Uint8Array(arrayBuffer));
7858
- return result;
7859
- }
7860
-
7861
- _cloneArrayBuffer = cloneArrayBuffer;
7862
- return _cloneArrayBuffer;
7693
+ /**
7694
+ * Creates a clone of `arrayBuffer`.
7695
+ *
7696
+ * @private
7697
+ * @param {ArrayBuffer} arrayBuffer The array buffer to clone.
7698
+ * @returns {ArrayBuffer} Returns the cloned array buffer.
7699
+ */
7700
+ function cloneArrayBuffer$2(arrayBuffer) {
7701
+ var result = new arrayBuffer.constructor(arrayBuffer.byteLength);
7702
+ new Uint8Array$2(result).set(new Uint8Array$2(arrayBuffer));
7703
+ return result;
7863
7704
  }
7864
7705
 
7865
- var cloneArrayBuffer$1 = require_cloneArrayBuffer();
7706
+ var _cloneArrayBuffer = cloneArrayBuffer$2;
7707
+
7708
+ var cloneArrayBuffer$1 = _cloneArrayBuffer;
7866
7709
 
7867
7710
  /**
7868
7711
  * Creates a clone of `dataView`.
@@ -7923,7 +7766,7 @@ var hasRequired_cloneTypedArray;
7923
7766
  function require_cloneTypedArray () {
7924
7767
  if (hasRequired_cloneTypedArray) return _cloneTypedArray;
7925
7768
  hasRequired_cloneTypedArray = 1;
7926
- var cloneArrayBuffer = require_cloneArrayBuffer();
7769
+ var cloneArrayBuffer = _cloneArrayBuffer;
7927
7770
 
7928
7771
  /**
7929
7772
  * Creates a clone of `typedArray`.
@@ -7942,7 +7785,7 @@ function require_cloneTypedArray () {
7942
7785
  return _cloneTypedArray;
7943
7786
  }
7944
7787
 
7945
- var cloneArrayBuffer = require_cloneArrayBuffer(),
7788
+ var cloneArrayBuffer = _cloneArrayBuffer,
7946
7789
  cloneDataView = _cloneDataView,
7947
7790
  cloneRegExp = _cloneRegExp,
7948
7791
  cloneSymbol = _cloneSymbol,
@@ -8020,33 +7863,25 @@ function initCloneByTag$1(object, tag, isDeep) {
8020
7863
 
8021
7864
  var _initCloneByTag = initCloneByTag$1;
8022
7865
 
8023
- var _initCloneObject;
8024
- var hasRequired_initCloneObject;
8025
-
8026
- function require_initCloneObject () {
8027
- if (hasRequired_initCloneObject) return _initCloneObject;
8028
- hasRequired_initCloneObject = 1;
8029
- var baseCreate = require_baseCreate(),
8030
- getPrototype = _getPrototype,
8031
- isPrototype = _isPrototype;
8032
-
8033
- /**
8034
- * Initializes an object clone.
8035
- *
8036
- * @private
8037
- * @param {Object} object The object to clone.
8038
- * @returns {Object} Returns the initialized clone.
8039
- */
8040
- function initCloneObject(object) {
8041
- return (typeof object.constructor == 'function' && !isPrototype(object))
8042
- ? baseCreate(getPrototype(object))
8043
- : {};
8044
- }
7866
+ var baseCreate = _baseCreate,
7867
+ getPrototype$1 = _getPrototype,
7868
+ isPrototype = _isPrototype;
8045
7869
 
8046
- _initCloneObject = initCloneObject;
8047
- return _initCloneObject;
7870
+ /**
7871
+ * Initializes an object clone.
7872
+ *
7873
+ * @private
7874
+ * @param {Object} object The object to clone.
7875
+ * @returns {Object} Returns the initialized clone.
7876
+ */
7877
+ function initCloneObject$1(object) {
7878
+ return (typeof object.constructor == 'function' && !isPrototype(object))
7879
+ ? baseCreate(getPrototype$1(object))
7880
+ : {};
8048
7881
  }
8049
7882
 
7883
+ var _initCloneObject = initCloneObject$1;
7884
+
8050
7885
  var getTag$4 = _getTag,
8051
7886
  isObjectLike$5 = isObjectLike_1;
8052
7887
 
@@ -8067,8 +7902,8 @@ function baseIsMap$1(value) {
8067
7902
  var _baseIsMap = baseIsMap$1;
8068
7903
 
8069
7904
  var baseIsMap = _baseIsMap,
8070
- baseUnary$1 = require_baseUnary(),
8071
- nodeUtil$1 = require_nodeUtil();
7905
+ baseUnary$1 = _baseUnary,
7906
+ nodeUtil$1 = _nodeUtilExports;
8072
7907
 
8073
7908
  /* Node.js helper references. */
8074
7909
  var nodeIsMap = nodeUtil$1 && nodeUtil$1.isMap;
@@ -8114,8 +7949,8 @@ function baseIsSet$1(value) {
8114
7949
  var _baseIsSet = baseIsSet$1;
8115
7950
 
8116
7951
  var baseIsSet = _baseIsSet,
8117
- baseUnary = require_baseUnary(),
8118
- nodeUtil = require_nodeUtil();
7952
+ baseUnary = _baseUnary,
7953
+ nodeUtil = _nodeUtilExports;
8119
7954
 
8120
7955
  /* Node.js helper references. */
8121
7956
  var nodeIsSet = nodeUtil && nodeUtil.isSet;
@@ -8146,7 +7981,7 @@ var Stack$2 = require_Stack(),
8146
7981
  assignValue = _assignValue,
8147
7982
  baseAssign = _baseAssign,
8148
7983
  baseAssignIn = _baseAssignIn,
8149
- cloneBuffer = require_cloneBuffer(),
7984
+ cloneBuffer = _cloneBufferExports,
8150
7985
  copyArray$1 = _copyArray,
8151
7986
  copySymbols = _copySymbols,
8152
7987
  copySymbolsIn = _copySymbolsIn,
@@ -8155,11 +7990,11 @@ var Stack$2 = require_Stack(),
8155
7990
  getTag$2 = _getTag,
8156
7991
  initCloneArray = _initCloneArray,
8157
7992
  initCloneByTag = _initCloneByTag,
8158
- initCloneObject = require_initCloneObject(),
7993
+ initCloneObject = _initCloneObject,
8159
7994
  isArray$d = isArray_1,
8160
- isBuffer$3 = requireIsBuffer(),
7995
+ isBuffer$3 = isBufferExports,
8161
7996
  isMap$1 = isMap_1,
8162
- isObject$2 = requireIsObject(),
7997
+ isObject$2 = isObject_1,
8163
7998
  isSet$1 = isSet_1,
8164
7999
  keys$1 = keys_1,
8165
8000
  keysIn = requireKeysIn();
@@ -8763,7 +8598,7 @@ function setToArray$1(set) {
8763
8598
  var _setToArray = setToArray$1;
8764
8599
 
8765
8600
  var Symbol$3 = _Symbol,
8766
- Uint8Array$1 = require_Uint8Array(),
8601
+ Uint8Array$1 = _Uint8Array,
8767
8602
  eq = requireEq(),
8768
8603
  equalArrays$1 = _equalArrays,
8769
8604
  mapToArray = _mapToArray,
@@ -8972,7 +8807,7 @@ var Stack$1 = require_Stack(),
8972
8807
  equalObjects = _equalObjects,
8973
8808
  getTag = _getTag,
8974
8809
  isArray$c = isArray_1,
8975
- isBuffer$2 = requireIsBuffer(),
8810
+ isBuffer$2 = isBufferExports,
8976
8811
  isTypedArray = requireIsTypedArray();
8977
8812
 
8978
8813
  /** Used to compose bitmasks for value comparisons. */
@@ -9142,7 +8977,7 @@ function baseIsMatch$1(object, source, matchData, customizer) {
9142
8977
 
9143
8978
  var _baseIsMatch = baseIsMatch$1;
9144
8979
 
9145
- var isObject$1 = requireIsObject();
8980
+ var isObject$1 = isObject_1;
9146
8981
 
9147
8982
  /**
9148
8983
  * Checks if `value` is suitable for strict equality comparisons, i.e. `===`.
@@ -9598,8 +9433,8 @@ var _baseHasIn = baseHasIn$1;
9598
9433
  var castPath = _castPath,
9599
9434
  isArguments$1 = requireIsArguments(),
9600
9435
  isArray$8 = isArray_1,
9601
- isIndex = require_isIndex(),
9602
- isLength = requireIsLength(),
9436
+ isIndex = _isIndex,
9437
+ isLength = isLength_1,
9603
9438
  toKey$3 = _toKey;
9604
9439
 
9605
9440
  /**
@@ -9772,7 +9607,7 @@ var property_1 = property$1;
9772
9607
 
9773
9608
  var baseMatches = _baseMatches,
9774
9609
  baseMatchesProperty = _baseMatchesProperty,
9775
- identity = requireIdentity(),
9610
+ identity = identity_1,
9776
9611
  isArray$7 = isArray_1,
9777
9612
  property = property_1;
9778
9613
 
@@ -9939,54 +9774,46 @@ function flatten$1(array) {
9939
9774
 
9940
9775
  var flatten_1 = flatten$1;
9941
9776
 
9942
- var _overRest;
9943
- var hasRequired_overRest;
9944
-
9945
- function require_overRest () {
9946
- if (hasRequired_overRest) return _overRest;
9947
- hasRequired_overRest = 1;
9948
- var apply = _apply;
9949
-
9950
- /* Built-in method references for those with the same name as other `lodash` methods. */
9951
- var nativeMax = Math.max;
9777
+ var apply = _apply;
9952
9778
 
9953
- /**
9954
- * A specialized version of `baseRest` which transforms the rest array.
9955
- *
9956
- * @private
9957
- * @param {Function} func The function to apply a rest parameter to.
9958
- * @param {number} [start=func.length-1] The start position of the rest parameter.
9959
- * @param {Function} transform The rest array transform.
9960
- * @returns {Function} Returns the new function.
9961
- */
9962
- function overRest(func, start, transform) {
9963
- start = nativeMax(start === undefined ? (func.length - 1) : start, 0);
9964
- return function() {
9965
- var args = arguments,
9966
- index = -1,
9967
- length = nativeMax(args.length - start, 0),
9968
- array = Array(length);
9779
+ /* Built-in method references for those with the same name as other `lodash` methods. */
9780
+ var nativeMax = Math.max;
9969
9781
 
9970
- while (++index < length) {
9971
- array[index] = args[start + index];
9972
- }
9973
- index = -1;
9974
- var otherArgs = Array(start + 1);
9975
- while (++index < start) {
9976
- otherArgs[index] = args[index];
9977
- }
9978
- otherArgs[start] = transform(array);
9979
- return apply(func, this, otherArgs);
9980
- };
9981
- }
9782
+ /**
9783
+ * A specialized version of `baseRest` which transforms the rest array.
9784
+ *
9785
+ * @private
9786
+ * @param {Function} func The function to apply a rest parameter to.
9787
+ * @param {number} [start=func.length-1] The start position of the rest parameter.
9788
+ * @param {Function} transform The rest array transform.
9789
+ * @returns {Function} Returns the new function.
9790
+ */
9791
+ function overRest$1(func, start, transform) {
9792
+ start = nativeMax(start === undefined ? (func.length - 1) : start, 0);
9793
+ return function() {
9794
+ var args = arguments,
9795
+ index = -1,
9796
+ length = nativeMax(args.length - start, 0),
9797
+ array = Array(length);
9982
9798
 
9983
- _overRest = overRest;
9984
- return _overRest;
9799
+ while (++index < length) {
9800
+ array[index] = args[start + index];
9801
+ }
9802
+ index = -1;
9803
+ var otherArgs = Array(start + 1);
9804
+ while (++index < start) {
9805
+ otherArgs[index] = args[index];
9806
+ }
9807
+ otherArgs[start] = transform(array);
9808
+ return apply(func, this, otherArgs);
9809
+ };
9985
9810
  }
9986
9811
 
9812
+ var _overRest = overRest$1;
9813
+
9987
9814
  var flatten = flatten_1,
9988
- overRest = require_overRest(),
9989
- setToString = require_setToString();
9815
+ overRest = _overRest,
9816
+ setToString = _setToString;
9990
9817
 
9991
9818
  /**
9992
9819
  * A specialized version of `baseRest` which flattens the rest array.
@@ -10111,7 +9938,7 @@ var hasRequired_assignMergeValue;
10111
9938
  function require_assignMergeValue () {
10112
9939
  if (hasRequired_assignMergeValue) return _assignMergeValue;
10113
9940
  hasRequired_assignMergeValue = 1;
10114
- var baseAssignValue = require_baseAssignValue(),
9941
+ var baseAssignValue = _baseAssignValue,
10115
9942
  eq = requireEq();
10116
9943
 
10117
9944
  /**
@@ -10200,7 +10027,7 @@ var hasRequiredIsArrayLikeObject;
10200
10027
  function requireIsArrayLikeObject () {
10201
10028
  if (hasRequiredIsArrayLikeObject) return isArrayLikeObject_1;
10202
10029
  hasRequiredIsArrayLikeObject = 1;
10203
- var isArrayLike = requireIsArrayLike(),
10030
+ var isArrayLike = isArrayLike_1,
10204
10031
  isObjectLike = isObjectLike_1;
10205
10032
 
10206
10033
  /**
@@ -10315,16 +10142,16 @@ function require_baseMergeDeep () {
10315
10142
  if (hasRequired_baseMergeDeep) return _baseMergeDeep;
10316
10143
  hasRequired_baseMergeDeep = 1;
10317
10144
  var assignMergeValue = require_assignMergeValue(),
10318
- cloneBuffer = require_cloneBuffer(),
10145
+ cloneBuffer = _cloneBufferExports,
10319
10146
  cloneTypedArray = require_cloneTypedArray(),
10320
10147
  copyArray = _copyArray,
10321
- initCloneObject = require_initCloneObject(),
10148
+ initCloneObject = _initCloneObject,
10322
10149
  isArguments = requireIsArguments(),
10323
10150
  isArray = isArray_1,
10324
10151
  isArrayLikeObject = requireIsArrayLikeObject(),
10325
- isBuffer = requireIsBuffer(),
10152
+ isBuffer = isBufferExports,
10326
10153
  isFunction = isFunction_1,
10327
- isObject = requireIsObject(),
10154
+ isObject = isObject_1,
10328
10155
  isPlainObject = isPlainObject_1,
10329
10156
  isTypedArray = requireIsTypedArray(),
10330
10157
  safeGet = require_safeGet(),
@@ -10421,7 +10248,7 @@ function require_baseMerge () {
10421
10248
  assignMergeValue = require_assignMergeValue(),
10422
10249
  baseFor = require_baseFor(),
10423
10250
  baseMergeDeep = require_baseMergeDeep(),
10424
- isObject = requireIsObject(),
10251
+ isObject = isObject_1,
10425
10252
  keysIn = requireKeysIn(),
10426
10253
  safeGet = require_safeGet();
10427
10254
 
@@ -10468,9 +10295,9 @@ var hasRequired_baseRest;
10468
10295
  function require_baseRest () {
10469
10296
  if (hasRequired_baseRest) return _baseRest;
10470
10297
  hasRequired_baseRest = 1;
10471
- var identity = requireIdentity(),
10472
- overRest = require_overRest(),
10473
- setToString = require_setToString();
10298
+ var identity = identity_1,
10299
+ overRest = _overRest,
10300
+ setToString = _setToString;
10474
10301
 
10475
10302
  /**
10476
10303
  * The base implementation of `_.rest` which doesn't validate or coerce arguments.
@@ -10495,9 +10322,9 @@ function require_isIterateeCall () {
10495
10322
  if (hasRequired_isIterateeCall) return _isIterateeCall;
10496
10323
  hasRequired_isIterateeCall = 1;
10497
10324
  var eq = requireEq(),
10498
- isArrayLike = requireIsArrayLike(),
10499
- isIndex = require_isIndex(),
10500
- isObject = requireIsObject();
10325
+ isArrayLike = isArrayLike_1,
10326
+ isIndex = _isIndex,
10327
+ isObject = isObject_1;
10501
10328
 
10502
10329
  /**
10503
10330
  * Checks if the given arguments are from an iteratee call.
@@ -10963,17 +10790,17 @@ var AccountBillingPlanChangeType = /* @__PURE__ */ ((AccountBillingPlanChangeTyp
10963
10790
  return AccountBillingPlanChangeType2;
10964
10791
  })(AccountBillingPlanChangeType || {});
10965
10792
 
10966
- var __getOwnPropSymbols$S = Object.getOwnPropertySymbols;
10967
- var __hasOwnProp$S = Object.prototype.hasOwnProperty;
10968
- var __propIsEnum$S = Object.prototype.propertyIsEnumerable;
10969
- var __objRest$w = (source, exclude) => {
10793
+ var __getOwnPropSymbols$U = Object.getOwnPropertySymbols;
10794
+ var __hasOwnProp$U = Object.prototype.hasOwnProperty;
10795
+ var __propIsEnum$U = Object.prototype.propertyIsEnumerable;
10796
+ var __objRest$x = (source, exclude) => {
10970
10797
  var target = {};
10971
10798
  for (var prop in source)
10972
- if (__hasOwnProp$S.call(source, prop) && exclude.indexOf(prop) < 0)
10799
+ if (__hasOwnProp$U.call(source, prop) && exclude.indexOf(prop) < 0)
10973
10800
  target[prop] = source[prop];
10974
- if (source != null && __getOwnPropSymbols$S)
10975
- for (var prop of __getOwnPropSymbols$S(source)) {
10976
- if (exclude.indexOf(prop) < 0 && __propIsEnum$S.call(source, prop))
10801
+ if (source != null && __getOwnPropSymbols$U)
10802
+ for (var prop of __getOwnPropSymbols$U(source)) {
10803
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$U.call(source, prop))
10977
10804
  target[prop] = source[prop];
10978
10805
  }
10979
10806
  return target;
@@ -10987,7 +10814,7 @@ class CodedError {
10987
10814
  this.message = message;
10988
10815
  }
10989
10816
  static fromObject(_a) {
10990
- var _b = _a, { message } = _b, options = __objRest$w(_b, ["message"]);
10817
+ var _b = _a, { message } = _b, options = __objRest$x(_b, ["message"]);
10991
10818
  return new CodedError(message, options);
10992
10819
  }
10993
10820
  }
@@ -11108,17 +10935,17 @@ const types = /*#__PURE__*/Object.freeze(/*#__PURE__*/Object.defineProperty({
11108
10935
  RateCardStatus
11109
10936
  }, Symbol.toStringTag, { value: 'Module' }));
11110
10937
 
11111
- var __getOwnPropSymbols$R = Object.getOwnPropertySymbols;
11112
- var __hasOwnProp$R = Object.prototype.hasOwnProperty;
11113
- var __propIsEnum$R = Object.prototype.propertyIsEnumerable;
11114
- var __objRest$v = (source, exclude) => {
10938
+ var __getOwnPropSymbols$T = Object.getOwnPropertySymbols;
10939
+ var __hasOwnProp$T = Object.prototype.hasOwnProperty;
10940
+ var __propIsEnum$T = Object.prototype.propertyIsEnumerable;
10941
+ var __objRest$w = (source, exclude) => {
11115
10942
  var target = {};
11116
10943
  for (var prop in source)
11117
- if (__hasOwnProp$R.call(source, prop) && exclude.indexOf(prop) < 0)
10944
+ if (__hasOwnProp$T.call(source, prop) && exclude.indexOf(prop) < 0)
11118
10945
  target[prop] = source[prop];
11119
- if (source != null && __getOwnPropSymbols$R)
11120
- for (var prop of __getOwnPropSymbols$R(source)) {
11121
- if (exclude.indexOf(prop) < 0 && __propIsEnum$R.call(source, prop))
10946
+ if (source != null && __getOwnPropSymbols$T)
10947
+ for (var prop of __getOwnPropSymbols$T(source)) {
10948
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$T.call(source, prop))
11122
10949
  target[prop] = source[prop];
11123
10950
  }
11124
10951
  return target;
@@ -11150,7 +10977,7 @@ class AccountSettingsAPI {
11150
10977
  * The `updateImage` method updates specific image data for a given image id.
11151
10978
  */
11152
10979
  this.updateImage = (_a) => {
11153
- var _b = _a, { labelImageId } = _b, data = __objRest$v(_b, ["labelImageId"]);
10980
+ var _b = _a, { labelImageId } = _b, data = __objRest$w(_b, ["labelImageId"]);
11154
10981
  return this.client.put(`/v1/account/settings/images/${labelImageId}`, data);
11155
10982
  };
11156
10983
  /**
@@ -13922,7 +13749,7 @@ var ipaddr = {
13922
13749
  }).call(commonjsGlobal);
13923
13750
  } (ipaddr));
13924
13751
 
13925
- var __async$10 = (__this, __arguments, generator) => {
13752
+ var __async$11 = (__this, __arguments, generator) => {
13926
13753
  return new Promise((resolve, reject) => {
13927
13754
  var fulfilled = (value) => {
13928
13755
  try {
@@ -13942,7 +13769,7 @@ var __async$10 = (__this, __arguments, generator) => {
13942
13769
  step((generator = generator.apply(__this, __arguments)).next());
13943
13770
  });
13944
13771
  };
13945
- const getEndUserIpAddress = () => __async$10(void 0, null, function* () {
13772
+ const getEndUserIpAddress = () => __async$11(void 0, null, function* () {
13946
13773
  try {
13947
13774
  const response = yield axios.get("https://api.ipify.org/?format=json");
13948
13775
  if (response.data.ip && ipaddrExports.isValid(response.data.ip)) {
@@ -13954,9 +13781,9 @@ const getEndUserIpAddress = () => __async$10(void 0, null, function* () {
13954
13781
  }
13955
13782
  });
13956
13783
 
13957
- const camelizeKeys = (obj) => {
13784
+ const camelizeKeys = (obj, parentKey) => {
13958
13785
  if (Array.isArray(obj)) {
13959
- return obj.map(camelizeKeys);
13786
+ return obj.map((item) => camelizeKeys(item, parentKey));
13960
13787
  } else if (obj !== null && typeof obj === "object") {
13961
13788
  const newObj = {};
13962
13789
  for (const key in obj) {
@@ -13976,7 +13803,11 @@ const camelizeKeys = (obj) => {
13976
13803
  newKey += char;
13977
13804
  }
13978
13805
  }
13979
- newObj[newKey] = camelizeKeys(obj[key]);
13806
+ if (parentKey === "formSchema" && ["jsonSchema", "uiSchema", "brandedContent"].includes(newKey)) {
13807
+ newObj[newKey] = obj[key];
13808
+ } else {
13809
+ newObj[newKey] = camelizeKeys(obj[key], newKey);
13810
+ }
13980
13811
  }
13981
13812
  }
13982
13813
  return newObj;
@@ -13999,38 +13830,38 @@ const decamelizeKeys = (obj, separator = "_") => {
13999
13830
  return obj;
14000
13831
  };
14001
13832
 
14002
- var __defProp$G = Object.defineProperty;
14003
- var __defProps$A = Object.defineProperties;
14004
- var __getOwnPropDescs$A = Object.getOwnPropertyDescriptors;
14005
- var __getOwnPropSymbols$Q = Object.getOwnPropertySymbols;
14006
- var __hasOwnProp$Q = Object.prototype.hasOwnProperty;
14007
- var __propIsEnum$Q = Object.prototype.propertyIsEnumerable;
14008
- var __defNormalProp$G = (obj, key, value) => key in obj ? __defProp$G(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
14009
- var __spreadValues$G = (a, b) => {
13833
+ var __defProp$H = Object.defineProperty;
13834
+ var __defProps$B = Object.defineProperties;
13835
+ var __getOwnPropDescs$B = Object.getOwnPropertyDescriptors;
13836
+ var __getOwnPropSymbols$S = Object.getOwnPropertySymbols;
13837
+ var __hasOwnProp$S = Object.prototype.hasOwnProperty;
13838
+ var __propIsEnum$S = Object.prototype.propertyIsEnumerable;
13839
+ var __defNormalProp$H = (obj, key, value) => key in obj ? __defProp$H(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
13840
+ var __spreadValues$H = (a, b) => {
14010
13841
  for (var prop in b || (b = {}))
14011
- if (__hasOwnProp$Q.call(b, prop))
14012
- __defNormalProp$G(a, prop, b[prop]);
14013
- if (__getOwnPropSymbols$Q)
14014
- for (var prop of __getOwnPropSymbols$Q(b)) {
14015
- if (__propIsEnum$Q.call(b, prop))
14016
- __defNormalProp$G(a, prop, b[prop]);
13842
+ if (__hasOwnProp$S.call(b, prop))
13843
+ __defNormalProp$H(a, prop, b[prop]);
13844
+ if (__getOwnPropSymbols$S)
13845
+ for (var prop of __getOwnPropSymbols$S(b)) {
13846
+ if (__propIsEnum$S.call(b, prop))
13847
+ __defNormalProp$H(a, prop, b[prop]);
14017
13848
  }
14018
13849
  return a;
14019
13850
  };
14020
- var __spreadProps$A = (a, b) => __defProps$A(a, __getOwnPropDescs$A(b));
14021
- var __objRest$u = (source, exclude) => {
13851
+ var __spreadProps$B = (a, b) => __defProps$B(a, __getOwnPropDescs$B(b));
13852
+ var __objRest$v = (source, exclude) => {
14022
13853
  var target = {};
14023
13854
  for (var prop in source)
14024
- if (__hasOwnProp$Q.call(source, prop) && exclude.indexOf(prop) < 0)
13855
+ if (__hasOwnProp$S.call(source, prop) && exclude.indexOf(prop) < 0)
14025
13856
  target[prop] = source[prop];
14026
- if (source != null && __getOwnPropSymbols$Q)
14027
- for (var prop of __getOwnPropSymbols$Q(source)) {
14028
- if (exclude.indexOf(prop) < 0 && __propIsEnum$Q.call(source, prop))
13857
+ if (source != null && __getOwnPropSymbols$S)
13858
+ for (var prop of __getOwnPropSymbols$S(source)) {
13859
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$S.call(source, prop))
14029
13860
  target[prop] = source[prop];
14030
13861
  }
14031
13862
  return target;
14032
13863
  };
14033
- var __async$$ = (__this, __arguments, generator) => {
13864
+ var __async$10 = (__this, __arguments, generator) => {
14034
13865
  return new Promise((resolve, reject) => {
14035
13866
  var fulfilled = (value) => {
14036
13867
  try {
@@ -14070,12 +13901,12 @@ class CarriersAPI {
14070
13901
  /**
14071
13902
  * The `connect` method connects a carrier account to a user's ShipEngine account.
14072
13903
  */
14073
- this.connect = (_a) => __async$$(this, null, function* () {
14074
- var _b = _a, { carrierCode } = _b, connection = __objRest$u(_b, ["carrierCode"]);
13904
+ this.connect = (_a) => __async$10(this, null, function* () {
13905
+ var _b = _a, { carrierCode } = _b, connection = __objRest$v(_b, ["carrierCode"]);
14075
13906
  const endUserIpAddress = yield getEndUserIpAddress();
14076
13907
  if (!endUserIpAddress)
14077
13908
  return Promise.reject([new CodedError("Unable to get IP address")]);
14078
- return yield this.client.post(`/v1/registration/${carrierCode}`, __spreadProps$A(__spreadValues$G({}, connection), {
13909
+ return yield this.client.post(`/v1/registration/${carrierCode}`, __spreadProps$B(__spreadValues$H({}, connection), {
14079
13910
  endUserIpAddress
14080
13911
  }));
14081
13912
  });
@@ -14161,7 +13992,22 @@ class CarriersAPI {
14161
13992
  }
14162
13993
  }
14163
13994
 
14164
- var __async$_ = (__this, __arguments, generator) => {
13995
+ var __getOwnPropSymbols$R = Object.getOwnPropertySymbols;
13996
+ var __hasOwnProp$R = Object.prototype.hasOwnProperty;
13997
+ var __propIsEnum$R = Object.prototype.propertyIsEnumerable;
13998
+ var __objRest$u = (source, exclude) => {
13999
+ var target = {};
14000
+ for (var prop in source)
14001
+ if (__hasOwnProp$R.call(source, prop) && exclude.indexOf(prop) < 0)
14002
+ target[prop] = source[prop];
14003
+ if (source != null && __getOwnPropSymbols$R)
14004
+ for (var prop of __getOwnPropSymbols$R(source)) {
14005
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$R.call(source, prop))
14006
+ target[prop] = source[prop];
14007
+ }
14008
+ return target;
14009
+ };
14010
+ var __async$$ = (__this, __arguments, generator) => {
14165
14011
  return new Promise((resolve, reject) => {
14166
14012
  var fulfilled = (value) => {
14167
14013
  try {
@@ -14203,7 +14049,7 @@ class ConnectionsAPI {
14203
14049
  /**
14204
14050
  * The `connectCarrier` method connects a carrier to account.
14205
14051
  */
14206
- this.connectCarrier = (carrierName, formData) => __async$_(this, null, function* () {
14052
+ this.connectCarrier = (carrierName, formData) => __async$$(this, null, function* () {
14207
14053
  return yield this.client.post(
14208
14054
  `/v1/connections/carriers/${carrierName}`,
14209
14055
  formData,
@@ -14245,6 +14091,18 @@ class ConnectionsAPI {
14245
14091
  formData
14246
14092
  );
14247
14093
  };
14094
+ /**
14095
+ * The `requestStampsAccountUrls` method request the Web Client Home URL from Stamps for a given
14096
+ * Stamps SE Carrier ID
14097
+ * @docs https://auctane.atlassian.net/wiki/spaces/SEEU/pages/6228738069/ENGINE-9471+Endicia+web+client+communication
14098
+ */
14099
+ this.requestStampsAccountUrls = (_a) => {
14100
+ var _b = _a, { carrierId } = _b, rest = __objRest$u(_b, ["carrierId"]);
14101
+ return this.client.put(
14102
+ `v1/connections/carriers/stamps_com/${carrierId}/request_account_url`,
14103
+ rest
14104
+ );
14105
+ };
14248
14106
  this.client = client;
14249
14107
  }
14250
14108
  }
@@ -16359,23 +16217,23 @@ class CustomPackagesAPI {
16359
16217
  }
16360
16218
  }
16361
16219
 
16362
- var __defProp$F = Object.defineProperty;
16363
- var __getOwnPropSymbols$P = Object.getOwnPropertySymbols;
16364
- var __hasOwnProp$P = Object.prototype.hasOwnProperty;
16365
- var __propIsEnum$P = Object.prototype.propertyIsEnumerable;
16366
- var __defNormalProp$F = (obj, key, value) => key in obj ? __defProp$F(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
16367
- var __spreadValues$F = (a, b) => {
16220
+ var __defProp$G = Object.defineProperty;
16221
+ var __getOwnPropSymbols$Q = Object.getOwnPropertySymbols;
16222
+ var __hasOwnProp$Q = Object.prototype.hasOwnProperty;
16223
+ var __propIsEnum$Q = Object.prototype.propertyIsEnumerable;
16224
+ var __defNormalProp$G = (obj, key, value) => key in obj ? __defProp$G(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
16225
+ var __spreadValues$G = (a, b) => {
16368
16226
  for (var prop in b || (b = {}))
16369
- if (__hasOwnProp$P.call(b, prop))
16370
- __defNormalProp$F(a, prop, b[prop]);
16371
- if (__getOwnPropSymbols$P)
16372
- for (var prop of __getOwnPropSymbols$P(b)) {
16373
- if (__propIsEnum$P.call(b, prop))
16374
- __defNormalProp$F(a, prop, b[prop]);
16227
+ if (__hasOwnProp$Q.call(b, prop))
16228
+ __defNormalProp$G(a, prop, b[prop]);
16229
+ if (__getOwnPropSymbols$Q)
16230
+ for (var prop of __getOwnPropSymbols$Q(b)) {
16231
+ if (__propIsEnum$Q.call(b, prop))
16232
+ __defNormalProp$G(a, prop, b[prop]);
16375
16233
  }
16376
16234
  return a;
16377
16235
  };
16378
- var __async$Z = (__this, __arguments, generator) => {
16236
+ var __async$_ = (__this, __arguments, generator) => {
16379
16237
  return new Promise((resolve, reject) => {
16380
16238
  var fulfilled = (value) => {
16381
16239
  try {
@@ -16414,12 +16272,12 @@ class FundingSourcesAPI {
16414
16272
  * The `create` method creates a new funding source for a given user. This requires
16415
16273
  * payment information to be collected from the user.
16416
16274
  */
16417
- this.create = (createFundingSource) => __async$Z(this, null, function* () {
16275
+ this.create = (createFundingSource) => __async$_(this, null, function* () {
16418
16276
  const endUserIpAddress = yield getEndUserIpAddress();
16419
16277
  if (!endUserIpAddress) {
16420
16278
  return Promise.reject([new CodedError("Unable to get IP address")]);
16421
16279
  }
16422
- return yield this.client.post("/v1/funding_sources", __spreadValues$F({
16280
+ return yield this.client.post("/v1/funding_sources", __spreadValues$G({
16423
16281
  endUserIpAddress
16424
16282
  }, createFundingSource));
16425
16283
  });
@@ -16428,7 +16286,7 @@ class FundingSourcesAPI {
16428
16286
  * user to update the billing address or payment information associated with the
16429
16287
  * funding source.
16430
16288
  */
16431
- this.update = (billingInfo, creditCardInfo, auctanePayInfo, fundingSourceId) => __async$Z(this, null, function* () {
16289
+ this.update = (billingInfo, creditCardInfo, auctanePayInfo, fundingSourceId) => __async$_(this, null, function* () {
16432
16290
  const endUserIpAddress = yield getEndUserIpAddress();
16433
16291
  if (!endUserIpAddress) {
16434
16292
  return Promise.reject([new CodedError("Unable to get IP address")]);
@@ -16438,7 +16296,7 @@ class FundingSourcesAPI {
16438
16296
  {
16439
16297
  billingInfo,
16440
16298
  endUserIpAddress,
16441
- paymentMethod: __spreadValues$F({
16299
+ paymentMethod: __spreadValues$G({
16442
16300
  creditCardInfo
16443
16301
  }, auctanePayInfo)
16444
16302
  }
@@ -16448,19 +16306,19 @@ class FundingSourcesAPI {
16448
16306
  * The `registerCarrier` method registers a carrier account and associates
16449
16307
  * it with a given funding source.
16450
16308
  */
16451
- this.registerCarrier = (carrier) => __async$Z(this, null, function* () {
16309
+ this.registerCarrier = (carrier) => __async$_(this, null, function* () {
16452
16310
  const endUserIpAddress = yield getEndUserIpAddress();
16453
16311
  if (!endUserIpAddress) {
16454
16312
  return Promise.reject([new CodedError("Unable to get IP address")]);
16455
16313
  }
16456
- return yield this.client.post("/v1/registration/funding_source", __spreadValues$F({
16314
+ return yield this.client.post("/v1/registration/funding_source", __spreadValues$G({
16457
16315
  endUserIpAddress
16458
16316
  }, carrier));
16459
16317
  });
16460
16318
  /**
16461
16319
  * The `addFunds` method allows you to add funds to a funding source.
16462
16320
  */
16463
- this.addFunds = (amount, fundingSourceId) => __async$Z(this, null, function* () {
16321
+ this.addFunds = (amount, fundingSourceId) => __async$_(this, null, function* () {
16464
16322
  return yield this.client.put(
16465
16323
  `/v1/funding_sources/${fundingSourceId}/add_funds`,
16466
16324
  amount
@@ -16470,7 +16328,7 @@ class FundingSourcesAPI {
16470
16328
  * The `metadata` method returns seller-specific requirements for creating funding sources
16471
16329
  * and attaching carriers
16472
16330
  */
16473
- this.metadata = () => __async$Z(this, null, function* () {
16331
+ this.metadata = () => __async$_(this, null, function* () {
16474
16332
  return yield this.client.get("/v1/funding_sources/metadata");
16475
16333
  });
16476
16334
  /**
@@ -16522,7 +16380,7 @@ class InsuranceAPI {
16522
16380
  }
16523
16381
  }
16524
16382
 
16525
- var __async$Y = (__this, __arguments, generator) => {
16383
+ var __async$Z = (__this, __arguments, generator) => {
16526
16384
  return new Promise((resolve, reject) => {
16527
16385
  var fulfilled = (value) => {
16528
16386
  try {
@@ -16554,13 +16412,13 @@ class InvoiceAddressAPI {
16554
16412
  /**
16555
16413
  * The `create` method creates a new invoice address for a given user.
16556
16414
  */
16557
- this.create = (invoiceAddress) => __async$Y(this, null, function* () {
16415
+ this.create = (invoiceAddress) => __async$Z(this, null, function* () {
16558
16416
  return yield this.client.post("/v1/invoice_address", invoiceAddress);
16559
16417
  });
16560
16418
  /**
16561
16419
  * The `update` method updates a invoice address for a given user.
16562
16420
  */
16563
- this.update = (invoiceAddress) => __async$Y(this, null, function* () {
16421
+ this.update = (invoiceAddress) => __async$Z(this, null, function* () {
16564
16422
  return yield this.client.put("/v1/invoice_address", invoiceAddress);
16565
16423
  });
16566
16424
  this.client = client;
@@ -16622,17 +16480,17 @@ class LabelsAPI {
16622
16480
  }
16623
16481
  }
16624
16482
 
16625
- var __getOwnPropSymbols$O = Object.getOwnPropertySymbols;
16626
- var __hasOwnProp$O = Object.prototype.hasOwnProperty;
16627
- var __propIsEnum$O = Object.prototype.propertyIsEnumerable;
16483
+ var __getOwnPropSymbols$P = Object.getOwnPropertySymbols;
16484
+ var __hasOwnProp$P = Object.prototype.hasOwnProperty;
16485
+ var __propIsEnum$P = Object.prototype.propertyIsEnumerable;
16628
16486
  var __objRest$t = (source, exclude) => {
16629
16487
  var target = {};
16630
16488
  for (var prop in source)
16631
- if (__hasOwnProp$O.call(source, prop) && exclude.indexOf(prop) < 0)
16489
+ if (__hasOwnProp$P.call(source, prop) && exclude.indexOf(prop) < 0)
16632
16490
  target[prop] = source[prop];
16633
- if (source != null && __getOwnPropSymbols$O)
16634
- for (var prop of __getOwnPropSymbols$O(source)) {
16635
- if (exclude.indexOf(prop) < 0 && __propIsEnum$O.call(source, prop))
16491
+ if (source != null && __getOwnPropSymbols$P)
16492
+ for (var prop of __getOwnPropSymbols$P(source)) {
16493
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$P.call(source, prop))
16636
16494
  target[prop] = source[prop];
16637
16495
  }
16638
16496
  return target;
@@ -16753,19 +16611,19 @@ class RateCardsAPI {
16753
16611
  }
16754
16612
  }
16755
16613
 
16756
- var __defProp$E = Object.defineProperty;
16757
- var __getOwnPropSymbols$N = Object.getOwnPropertySymbols;
16758
- var __hasOwnProp$N = Object.prototype.hasOwnProperty;
16759
- var __propIsEnum$N = Object.prototype.propertyIsEnumerable;
16760
- var __defNormalProp$E = (obj, key, value) => key in obj ? __defProp$E(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
16761
- var __spreadValues$E = (a, b) => {
16614
+ var __defProp$F = Object.defineProperty;
16615
+ var __getOwnPropSymbols$O = Object.getOwnPropertySymbols;
16616
+ var __hasOwnProp$O = Object.prototype.hasOwnProperty;
16617
+ var __propIsEnum$O = Object.prototype.propertyIsEnumerable;
16618
+ var __defNormalProp$F = (obj, key, value) => key in obj ? __defProp$F(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
16619
+ var __spreadValues$F = (a, b) => {
16762
16620
  for (var prop in b || (b = {}))
16763
- if (__hasOwnProp$N.call(b, prop))
16764
- __defNormalProp$E(a, prop, b[prop]);
16765
- if (__getOwnPropSymbols$N)
16766
- for (var prop of __getOwnPropSymbols$N(b)) {
16767
- if (__propIsEnum$N.call(b, prop))
16768
- __defNormalProp$E(a, prop, b[prop]);
16621
+ if (__hasOwnProp$O.call(b, prop))
16622
+ __defNormalProp$F(a, prop, b[prop]);
16623
+ if (__getOwnPropSymbols$O)
16624
+ for (var prop of __getOwnPropSymbols$O(b)) {
16625
+ if (__propIsEnum$O.call(b, prop))
16626
+ __defNormalProp$F(a, prop, b[prop]);
16769
16627
  }
16770
16628
  return a;
16771
16629
  };
@@ -16787,7 +16645,7 @@ class RatesAPI {
16787
16645
  * method.
16788
16646
  */
16789
16647
  this.estimate = (params) => {
16790
- return this.client.post("/v1/rates/estimate", __spreadValues$E({}, params));
16648
+ return this.client.post("/v1/rates/estimate", __spreadValues$F({}, params));
16791
16649
  };
16792
16650
  this.client = client;
16793
16651
  }
@@ -16867,7 +16725,7 @@ class SalesOrdersAPI {
16867
16725
  }
16868
16726
  }
16869
16727
 
16870
- var __async$X = (__this, __arguments, generator) => {
16728
+ var __async$Y = (__this, __arguments, generator) => {
16871
16729
  return new Promise((resolve, reject) => {
16872
16730
  var fulfilled = (value) => {
16873
16731
  try {
@@ -16925,7 +16783,7 @@ class SellersAPI {
16925
16783
  /**
16926
16784
  * Deletes an API Key
16927
16785
  */
16928
- this.deleteSellerApiKey = (_0) => __async$X(this, [_0], function* ({
16786
+ this.deleteSellerApiKey = (_0) => __async$Y(this, [_0], function* ({
16929
16787
  encryptedApiKey,
16930
16788
  sellerId,
16931
16789
  isSandbox
@@ -16971,19 +16829,19 @@ class SellersAPI {
16971
16829
  }
16972
16830
  }
16973
16831
 
16974
- var __defProp$D = Object.defineProperty;
16975
- var __getOwnPropSymbols$M = Object.getOwnPropertySymbols;
16976
- var __hasOwnProp$M = Object.prototype.hasOwnProperty;
16977
- var __propIsEnum$M = Object.prototype.propertyIsEnumerable;
16978
- var __defNormalProp$D = (obj, key, value) => key in obj ? __defProp$D(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
16979
- var __spreadValues$D = (a, b) => {
16832
+ var __defProp$E = Object.defineProperty;
16833
+ var __getOwnPropSymbols$N = Object.getOwnPropertySymbols;
16834
+ var __hasOwnProp$N = Object.prototype.hasOwnProperty;
16835
+ var __propIsEnum$N = Object.prototype.propertyIsEnumerable;
16836
+ var __defNormalProp$E = (obj, key, value) => key in obj ? __defProp$E(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
16837
+ var __spreadValues$E = (a, b) => {
16980
16838
  for (var prop in b || (b = {}))
16981
- if (__hasOwnProp$M.call(b, prop))
16982
- __defNormalProp$D(a, prop, b[prop]);
16983
- if (__getOwnPropSymbols$M)
16984
- for (var prop of __getOwnPropSymbols$M(b)) {
16985
- if (__propIsEnum$M.call(b, prop))
16986
- __defNormalProp$D(a, prop, b[prop]);
16839
+ if (__hasOwnProp$N.call(b, prop))
16840
+ __defNormalProp$E(a, prop, b[prop]);
16841
+ if (__getOwnPropSymbols$N)
16842
+ for (var prop of __getOwnPropSymbols$N(b)) {
16843
+ if (__propIsEnum$N.call(b, prop))
16844
+ __defNormalProp$E(a, prop, b[prop]);
16987
16845
  }
16988
16846
  return a;
16989
16847
  };
@@ -16995,7 +16853,7 @@ class ServicePointsAPI {
16995
16853
  * Either an address, coordinates, or an address query
16996
16854
  */
16997
16855
  this.list = (options) => {
16998
- return this.client.post("/v1/service_points/list", __spreadValues$D({}, options));
16856
+ return this.client.post("/v1/service_points/list", __spreadValues$E({}, options));
16999
16857
  };
17000
16858
  /**
17001
16859
  * Get a specific service point by its carrier code, country code, and id
@@ -17013,7 +16871,7 @@ class ServicePointsAPI {
17013
16871
  }
17014
16872
  }
17015
16873
 
17016
- var __async$W = (__this, __arguments, generator) => {
16874
+ var __async$X = (__this, __arguments, generator) => {
17017
16875
  return new Promise((resolve, reject) => {
17018
16876
  var fulfilled = (value) => {
17019
16877
  try {
@@ -17062,7 +16920,7 @@ class ShipmentsAPI {
17062
16920
  * The `create` method allows for creating shipments based on a list of shipment
17063
16921
  * items passed into this method.
17064
16922
  */
17065
- this.create = (...shipments) => __async$W(this, null, function* () {
16923
+ this.create = (...shipments) => __async$X(this, null, function* () {
17066
16924
  return this.client.post("/v1/shipments", {
17067
16925
  shipments
17068
16926
  });
@@ -34479,38 +34337,38 @@ class WebhooksAPI {
34479
34337
  }
34480
34338
  }
34481
34339
 
34482
- var __defProp$C = Object.defineProperty;
34483
- var __defProps$z = Object.defineProperties;
34484
- var __getOwnPropDescs$z = Object.getOwnPropertyDescriptors;
34485
- var __getOwnPropSymbols$L = Object.getOwnPropertySymbols;
34486
- var __hasOwnProp$L = Object.prototype.hasOwnProperty;
34487
- var __propIsEnum$L = Object.prototype.propertyIsEnumerable;
34488
- var __defNormalProp$C = (obj, key, value) => key in obj ? __defProp$C(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
34489
- var __spreadValues$C = (a, b) => {
34340
+ var __defProp$D = Object.defineProperty;
34341
+ var __defProps$A = Object.defineProperties;
34342
+ var __getOwnPropDescs$A = Object.getOwnPropertyDescriptors;
34343
+ var __getOwnPropSymbols$M = Object.getOwnPropertySymbols;
34344
+ var __hasOwnProp$M = Object.prototype.hasOwnProperty;
34345
+ var __propIsEnum$M = Object.prototype.propertyIsEnumerable;
34346
+ var __defNormalProp$D = (obj, key, value) => key in obj ? __defProp$D(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
34347
+ var __spreadValues$D = (a, b) => {
34490
34348
  for (var prop in b || (b = {}))
34491
- if (__hasOwnProp$L.call(b, prop))
34492
- __defNormalProp$C(a, prop, b[prop]);
34493
- if (__getOwnPropSymbols$L)
34494
- for (var prop of __getOwnPropSymbols$L(b)) {
34495
- if (__propIsEnum$L.call(b, prop))
34496
- __defNormalProp$C(a, prop, b[prop]);
34349
+ if (__hasOwnProp$M.call(b, prop))
34350
+ __defNormalProp$D(a, prop, b[prop]);
34351
+ if (__getOwnPropSymbols$M)
34352
+ for (var prop of __getOwnPropSymbols$M(b)) {
34353
+ if (__propIsEnum$M.call(b, prop))
34354
+ __defNormalProp$D(a, prop, b[prop]);
34497
34355
  }
34498
34356
  return a;
34499
34357
  };
34500
- var __spreadProps$z = (a, b) => __defProps$z(a, __getOwnPropDescs$z(b));
34358
+ var __spreadProps$A = (a, b) => __defProps$A(a, __getOwnPropDescs$A(b));
34501
34359
  var __objRest$s = (source, exclude) => {
34502
34360
  var target = {};
34503
34361
  for (var prop in source)
34504
- if (__hasOwnProp$L.call(source, prop) && exclude.indexOf(prop) < 0)
34362
+ if (__hasOwnProp$M.call(source, prop) && exclude.indexOf(prop) < 0)
34505
34363
  target[prop] = source[prop];
34506
- if (source != null && __getOwnPropSymbols$L)
34507
- for (var prop of __getOwnPropSymbols$L(source)) {
34508
- if (exclude.indexOf(prop) < 0 && __propIsEnum$L.call(source, prop))
34364
+ if (source != null && __getOwnPropSymbols$M)
34365
+ for (var prop of __getOwnPropSymbols$M(source)) {
34366
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$M.call(source, prop))
34509
34367
  target[prop] = source[prop];
34510
34368
  }
34511
34369
  return target;
34512
34370
  };
34513
- var __async$V = (__this, __arguments, generator) => {
34371
+ var __async$W = (__this, __arguments, generator) => {
34514
34372
  return new Promise((resolve, reject) => {
34515
34373
  var fulfilled = (value) => {
34516
34374
  try {
@@ -34533,7 +34391,7 @@ var __async$V = (__this, __arguments, generator) => {
34533
34391
  const logger$1 = E({
34534
34392
  level: process.env.NODE_ENV === "production" ? "fatal" : "info",
34535
34393
  name: "shipengine-api",
34536
- serializers: __spreadProps$z(__spreadValues$C({}, k), {
34394
+ serializers: __spreadProps$A(__spreadValues$D({}, k), {
34537
34395
  req: (req) => ({
34538
34396
  headers: req.headers,
34539
34397
  method: req.method,
@@ -34558,7 +34416,7 @@ class ShipEngineAPI {
34558
34416
  this.getSandboxToken = getSandboxToken;
34559
34417
  const client = axios.create({
34560
34418
  baseURL,
34561
- headers: __spreadProps$z(__spreadValues$C({}, headers), {
34419
+ headers: __spreadProps$A(__spreadValues$D({}, headers), {
34562
34420
  "Content-Type": "application/json"
34563
34421
  }),
34564
34422
  paramsSerializer: (params) => lib.stringify(decamelizeKeys(params), { arrayFormat: "brackets" }),
@@ -34598,7 +34456,7 @@ class ShipEngineAPI {
34598
34456
  });
34599
34457
  client.defaults.headers.common["Authorization"] = `Bearer ${token}`;
34600
34458
  client.interceptors.request.use(
34601
- (config) => __async$V(this, null, function* () {
34459
+ (config) => __async$W(this, null, function* () {
34602
34460
  if (config.isSandbox) {
34603
34461
  if (!this.sandboxToken) {
34604
34462
  this.sandboxToken = yield getSandboxToken == null ? void 0 : getSandboxToken();
@@ -34625,7 +34483,7 @@ class ShipEngineAPI {
34625
34483
  );
34626
34484
  return res;
34627
34485
  },
34628
- (err) => __async$V(this, null, function* () {
34486
+ (err) => __async$W(this, null, function* () {
34629
34487
  var _a, _b, _c, _d, _e;
34630
34488
  logger$1.error(
34631
34489
  { err, req: err.config, res: err.response },
@@ -34672,7 +34530,7 @@ class ShipEngineAPI {
34672
34530
  * that token (also known as Seller ID)
34673
34531
  */
34674
34532
  getTenant(isSandbox) {
34675
- return __async$V(this, null, function* () {
34533
+ return __async$W(this, null, function* () {
34676
34534
  var _a;
34677
34535
  if (!isSandbox) {
34678
34536
  return this.getTenantFromToken(this.token);
@@ -34975,25 +34833,25 @@ const delay = (ms) => new Promise((resolve) => {
34975
34833
 
34976
34834
  const onError = (_errors) => _default();
34977
34835
 
34978
- var __defProp$B = Object.defineProperty;
34979
- var __defProps$y = Object.defineProperties;
34980
- var __getOwnPropDescs$y = Object.getOwnPropertyDescriptors;
34981
- var __getOwnPropSymbols$K = Object.getOwnPropertySymbols;
34982
- var __hasOwnProp$K = Object.prototype.hasOwnProperty;
34983
- var __propIsEnum$K = Object.prototype.propertyIsEnumerable;
34984
- var __defNormalProp$B = (obj, key, value) => key in obj ? __defProp$B(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
34985
- var __spreadValues$B = (a, b) => {
34836
+ var __defProp$C = Object.defineProperty;
34837
+ var __defProps$z = Object.defineProperties;
34838
+ var __getOwnPropDescs$z = Object.getOwnPropertyDescriptors;
34839
+ var __getOwnPropSymbols$L = Object.getOwnPropertySymbols;
34840
+ var __hasOwnProp$L = Object.prototype.hasOwnProperty;
34841
+ var __propIsEnum$L = Object.prototype.propertyIsEnumerable;
34842
+ var __defNormalProp$C = (obj, key, value) => key in obj ? __defProp$C(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
34843
+ var __spreadValues$C = (a, b) => {
34986
34844
  for (var prop in b || (b = {}))
34987
- if (__hasOwnProp$K.call(b, prop))
34988
- __defNormalProp$B(a, prop, b[prop]);
34989
- if (__getOwnPropSymbols$K)
34990
- for (var prop of __getOwnPropSymbols$K(b)) {
34991
- if (__propIsEnum$K.call(b, prop))
34992
- __defNormalProp$B(a, prop, b[prop]);
34845
+ if (__hasOwnProp$L.call(b, prop))
34846
+ __defNormalProp$C(a, prop, b[prop]);
34847
+ if (__getOwnPropSymbols$L)
34848
+ for (var prop of __getOwnPropSymbols$L(b)) {
34849
+ if (__propIsEnum$L.call(b, prop))
34850
+ __defNormalProp$C(a, prop, b[prop]);
34993
34851
  }
34994
34852
  return a;
34995
34853
  };
34996
- var __spreadProps$y = (a, b) => __defProps$y(a, __getOwnPropDescs$y(b));
34854
+ var __spreadProps$z = (a, b) => __defProps$z(a, __getOwnPropDescs$z(b));
34997
34855
  const streams = [];
34998
34856
  if (process.env.NODE_ENV === "production") {
34999
34857
  streams.push({
@@ -35002,7 +34860,7 @@ if (process.env.NODE_ENV === "production") {
35002
34860
  }
35003
34861
  const logger = E({
35004
34862
  name: "shipengine",
35005
- serializers: __spreadProps$y(__spreadValues$B({}, k), {
34863
+ serializers: __spreadProps$z(__spreadValues$C({}, k), {
35006
34864
  req: (req) => ({
35007
34865
  headers: req.headers,
35008
34866
  method: req.method,
@@ -35027,7 +34885,7 @@ const retryUntil = (callbackFn, retries = 10, timeoutBetweenAttempts = 1e3) => P
35027
34885
  throw error;
35028
34886
  });
35029
34887
 
35030
- var __async$U = (__this, __arguments, generator) => {
34888
+ var __async$V = (__this, __arguments, generator) => {
35031
34889
  return new Promise((resolve, reject) => {
35032
34890
  var fulfilled = (value) => {
35033
34891
  try {
@@ -35050,7 +34908,7 @@ var __async$U = (__this, __arguments, generator) => {
35050
34908
  const useCreateAccountImage = () => {
35051
34909
  const { client } = useShipEngine();
35052
34910
  return useMutation({
35053
- mutationFn: (data) => __async$U(void 0, null, function* () {
34911
+ mutationFn: (data) => __async$V(void 0, null, function* () {
35054
34912
  const result = yield client.accountSettings.createImage(data);
35055
34913
  return result.data;
35056
34914
  }),
@@ -35059,7 +34917,7 @@ const useCreateAccountImage = () => {
35059
34917
  });
35060
34918
  };
35061
34919
 
35062
- var __async$T = (__this, __arguments, generator) => {
34920
+ var __async$U = (__this, __arguments, generator) => {
35063
34921
  return new Promise((resolve, reject) => {
35064
34922
  var fulfilled = (value) => {
35065
34923
  try {
@@ -35082,7 +34940,7 @@ var __async$T = (__this, __arguments, generator) => {
35082
34940
  const useDeleteAccountImage = () => {
35083
34941
  const { client } = useShipEngine();
35084
34942
  return useMutation({
35085
- mutationFn: (labelImageId) => __async$T(void 0, null, function* () {
34943
+ mutationFn: (labelImageId) => __async$U(void 0, null, function* () {
35086
34944
  const result = yield client.accountSettings.deleteImage(labelImageId);
35087
34945
  return result.data;
35088
34946
  }),
@@ -35111,7 +34969,7 @@ const useGetAccountSettings = () => {
35111
34969
  });
35112
34970
  };
35113
34971
 
35114
- var __async$S = (__this, __arguments, generator) => {
34972
+ var __async$T = (__this, __arguments, generator) => {
35115
34973
  return new Promise((resolve, reject) => {
35116
34974
  var fulfilled = (value) => {
35117
34975
  try {
@@ -35134,7 +34992,7 @@ var __async$S = (__this, __arguments, generator) => {
35134
34992
  const useUpdateAccountImage = () => {
35135
34993
  const { client } = useShipEngine();
35136
34994
  return useMutation({
35137
- mutationFn: (data) => __async$S(void 0, null, function* () {
34995
+ mutationFn: (data) => __async$T(void 0, null, function* () {
35138
34996
  const result = yield client.accountSettings.updateImage(data);
35139
34997
  return result.data;
35140
34998
  }),
@@ -35143,7 +35001,7 @@ const useUpdateAccountImage = () => {
35143
35001
  });
35144
35002
  };
35145
35003
 
35146
- var __async$R = (__this, __arguments, generator) => {
35004
+ var __async$S = (__this, __arguments, generator) => {
35147
35005
  return new Promise((resolve, reject) => {
35148
35006
  var fulfilled = (value) => {
35149
35007
  try {
@@ -35166,7 +35024,7 @@ var __async$R = (__this, __arguments, generator) => {
35166
35024
  const useUpdateAccountSettings = () => {
35167
35025
  const { client } = useShipEngine();
35168
35026
  return useMutation({
35169
- mutationFn: (settings) => __async$R(void 0, null, function* () {
35027
+ mutationFn: (settings) => __async$S(void 0, null, function* () {
35170
35028
  const result = yield client.accountSettings.update(settings);
35171
35029
  return result.data;
35172
35030
  }),
@@ -35175,7 +35033,7 @@ const useUpdateAccountSettings = () => {
35175
35033
  });
35176
35034
  };
35177
35035
 
35178
- var __async$Q = (__this, __arguments, generator) => {
35036
+ var __async$R = (__this, __arguments, generator) => {
35179
35037
  return new Promise((resolve, reject) => {
35180
35038
  var fulfilled = (value) => {
35181
35039
  try {
@@ -35198,7 +35056,7 @@ var __async$Q = (__this, __arguments, generator) => {
35198
35056
  const useParseAddress = () => {
35199
35057
  const { client } = useShipEngine();
35200
35058
  return useMutation({
35201
- mutationFn: (_0) => __async$Q(void 0, [_0], function* ({ address, text }) {
35059
+ mutationFn: (_0) => __async$R(void 0, [_0], function* ({ address, text }) {
35202
35060
  const result = yield client.addresses.parse(text, address);
35203
35061
  return result.data;
35204
35062
  }),
@@ -35207,7 +35065,7 @@ const useParseAddress = () => {
35207
35065
  });
35208
35066
  };
35209
35067
 
35210
- var __async$P = (__this, __arguments, generator) => {
35068
+ var __async$Q = (__this, __arguments, generator) => {
35211
35069
  return new Promise((resolve, reject) => {
35212
35070
  var fulfilled = (value) => {
35213
35071
  try {
@@ -35230,7 +35088,7 @@ var __async$P = (__this, __arguments, generator) => {
35230
35088
  const useValidateAddresses = () => {
35231
35089
  const { client } = useShipEngine();
35232
35090
  return useMutation({
35233
- mutationFn: (addresses) => __async$P(void 0, null, function* () {
35091
+ mutationFn: (addresses) => __async$Q(void 0, null, function* () {
35234
35092
  const result = yield client.addresses.validate(addresses);
35235
35093
  return result.data;
35236
35094
  }),
@@ -35239,26 +35097,26 @@ const useValidateAddresses = () => {
35239
35097
  });
35240
35098
  };
35241
35099
 
35242
- var __defProp$A = Object.defineProperty;
35243
- var __defProps$x = Object.defineProperties;
35244
- var __getOwnPropDescs$x = Object.getOwnPropertyDescriptors;
35245
- var __getOwnPropSymbols$J = Object.getOwnPropertySymbols;
35246
- var __hasOwnProp$J = Object.prototype.hasOwnProperty;
35247
- var __propIsEnum$J = Object.prototype.propertyIsEnumerable;
35248
- var __defNormalProp$A = (obj, key, value) => key in obj ? __defProp$A(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
35249
- var __spreadValues$A = (a, b) => {
35100
+ var __defProp$B = Object.defineProperty;
35101
+ var __defProps$y = Object.defineProperties;
35102
+ var __getOwnPropDescs$y = Object.getOwnPropertyDescriptors;
35103
+ var __getOwnPropSymbols$K = Object.getOwnPropertySymbols;
35104
+ var __hasOwnProp$K = Object.prototype.hasOwnProperty;
35105
+ var __propIsEnum$K = Object.prototype.propertyIsEnumerable;
35106
+ var __defNormalProp$B = (obj, key, value) => key in obj ? __defProp$B(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
35107
+ var __spreadValues$B = (a, b) => {
35250
35108
  for (var prop in b || (b = {}))
35251
- if (__hasOwnProp$J.call(b, prop))
35252
- __defNormalProp$A(a, prop, b[prop]);
35253
- if (__getOwnPropSymbols$J)
35254
- for (var prop of __getOwnPropSymbols$J(b)) {
35255
- if (__propIsEnum$J.call(b, prop))
35256
- __defNormalProp$A(a, prop, b[prop]);
35109
+ if (__hasOwnProp$K.call(b, prop))
35110
+ __defNormalProp$B(a, prop, b[prop]);
35111
+ if (__getOwnPropSymbols$K)
35112
+ for (var prop of __getOwnPropSymbols$K(b)) {
35113
+ if (__propIsEnum$K.call(b, prop))
35114
+ __defNormalProp$B(a, prop, b[prop]);
35257
35115
  }
35258
35116
  return a;
35259
35117
  };
35260
- var __spreadProps$x = (a, b) => __defProps$x(a, __getOwnPropDescs$x(b));
35261
- var __async$O = (__this, __arguments, generator) => {
35118
+ var __spreadProps$y = (a, b) => __defProps$y(a, __getOwnPropDescs$y(b));
35119
+ var __async$P = (__this, __arguments, generator) => {
35262
35120
  return new Promise((resolve, reject) => {
35263
35121
  var fulfilled = (value) => {
35264
35122
  try {
@@ -35280,8 +35138,8 @@ var __async$O = (__this, __arguments, generator) => {
35280
35138
  };
35281
35139
  const useCreateAuctanePaySession = (params) => {
35282
35140
  const { client } = useShipEngine();
35283
- return useMutation(__spreadProps$x(__spreadValues$A({}, params), {
35284
- mutationFn: (request) => __async$O(void 0, null, function* () {
35141
+ return useMutation(__spreadProps$y(__spreadValues$B({}, params), {
35142
+ mutationFn: (request) => __async$P(void 0, null, function* () {
35285
35143
  const result = yield client.auctanePay.createSession(request);
35286
35144
  return result.data;
35287
35145
  }),
@@ -35290,29 +35148,29 @@ const useCreateAuctanePaySession = (params) => {
35290
35148
  }));
35291
35149
  };
35292
35150
 
35293
- var __defProp$z = Object.defineProperty;
35294
- var __defProps$w = Object.defineProperties;
35295
- var __getOwnPropDescs$w = Object.getOwnPropertyDescriptors;
35296
- var __getOwnPropSymbols$I = Object.getOwnPropertySymbols;
35297
- var __hasOwnProp$I = Object.prototype.hasOwnProperty;
35298
- var __propIsEnum$I = Object.prototype.propertyIsEnumerable;
35299
- var __defNormalProp$z = (obj, key, value) => key in obj ? __defProp$z(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
35300
- var __spreadValues$z = (a, b) => {
35151
+ var __defProp$A = Object.defineProperty;
35152
+ var __defProps$x = Object.defineProperties;
35153
+ var __getOwnPropDescs$x = Object.getOwnPropertyDescriptors;
35154
+ var __getOwnPropSymbols$J = Object.getOwnPropertySymbols;
35155
+ var __hasOwnProp$J = Object.prototype.hasOwnProperty;
35156
+ var __propIsEnum$J = Object.prototype.propertyIsEnumerable;
35157
+ var __defNormalProp$A = (obj, key, value) => key in obj ? __defProp$A(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
35158
+ var __spreadValues$A = (a, b) => {
35301
35159
  for (var prop in b || (b = {}))
35302
- if (__hasOwnProp$I.call(b, prop))
35303
- __defNormalProp$z(a, prop, b[prop]);
35304
- if (__getOwnPropSymbols$I)
35305
- for (var prop of __getOwnPropSymbols$I(b)) {
35306
- if (__propIsEnum$I.call(b, prop))
35307
- __defNormalProp$z(a, prop, b[prop]);
35160
+ if (__hasOwnProp$J.call(b, prop))
35161
+ __defNormalProp$A(a, prop, b[prop]);
35162
+ if (__getOwnPropSymbols$J)
35163
+ for (var prop of __getOwnPropSymbols$J(b)) {
35164
+ if (__propIsEnum$J.call(b, prop))
35165
+ __defNormalProp$A(a, prop, b[prop]);
35308
35166
  }
35309
35167
  return a;
35310
35168
  };
35311
- var __spreadProps$w = (a, b) => __defProps$w(a, __getOwnPropDescs$w(b));
35169
+ var __spreadProps$x = (a, b) => __defProps$x(a, __getOwnPropDescs$x(b));
35312
35170
  const useGetAuctanePayConfig = (params) => {
35313
35171
  const { client } = useShipEngine();
35314
- const queryParams = __spreadValues$z({}, params);
35315
- return useQuery(__spreadProps$w(__spreadValues$z({}, queryParams), {
35172
+ const queryParams = __spreadValues$A({}, params);
35173
+ return useQuery(__spreadProps$x(__spreadValues$A({}, queryParams), {
35316
35174
  onError,
35317
35175
  queryFn: () => client.auctanePay.getConfig(),
35318
35176
  queryKey: ["useGetAuctanePayConfig"],
@@ -35320,7 +35178,7 @@ const useGetAuctanePayConfig = (params) => {
35320
35178
  }));
35321
35179
  };
35322
35180
 
35323
- var __async$N = (__this, __arguments, generator) => {
35181
+ var __async$O = (__this, __arguments, generator) => {
35324
35182
  return new Promise((resolve, reject) => {
35325
35183
  var fulfilled = (value) => {
35326
35184
  try {
@@ -35343,7 +35201,7 @@ var __async$N = (__this, __arguments, generator) => {
35343
35201
  const useAddFunds = () => {
35344
35202
  const { client } = useShipEngine();
35345
35203
  return useMutation({
35346
- mutationFn: (_0) => __async$N(void 0, [_0], function* ({ carrierId, funds }) {
35204
+ mutationFn: (_0) => __async$O(void 0, [_0], function* ({ carrierId, funds }) {
35347
35205
  const result = yield client.carriers.addFunds(carrierId, funds);
35348
35206
  return result.data;
35349
35207
  }),
@@ -35352,7 +35210,7 @@ const useAddFunds = () => {
35352
35210
  });
35353
35211
  };
35354
35212
 
35355
- var __async$M = (__this, __arguments, generator) => {
35213
+ var __async$N = (__this, __arguments, generator) => {
35356
35214
  return new Promise((resolve, reject) => {
35357
35215
  var fulfilled = (value) => {
35358
35216
  try {
@@ -35375,7 +35233,7 @@ var __async$M = (__this, __arguments, generator) => {
35375
35233
  const useConnectCarrier = () => {
35376
35234
  const { client } = useShipEngine();
35377
35235
  return useMutation({
35378
- mutationFn: (params) => __async$M(void 0, null, function* () {
35236
+ mutationFn: (params) => __async$N(void 0, null, function* () {
35379
35237
  const result = yield client.carriers.connect(params);
35380
35238
  return result.data;
35381
35239
  }),
@@ -35484,41 +35342,41 @@ const useGetServicesByCarrier = (carrierId) => {
35484
35342
  });
35485
35343
  };
35486
35344
 
35487
- var __defProp$y = Object.defineProperty;
35488
- var __defProps$v = Object.defineProperties;
35489
- var __getOwnPropDescs$v = Object.getOwnPropertyDescriptors;
35490
- var __getOwnPropSymbols$H = Object.getOwnPropertySymbols;
35491
- var __hasOwnProp$H = Object.prototype.hasOwnProperty;
35492
- var __propIsEnum$H = Object.prototype.propertyIsEnumerable;
35493
- var __defNormalProp$y = (obj, key, value) => key in obj ? __defProp$y(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
35494
- var __spreadValues$y = (a, b) => {
35345
+ var __defProp$z = Object.defineProperty;
35346
+ var __defProps$w = Object.defineProperties;
35347
+ var __getOwnPropDescs$w = Object.getOwnPropertyDescriptors;
35348
+ var __getOwnPropSymbols$I = Object.getOwnPropertySymbols;
35349
+ var __hasOwnProp$I = Object.prototype.hasOwnProperty;
35350
+ var __propIsEnum$I = Object.prototype.propertyIsEnumerable;
35351
+ var __defNormalProp$z = (obj, key, value) => key in obj ? __defProp$z(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
35352
+ var __spreadValues$z = (a, b) => {
35495
35353
  for (var prop in b || (b = {}))
35496
- if (__hasOwnProp$H.call(b, prop))
35497
- __defNormalProp$y(a, prop, b[prop]);
35498
- if (__getOwnPropSymbols$H)
35499
- for (var prop of __getOwnPropSymbols$H(b)) {
35500
- if (__propIsEnum$H.call(b, prop))
35501
- __defNormalProp$y(a, prop, b[prop]);
35354
+ if (__hasOwnProp$I.call(b, prop))
35355
+ __defNormalProp$z(a, prop, b[prop]);
35356
+ if (__getOwnPropSymbols$I)
35357
+ for (var prop of __getOwnPropSymbols$I(b)) {
35358
+ if (__propIsEnum$I.call(b, prop))
35359
+ __defNormalProp$z(a, prop, b[prop]);
35502
35360
  }
35503
35361
  return a;
35504
35362
  };
35505
- var __spreadProps$v = (a, b) => __defProps$v(a, __getOwnPropDescs$v(b));
35363
+ var __spreadProps$w = (a, b) => __defProps$w(a, __getOwnPropDescs$w(b));
35506
35364
  var __objRest$r = (source, exclude) => {
35507
35365
  var target = {};
35508
35366
  for (var prop in source)
35509
- if (__hasOwnProp$H.call(source, prop) && exclude.indexOf(prop) < 0)
35367
+ if (__hasOwnProp$I.call(source, prop) && exclude.indexOf(prop) < 0)
35510
35368
  target[prop] = source[prop];
35511
- if (source != null && __getOwnPropSymbols$H)
35512
- for (var prop of __getOwnPropSymbols$H(source)) {
35513
- if (exclude.indexOf(prop) < 0 && __propIsEnum$H.call(source, prop))
35369
+ if (source != null && __getOwnPropSymbols$I)
35370
+ for (var prop of __getOwnPropSymbols$I(source)) {
35371
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$I.call(source, prop))
35514
35372
  target[prop] = source[prop];
35515
35373
  }
35516
35374
  return target;
35517
35375
  };
35518
35376
  const useListCarriers = (params) => {
35519
35377
  const { client } = useShipEngine();
35520
- const _a = __spreadValues$y({}, params), { queryFnParams } = _a, rest = __objRest$r(_a, ["queryFnParams"]);
35521
- return useQuery(__spreadProps$v(__spreadValues$y({}, rest), {
35378
+ const _a = __spreadValues$z({}, params), { queryFnParams } = _a, rest = __objRest$r(_a, ["queryFnParams"]);
35379
+ return useQuery(__spreadProps$w(__spreadValues$z({}, rest), {
35522
35380
  onError,
35523
35381
  queryFn: () => client.carriers.list(queryFnParams),
35524
35382
  queryKey: ["useListCarriers", queryFnParams],
@@ -35526,22 +35384,22 @@ const useListCarriers = (params) => {
35526
35384
  }));
35527
35385
  };
35528
35386
 
35529
- var __getOwnPropSymbols$G = Object.getOwnPropertySymbols;
35530
- var __hasOwnProp$G = Object.prototype.hasOwnProperty;
35531
- var __propIsEnum$G = Object.prototype.propertyIsEnumerable;
35387
+ var __getOwnPropSymbols$H = Object.getOwnPropertySymbols;
35388
+ var __hasOwnProp$H = Object.prototype.hasOwnProperty;
35389
+ var __propIsEnum$H = Object.prototype.propertyIsEnumerable;
35532
35390
  var __objRest$q = (source, exclude) => {
35533
35391
  var target = {};
35534
35392
  for (var prop in source)
35535
- if (__hasOwnProp$G.call(source, prop) && exclude.indexOf(prop) < 0)
35393
+ if (__hasOwnProp$H.call(source, prop) && exclude.indexOf(prop) < 0)
35536
35394
  target[prop] = source[prop];
35537
- if (source != null && __getOwnPropSymbols$G)
35538
- for (var prop of __getOwnPropSymbols$G(source)) {
35539
- if (exclude.indexOf(prop) < 0 && __propIsEnum$G.call(source, prop))
35395
+ if (source != null && __getOwnPropSymbols$H)
35396
+ for (var prop of __getOwnPropSymbols$H(source)) {
35397
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$H.call(source, prop))
35540
35398
  target[prop] = source[prop];
35541
35399
  }
35542
35400
  return target;
35543
35401
  };
35544
- var __async$L = (__this, __arguments, generator) => {
35402
+ var __async$M = (__this, __arguments, generator) => {
35545
35403
  return new Promise((resolve, reject) => {
35546
35404
  var fulfilled = (value) => {
35547
35405
  try {
@@ -35565,7 +35423,7 @@ const useUpdateAutoFunding = () => {
35565
35423
  const { client } = useShipEngine();
35566
35424
  const queryClient = useQueryClient();
35567
35425
  return useMutation({
35568
- mutationFn: (_a) => __async$L(void 0, null, function* () {
35426
+ mutationFn: (_a) => __async$M(void 0, null, function* () {
35569
35427
  var _b = _a, { carrierId } = _b, options = __objRest$q(_b, ["carrierId"]);
35570
35428
  const result = yield client.carriers.updateAutoFunding(carrierId, options);
35571
35429
  return result.data;
@@ -35595,7 +35453,7 @@ const useGetZonesByCarrier = (carrierId) => {
35595
35453
  });
35596
35454
  };
35597
35455
 
35598
- var __async$K = (__this, __arguments, generator) => {
35456
+ var __async$L = (__this, __arguments, generator) => {
35599
35457
  return new Promise((resolve, reject) => {
35600
35458
  var fulfilled = (value) => {
35601
35459
  try {
@@ -35618,7 +35476,7 @@ var __async$K = (__this, __arguments, generator) => {
35618
35476
  const useDeleteCarrier = () => {
35619
35477
  const { client } = useShipEngine();
35620
35478
  return useMutation({
35621
- mutationFn: (carrierId) => __async$K(void 0, null, function* () {
35479
+ mutationFn: (carrierId) => __async$L(void 0, null, function* () {
35622
35480
  const result = yield client.carriers.delete(carrierId);
35623
35481
  return result.data;
35624
35482
  }),
@@ -35627,17 +35485,17 @@ const useDeleteCarrier = () => {
35627
35485
  });
35628
35486
  };
35629
35487
 
35630
- var __getOwnPropSymbols$F = Object.getOwnPropertySymbols;
35631
- var __hasOwnProp$F = Object.prototype.hasOwnProperty;
35632
- var __propIsEnum$F = Object.prototype.propertyIsEnumerable;
35488
+ var __getOwnPropSymbols$G = Object.getOwnPropertySymbols;
35489
+ var __hasOwnProp$G = Object.prototype.hasOwnProperty;
35490
+ var __propIsEnum$G = Object.prototype.propertyIsEnumerable;
35633
35491
  var __objRest$p = (source, exclude) => {
35634
35492
  var target = {};
35635
35493
  for (var prop in source)
35636
- if (__hasOwnProp$F.call(source, prop) && exclude.indexOf(prop) < 0)
35494
+ if (__hasOwnProp$G.call(source, prop) && exclude.indexOf(prop) < 0)
35637
35495
  target[prop] = source[prop];
35638
- if (source != null && __getOwnPropSymbols$F)
35639
- for (var prop of __getOwnPropSymbols$F(source)) {
35640
- if (exclude.indexOf(prop) < 0 && __propIsEnum$F.call(source, prop))
35496
+ if (source != null && __getOwnPropSymbols$G)
35497
+ for (var prop of __getOwnPropSymbols$G(source)) {
35498
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$G.call(source, prop))
35641
35499
  target[prop] = source[prop];
35642
35500
  }
35643
35501
  return target;
@@ -35654,17 +35512,17 @@ const useGetCarrierConnectionForm = (_params) => {
35654
35512
  });
35655
35513
  };
35656
35514
 
35657
- var __getOwnPropSymbols$E = Object.getOwnPropertySymbols;
35658
- var __hasOwnProp$E = Object.prototype.hasOwnProperty;
35659
- var __propIsEnum$E = Object.prototype.propertyIsEnumerable;
35515
+ var __getOwnPropSymbols$F = Object.getOwnPropertySymbols;
35516
+ var __hasOwnProp$F = Object.prototype.hasOwnProperty;
35517
+ var __propIsEnum$F = Object.prototype.propertyIsEnumerable;
35660
35518
  var __objRest$o = (source, exclude) => {
35661
35519
  var target = {};
35662
35520
  for (var prop in source)
35663
- if (__hasOwnProp$E.call(source, prop) && exclude.indexOf(prop) < 0)
35521
+ if (__hasOwnProp$F.call(source, prop) && exclude.indexOf(prop) < 0)
35664
35522
  target[prop] = source[prop];
35665
- if (source != null && __getOwnPropSymbols$E)
35666
- for (var prop of __getOwnPropSymbols$E(source)) {
35667
- if (exclude.indexOf(prop) < 0 && __propIsEnum$E.call(source, prop))
35523
+ if (source != null && __getOwnPropSymbols$F)
35524
+ for (var prop of __getOwnPropSymbols$F(source)) {
35525
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$F.call(source, prop))
35668
35526
  target[prop] = source[prop];
35669
35527
  }
35670
35528
  return target;
@@ -35681,26 +35539,26 @@ const useListCarrierConnections = (_params) => {
35681
35539
  });
35682
35540
  };
35683
35541
 
35684
- var __defProp$x = Object.defineProperty;
35685
- var __defProps$u = Object.defineProperties;
35686
- var __getOwnPropDescs$u = Object.getOwnPropertyDescriptors;
35687
- var __getOwnPropSymbols$D = Object.getOwnPropertySymbols;
35688
- var __hasOwnProp$D = Object.prototype.hasOwnProperty;
35689
- var __propIsEnum$D = Object.prototype.propertyIsEnumerable;
35690
- var __defNormalProp$x = (obj, key, value) => key in obj ? __defProp$x(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
35691
- var __spreadValues$x = (a, b) => {
35542
+ var __defProp$y = Object.defineProperty;
35543
+ var __defProps$v = Object.defineProperties;
35544
+ var __getOwnPropDescs$v = Object.getOwnPropertyDescriptors;
35545
+ var __getOwnPropSymbols$E = Object.getOwnPropertySymbols;
35546
+ var __hasOwnProp$E = Object.prototype.hasOwnProperty;
35547
+ var __propIsEnum$E = Object.prototype.propertyIsEnumerable;
35548
+ var __defNormalProp$y = (obj, key, value) => key in obj ? __defProp$y(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
35549
+ var __spreadValues$y = (a, b) => {
35692
35550
  for (var prop in b || (b = {}))
35693
- if (__hasOwnProp$D.call(b, prop))
35694
- __defNormalProp$x(a, prop, b[prop]);
35695
- if (__getOwnPropSymbols$D)
35696
- for (var prop of __getOwnPropSymbols$D(b)) {
35697
- if (__propIsEnum$D.call(b, prop))
35698
- __defNormalProp$x(a, prop, b[prop]);
35551
+ if (__hasOwnProp$E.call(b, prop))
35552
+ __defNormalProp$y(a, prop, b[prop]);
35553
+ if (__getOwnPropSymbols$E)
35554
+ for (var prop of __getOwnPropSymbols$E(b)) {
35555
+ if (__propIsEnum$E.call(b, prop))
35556
+ __defNormalProp$y(a, prop, b[prop]);
35699
35557
  }
35700
35558
  return a;
35701
35559
  };
35702
- var __spreadProps$u = (a, b) => __defProps$u(a, __getOwnPropDescs$u(b));
35703
- var __async$J = (__this, __arguments, generator) => {
35560
+ var __spreadProps$v = (a, b) => __defProps$v(a, __getOwnPropDescs$v(b));
35561
+ var __async$K = (__this, __arguments, generator) => {
35704
35562
  return new Promise((resolve, reject) => {
35705
35563
  var fulfilled = (value) => {
35706
35564
  try {
@@ -35723,8 +35581,8 @@ var __async$J = (__this, __arguments, generator) => {
35723
35581
  const useConnectCarrierAccount = () => {
35724
35582
  const { client } = useShipEngine();
35725
35583
  return useMutation({
35726
- mutationFn: (_0) => __async$J(void 0, [_0], function* ({ carrierName, formData }) {
35727
- const formDataWithFlag = __spreadProps$u(__spreadValues$x({}, formData), { __skipDecamelize: true });
35584
+ mutationFn: (_0) => __async$K(void 0, [_0], function* ({ carrierName, formData }) {
35585
+ const formDataWithFlag = __spreadProps$v(__spreadValues$y({}, formData), { __skipDecamelize: true });
35728
35586
  const result = yield client.connections.connectCarrier(carrierName, formDataWithFlag);
35729
35587
  return result.data;
35730
35588
  }),
@@ -35744,33 +35602,33 @@ const useCarrierConnectionsServicesList = (carrierCode) => {
35744
35602
  });
35745
35603
  };
35746
35604
 
35747
- var __defProp$w = Object.defineProperty;
35748
- var __defProps$t = Object.defineProperties;
35749
- var __getOwnPropDescs$t = Object.getOwnPropertyDescriptors;
35750
- var __getOwnPropSymbols$C = Object.getOwnPropertySymbols;
35751
- var __hasOwnProp$C = Object.prototype.hasOwnProperty;
35752
- var __propIsEnum$C = Object.prototype.propertyIsEnumerable;
35753
- var __defNormalProp$w = (obj, key, value) => key in obj ? __defProp$w(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
35754
- var __spreadValues$w = (a, b) => {
35605
+ var __defProp$x = Object.defineProperty;
35606
+ var __defProps$u = Object.defineProperties;
35607
+ var __getOwnPropDescs$u = Object.getOwnPropertyDescriptors;
35608
+ var __getOwnPropSymbols$D = Object.getOwnPropertySymbols;
35609
+ var __hasOwnProp$D = Object.prototype.hasOwnProperty;
35610
+ var __propIsEnum$D = Object.prototype.propertyIsEnumerable;
35611
+ var __defNormalProp$x = (obj, key, value) => key in obj ? __defProp$x(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
35612
+ var __spreadValues$x = (a, b) => {
35755
35613
  for (var prop in b || (b = {}))
35756
- if (__hasOwnProp$C.call(b, prop))
35757
- __defNormalProp$w(a, prop, b[prop]);
35758
- if (__getOwnPropSymbols$C)
35759
- for (var prop of __getOwnPropSymbols$C(b)) {
35760
- if (__propIsEnum$C.call(b, prop))
35761
- __defNormalProp$w(a, prop, b[prop]);
35614
+ if (__hasOwnProp$D.call(b, prop))
35615
+ __defNormalProp$x(a, prop, b[prop]);
35616
+ if (__getOwnPropSymbols$D)
35617
+ for (var prop of __getOwnPropSymbols$D(b)) {
35618
+ if (__propIsEnum$D.call(b, prop))
35619
+ __defNormalProp$x(a, prop, b[prop]);
35762
35620
  }
35763
35621
  return a;
35764
35622
  };
35765
- var __spreadProps$t = (a, b) => __defProps$t(a, __getOwnPropDescs$t(b));
35623
+ var __spreadProps$u = (a, b) => __defProps$u(a, __getOwnPropDescs$u(b));
35766
35624
  var __objRest$n = (source, exclude) => {
35767
35625
  var target = {};
35768
35626
  for (var prop in source)
35769
- if (__hasOwnProp$C.call(source, prop) && exclude.indexOf(prop) < 0)
35627
+ if (__hasOwnProp$D.call(source, prop) && exclude.indexOf(prop) < 0)
35770
35628
  target[prop] = source[prop];
35771
- if (source != null && __getOwnPropSymbols$C)
35772
- for (var prop of __getOwnPropSymbols$C(source)) {
35773
- if (exclude.indexOf(prop) < 0 && __propIsEnum$C.call(source, prop))
35629
+ if (source != null && __getOwnPropSymbols$D)
35630
+ for (var prop of __getOwnPropSymbols$D(source)) {
35631
+ if (exclude.indexOf(prop) < 0 && __propIsEnum$D.call(source, prop))
35774
35632
  target[prop] = source[prop];
35775
35633
  }
35776
35634
  return target;
@@ -35783,7 +35641,7 @@ const useGetConnectionsCarrierSettings = (_a) => {
35783
35641
  ]);
35784
35642
  const { client } = useShipEngine();
35785
35643
  const { carrierName, carrierId } = queryFnParams;
35786
- return useQuery(__spreadProps$t(__spreadValues$w({}, params), {
35644
+ return useQuery(__spreadProps$u(__spreadValues$x({}, params), {
35787
35645
  onError,
35788
35646
  queryFn: () => client.connections.getCarrierSettings(carrierName, carrierId),
35789
35647
  queryKey: ["useGetConnectionsCarrierSettings", carrierName, carrierId],
@@ -35791,6 +35649,65 @@ const useGetConnectionsCarrierSettings = (_a) => {
35791
35649
  }));
35792
35650
  };
35793
35651
 
35652
+ var __defProp$w = Object.defineProperty;
35653
+ var __defProps$t = Object.defineProperties;
35654
+ var __getOwnPropDescs$t = Object.getOwnPropertyDescriptors;
35655
+ var __getOwnPropSymbols$C = Object.getOwnPropertySymbols;
35656
+ var __hasOwnProp$C = Object.prototype.hasOwnProperty;
35657
+ var __propIsEnum$C = Object.prototype.propertyIsEnumerable;
35658
+ var __defNormalProp$w = (obj, key, value) => key in obj ? __defProp$w(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
35659
+ var __spreadValues$w = (a, b) => {
35660
+ for (var prop in b || (b = {}))
35661
+ if (__hasOwnProp$C.call(b, prop))
35662
+ __defNormalProp$w(a, prop, b[prop]);
35663
+ if (__getOwnPropSymbols$C)
35664
+ for (var prop of __getOwnPropSymbols$C(b)) {
35665
+ if (__propIsEnum$C.call(b, prop))
35666
+ __defNormalProp$w(a, prop, b[prop]);
35667
+ }
35668
+ return a;
35669
+ };
35670
+ var __spreadProps$t = (a, b) => __defProps$t(a, __getOwnPropDescs$t(b));
35671
+ var __async$J = (__this, __arguments, generator) => {
35672
+ return new Promise((resolve, reject) => {
35673
+ var fulfilled = (value) => {
35674
+ try {
35675
+ step(generator.next(value));
35676
+ } catch (e) {
35677
+ reject(e);
35678
+ }
35679
+ };
35680
+ var rejected = (value) => {
35681
+ try {
35682
+ step(generator.throw(value));
35683
+ } catch (e) {
35684
+ reject(e);
35685
+ }
35686
+ };
35687
+ var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
35688
+ step((generator = generator.apply(__this, __arguments)).next());
35689
+ });
35690
+ };
35691
+ const useUpdateConnectionsCarrierSettings = (params) => {
35692
+ const { client } = useShipEngine();
35693
+ return useMutation(__spreadProps$t(__spreadValues$w({}, params), {
35694
+ mutationFn: (_0) => __async$J(void 0, [_0], function* ({
35695
+ carrierName,
35696
+ carrierId,
35697
+ formData
35698
+ }) {
35699
+ const result = yield client.connections.updateCarrierSettings(
35700
+ carrierName,
35701
+ carrierId,
35702
+ formData
35703
+ );
35704
+ return result.data;
35705
+ }),
35706
+ mutationKey: ["useUpdateConnectionsCarrierSettings"],
35707
+ onError
35708
+ }));
35709
+ };
35710
+
35794
35711
  var __defProp$v = Object.defineProperty;
35795
35712
  var __defProps$s = Object.defineProperties;
35796
35713
  var __getOwnPropDescs$s = Object.getOwnPropertyDescriptors;
@@ -35830,22 +35747,14 @@ var __async$I = (__this, __arguments, generator) => {
35830
35747
  step((generator = generator.apply(__this, __arguments)).next());
35831
35748
  });
35832
35749
  };
35833
- const useUpdateConnectionsCarrierSettings = (params) => {
35750
+ const useRequestStampsAccountUrls = (params) => {
35834
35751
  const { client } = useShipEngine();
35835
35752
  return useMutation(__spreadProps$s(__spreadValues$v({}, params), {
35836
- mutationFn: (_0) => __async$I(void 0, [_0], function* ({
35837
- carrierName,
35838
- carrierId,
35839
- formData
35840
- }) {
35841
- const result = yield client.connections.updateCarrierSettings(
35842
- carrierName,
35843
- carrierId,
35844
- formData
35845
- );
35753
+ mutationFn: (request) => __async$I(void 0, null, function* () {
35754
+ const result = yield client.connections.requestStampsAccountUrls(request);
35846
35755
  return result.data;
35847
35756
  }),
35848
- mutationKey: ["useUpdateConnectionsCarrierSettings"],
35757
+ mutationKey: ["useRequestStampsAccountUrls"],
35849
35758
  onError
35850
35759
  }));
35851
35760
  };
@@ -39784,4 +39693,4 @@ const alchemy = {
39784
39693
  createElement
39785
39694
  };
39786
39695
 
39787
- export { AccountBillingAPI, AccountBillingPlanAPI, AccountBillingPlanChangeType, AccountSettingsAPI, AddressesAPI, AlchemyContext, AlchemyProvider, AlchemyTestProvider, AuctanePayAPI, CarriersAPI, CodedError, ConfirmationType, ConnectionsAPI, CreditCardVendor, Currency, CustomPackagesAPI, CustomsContentsType, CustomsNonDeliveryType, Element, ErrorBoundary, FundingSourcesAPI, InsuranceAPI, InsuranceProviderType, InvoiceAddressAPI, LabelsAPI, MetadataCapability, MetadataRequirement, MetadataSatisfyingFormTypes, MovementIndicator, OrderSourcesAPI, RateCardStatus, RateCardsAPI, RatesAPI, types as SE, SalesOrderShipmentsAPI, SalesOrdersAPI, SellersAPI, ServicePointsAPI, ShipEngine, ShipEngineAPI, ShipEngineContext, ShipmentsAPI, ShippingRulesAPI, ThemesAPI, UsersApi, WarehousesAPI, WebhooksAPI, alchemy, camelizeKeys, decamelizeKeys, alchemy as default, delay, getEmotionCache, getEndUserIpAddress, isCodedError, isCodedErrors, isDataCodedErrors, isInvalidTokenError, logger, onError, parseError, retryUntil, useAddFunds, useAddInsuranceFunds, useAddSandboxCarriers, useAlchemy, useCalculateRates, useCancelShipment, useCarrierConnectionsServicesList, useConnectCarrier, useConnectCarrierAccount, useCreateAccountImage, useCreateAuctanePaySession, useCreateFundingSource, useCreateInvoiceAddress, useCreateLabel, useCreateLabelByRateId, useCreateLabelByShipmentId, useCreateRateCard, useCreateSalesOrderShipment, useCreateSandboxSeller, useCreateSellerApiKey, useCreateShipment, useCreateShippingRule, useCreateWarehouse, useCreateWebhook, useDeactivateOrderSource, useDeleteAccountImage, useDeleteCarrier, useDeleteRateCard, useDeleteSellerApiKey, useDeleteShippingRule, useDeleteWarehouse, useDeleteWebhook, useDownloadRateCard, useEditShippingRule, useExportLabels, useExportShipments, useFundingSourcesAddFunds, useGetAccountBilling, useGetAccountBillingPlan, useGetAccountImages, useGetAccountSettings, useGetAuctanePayConfig, useGetAutoFundingConfiguration, useGetCarrierById, useGetCarrierConnectionForm, useGetConnectionsCarrierSettings, useGetCountriesByCarrier, useGetCurrenciesByCarrier, useGetFundingSourceById, useGetFundingSourceMetadata, useGetFundingSourceTransactions, useGetHereToken, useGetInsuranceAccount, useGetInsuranceFundingSourceAcceptedTerms, useGetInvoiceAddress, useGetLabel, useGetPackageRatingGroupByCarrier, useGetRateCardById, useGetSalesOrder, useGetSalesOrderByExternalOrderId, useGetSalesOrderShipment, useGetServicePoint, useGetServicesByCarrier, useGetShipment, useGetShipmentByExternalId, useGetShipmentRates, useGetShippingRuleById, useGetShippingRuleConditionsOptions, useGetThemeById, useGetZonesByCarrier, useI18n, useListCarrierConnections, useListCarriers, useListCustomPackageTypes, useListFundingSources, useListLabels, useListLabelsInfinite, useListOrderSources, useListOrderSourcesConnections, useListRateCards, useListSalesOrderShipments, useListSalesOrderShipmentsByExternalOrderId, useListSalesOrders, useListSandboxSellerIds, useListSellerApiKeys, useListServicePoints, useListShipments, useListShippingRules, useListUsers, useListWarehouses, useListWebhooks, useLoadIcons, useNotifySalesOrderShipped, useParseAddress, usePublishRateCard, useRatesEstimate, useRefreshOrderSource, useRefreshOrderSourceAsync, useRegisterCarrier, useShipEngine, useUpdateAccountBillingPlan, useUpdateAccountImage, useUpdateAccountSettings, useUpdateAutoFunding, useUpdateConnectionsCarrierSettings, useUpdateFundingSource, useUpdateInvoiceAddress, useUpdateOrderSource, useUpdateRateCard, useUpdateSalesOrderShipment, useUpdateWarehouse, useUpdateWebhook, useUploadRateCard, useUpsertAccountBilling, useValidateAddresses, useVoidLabel };
39696
+ export { AccountBillingAPI, AccountBillingPlanAPI, AccountBillingPlanChangeType, AccountSettingsAPI, AddressesAPI, AlchemyContext, AlchemyProvider, AlchemyTestProvider, AuctanePayAPI, CarriersAPI, CodedError, ConfirmationType, ConnectionsAPI, CreditCardVendor, Currency, CustomPackagesAPI, CustomsContentsType, CustomsNonDeliveryType, Element, ErrorBoundary, FundingSourcesAPI, InsuranceAPI, InsuranceProviderType, InvoiceAddressAPI, LabelsAPI, MetadataCapability, MetadataRequirement, MetadataSatisfyingFormTypes, MovementIndicator, OrderSourcesAPI, RateCardStatus, RateCardsAPI, RatesAPI, types as SE, SalesOrderShipmentsAPI, SalesOrdersAPI, SellersAPI, ServicePointsAPI, ShipEngine, ShipEngineAPI, ShipEngineContext, ShipmentsAPI, ShippingRulesAPI, ThemesAPI, UsersApi, WarehousesAPI, WebhooksAPI, alchemy, camelizeKeys, decamelizeKeys, alchemy as default, delay, getEmotionCache, getEndUserIpAddress, isCodedError, isCodedErrors, isDataCodedErrors, isInvalidTokenError, logger, onError, parseError, retryUntil, useAddFunds, useAddInsuranceFunds, useAddSandboxCarriers, useAlchemy, useCalculateRates, useCancelShipment, useCarrierConnectionsServicesList, useConnectCarrier, useConnectCarrierAccount, useCreateAccountImage, useCreateAuctanePaySession, useCreateFundingSource, useCreateInvoiceAddress, useCreateLabel, useCreateLabelByRateId, useCreateLabelByShipmentId, useCreateRateCard, useCreateSalesOrderShipment, useCreateSandboxSeller, useCreateSellerApiKey, useCreateShipment, useCreateShippingRule, useCreateWarehouse, useCreateWebhook, useDeactivateOrderSource, useDeleteAccountImage, useDeleteCarrier, useDeleteRateCard, useDeleteSellerApiKey, useDeleteShippingRule, useDeleteWarehouse, useDeleteWebhook, useDownloadRateCard, useEditShippingRule, useExportLabels, useExportShipments, useFundingSourcesAddFunds, useGetAccountBilling, useGetAccountBillingPlan, useGetAccountImages, useGetAccountSettings, useGetAuctanePayConfig, useGetAutoFundingConfiguration, useGetCarrierById, useGetCarrierConnectionForm, useGetConnectionsCarrierSettings, useGetCountriesByCarrier, useGetCurrenciesByCarrier, useGetFundingSourceById, useGetFundingSourceMetadata, useGetFundingSourceTransactions, useGetHereToken, useGetInsuranceAccount, useGetInsuranceFundingSourceAcceptedTerms, useGetInvoiceAddress, useGetLabel, useGetPackageRatingGroupByCarrier, useGetRateCardById, useGetSalesOrder, useGetSalesOrderByExternalOrderId, useGetSalesOrderShipment, useGetServicePoint, useGetServicesByCarrier, useGetShipment, useGetShipmentByExternalId, useGetShipmentRates, useGetShippingRuleById, useGetShippingRuleConditionsOptions, useGetThemeById, useGetZonesByCarrier, useI18n, useListCarrierConnections, useListCarriers, useListCustomPackageTypes, useListFundingSources, useListLabels, useListLabelsInfinite, useListOrderSources, useListOrderSourcesConnections, useListRateCards, useListSalesOrderShipments, useListSalesOrderShipmentsByExternalOrderId, useListSalesOrders, useListSandboxSellerIds, useListSellerApiKeys, useListServicePoints, useListShipments, useListShippingRules, useListUsers, useListWarehouses, useListWebhooks, useLoadIcons, useNotifySalesOrderShipped, useParseAddress, usePublishRateCard, useRatesEstimate, useRefreshOrderSource, useRefreshOrderSourceAsync, useRegisterCarrier, useRequestStampsAccountUrls, useShipEngine, useUpdateAccountBillingPlan, useUpdateAccountImage, useUpdateAccountSettings, useUpdateAutoFunding, useUpdateConnectionsCarrierSettings, useUpdateFundingSource, useUpdateInvoiceAddress, useUpdateOrderSource, useUpdateRateCard, useUpdateSalesOrderShipment, useUpdateWarehouse, useUpdateWebhook, useUploadRateCard, useUpsertAccountBilling, useValidateAddresses, useVoidLabel };