swagger-client 3.29.1 → 3.29.2

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.
@@ -13682,16 +13682,16 @@ module.exports = function (target, key, value, options) {
13682
13682
 
13683
13683
  "use strict";
13684
13684
 
13685
- var global = __webpack_require__(41010);
13685
+ var globalThis = __webpack_require__(45951);
13686
13686
 
13687
13687
  // eslint-disable-next-line es/no-object-defineproperty -- safe
13688
13688
  var defineProperty = Object.defineProperty;
13689
13689
 
13690
13690
  module.exports = function (key, value) {
13691
13691
  try {
13692
- defineProperty(global, key, { value: value, configurable: true, writable: true });
13692
+ defineProperty(globalThis, key, { value: value, configurable: true, writable: true });
13693
13693
  } catch (error) {
13694
- global[key] = value;
13694
+ globalThis[key] = value;
13695
13695
  } return value;
13696
13696
  };
13697
13697
 
@@ -13719,10 +13719,10 @@ module.exports = !fails(function () {
13719
13719
 
13720
13720
  "use strict";
13721
13721
 
13722
- var global = __webpack_require__(41010);
13722
+ var globalThis = __webpack_require__(45951);
13723
13723
  var isObject = __webpack_require__(46285);
13724
13724
 
13725
- var document = global.document;
13725
+ var document = globalThis.document;
13726
13726
  // typeof document.createElement is 'object' in old IE
13727
13727
  var EXISTS = isObject(document) && isObject(document.createElement);
13728
13728
 
@@ -13777,26 +13777,50 @@ module.exports = {
13777
13777
 
13778
13778
  /***/ }),
13779
13779
 
13780
- /***/ 64723:
13780
+ /***/ 80376:
13781
13781
  /***/ ((module) => {
13782
13782
 
13783
13783
  "use strict";
13784
13784
 
13785
- module.exports = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
13785
+ // IE8- don't enum bug keys
13786
+ module.exports = [
13787
+ 'constructor',
13788
+ 'hasOwnProperty',
13789
+ 'isPrototypeOf',
13790
+ 'propertyIsEnumerable',
13791
+ 'toLocaleString',
13792
+ 'toString',
13793
+ 'valueOf'
13794
+ ];
13795
+
13796
+
13797
+ /***/ }),
13798
+
13799
+ /***/ 96794:
13800
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
13801
+
13802
+ "use strict";
13803
+
13804
+ var globalThis = __webpack_require__(45951);
13805
+
13806
+ var navigator = globalThis.navigator;
13807
+ var userAgent = navigator && navigator.userAgent;
13808
+
13809
+ module.exports = userAgent ? String(userAgent) : '';
13786
13810
 
13787
13811
 
13788
13812
  /***/ }),
13789
13813
 
13790
- /***/ 15683:
13814
+ /***/ 20798:
13791
13815
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
13792
13816
 
13793
13817
  "use strict";
13794
13818
 
13795
- var global = __webpack_require__(41010);
13796
- var userAgent = __webpack_require__(64723);
13819
+ var globalThis = __webpack_require__(45951);
13820
+ var userAgent = __webpack_require__(96794);
13797
13821
 
13798
- var process = global.process;
13799
- var Deno = global.Deno;
13822
+ var process = globalThis.process;
13823
+ var Deno = globalThis.Deno;
13800
13824
  var versions = process && process.versions || Deno && Deno.version;
13801
13825
  var v8 = versions && versions.v8;
13802
13826
  var match, version;
@@ -13821,25 +13845,6 @@ if (!version && userAgent) {
13821
13845
  module.exports = version;
13822
13846
 
13823
13847
 
13824
- /***/ }),
13825
-
13826
- /***/ 80376:
13827
- /***/ ((module) => {
13828
-
13829
- "use strict";
13830
-
13831
- // IE8- don't enum bug keys
13832
- module.exports = [
13833
- 'constructor',
13834
- 'hasOwnProperty',
13835
- 'isPrototypeOf',
13836
- 'propertyIsEnumerable',
13837
- 'toLocaleString',
13838
- 'toString',
13839
- 'valueOf'
13840
- ];
13841
-
13842
-
13843
13848
  /***/ }),
13844
13849
 
13845
13850
  /***/ 85762:
@@ -13912,7 +13917,7 @@ module.exports = !fails(function () {
13912
13917
 
13913
13918
  "use strict";
13914
13919
 
13915
- var global = __webpack_require__(41010);
13920
+ var globalThis = __webpack_require__(45951);
13916
13921
  var apply = __webpack_require__(76024);
13917
13922
  var uncurryThis = __webpack_require__(92361);
13918
13923
  var isCallable = __webpack_require__(62250);
@@ -13960,7 +13965,7 @@ module.exports = function (options, source) {
13960
13965
  var STATIC = options.stat;
13961
13966
  var PROTO = options.proto;
13962
13967
 
13963
- var nativeSource = GLOBAL ? global : STATIC ? global[TARGET] : global[TARGET] && global[TARGET].prototype;
13968
+ var nativeSource = GLOBAL ? globalThis : STATIC ? globalThis[TARGET] : globalThis[TARGET] && globalThis[TARGET].prototype;
13964
13969
 
13965
13970
  var target = GLOBAL ? path : path[TARGET] || createNonEnumerableProperty(path, TARGET, {})[TARGET];
13966
13971
  var targetPrototype = target.prototype;
@@ -13986,7 +13991,7 @@ module.exports = function (options, source) {
13986
13991
  if (!FORCED && !PROTO && typeof targetProperty == typeof sourceProperty) continue;
13987
13992
 
13988
13993
  // bind methods to global for calling from export context
13989
- if (options.bind && USE_NATIVE) resultProperty = bind(sourceProperty, global);
13994
+ if (options.bind && USE_NATIVE) resultProperty = bind(sourceProperty, globalThis);
13990
13995
  // wrap global constructors for prevent changes in this version
13991
13996
  else if (options.wrap && USE_NATIVE) resultProperty = wrapConstructor(sourceProperty);
13992
13997
  // make static versions for prototype methods
@@ -14197,7 +14202,7 @@ module.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {
14197
14202
  "use strict";
14198
14203
 
14199
14204
  var path = __webpack_require__(92046);
14200
- var global = __webpack_require__(41010);
14205
+ var globalThis = __webpack_require__(45951);
14201
14206
  var isCallable = __webpack_require__(62250);
14202
14207
 
14203
14208
  var aFunction = function (variable) {
@@ -14205,8 +14210,8 @@ var aFunction = function (variable) {
14205
14210
  };
14206
14211
 
14207
14212
  module.exports = function (namespace, method) {
14208
- return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])
14209
- : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];
14213
+ return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(globalThis[namespace])
14214
+ : path[namespace] && path[namespace][method] || globalThis[namespace] && globalThis[namespace][method];
14210
14215
  };
14211
14216
 
14212
14217
 
@@ -14274,7 +14279,7 @@ module.exports = function (V, P) {
14274
14279
 
14275
14280
  /***/ }),
14276
14281
 
14277
- /***/ 41010:
14282
+ /***/ 45951:
14278
14283
  /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
14279
14284
 
14280
14285
  "use strict";
@@ -14436,7 +14441,7 @@ module.exports = function (O, options) {
14436
14441
  "use strict";
14437
14442
 
14438
14443
  var NATIVE_WEAK_MAP = __webpack_require__(40551);
14439
- var global = __webpack_require__(41010);
14444
+ var globalThis = __webpack_require__(45951);
14440
14445
  var isObject = __webpack_require__(46285);
14441
14446
  var createNonEnumerableProperty = __webpack_require__(61626);
14442
14447
  var hasOwn = __webpack_require__(49724);
@@ -14445,8 +14450,8 @@ var sharedKey = __webpack_require__(92522);
14445
14450
  var hiddenKeys = __webpack_require__(38530);
14446
14451
 
14447
14452
  var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
14448
- var TypeError = global.TypeError;
14449
- var WeakMap = global.WeakMap;
14453
+ var TypeError = globalThis.TypeError;
14454
+ var WeakMap = globalThis.WeakMap;
14450
14455
  var set, get, has;
14451
14456
 
14452
14457
  var enforce = function (it) {
@@ -15043,7 +15048,8 @@ var NullProtoObjectViaActiveX = function (activeXDocument) {
15043
15048
  activeXDocument.write(scriptTag(''));
15044
15049
  activeXDocument.close();
15045
15050
  var temp = activeXDocument.parentWindow.Object;
15046
- activeXDocument = null; // avoid memory leak
15051
+ // eslint-disable-next-line no-useless-assignment -- avoid memory leak
15052
+ activeXDocument = null;
15047
15053
  return temp;
15048
15054
  };
15049
15055
 
@@ -15558,17 +15564,17 @@ module.exports = function (key) {
15558
15564
  "use strict";
15559
15565
 
15560
15566
  var IS_PURE = __webpack_require__(7376);
15561
- var globalThis = __webpack_require__(41010);
15567
+ var globalThis = __webpack_require__(45951);
15562
15568
  var defineGlobalProperty = __webpack_require__(2532);
15563
15569
 
15564
15570
  var SHARED = '__core-js_shared__';
15565
15571
  var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
15566
15572
 
15567
15573
  (store.versions || (store.versions = [])).push({
15568
- version: '3.37.1',
15574
+ version: '3.38.0',
15569
15575
  mode: IS_PURE ? 'pure' : 'global',
15570
15576
  copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',
15571
- license: 'https://github.com/zloirock/core-js/blob/v3.37.1/LICENSE',
15577
+ license: 'https://github.com/zloirock/core-js/blob/v3.38.0/LICENSE',
15572
15578
  source: 'https://github.com/zloirock/core-js'
15573
15579
  });
15574
15580
 
@@ -15640,11 +15646,11 @@ module.exports = {
15640
15646
  "use strict";
15641
15647
 
15642
15648
  /* eslint-disable es/no-symbol -- required for testing */
15643
- var V8_VERSION = __webpack_require__(15683);
15649
+ var V8_VERSION = __webpack_require__(20798);
15644
15650
  var fails = __webpack_require__(98828);
15645
- var global = __webpack_require__(41010);
15651
+ var globalThis = __webpack_require__(45951);
15646
15652
 
15647
- var $String = global.String;
15653
+ var $String = globalThis.String;
15648
15654
 
15649
15655
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
15650
15656
  module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
@@ -15916,10 +15922,10 @@ module.exports = DESCRIPTORS && fails(function () {
15916
15922
 
15917
15923
  "use strict";
15918
15924
 
15919
- var global = __webpack_require__(41010);
15925
+ var globalThis = __webpack_require__(45951);
15920
15926
  var isCallable = __webpack_require__(62250);
15921
15927
 
15922
- var WeakMap = global.WeakMap;
15928
+ var WeakMap = globalThis.WeakMap;
15923
15929
 
15924
15930
  module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
15925
15931
 
@@ -15931,14 +15937,14 @@ module.exports = isCallable(WeakMap) && /native code/.test(String(WeakMap));
15931
15937
 
15932
15938
  "use strict";
15933
15939
 
15934
- var global = __webpack_require__(41010);
15940
+ var globalThis = __webpack_require__(45951);
15935
15941
  var shared = __webpack_require__(85816);
15936
15942
  var hasOwn = __webpack_require__(49724);
15937
15943
  var uid = __webpack_require__(6499);
15938
15944
  var NATIVE_SYMBOL = __webpack_require__(19846);
15939
15945
  var USE_SYMBOL_AS_UID = __webpack_require__(51175);
15940
15946
 
15941
- var Symbol = global.Symbol;
15947
+ var Symbol = globalThis.Symbol;
15942
15948
  var WellKnownSymbolsStore = shared('wks');
15943
15949
  var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;
15944
15950
 
@@ -16204,12 +16210,12 @@ if (!IS_PURE && DESCRIPTORS && values.name !== 'values') try {
16204
16210
 
16205
16211
  /* eslint-disable no-unused-vars -- required for functions `.length` */
16206
16212
  var $ = __webpack_require__(11091);
16207
- var global = __webpack_require__(41010);
16213
+ var globalThis = __webpack_require__(45951);
16208
16214
  var apply = __webpack_require__(76024);
16209
16215
  var wrapErrorConstructorWithCause = __webpack_require__(19358);
16210
16216
 
16211
16217
  var WEB_ASSEMBLY = 'WebAssembly';
16212
- var WebAssembly = global[WEB_ASSEMBLY];
16218
+ var WebAssembly = globalThis[WEB_ASSEMBLY];
16213
16219
 
16214
16220
  // eslint-disable-next-line es/no-error-cause -- feature detection
16215
16221
  var FORCED = new Error('e', { cause: 7 }).cause !== 7;
@@ -16320,12 +16326,12 @@ __webpack_require__(64502);
16320
16326
 
16321
16327
  __webpack_require__(99363);
16322
16328
  var DOMIterables = __webpack_require__(19287);
16323
- var global = __webpack_require__(41010);
16329
+ var globalThis = __webpack_require__(45951);
16324
16330
  var setToStringTag = __webpack_require__(14840);
16325
16331
  var Iterators = __webpack_require__(93742);
16326
16332
 
16327
16333
  for (var COLLECTION_NAME in DOMIterables) {
16328
- setToStringTag(global[COLLECTION_NAME], COLLECTION_NAME);
16334
+ setToStringTag(globalThis[COLLECTION_NAME], COLLECTION_NAME);
16329
16335
  Iterators[COLLECTION_NAME] = Iterators.Array;
16330
16336
  }
16331
16337
 
@@ -36226,19 +36232,21 @@ const Parser = function fnparser() {
36226
36232
  list.push(udts[i].lower);
36227
36233
  }
36228
36234
  for (const index in p.callbacks) {
36229
- i = list.indexOf(index.toLowerCase());
36230
- if (i < 0) {
36231
- throw new Error(`${functionName}syntax callback '${index}' not a rule or udt name`);
36232
- }
36233
- func = p.callbacks[index] ? p.callbacks[index] : undefined;
36234
- if (typeof func === 'function' || func === undefined) {
36235
- if (i < rules.length) {
36236
- ruleCallbacks[i] = func;
36235
+ if (p.callbacks.hasOwnProperty(index)) {
36236
+ i = list.indexOf(index.toLowerCase());
36237
+ if (i < 0) {
36238
+ throw new Error(`${functionName}syntax callback '${index}' not a rule or udt name`);
36239
+ }
36240
+ func = p.callbacks[index] ? p.callbacks[index] : undefined;
36241
+ if (typeof func === 'function' || func === undefined) {
36242
+ if (i < rules.length) {
36243
+ ruleCallbacks[i] = func;
36244
+ } else {
36245
+ udtCallbacks[i - rules.length] = func;
36246
+ }
36237
36247
  } else {
36238
- udtCallbacks[i - rules.length] = func;
36248
+ throw new Error(`${functionName}syntax callback[${index}] must be function reference or falsy)`);
36239
36249
  }
36240
- } else {
36241
- throw new Error(`${functionName}syntax callback[${index}] must be function reference or falsy)`);
36242
36250
  }
36243
36251
  }
36244
36252
  };
@@ -36252,9 +36260,11 @@ const Parser = function fnparser() {
36252
36260
  const lower = startName.toLowerCase();
36253
36261
  let startIndex = undefined;
36254
36262
  for (const i in rules) {
36255
- if (lower === rules[i].lower) {
36256
- startIndex = rules[i].index;
36257
- break;
36263
+ if (rules.hasOwnProperty(i)) {
36264
+ if (lower === rules[i].lower) {
36265
+ startIndex = rules[i].index;
36266
+ break;
36267
+ }
36258
36268
  }
36259
36269
  }
36260
36270
  if (startIndex === undefined) {
@@ -36790,12 +36800,14 @@ const Ast = function fnast() {
36790
36800
  nodeCallbacks[i] = undefined;
36791
36801
  }
36792
36802
  for (const index in a.callbacks) {
36793
- const lower = index.toLowerCase();
36794
- i = list.indexOf(lower);
36795
- if (i < 0) {
36796
- throw new Error(`${thisFileName}init: node '${index}' not a rule or udt name`);
36803
+ if (a.callbacks.hasOwnProperty(index)) {
36804
+ const lower = index.toLowerCase();
36805
+ i = list.indexOf(lower);
36806
+ if (i < 0) {
36807
+ throw new Error(`${thisFileName}init: node '${index}' not a rule or udt name`);
36808
+ }
36809
+ nodeCallbacks[i] = a.callbacks[index];
36797
36810
  }
36798
- nodeCallbacks[i] = a.callbacks[index];
36799
36811
  }
36800
36812
  };
36801
36813
  /* AST node rule callbacks - called by the parser's `RNM` operator */
@@ -47458,7 +47470,7 @@ __webpack_require__.r(__webpack_exports__);
47458
47470
  * @since v0.1.0
47459
47471
  * @category List
47460
47472
  * @sig [a] -> a | Undefined
47461
- * @sig String -> String
47473
+ * @sig String -> String | Undefined
47462
47474
  * @param {Array|String} list
47463
47475
  * @return {*}
47464
47476
  * @see R.tail, R.init, R.last
@@ -47468,7 +47480,7 @@ __webpack_require__.r(__webpack_exports__);
47468
47480
  * R.head([]); //=> undefined
47469
47481
  *
47470
47482
  * R.head('abc'); //=> 'a'
47471
- * R.head(''); //=> ''
47483
+ * R.head(''); //=> undefined
47472
47484
  */
47473
47485
  var head = /*#__PURE__*/(0,_internal_curry1_js__WEBPACK_IMPORTED_MODULE_0__["default"])(function (list) {
47474
47486
  return (0,_internal_nth_js__WEBPACK_IMPORTED_MODULE_1__["default"])(0, list);
@@ -49055,10 +49067,8 @@ __webpack_require__.r(__webpack_exports__);
49055
49067
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
49056
49068
  /* harmony export */ "default": () => (/* binding */ _isPlaceholder)
49057
49069
  /* harmony export */ });
49058
- /* harmony import */ var _placeholder_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(66500);
49059
-
49060
49070
  function _isPlaceholder(a) {
49061
- return a === _placeholder_js__WEBPACK_IMPORTED_MODULE_0__["default"];
49071
+ return a != null && typeof a === 'object' && a['@@functional/placeholder'] === true;
49062
49072
  }
49063
49073
 
49064
49074
  /***/ }),
@@ -49242,20 +49252,6 @@ function _pipe(f, g) {
49242
49252
 
49243
49253
  /***/ }),
49244
49254
 
49245
- /***/ 66500:
49246
- /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
49247
-
49248
- "use strict";
49249
- __webpack_require__.r(__webpack_exports__);
49250
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
49251
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
49252
- /* harmony export */ });
49253
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({
49254
- '@@functional/placeholder': true
49255
- });
49256
-
49257
- /***/ }),
49258
-
49259
49255
  /***/ 79017:
49260
49256
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
49261
49257
 
@@ -50158,7 +50154,7 @@ __webpack_require__.r(__webpack_exports__);
50158
50154
  * @since v0.1.4
50159
50155
  * @category List
50160
50156
  * @sig [a] -> a | Undefined
50161
- * @sig String -> String
50157
+ * @sig String -> String | Undefined
50162
50158
  * @param {*} list
50163
50159
  * @return {*}
50164
50160
  * @see R.init, R.head, R.tail
@@ -50168,7 +50164,7 @@ __webpack_require__.r(__webpack_exports__);
50168
50164
  * R.last([]); //=> undefined
50169
50165
  *
50170
50166
  * R.last('abc'); //=> 'c'
50171
- * R.last(''); //=> ''
50167
+ * R.last(''); //=> undefined
50172
50168
  */
50173
50169
  var last = /*#__PURE__*/(0,_internal_curry1_js__WEBPACK_IMPORTED_MODULE_0__["default"])(function (list) {
50174
50170
  return (0,_internal_nth_js__WEBPACK_IMPORTED_MODULE_1__["default"])(-1, list);