swagger-client 3.18.2 → 3.18.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/swagger-client.browser.js +355 -159
- package/dist/swagger-client.browser.min.js +1 -1
- package/dist/swagger-client.browser.min.js.map +1 -1
- package/es/execute/index.js +1 -1
- package/es/execute/oas3/build-request.js +1 -1
- package/es/execute/swagger2/build-request.js +1 -1
- package/es/helpers/btoa.browser.js +19 -0
- package/es/helpers/btoa.node.js +15 -0
- package/es/{helpers.js → helpers/index.js} +0 -0
- package/es/index.js +1 -1
- package/es/interfaces.js +1 -1
- package/es/resolver.js +1 -1
- package/es/specmap/lib/all-of.js +12 -3
- package/es/subtree-resolver/index.js +1 -1
- package/lib/execute/index.js +5 -5
- package/lib/execute/oas3/build-request.js +2 -2
- package/lib/execute/swagger2/build-request.js +2 -2
- package/lib/helpers/btoa.browser.js +25 -0
- package/lib/helpers/btoa.node.js +21 -0
- package/lib/{helpers.js → helpers/index.js} +0 -0
- package/lib/index.js +2 -2
- package/lib/interfaces.js +3 -3
- package/lib/resolver.js +2 -2
- package/lib/specmap/lib/all-of.js +8 -1
- package/lib/subtree-resolver/index.js +2 -2
- package/package.json +23 -21
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
exports["SwaggerClient"] = factory();
|
|
8
8
|
else
|
|
9
9
|
root["SwaggerClient"] = factory();
|
|
10
|
-
})(window,
|
|
10
|
+
})(window, () => {
|
|
11
11
|
return /******/ (() => { // webpackBootstrap
|
|
12
12
|
/******/ var __webpack_modules__ = ({
|
|
13
13
|
|
|
@@ -179,6 +179,13 @@ module.exports = __webpack_require__(2209);
|
|
|
179
179
|
|
|
180
180
|
/***/ }),
|
|
181
181
|
|
|
182
|
+
/***/ 149:
|
|
183
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
184
|
+
|
|
185
|
+
module.exports = __webpack_require__(888);
|
|
186
|
+
|
|
187
|
+
/***/ }),
|
|
188
|
+
|
|
182
189
|
/***/ 699:
|
|
183
190
|
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
184
191
|
|
|
@@ -875,10 +882,10 @@ var ACCEPT_HEADER_VALUE_FOR_DOCUMENTS = 'application/json, application/yaml';
|
|
|
875
882
|
"use strict";
|
|
876
883
|
__webpack_require__.r(__webpack_exports__);
|
|
877
884
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
878
|
-
/* harmony export */ "
|
|
879
|
-
/* harmony export */ "execute": () => (/* binding */ execute),
|
|
885
|
+
/* harmony export */ "baseUrl": () => (/* binding */ baseUrl),
|
|
880
886
|
/* harmony export */ "buildRequest": () => (/* binding */ buildRequest),
|
|
881
|
-
/* harmony export */ "
|
|
887
|
+
/* harmony export */ "execute": () => (/* binding */ execute),
|
|
888
|
+
/* harmony export */ "self": () => (/* binding */ self)
|
|
882
889
|
/* harmony export */ });
|
|
883
890
|
/* harmony import */ var _babel_runtime_corejs3_helpers_slicedToArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(3728);
|
|
884
891
|
/* harmony import */ var _babel_runtime_corejs3_helpers_objectSpread2__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(7530);
|
|
@@ -908,7 +915,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
908
915
|
/* harmony import */ var _oas3_parameter_builders_js__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(3655);
|
|
909
916
|
/* harmony import */ var _oas3_build_request_js__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(25);
|
|
910
917
|
/* harmony import */ var _swagger2_build_request_js__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(3077);
|
|
911
|
-
/* harmony import */ var
|
|
918
|
+
/* harmony import */ var _helpers_index_js__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(7712);
|
|
912
919
|
|
|
913
920
|
|
|
914
921
|
|
|
@@ -990,7 +997,7 @@ function execute(_ref) {
|
|
|
990
997
|
var http = userHttp || fetch || _http_index_js__WEBPACK_IMPORTED_MODULE_13__["default"]; // Default to _our_ http
|
|
991
998
|
|
|
992
999
|
if (pathName && method && !operationId) {
|
|
993
|
-
operationId = (0,
|
|
1000
|
+
operationId = (0,_helpers_index_js__WEBPACK_IMPORTED_MODULE_18__.legacyIdFromPathMethod)(pathName, method);
|
|
994
1001
|
}
|
|
995
1002
|
|
|
996
1003
|
var request = self.buildRequest((0,_babel_runtime_corejs3_helpers_objectSpread2__WEBPACK_IMPORTED_MODULE_1__["default"])({
|
|
@@ -1026,7 +1033,7 @@ function buildRequest(options) {
|
|
|
1026
1033
|
signal = options.signal;
|
|
1027
1034
|
var parameters = options.parameters,
|
|
1028
1035
|
parameterBuilders = options.parameterBuilders;
|
|
1029
|
-
var specIsOAS3 = (0,
|
|
1036
|
+
var specIsOAS3 = (0,_helpers_index_js__WEBPACK_IMPORTED_MODULE_18__.isOAS3)(spec);
|
|
1030
1037
|
|
|
1031
1038
|
if (!parameterBuilders) {
|
|
1032
1039
|
// user did not provide custom parameter builders
|
|
@@ -1063,7 +1070,7 @@ function buildRequest(options) {
|
|
|
1063
1070
|
req.userFetch = userFetch;
|
|
1064
1071
|
}
|
|
1065
1072
|
|
|
1066
|
-
var operationRaw = (0,
|
|
1073
|
+
var operationRaw = (0,_helpers_index_js__WEBPACK_IMPORTED_MODULE_18__.getOperationRaw)(spec, operationId);
|
|
1067
1074
|
|
|
1068
1075
|
if (!operationRaw) {
|
|
1069
1076
|
throw new OperationNotFoundError("Operation ".concat(operationId, " not found"));
|
|
@@ -1206,7 +1213,7 @@ var stripNonAlpha = function stripNonAlpha(str) {
|
|
|
1206
1213
|
|
|
1207
1214
|
|
|
1208
1215
|
function baseUrl(obj) {
|
|
1209
|
-
var specIsOAS3 = (0,
|
|
1216
|
+
var specIsOAS3 = (0,_helpers_index_js__WEBPACK_IMPORTED_MODULE_18__.isOAS3)(obj.spec);
|
|
1210
1217
|
return specIsOAS3 ? oas3BaseUrl(obj) : swagger2BaseUrl(obj);
|
|
1211
1218
|
}
|
|
1212
1219
|
|
|
@@ -1328,8 +1335,8 @@ function swagger2BaseUrl(_ref3) {
|
|
|
1328
1335
|
"use strict";
|
|
1329
1336
|
__webpack_require__.r(__webpack_exports__);
|
|
1330
1337
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1331
|
-
/* harmony export */ "
|
|
1332
|
-
/* harmony export */ "
|
|
1338
|
+
/* harmony export */ "applySecurities": () => (/* binding */ applySecurities),
|
|
1339
|
+
/* harmony export */ "default": () => (/* binding */ buildRequest)
|
|
1333
1340
|
/* harmony export */ });
|
|
1334
1341
|
/* harmony import */ var _babel_runtime_corejs3_helpers_objectSpread2__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7530);
|
|
1335
1342
|
/* harmony import */ var _babel_runtime_corejs3_helpers_typeof__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(9623);
|
|
@@ -1345,8 +1352,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1345
1352
|
/* harmony import */ var is_plain_object__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(111);
|
|
1346
1353
|
/* harmony import */ var lodash_get__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(7361);
|
|
1347
1354
|
/* harmony import */ var lodash_get__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(lodash_get__WEBPACK_IMPORTED_MODULE_7__);
|
|
1348
|
-
/* harmony import */ var
|
|
1349
|
-
/* harmony import */ var btoa__WEBPACK_IMPORTED_MODULE_8___default = /*#__PURE__*/__webpack_require__.n(btoa__WEBPACK_IMPORTED_MODULE_8__);
|
|
1355
|
+
/* harmony import */ var _helpers_btoa_node_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(602);
|
|
1350
1356
|
|
|
1351
1357
|
|
|
1352
1358
|
|
|
@@ -1502,7 +1508,7 @@ function applySecurities(_ref5) {
|
|
|
1502
1508
|
|
|
1503
1509
|
var username = value.username || '';
|
|
1504
1510
|
var password = value.password || '';
|
|
1505
|
-
var encoded =
|
|
1511
|
+
var encoded = (0,_helpers_btoa_node_js__WEBPACK_IMPORTED_MODULE_8__["default"])(_babel_runtime_corejs3_core_js_stable_instance_concat__WEBPACK_IMPORTED_MODULE_6___default()(_context2 = "".concat(username, ":")).call(_context2, password));
|
|
1506
1512
|
result.headers.Authorization = "Basic ".concat(encoded);
|
|
1507
1513
|
}
|
|
1508
1514
|
|
|
@@ -1571,10 +1577,10 @@ function serialize(value, mediaType) {
|
|
|
1571
1577
|
"use strict";
|
|
1572
1578
|
__webpack_require__.r(__webpack_exports__);
|
|
1573
1579
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1574
|
-
/* harmony export */ "
|
|
1575
|
-
/* harmony export */ "query": () => (/* binding */ query),
|
|
1580
|
+
/* harmony export */ "cookie": () => (/* binding */ cookie),
|
|
1576
1581
|
/* harmony export */ "header": () => (/* binding */ header),
|
|
1577
|
-
/* harmony export */ "
|
|
1582
|
+
/* harmony export */ "path": () => (/* binding */ path),
|
|
1583
|
+
/* harmony export */ "query": () => (/* binding */ query)
|
|
1578
1584
|
/* harmony export */ });
|
|
1579
1585
|
/* harmony import */ var _babel_runtime_corejs3_helpers_typeof__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9623);
|
|
1580
1586
|
/* harmony import */ var _babel_runtime_corejs3_core_js_stable_object_keys__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(6902);
|
|
@@ -1719,8 +1725,8 @@ function cookie(_ref4) {
|
|
|
1719
1725
|
"use strict";
|
|
1720
1726
|
__webpack_require__.r(__webpack_exports__);
|
|
1721
1727
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1722
|
-
/* harmony export */ "
|
|
1723
|
-
/* harmony export */ "
|
|
1728
|
+
/* harmony export */ "default": () => (/* binding */ stylize),
|
|
1729
|
+
/* harmony export */ "encodeDisallowedCharacters": () => (/* binding */ encodeDisallowedCharacters)
|
|
1724
1730
|
/* harmony export */ });
|
|
1725
1731
|
/* harmony import */ var _babel_runtime_corejs3_helpers_typeof__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9623);
|
|
1726
1732
|
/* harmony import */ var _babel_runtime_corejs3_helpers_toConsumableArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(6302);
|
|
@@ -2001,8 +2007,8 @@ function encodePrimitive(_ref4) {
|
|
|
2001
2007
|
"use strict";
|
|
2002
2008
|
__webpack_require__.r(__webpack_exports__);
|
|
2003
2009
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2004
|
-
/* harmony export */ "
|
|
2005
|
-
/* harmony export */ "
|
|
2010
|
+
/* harmony export */ "applySecurities": () => (/* binding */ applySecurities),
|
|
2011
|
+
/* harmony export */ "default": () => (/* binding */ buildRequest)
|
|
2006
2012
|
/* harmony export */ });
|
|
2007
2013
|
/* harmony import */ var _babel_runtime_corejs3_helpers_objectSpread2__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7530);
|
|
2008
2014
|
/* harmony import */ var _babel_runtime_corejs3_helpers_slicedToArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(3728);
|
|
@@ -2012,8 +2018,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2012
2018
|
/* harmony import */ var _babel_runtime_corejs3_core_js_stable_object_keys__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_corejs3_core_js_stable_object_keys__WEBPACK_IMPORTED_MODULE_3__);
|
|
2013
2019
|
/* harmony import */ var _babel_runtime_corejs3_core_js_stable_instance_concat__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(7766);
|
|
2014
2020
|
/* harmony import */ var _babel_runtime_corejs3_core_js_stable_instance_concat__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_corejs3_core_js_stable_instance_concat__WEBPACK_IMPORTED_MODULE_4__);
|
|
2015
|
-
/* harmony import */ var
|
|
2016
|
-
/* harmony import */ var btoa__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(btoa__WEBPACK_IMPORTED_MODULE_5__);
|
|
2021
|
+
/* harmony import */ var _helpers_btoa_node_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(602);
|
|
2017
2022
|
|
|
2018
2023
|
|
|
2019
2024
|
|
|
@@ -2135,7 +2140,7 @@ function applySecurities(_ref) {
|
|
|
2135
2140
|
|
|
2136
2141
|
var username = value.username || '';
|
|
2137
2142
|
var password = value.password || '';
|
|
2138
|
-
value.base64 =
|
|
2143
|
+
value.base64 = (0,_helpers_btoa_node_js__WEBPACK_IMPORTED_MODULE_5__["default"])(_babel_runtime_corejs3_core_js_stable_instance_concat__WEBPACK_IMPORTED_MODULE_4___default()(_context5 = "".concat(username, ":")).call(_context5, password));
|
|
2139
2144
|
result.headers.authorization = "Basic ".concat(value.base64);
|
|
2140
2145
|
}
|
|
2141
2146
|
} else if (type === 'oauth2' && oauthToken) {
|
|
@@ -2241,21 +2246,53 @@ function queryBuilder(_ref5) {
|
|
|
2241
2246
|
|
|
2242
2247
|
/***/ }),
|
|
2243
2248
|
|
|
2244
|
-
/***/
|
|
2249
|
+
/***/ 602:
|
|
2245
2250
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2246
2251
|
|
|
2247
2252
|
"use strict";
|
|
2248
2253
|
__webpack_require__.r(__webpack_exports__);
|
|
2249
2254
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2255
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
2256
|
+
/* harmony export */ });
|
|
2257
|
+
/* harmony import */ var _babel_runtime_corejs3_core_js_global_this__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(149);
|
|
2258
|
+
/* harmony import */ var _babel_runtime_corejs3_core_js_global_this__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_corejs3_core_js_global_this__WEBPACK_IMPORTED_MODULE_0__);
|
|
2259
|
+
|
|
2260
|
+
|
|
2261
|
+
/* eslint-disable no-undef, no-restricted-globals */
|
|
2262
|
+
var globalObject = function () {
|
|
2263
|
+
// new standardized access to the global object
|
|
2264
|
+
if (typeof (_babel_runtime_corejs3_core_js_global_this__WEBPACK_IMPORTED_MODULE_0___default()) !== 'undefined') {
|
|
2265
|
+
return (_babel_runtime_corejs3_core_js_global_this__WEBPACK_IMPORTED_MODULE_0___default());
|
|
2266
|
+
} // WebWorker specific access
|
|
2267
|
+
|
|
2268
|
+
|
|
2269
|
+
if (typeof self !== 'undefined') {
|
|
2270
|
+
return self;
|
|
2271
|
+
}
|
|
2272
|
+
|
|
2273
|
+
return window;
|
|
2274
|
+
}();
|
|
2275
|
+
|
|
2276
|
+
var btoa = globalObject.btoa;
|
|
2277
|
+
/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (btoa);
|
|
2278
|
+
|
|
2279
|
+
/***/ }),
|
|
2280
|
+
|
|
2281
|
+
/***/ 7712:
|
|
2282
|
+
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2283
|
+
|
|
2284
|
+
"use strict";
|
|
2285
|
+
__webpack_require__.r(__webpack_exports__);
|
|
2286
|
+
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2287
|
+
/* harmony export */ "eachOperation": () => (/* binding */ eachOperation),
|
|
2288
|
+
/* harmony export */ "findOperation": () => (/* binding */ findOperation),
|
|
2289
|
+
/* harmony export */ "getOperationRaw": () => (/* binding */ getOperationRaw),
|
|
2290
|
+
/* harmony export */ "idFromPathMethod": () => (/* binding */ idFromPathMethod),
|
|
2250
2291
|
/* harmony export */ "isOAS3": () => (/* binding */ isOAS3),
|
|
2251
2292
|
/* harmony export */ "isSwagger2": () => (/* binding */ isSwagger2),
|
|
2252
|
-
/* harmony export */ "opId": () => (/* binding */ opId),
|
|
2253
|
-
/* harmony export */ "idFromPathMethod": () => (/* binding */ idFromPathMethod),
|
|
2254
2293
|
/* harmony export */ "legacyIdFromPathMethod": () => (/* binding */ legacyIdFromPathMethod),
|
|
2255
|
-
/* harmony export */ "
|
|
2256
|
-
/* harmony export */ "
|
|
2257
|
-
/* harmony export */ "eachOperation": () => (/* binding */ eachOperation),
|
|
2258
|
-
/* harmony export */ "normalizeSwagger": () => (/* binding */ normalizeSwagger)
|
|
2294
|
+
/* harmony export */ "normalizeSwagger": () => (/* binding */ normalizeSwagger),
|
|
2295
|
+
/* harmony export */ "opId": () => (/* binding */ opId)
|
|
2259
2296
|
/* harmony export */ });
|
|
2260
2297
|
/* harmony import */ var _babel_runtime_corejs3_helpers_createForOfIteratorHelper__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9021);
|
|
2261
2298
|
/* harmony import */ var _babel_runtime_corejs3_helpers_typeof__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(9623);
|
|
@@ -2576,15 +2613,15 @@ var foldFormDataToRequest = function foldFormDataToRequest(formdata, request) {
|
|
|
2576
2613
|
"use strict";
|
|
2577
2614
|
__webpack_require__.r(__webpack_exports__);
|
|
2578
2615
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2579
|
-
/* harmony export */ "self": () => (/* binding */ self),
|
|
2580
2616
|
/* harmony export */ "default": () => (/* binding */ http),
|
|
2581
|
-
/* harmony export */ "shouldDownloadAsText": () => (/* binding */ shouldDownloadAsText),
|
|
2582
|
-
/* harmony export */ "serializeRes": () => (/* binding */ serializeRes),
|
|
2583
|
-
/* harmony export */ "serializeHeaders": () => (/* binding */ serializeHeaders),
|
|
2584
|
-
/* harmony export */ "isFile": () => (/* binding */ isFile),
|
|
2585
2617
|
/* harmony export */ "encodeFormOrQuery": () => (/* binding */ encodeFormOrQuery),
|
|
2618
|
+
/* harmony export */ "isFile": () => (/* binding */ isFile),
|
|
2619
|
+
/* harmony export */ "makeHttp": () => (/* binding */ makeHttp),
|
|
2586
2620
|
/* harmony export */ "mergeInQueryOrForm": () => (/* binding */ mergeInQueryOrForm),
|
|
2587
|
-
/* harmony export */ "
|
|
2621
|
+
/* harmony export */ "self": () => (/* binding */ self),
|
|
2622
|
+
/* harmony export */ "serializeHeaders": () => (/* binding */ serializeHeaders),
|
|
2623
|
+
/* harmony export */ "serializeRes": () => (/* binding */ serializeRes),
|
|
2624
|
+
/* harmony export */ "shouldDownloadAsText": () => (/* binding */ shouldDownloadAsText)
|
|
2588
2625
|
/* harmony export */ });
|
|
2589
2626
|
/* harmony import */ var _babel_runtime_corejs3_helpers_createForOfIteratorHelper__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9021);
|
|
2590
2627
|
/* harmony import */ var _babel_runtime_corejs3_helpers_typeof__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(9623);
|
|
@@ -3283,16 +3320,16 @@ function makeHttp(httpFn, preFetch, postFetch) {
|
|
|
3283
3320
|
"use strict";
|
|
3284
3321
|
__webpack_require__.r(__webpack_exports__);
|
|
3285
3322
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3286
|
-
/* harmony export */ "self": () => (/* binding */ self),
|
|
3287
|
-
/* harmony export */ "makeExecute": () => (/* binding */ makeExecute),
|
|
3288
|
-
/* harmony export */ "makeApisTagOperationsOperationExecute": () => (/* binding */ makeApisTagOperationsOperationExecute),
|
|
3289
3323
|
/* harmony export */ "makeApisTagOperation": () => (/* binding */ makeApisTagOperation),
|
|
3290
|
-
/* harmony export */ "
|
|
3324
|
+
/* harmony export */ "makeApisTagOperationsOperationExecute": () => (/* binding */ makeApisTagOperationsOperationExecute),
|
|
3325
|
+
/* harmony export */ "makeExecute": () => (/* binding */ makeExecute),
|
|
3326
|
+
/* harmony export */ "mapTagOperations": () => (/* binding */ mapTagOperations),
|
|
3327
|
+
/* harmony export */ "self": () => (/* binding */ self)
|
|
3291
3328
|
/* harmony export */ });
|
|
3292
3329
|
/* harmony import */ var _babel_runtime_corejs3_helpers_objectSpread2__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7530);
|
|
3293
3330
|
/* harmony import */ var _babel_runtime_corejs3_core_js_stable_instance_concat__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(7766);
|
|
3294
3331
|
/* harmony import */ var _babel_runtime_corejs3_core_js_stable_instance_concat__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_corejs3_core_js_stable_instance_concat__WEBPACK_IMPORTED_MODULE_1__);
|
|
3295
|
-
/* harmony import */ var
|
|
3332
|
+
/* harmony import */ var _helpers_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(7712);
|
|
3296
3333
|
|
|
3297
3334
|
|
|
3298
3335
|
|
|
@@ -3398,7 +3435,7 @@ function mapTagOperations(_ref2) {
|
|
|
3398
3435
|
var operationIdCounter = {};
|
|
3399
3436
|
var tagOperations = {}; // Will house all tags + operations
|
|
3400
3437
|
|
|
3401
|
-
(0,
|
|
3438
|
+
(0,_helpers_index_js__WEBPACK_IMPORTED_MODULE_2__.eachOperation)(spec, function (_ref3) {
|
|
3402
3439
|
var pathName = _ref3.pathName,
|
|
3403
3440
|
method = _ref3.method,
|
|
3404
3441
|
operation = _ref3.operation;
|
|
@@ -3410,7 +3447,7 @@ function mapTagOperations(_ref2) {
|
|
|
3410
3447
|
|
|
3411
3448
|
tagOperations[tag] = tagOperations[tag] || {};
|
|
3412
3449
|
var tagObj = tagOperations[tag];
|
|
3413
|
-
var id = (0,
|
|
3450
|
+
var id = (0,_helpers_index_js__WEBPACK_IMPORTED_MODULE_2__.opId)(operation, pathName, method, {
|
|
3414
3451
|
v2OperationIdCompatibilityMode: v2OperationIdCompatibilityMode
|
|
3415
3452
|
});
|
|
3416
3453
|
var cbResult = cb({
|
|
@@ -3455,16 +3492,16 @@ function mapTagOperations(_ref2) {
|
|
|
3455
3492
|
"use strict";
|
|
3456
3493
|
__webpack_require__.r(__webpack_exports__);
|
|
3457
3494
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3458
|
-
/* harmony export */ "makeFetchJSON": () => (/* binding */ makeFetchJSON),
|
|
3459
3495
|
/* harmony export */ "clearCache": () => (/* binding */ clearCache),
|
|
3460
|
-
/* harmony export */ "default": () => (/* binding */ resolve)
|
|
3496
|
+
/* harmony export */ "default": () => (/* binding */ resolve),
|
|
3497
|
+
/* harmony export */ "makeFetchJSON": () => (/* binding */ makeFetchJSON)
|
|
3461
3498
|
/* harmony export */ });
|
|
3462
3499
|
/* harmony import */ var _babel_runtime_corejs3_helpers_asyncToGenerator__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(3938);
|
|
3463
3500
|
/* harmony import */ var _babel_runtime_corejs3_regenerator__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(3109);
|
|
3464
3501
|
/* harmony import */ var _babel_runtime_corejs3_regenerator__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_babel_runtime_corejs3_regenerator__WEBPACK_IMPORTED_MODULE_1__);
|
|
3465
3502
|
/* harmony import */ var _http_index_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(8288);
|
|
3466
3503
|
/* harmony import */ var _specmap_index_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(1027);
|
|
3467
|
-
/* harmony import */ var
|
|
3504
|
+
/* harmony import */ var _helpers_index_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(7712);
|
|
3468
3505
|
/* harmony import */ var _constants_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(8061);
|
|
3469
3506
|
|
|
3470
3507
|
|
|
@@ -3586,7 +3623,7 @@ function resolve(obj) {
|
|
|
3586
3623
|
return function (_x) {
|
|
3587
3624
|
return _ref.apply(this, arguments);
|
|
3588
3625
|
};
|
|
3589
|
-
}() :
|
|
3626
|
+
}() : _helpers_index_js__WEBPACK_IMPORTED_MODULE_4__.normalizeSwagger);
|
|
3590
3627
|
}
|
|
3591
3628
|
}
|
|
3592
3629
|
|
|
@@ -3598,9 +3635,9 @@ function resolve(obj) {
|
|
|
3598
3635
|
"use strict";
|
|
3599
3636
|
__webpack_require__.r(__webpack_exports__);
|
|
3600
3637
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3601
|
-
/* harmony export */ "
|
|
3638
|
+
/* harmony export */ "absolutifyPointer": () => (/* binding */ absolutifyPointer),
|
|
3602
3639
|
/* harmony export */ "generateAbsoluteRefPatches": () => (/* binding */ generateAbsoluteRefPatches),
|
|
3603
|
-
/* harmony export */ "
|
|
3640
|
+
/* harmony export */ "isFreelyNamed": () => (/* binding */ isFreelyNamed)
|
|
3604
3641
|
/* harmony export */ });
|
|
3605
3642
|
/* harmony import */ var _babel_runtime_corejs3_helpers_slicedToArray__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(3728);
|
|
3606
3643
|
/* harmony import */ var _babel_runtime_corejs3_helpers_toConsumableArray__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(6302);
|
|
@@ -3689,8 +3726,8 @@ function absolutifyPointer(pointer, baseUrl) {
|
|
|
3689
3726
|
"use strict";
|
|
3690
3727
|
__webpack_require__.r(__webpack_exports__);
|
|
3691
3728
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3692
|
-
/* harmony export */ "default": () => (/* binding */ mapSpec),
|
|
3693
3729
|
/* harmony export */ "SpecMap": () => (/* binding */ SpecMap),
|
|
3730
|
+
/* harmony export */ "default": () => (/* binding */ mapSpec),
|
|
3694
3731
|
/* harmony export */ "plugins": () => (/* binding */ plugins)
|
|
3695
3732
|
/* harmony export */ });
|
|
3696
3733
|
/* harmony import */ var _babel_runtime_corejs3_helpers_objectSpread2__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7530);
|
|
@@ -4451,15 +4488,24 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
4451
4488
|
});
|
|
4452
4489
|
patches.push.apply(patches, (0,_babel_runtime_corejs3_helpers_toConsumableArray__WEBPACK_IMPORTED_MODULE_0__["default"])(absoluteRefPatches));
|
|
4453
4490
|
return undefined;
|
|
4454
|
-
}); //
|
|
4491
|
+
}); // If there was an example in the original definition,
|
|
4492
|
+
// keep it instead of merging with examples from other schema
|
|
4493
|
+
|
|
4494
|
+
if (originalDefinitionObj.example) {
|
|
4495
|
+
var _context2;
|
|
4496
|
+
|
|
4497
|
+
// Delete other schema examples
|
|
4498
|
+
patches.push(specmap.remove(_babel_runtime_corejs3_core_js_stable_instance_concat__WEBPACK_IMPORTED_MODULE_4___default()(_context2 = []).call(_context2, parent, 'example')));
|
|
4499
|
+
} // Merge back the values from the original definition
|
|
4500
|
+
|
|
4455
4501
|
|
|
4456
4502
|
patches.push(specmap.mergeDeep(parent, originalDefinitionObj)); // If there was not an original $$ref value, make sure to remove
|
|
4457
4503
|
// any $$ref value that may exist from the result of `allOf` merges
|
|
4458
4504
|
|
|
4459
4505
|
if (!originalDefinitionObj.$$ref) {
|
|
4460
|
-
var
|
|
4506
|
+
var _context3;
|
|
4461
4507
|
|
|
4462
|
-
patches.push(specmap.remove(_babel_runtime_corejs3_core_js_stable_instance_concat__WEBPACK_IMPORTED_MODULE_4___default()(
|
|
4508
|
+
patches.push(specmap.remove(_babel_runtime_corejs3_core_js_stable_instance_concat__WEBPACK_IMPORTED_MODULE_4___default()(_context3 = []).call(_context3, parent, '$$ref')));
|
|
4463
4509
|
}
|
|
4464
4510
|
|
|
4465
4511
|
return patches;
|
|
@@ -5745,7 +5791,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
5745
5791
|
/* harmony import */ var lodash_get__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(7361);
|
|
5746
5792
|
/* harmony import */ var lodash_get__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(lodash_get__WEBPACK_IMPORTED_MODULE_3__);
|
|
5747
5793
|
/* harmony import */ var _resolver_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(6291);
|
|
5748
|
-
/* harmony import */ var
|
|
5794
|
+
/* harmony import */ var _helpers_index_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(7712);
|
|
5749
5795
|
|
|
5750
5796
|
|
|
5751
5797
|
|
|
@@ -5809,7 +5855,7 @@ function _resolveSubtree() {
|
|
|
5809
5855
|
modelPropertyMacro: modelPropertyMacro,
|
|
5810
5856
|
useCircularStructures: useCircularStructures
|
|
5811
5857
|
};
|
|
5812
|
-
_normalizeSwagger = (0,
|
|
5858
|
+
_normalizeSwagger = (0,_helpers_index_js__WEBPACK_IMPORTED_MODULE_5__.normalizeSwagger)({
|
|
5813
5859
|
spec: obj
|
|
5814
5860
|
}), normalized = _normalizeSwagger.spec;
|
|
5815
5861
|
_context.next = 6;
|
|
@@ -5838,30 +5884,6 @@ function _resolveSubtree() {
|
|
|
5838
5884
|
return _resolveSubtree.apply(this, arguments);
|
|
5839
5885
|
}
|
|
5840
5886
|
|
|
5841
|
-
/***/ }),
|
|
5842
|
-
|
|
5843
|
-
/***/ 706:
|
|
5844
|
-
/***/ ((module) => {
|
|
5845
|
-
|
|
5846
|
-
(function () {
|
|
5847
|
-
"use strict";
|
|
5848
|
-
|
|
5849
|
-
function btoa(str) {
|
|
5850
|
-
var buffer;
|
|
5851
|
-
|
|
5852
|
-
if (str instanceof Buffer) {
|
|
5853
|
-
buffer = str;
|
|
5854
|
-
} else {
|
|
5855
|
-
buffer = Buffer.from(str.toString(), 'binary');
|
|
5856
|
-
}
|
|
5857
|
-
|
|
5858
|
-
return buffer.toString('base64');
|
|
5859
|
-
}
|
|
5860
|
-
|
|
5861
|
-
module.exports = btoa;
|
|
5862
|
-
}());
|
|
5863
|
-
|
|
5864
|
-
|
|
5865
5887
|
/***/ }),
|
|
5866
5888
|
|
|
5867
5889
|
/***/ 1924:
|
|
@@ -5968,9 +5990,7 @@ exports.serialize = serialize;
|
|
|
5968
5990
|
* @private
|
|
5969
5991
|
*/
|
|
5970
5992
|
|
|
5971
|
-
var
|
|
5972
|
-
var encode = encodeURIComponent;
|
|
5973
|
-
var pairSplitRegExp = /; */;
|
|
5993
|
+
var __toString = Object.prototype.toString
|
|
5974
5994
|
|
|
5975
5995
|
/**
|
|
5976
5996
|
* RegExp to match field-content in RFC 7230 sec 3.2
|
|
@@ -6001,30 +6021,42 @@ function parse(str, options) {
|
|
|
6001
6021
|
|
|
6002
6022
|
var obj = {}
|
|
6003
6023
|
var opt = options || {};
|
|
6004
|
-
var pairs = str.split(pairSplitRegExp);
|
|
6005
6024
|
var dec = opt.decode || decode;
|
|
6006
6025
|
|
|
6007
|
-
|
|
6008
|
-
|
|
6009
|
-
var
|
|
6026
|
+
var index = 0
|
|
6027
|
+
while (index < str.length) {
|
|
6028
|
+
var eqIdx = str.indexOf('=', index)
|
|
6010
6029
|
|
|
6011
|
-
//
|
|
6012
|
-
if (
|
|
6013
|
-
|
|
6030
|
+
// no more cookie pairs
|
|
6031
|
+
if (eqIdx === -1) {
|
|
6032
|
+
break
|
|
6014
6033
|
}
|
|
6015
6034
|
|
|
6016
|
-
var
|
|
6017
|
-
var val = pair.substr(++eq_idx, pair.length).trim();
|
|
6035
|
+
var endIdx = str.indexOf(';', index)
|
|
6018
6036
|
|
|
6019
|
-
|
|
6020
|
-
|
|
6021
|
-
|
|
6037
|
+
if (endIdx === -1) {
|
|
6038
|
+
endIdx = str.length
|
|
6039
|
+
} else if (endIdx < eqIdx) {
|
|
6040
|
+
// backtrack on prior semicolon
|
|
6041
|
+
index = str.lastIndexOf(';', eqIdx - 1) + 1
|
|
6042
|
+
continue
|
|
6022
6043
|
}
|
|
6023
6044
|
|
|
6045
|
+
var key = str.slice(index, eqIdx).trim()
|
|
6046
|
+
|
|
6024
6047
|
// only assign once
|
|
6025
|
-
if (undefined
|
|
6048
|
+
if (undefined === obj[key]) {
|
|
6049
|
+
var val = str.slice(eqIdx + 1, endIdx).trim()
|
|
6050
|
+
|
|
6051
|
+
// quoted values
|
|
6052
|
+
if (val.charCodeAt(0) === 0x22) {
|
|
6053
|
+
val = val.slice(1, -1)
|
|
6054
|
+
}
|
|
6055
|
+
|
|
6026
6056
|
obj[key] = tryDecode(val, dec);
|
|
6027
6057
|
}
|
|
6058
|
+
|
|
6059
|
+
index = endIdx + 1
|
|
6028
6060
|
}
|
|
6029
6061
|
|
|
6030
6062
|
return obj;
|
|
@@ -6093,11 +6125,13 @@ function serialize(name, val, options) {
|
|
|
6093
6125
|
}
|
|
6094
6126
|
|
|
6095
6127
|
if (opt.expires) {
|
|
6096
|
-
|
|
6128
|
+
var expires = opt.expires
|
|
6129
|
+
|
|
6130
|
+
if (!isDate(expires) || isNaN(expires.valueOf())) {
|
|
6097
6131
|
throw new TypeError('option expires is invalid');
|
|
6098
6132
|
}
|
|
6099
6133
|
|
|
6100
|
-
str += '; Expires=' +
|
|
6134
|
+
str += '; Expires=' + expires.toUTCString()
|
|
6101
6135
|
}
|
|
6102
6136
|
|
|
6103
6137
|
if (opt.httpOnly) {
|
|
@@ -6108,6 +6142,26 @@ function serialize(name, val, options) {
|
|
|
6108
6142
|
str += '; Secure';
|
|
6109
6143
|
}
|
|
6110
6144
|
|
|
6145
|
+
if (opt.priority) {
|
|
6146
|
+
var priority = typeof opt.priority === 'string'
|
|
6147
|
+
? opt.priority.toLowerCase()
|
|
6148
|
+
: opt.priority
|
|
6149
|
+
|
|
6150
|
+
switch (priority) {
|
|
6151
|
+
case 'low':
|
|
6152
|
+
str += '; Priority=Low'
|
|
6153
|
+
break
|
|
6154
|
+
case 'medium':
|
|
6155
|
+
str += '; Priority=Medium'
|
|
6156
|
+
break
|
|
6157
|
+
case 'high':
|
|
6158
|
+
str += '; Priority=High'
|
|
6159
|
+
break
|
|
6160
|
+
default:
|
|
6161
|
+
throw new TypeError('option priority is invalid')
|
|
6162
|
+
}
|
|
6163
|
+
}
|
|
6164
|
+
|
|
6111
6165
|
if (opt.sameSite) {
|
|
6112
6166
|
var sameSite = typeof opt.sameSite === 'string'
|
|
6113
6167
|
? opt.sameSite.toLowerCase() : opt.sameSite;
|
|
@@ -6133,6 +6187,42 @@ function serialize(name, val, options) {
|
|
|
6133
6187
|
return str;
|
|
6134
6188
|
}
|
|
6135
6189
|
|
|
6190
|
+
/**
|
|
6191
|
+
* URL-decode string value. Optimized to skip native call when no %.
|
|
6192
|
+
*
|
|
6193
|
+
* @param {string} str
|
|
6194
|
+
* @returns {string}
|
|
6195
|
+
*/
|
|
6196
|
+
|
|
6197
|
+
function decode (str) {
|
|
6198
|
+
return str.indexOf('%') !== -1
|
|
6199
|
+
? decodeURIComponent(str)
|
|
6200
|
+
: str
|
|
6201
|
+
}
|
|
6202
|
+
|
|
6203
|
+
/**
|
|
6204
|
+
* URL-encode value.
|
|
6205
|
+
*
|
|
6206
|
+
* @param {string} str
|
|
6207
|
+
* @returns {string}
|
|
6208
|
+
*/
|
|
6209
|
+
|
|
6210
|
+
function encode (val) {
|
|
6211
|
+
return encodeURIComponent(val)
|
|
6212
|
+
}
|
|
6213
|
+
|
|
6214
|
+
/**
|
|
6215
|
+
* Determine if value is a Date.
|
|
6216
|
+
*
|
|
6217
|
+
* @param {*} val
|
|
6218
|
+
* @private
|
|
6219
|
+
*/
|
|
6220
|
+
|
|
6221
|
+
function isDate (val) {
|
|
6222
|
+
return __toString.call(val) === '[object Date]' ||
|
|
6223
|
+
val instanceof Date
|
|
6224
|
+
}
|
|
6225
|
+
|
|
6136
6226
|
/**
|
|
6137
6227
|
* Try decoding a string using a decoding function.
|
|
6138
6228
|
*
|
|
@@ -6180,6 +6270,16 @@ var parent = __webpack_require__(6243);
|
|
|
6180
6270
|
module.exports = parent;
|
|
6181
6271
|
|
|
6182
6272
|
|
|
6273
|
+
/***/ }),
|
|
6274
|
+
|
|
6275
|
+
/***/ 5023:
|
|
6276
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6277
|
+
|
|
6278
|
+
var parent = __webpack_require__(2369);
|
|
6279
|
+
|
|
6280
|
+
module.exports = parent;
|
|
6281
|
+
|
|
6282
|
+
|
|
6183
6283
|
/***/ }),
|
|
6184
6284
|
|
|
6185
6285
|
/***/ 3688:
|
|
@@ -6456,6 +6556,16 @@ var getIteratorMethod = __webpack_require__(2902);
|
|
|
6456
6556
|
module.exports = getIteratorMethod;
|
|
6457
6557
|
|
|
6458
6558
|
|
|
6559
|
+
/***/ }),
|
|
6560
|
+
|
|
6561
|
+
/***/ 1031:
|
|
6562
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
6563
|
+
|
|
6564
|
+
__webpack_require__(2595);
|
|
6565
|
+
|
|
6566
|
+
module.exports = __webpack_require__(1899);
|
|
6567
|
+
|
|
6568
|
+
|
|
6459
6569
|
/***/ }),
|
|
6460
6570
|
|
|
6461
6571
|
/***/ 6043:
|
|
@@ -6900,6 +7010,19 @@ var parent = __webpack_require__(6820);
|
|
|
6900
7010
|
module.exports = parent;
|
|
6901
7011
|
|
|
6902
7012
|
|
|
7013
|
+
/***/ }),
|
|
7014
|
+
|
|
7015
|
+
/***/ 888:
|
|
7016
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
7017
|
+
|
|
7018
|
+
// TODO: remove from `core-js@4`
|
|
7019
|
+
__webpack_require__(9668);
|
|
7020
|
+
|
|
7021
|
+
var parent = __webpack_require__(5023);
|
|
7022
|
+
|
|
7023
|
+
module.exports = parent;
|
|
7024
|
+
|
|
7025
|
+
|
|
6903
7026
|
/***/ }),
|
|
6904
7027
|
|
|
6905
7028
|
/***/ 4442:
|
|
@@ -7388,8 +7511,8 @@ var fails = __webpack_require__(5981);
|
|
|
7388
7511
|
module.exports = function (METHOD_NAME, argument) {
|
|
7389
7512
|
var method = [][METHOD_NAME];
|
|
7390
7513
|
return !!method && fails(function () {
|
|
7391
|
-
// eslint-disable-next-line no-useless-call
|
|
7392
|
-
method.call(null, argument || function () {
|
|
7514
|
+
// eslint-disable-next-line no-useless-call -- required for testing
|
|
7515
|
+
method.call(null, argument || function () { return 1; }, 1);
|
|
7393
7516
|
});
|
|
7394
7517
|
};
|
|
7395
7518
|
|
|
@@ -8492,15 +8615,16 @@ module.exports = !fails(function () {
|
|
|
8492
8615
|
/***/ }),
|
|
8493
8616
|
|
|
8494
8617
|
/***/ 9730:
|
|
8495
|
-
/***/ ((module) => {
|
|
8618
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
8619
|
+
|
|
8620
|
+
var NATIVE_BIND = __webpack_require__(8285);
|
|
8496
8621
|
|
|
8497
8622
|
var FunctionPrototype = Function.prototype;
|
|
8498
8623
|
var apply = FunctionPrototype.apply;
|
|
8499
|
-
var bind = FunctionPrototype.bind;
|
|
8500
8624
|
var call = FunctionPrototype.call;
|
|
8501
8625
|
|
|
8502
8626
|
// eslint-disable-next-line es/no-reflect -- safe
|
|
8503
|
-
module.exports = typeof Reflect == 'object' && Reflect.apply || (
|
|
8627
|
+
module.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {
|
|
8504
8628
|
return call.apply(apply, arguments);
|
|
8505
8629
|
});
|
|
8506
8630
|
|
|
@@ -8512,26 +8636,43 @@ module.exports = typeof Reflect == 'object' && Reflect.apply || (bind ? call.bin
|
|
|
8512
8636
|
|
|
8513
8637
|
var uncurryThis = __webpack_require__(5329);
|
|
8514
8638
|
var aCallable = __webpack_require__(4883);
|
|
8639
|
+
var NATIVE_BIND = __webpack_require__(8285);
|
|
8515
8640
|
|
|
8516
8641
|
var bind = uncurryThis(uncurryThis.bind);
|
|
8517
8642
|
|
|
8518
8643
|
// optional / simple context binding
|
|
8519
8644
|
module.exports = function (fn, that) {
|
|
8520
8645
|
aCallable(fn);
|
|
8521
|
-
return that === undefined ? fn :
|
|
8646
|
+
return that === undefined ? fn : NATIVE_BIND ? bind(fn, that) : function (/* ...args */) {
|
|
8522
8647
|
return fn.apply(that, arguments);
|
|
8523
8648
|
};
|
|
8524
8649
|
};
|
|
8525
8650
|
|
|
8526
8651
|
|
|
8652
|
+
/***/ }),
|
|
8653
|
+
|
|
8654
|
+
/***/ 8285:
|
|
8655
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
8656
|
+
|
|
8657
|
+
var fails = __webpack_require__(5981);
|
|
8658
|
+
|
|
8659
|
+
module.exports = !fails(function () {
|
|
8660
|
+
var test = (function () { /* empty */ }).bind();
|
|
8661
|
+
// eslint-disable-next-line no-prototype-builtins -- safe
|
|
8662
|
+
return typeof test != 'function' || test.hasOwnProperty('prototype');
|
|
8663
|
+
});
|
|
8664
|
+
|
|
8665
|
+
|
|
8527
8666
|
/***/ }),
|
|
8528
8667
|
|
|
8529
8668
|
/***/ 8834:
|
|
8530
|
-
/***/ ((module) => {
|
|
8669
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
8670
|
+
|
|
8671
|
+
var NATIVE_BIND = __webpack_require__(8285);
|
|
8531
8672
|
|
|
8532
8673
|
var call = Function.prototype.call;
|
|
8533
8674
|
|
|
8534
|
-
module.exports =
|
|
8675
|
+
module.exports = NATIVE_BIND ? call.bind(call) : function () {
|
|
8535
8676
|
return call.apply(call, arguments);
|
|
8536
8677
|
};
|
|
8537
8678
|
|
|
@@ -8563,14 +8704,16 @@ module.exports = {
|
|
|
8563
8704
|
/***/ }),
|
|
8564
8705
|
|
|
8565
8706
|
/***/ 5329:
|
|
8566
|
-
/***/ ((module) => {
|
|
8707
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
8708
|
+
|
|
8709
|
+
var NATIVE_BIND = __webpack_require__(8285);
|
|
8567
8710
|
|
|
8568
8711
|
var FunctionPrototype = Function.prototype;
|
|
8569
8712
|
var bind = FunctionPrototype.bind;
|
|
8570
8713
|
var call = FunctionPrototype.call;
|
|
8571
|
-
var uncurryThis =
|
|
8714
|
+
var uncurryThis = NATIVE_BIND && bind.bind(call, call);
|
|
8572
8715
|
|
|
8573
|
-
module.exports =
|
|
8716
|
+
module.exports = NATIVE_BIND ? function (fn) {
|
|
8574
8717
|
return fn && uncurryThis(fn);
|
|
8575
8718
|
} : function (fn) {
|
|
8576
8719
|
return fn && function () {
|
|
@@ -8733,7 +8876,7 @@ var DESCRIPTORS = __webpack_require__(5746);
|
|
|
8733
8876
|
var fails = __webpack_require__(5981);
|
|
8734
8877
|
var createElement = __webpack_require__(1333);
|
|
8735
8878
|
|
|
8736
|
-
//
|
|
8879
|
+
// Thanks to IE8 for its funny defineProperty
|
|
8737
8880
|
module.exports = !DESCRIPTORS && !fails(function () {
|
|
8738
8881
|
// eslint-disable-next-line es/no-object-defineproperty -- required for testing
|
|
8739
8882
|
return Object.defineProperty(createElement('div'), 'a', {
|
|
@@ -10392,9 +10535,11 @@ var store = __webpack_require__(3030);
|
|
|
10392
10535
|
(module.exports = function (key, value) {
|
|
10393
10536
|
return store[key] || (store[key] = value !== undefined ? value : {});
|
|
10394
10537
|
})('versions', []).push({
|
|
10395
|
-
version: '3.
|
|
10538
|
+
version: '3.21.1',
|
|
10396
10539
|
mode: IS_PURE ? 'pure' : 'global',
|
|
10397
|
-
copyright: '© 2022 Denis Pushkarev (zloirock.ru)'
|
|
10540
|
+
copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
|
|
10541
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.21.1/LICENSE',
|
|
10542
|
+
source: 'https://github.com/zloirock/core-js'
|
|
10398
10543
|
});
|
|
10399
10544
|
|
|
10400
10545
|
|
|
@@ -10535,6 +10680,7 @@ var fails = __webpack_require__(5981);
|
|
|
10535
10680
|
var html = __webpack_require__(5463);
|
|
10536
10681
|
var arraySlice = __webpack_require__(3765);
|
|
10537
10682
|
var createElement = __webpack_require__(1333);
|
|
10683
|
+
var validateArgumentsLength = __webpack_require__(8348);
|
|
10538
10684
|
var IS_IOS = __webpack_require__(2749);
|
|
10539
10685
|
var IS_NODE = __webpack_require__(6049);
|
|
10540
10686
|
|
|
@@ -10580,10 +10726,12 @@ var post = function (id) {
|
|
|
10580
10726
|
|
|
10581
10727
|
// Node.js 0.9+ & IE10+ has setImmediate, otherwise:
|
|
10582
10728
|
if (!set || !clear) {
|
|
10583
|
-
set = function setImmediate(
|
|
10729
|
+
set = function setImmediate(handler) {
|
|
10730
|
+
validateArgumentsLength(arguments.length, 1);
|
|
10731
|
+
var fn = isCallable(handler) ? handler : Function(handler);
|
|
10584
10732
|
var args = arraySlice(arguments, 1);
|
|
10585
10733
|
queue[++counter] = function () {
|
|
10586
|
-
apply(
|
|
10734
|
+
apply(fn, undefined, args);
|
|
10587
10735
|
};
|
|
10588
10736
|
defer(counter);
|
|
10589
10737
|
return counter;
|
|
@@ -10870,6 +11018,21 @@ module.exports = DESCRIPTORS && fails(function () {
|
|
|
10870
11018
|
});
|
|
10871
11019
|
|
|
10872
11020
|
|
|
11021
|
+
/***/ }),
|
|
11022
|
+
|
|
11023
|
+
/***/ 8348:
|
|
11024
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
11025
|
+
|
|
11026
|
+
var global = __webpack_require__(1899);
|
|
11027
|
+
|
|
11028
|
+
var TypeError = global.TypeError;
|
|
11029
|
+
|
|
11030
|
+
module.exports = function (passed, required) {
|
|
11031
|
+
if (passed < required) throw TypeError('Not enough arguments');
|
|
11032
|
+
return passed;
|
|
11033
|
+
};
|
|
11034
|
+
|
|
11035
|
+
|
|
10873
11036
|
/***/ }),
|
|
10874
11037
|
|
|
10875
11038
|
/***/ 1477:
|
|
@@ -11442,6 +11605,21 @@ $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT }, {
|
|
|
11442
11605
|
});
|
|
11443
11606
|
|
|
11444
11607
|
|
|
11608
|
+
/***/ }),
|
|
11609
|
+
|
|
11610
|
+
/***/ 2595:
|
|
11611
|
+
/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
|
|
11612
|
+
|
|
11613
|
+
var $ = __webpack_require__(6887);
|
|
11614
|
+
var global = __webpack_require__(1899);
|
|
11615
|
+
|
|
11616
|
+
// `globalThis` object
|
|
11617
|
+
// https://tc39.es/ecma262/#sec-globalthis
|
|
11618
|
+
$({ global: true }, {
|
|
11619
|
+
globalThis: global
|
|
11620
|
+
});
|
|
11621
|
+
|
|
11622
|
+
|
|
11445
11623
|
/***/ }),
|
|
11446
11624
|
|
|
11447
11625
|
/***/ 2619:
|
|
@@ -12970,6 +13148,15 @@ if (NATIVE_WEAK_MAP && IS_IE11) {
|
|
|
12970
13148
|
__webpack_require__(7627);
|
|
12971
13149
|
|
|
12972
13150
|
|
|
13151
|
+
/***/ }),
|
|
13152
|
+
|
|
13153
|
+
/***/ 9668:
|
|
13154
|
+
/***/ ((__unused_webpack_module, __unused_webpack_exports, __webpack_require__) => {
|
|
13155
|
+
|
|
13156
|
+
// TODO: Remove from `core-js@4`
|
|
13157
|
+
__webpack_require__(2595);
|
|
13158
|
+
|
|
13159
|
+
|
|
12973
13160
|
/***/ }),
|
|
12974
13161
|
|
|
12975
13162
|
/***/ 5708:
|
|
@@ -13001,7 +13188,7 @@ var perform = __webpack_require__(2);
|
|
|
13001
13188
|
|
|
13002
13189
|
// `Promise.try` method
|
|
13003
13190
|
// https://github.com/tc39/proposal-promise-try
|
|
13004
|
-
$({ target: 'Promise', stat: true }, {
|
|
13191
|
+
$({ target: 'Promise', stat: true, forced: true }, {
|
|
13005
13192
|
'try': function (callbackfn) {
|
|
13006
13193
|
var promiseCapability = newPromiseCapabilityModule.f(this);
|
|
13007
13194
|
var result = perform(callbackfn);
|
|
@@ -13152,6 +13339,7 @@ var create = __webpack_require__(9290);
|
|
|
13152
13339
|
var createPropertyDescriptor = __webpack_require__(1887);
|
|
13153
13340
|
var getIterator = __webpack_require__(3476);
|
|
13154
13341
|
var getIteratorMethod = __webpack_require__(2902);
|
|
13342
|
+
var validateArgumentsLength = __webpack_require__(8348);
|
|
13155
13343
|
var wellKnownSymbol = __webpack_require__(9813);
|
|
13156
13344
|
var arraySort = __webpack_require__(1388);
|
|
13157
13345
|
|
|
@@ -13227,10 +13415,6 @@ var serialize = function (it) {
|
|
|
13227
13415
|
return replace(encodeURIComponent(it), find, replacer);
|
|
13228
13416
|
};
|
|
13229
13417
|
|
|
13230
|
-
var validateArgumentsLength = function (passed, required) {
|
|
13231
|
-
if (passed < required) throw TypeError('Not enough arguments');
|
|
13232
|
-
};
|
|
13233
|
-
|
|
13234
13418
|
var URLSearchParamsIterator = createIteratorConstructor(function Iterator(params, kind) {
|
|
13235
13419
|
setInternalState(this, {
|
|
13236
13420
|
type: URL_SEARCH_PARAMS_ITERATOR,
|
|
@@ -13565,6 +13749,16 @@ __webpack_require__(7634);
|
|
|
13565
13749
|
module.exports = parent;
|
|
13566
13750
|
|
|
13567
13751
|
|
|
13752
|
+
/***/ }),
|
|
13753
|
+
|
|
13754
|
+
/***/ 2369:
|
|
13755
|
+
/***/ ((module, __unused_webpack_exports, __webpack_require__) => {
|
|
13756
|
+
|
|
13757
|
+
var parent = __webpack_require__(1031);
|
|
13758
|
+
|
|
13759
|
+
module.exports = parent;
|
|
13760
|
+
|
|
13761
|
+
|
|
13568
13762
|
/***/ }),
|
|
13569
13763
|
|
|
13570
13764
|
/***/ 8065:
|
|
@@ -19222,22 +19416,22 @@ function _unsupportedIterableToArray(o, minLen) {
|
|
|
19222
19416
|
"use strict";
|
|
19223
19417
|
__webpack_require__.r(__webpack_exports__);
|
|
19224
19418
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
19419
|
+
/* harmony export */ "JsonPatchError": () => (/* reexport safe */ _module_helpers_mjs__WEBPACK_IMPORTED_MODULE_2__.PatchError),
|
|
19225
19420
|
/* harmony export */ "_areEquals": () => (/* reexport safe */ _module_core_mjs__WEBPACK_IMPORTED_MODULE_0__._areEquals),
|
|
19226
19421
|
/* harmony export */ "applyOperation": () => (/* reexport safe */ _module_core_mjs__WEBPACK_IMPORTED_MODULE_0__.applyOperation),
|
|
19227
19422
|
/* harmony export */ "applyPatch": () => (/* reexport safe */ _module_core_mjs__WEBPACK_IMPORTED_MODULE_0__.applyPatch),
|
|
19228
19423
|
/* harmony export */ "applyReducer": () => (/* reexport safe */ _module_core_mjs__WEBPACK_IMPORTED_MODULE_0__.applyReducer),
|
|
19229
|
-
/* harmony export */ "getValueByPointer": () => (/* reexport safe */ _module_core_mjs__WEBPACK_IMPORTED_MODULE_0__.getValueByPointer),
|
|
19230
|
-
/* harmony export */ "validate": () => (/* reexport safe */ _module_core_mjs__WEBPACK_IMPORTED_MODULE_0__.validate),
|
|
19231
|
-
/* harmony export */ "validator": () => (/* reexport safe */ _module_core_mjs__WEBPACK_IMPORTED_MODULE_0__.validator),
|
|
19232
19424
|
/* harmony export */ "compare": () => (/* reexport safe */ _module_duplex_mjs__WEBPACK_IMPORTED_MODULE_1__.compare),
|
|
19233
|
-
/* harmony export */ "generate": () => (/* reexport safe */ _module_duplex_mjs__WEBPACK_IMPORTED_MODULE_1__.generate),
|
|
19234
|
-
/* harmony export */ "observe": () => (/* reexport safe */ _module_duplex_mjs__WEBPACK_IMPORTED_MODULE_1__.observe),
|
|
19235
|
-
/* harmony export */ "unobserve": () => (/* reexport safe */ _module_duplex_mjs__WEBPACK_IMPORTED_MODULE_1__.unobserve),
|
|
19236
|
-
/* harmony export */ "JsonPatchError": () => (/* reexport safe */ _module_helpers_mjs__WEBPACK_IMPORTED_MODULE_2__.PatchError),
|
|
19237
19425
|
/* harmony export */ "deepClone": () => (/* reexport safe */ _module_helpers_mjs__WEBPACK_IMPORTED_MODULE_2__._deepClone),
|
|
19426
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__),
|
|
19238
19427
|
/* harmony export */ "escapePathComponent": () => (/* reexport safe */ _module_helpers_mjs__WEBPACK_IMPORTED_MODULE_2__.escapePathComponent),
|
|
19428
|
+
/* harmony export */ "generate": () => (/* reexport safe */ _module_duplex_mjs__WEBPACK_IMPORTED_MODULE_1__.generate),
|
|
19429
|
+
/* harmony export */ "getValueByPointer": () => (/* reexport safe */ _module_core_mjs__WEBPACK_IMPORTED_MODULE_0__.getValueByPointer),
|
|
19430
|
+
/* harmony export */ "observe": () => (/* reexport safe */ _module_duplex_mjs__WEBPACK_IMPORTED_MODULE_1__.observe),
|
|
19239
19431
|
/* harmony export */ "unescapePathComponent": () => (/* reexport safe */ _module_helpers_mjs__WEBPACK_IMPORTED_MODULE_2__.unescapePathComponent),
|
|
19240
|
-
/* harmony export */ "
|
|
19432
|
+
/* harmony export */ "unobserve": () => (/* reexport safe */ _module_duplex_mjs__WEBPACK_IMPORTED_MODULE_1__.unobserve),
|
|
19433
|
+
/* harmony export */ "validate": () => (/* reexport safe */ _module_core_mjs__WEBPACK_IMPORTED_MODULE_0__.validate),
|
|
19434
|
+
/* harmony export */ "validator": () => (/* reexport safe */ _module_core_mjs__WEBPACK_IMPORTED_MODULE_0__.validator)
|
|
19241
19435
|
/* harmony export */ });
|
|
19242
19436
|
/* harmony import */ var _module_core_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8625);
|
|
19243
19437
|
/* harmony import */ var _module_duplex_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(2489);
|
|
@@ -19271,14 +19465,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
19271
19465
|
__webpack_require__.r(__webpack_exports__);
|
|
19272
19466
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
19273
19467
|
/* harmony export */ "JsonPatchError": () => (/* binding */ JsonPatchError),
|
|
19274
|
-
/* harmony export */ "
|
|
19275
|
-
/* harmony export */ "getValueByPointer": () => (/* binding */ getValueByPointer),
|
|
19468
|
+
/* harmony export */ "_areEquals": () => (/* binding */ _areEquals),
|
|
19276
19469
|
/* harmony export */ "applyOperation": () => (/* binding */ applyOperation),
|
|
19277
19470
|
/* harmony export */ "applyPatch": () => (/* binding */ applyPatch),
|
|
19278
19471
|
/* harmony export */ "applyReducer": () => (/* binding */ applyReducer),
|
|
19279
|
-
/* harmony export */ "
|
|
19472
|
+
/* harmony export */ "deepClone": () => (/* binding */ deepClone),
|
|
19473
|
+
/* harmony export */ "getValueByPointer": () => (/* binding */ getValueByPointer),
|
|
19280
19474
|
/* harmony export */ "validate": () => (/* binding */ validate),
|
|
19281
|
-
/* harmony export */ "
|
|
19475
|
+
/* harmony export */ "validator": () => (/* binding */ validator)
|
|
19282
19476
|
/* harmony export */ });
|
|
19283
19477
|
/* harmony import */ var _helpers_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9685);
|
|
19284
19478
|
|
|
@@ -19469,8 +19663,10 @@ function applyOperation(document, operation, validateOperation, mutateDocument,
|
|
|
19469
19663
|
if (key && key.indexOf('~') != -1) {
|
|
19470
19664
|
key = (0,_helpers_mjs__WEBPACK_IMPORTED_MODULE_0__.unescapePathComponent)(key);
|
|
19471
19665
|
}
|
|
19472
|
-
if (banPrototypeModifications &&
|
|
19473
|
-
|
|
19666
|
+
if (banPrototypeModifications &&
|
|
19667
|
+
(key == '__proto__' ||
|
|
19668
|
+
(key == 'prototype' && t > 0 && keys[t - 1] == 'constructor'))) {
|
|
19669
|
+
throw new TypeError('JSON-Patch: modifying `__proto__` or `constructor/prototype` prop is banned for security reasons, if this was on purpose, please set `banPrototypeModifications` flag false and pass it to this function. More info in fast-json-patch README');
|
|
19474
19670
|
}
|
|
19475
19671
|
if (validateOperation) {
|
|
19476
19672
|
if (existingPathFragment === undefined) {
|
|
@@ -19722,16 +19918,16 @@ function _areEquals(a, b) {
|
|
|
19722
19918
|
"use strict";
|
|
19723
19919
|
__webpack_require__.r(__webpack_exports__);
|
|
19724
19920
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
19725
|
-
/* harmony export */ "
|
|
19726
|
-
/* harmony export */ "observe": () => (/* binding */ observe),
|
|
19921
|
+
/* harmony export */ "compare": () => (/* binding */ compare),
|
|
19727
19922
|
/* harmony export */ "generate": () => (/* binding */ generate),
|
|
19728
|
-
/* harmony export */ "
|
|
19923
|
+
/* harmony export */ "observe": () => (/* binding */ observe),
|
|
19924
|
+
/* harmony export */ "unobserve": () => (/* binding */ unobserve)
|
|
19729
19925
|
/* harmony export */ });
|
|
19730
19926
|
/* harmony import */ var _helpers_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9685);
|
|
19731
19927
|
/* harmony import */ var _core_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(8625);
|
|
19732
19928
|
/*!
|
|
19733
19929
|
* https://github.com/Starcounter-Jack/JSON-Patch
|
|
19734
|
-
* (c) 2017 Joachim Wester
|
|
19930
|
+
* (c) 2017-2021 Joachim Wester
|
|
19735
19931
|
* MIT license
|
|
19736
19932
|
*/
|
|
19737
19933
|
|
|
@@ -19915,21 +20111,21 @@ function compare(tree1, tree2, invertible) {
|
|
|
19915
20111
|
"use strict";
|
|
19916
20112
|
__webpack_require__.r(__webpack_exports__);
|
|
19917
20113
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
19918
|
-
/* harmony export */ "
|
|
19919
|
-
/* harmony export */ "_objectKeys": () => (/* binding */ _objectKeys),
|
|
20114
|
+
/* harmony export */ "PatchError": () => (/* binding */ PatchError),
|
|
19920
20115
|
/* harmony export */ "_deepClone": () => (/* binding */ _deepClone),
|
|
19921
|
-
/* harmony export */ "isInteger": () => (/* binding */ isInteger),
|
|
19922
|
-
/* harmony export */ "escapePathComponent": () => (/* binding */ escapePathComponent),
|
|
19923
|
-
/* harmony export */ "unescapePathComponent": () => (/* binding */ unescapePathComponent),
|
|
19924
20116
|
/* harmony export */ "_getPathRecursive": () => (/* binding */ _getPathRecursive),
|
|
20117
|
+
/* harmony export */ "_objectKeys": () => (/* binding */ _objectKeys),
|
|
20118
|
+
/* harmony export */ "escapePathComponent": () => (/* binding */ escapePathComponent),
|
|
19925
20119
|
/* harmony export */ "getPath": () => (/* binding */ getPath),
|
|
20120
|
+
/* harmony export */ "hasOwnProperty": () => (/* binding */ hasOwnProperty),
|
|
19926
20121
|
/* harmony export */ "hasUndefined": () => (/* binding */ hasUndefined),
|
|
19927
|
-
/* harmony export */ "
|
|
20122
|
+
/* harmony export */ "isInteger": () => (/* binding */ isInteger),
|
|
20123
|
+
/* harmony export */ "unescapePathComponent": () => (/* binding */ unescapePathComponent)
|
|
19928
20124
|
/* harmony export */ });
|
|
19929
20125
|
/*!
|
|
19930
20126
|
* https://github.com/Starcounter-Jack/JSON-Patch
|
|
19931
|
-
* (c) 2017 Joachim Wester
|
|
19932
|
-
* MIT
|
|
20127
|
+
* (c) 2017-2022 Joachim Wester
|
|
20128
|
+
* MIT licensed
|
|
19933
20129
|
*/
|
|
19934
20130
|
var __extends = (undefined && undefined.__extends) || (function () {
|
|
19935
20131
|
var extendStatics = function (d, b) {
|
|
@@ -19950,11 +20146,11 @@ function hasOwnProperty(obj, key) {
|
|
|
19950
20146
|
}
|
|
19951
20147
|
function _objectKeys(obj) {
|
|
19952
20148
|
if (Array.isArray(obj)) {
|
|
19953
|
-
var
|
|
19954
|
-
for (var k = 0; k <
|
|
19955
|
-
|
|
20149
|
+
var keys_1 = new Array(obj.length);
|
|
20150
|
+
for (var k = 0; k < keys_1.length; k++) {
|
|
20151
|
+
keys_1[k] = "" + k;
|
|
19956
20152
|
}
|
|
19957
|
-
return
|
|
20153
|
+
return keys_1;
|
|
19958
20154
|
}
|
|
19959
20155
|
if (Object.keys) {
|
|
19960
20156
|
return Object.keys(obj);
|
|
@@ -20042,7 +20238,7 @@ function getPath(root, obj) {
|
|
|
20042
20238
|
if (path === '') {
|
|
20043
20239
|
throw new Error("Object not found in root");
|
|
20044
20240
|
}
|
|
20045
|
-
return
|
|
20241
|
+
return "/" + path;
|
|
20046
20242
|
}
|
|
20047
20243
|
/**
|
|
20048
20244
|
* Recursively checks whether an object has any undefined values inside.
|
|
@@ -20053,8 +20249,8 @@ function hasUndefined(obj) {
|
|
|
20053
20249
|
}
|
|
20054
20250
|
if (obj) {
|
|
20055
20251
|
if (Array.isArray(obj)) {
|
|
20056
|
-
for (var
|
|
20057
|
-
if (hasUndefined(obj[
|
|
20252
|
+
for (var i_1 = 0, len = obj.length; i_1 < len; i_1++) {
|
|
20253
|
+
if (hasUndefined(obj[i_1])) {
|
|
20058
20254
|
return true;
|
|
20059
20255
|
}
|
|
20060
20256
|
}
|
|
@@ -20107,9 +20303,9 @@ var PatchError = /** @class */ (function (_super) {
|
|
|
20107
20303
|
"use strict";
|
|
20108
20304
|
__webpack_require__.r(__webpack_exports__);
|
|
20109
20305
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
20110
|
-
/* harmony export */ "FormData": () => (/* binding */ FormData),
|
|
20111
20306
|
/* harmony export */ "Blob": () => (/* binding */ Blob),
|
|
20112
|
-
/* harmony export */ "File": () => (/* binding */ File)
|
|
20307
|
+
/* harmony export */ "File": () => (/* binding */ File),
|
|
20308
|
+
/* harmony export */ "FormData": () => (/* binding */ FormData)
|
|
20113
20309
|
/* harmony export */ });
|
|
20114
20310
|
const globalObject = (function () {
|
|
20115
20311
|
if (typeof globalThis !== "undefined") {
|
|
@@ -20177,7 +20373,6 @@ function isPlainObject(o) {
|
|
|
20177
20373
|
"use strict";
|
|
20178
20374
|
__webpack_require__.r(__webpack_exports__);
|
|
20179
20375
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
20180
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__),
|
|
20181
20376
|
/* harmony export */ "CORE_SCHEMA": () => (/* binding */ CORE_SCHEMA),
|
|
20182
20377
|
/* harmony export */ "DEFAULT_SCHEMA": () => (/* binding */ DEFAULT_SCHEMA),
|
|
20183
20378
|
/* harmony export */ "FAILSAFE_SCHEMA": () => (/* binding */ FAILSAFE_SCHEMA),
|
|
@@ -20185,6 +20380,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
20185
20380
|
/* harmony export */ "Schema": () => (/* binding */ Schema),
|
|
20186
20381
|
/* harmony export */ "Type": () => (/* binding */ Type),
|
|
20187
20382
|
/* harmony export */ "YAMLException": () => (/* binding */ YAMLException),
|
|
20383
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__),
|
|
20188
20384
|
/* harmony export */ "dump": () => (/* binding */ dump),
|
|
20189
20385
|
/* harmony export */ "load": () => (/* binding */ load),
|
|
20190
20386
|
/* harmony export */ "loadAll": () => (/* binding */ loadAll),
|
|
@@ -24146,8 +24342,8 @@ var __webpack_exports__ = {};
|
|
|
24146
24342
|
"use strict";
|
|
24147
24343
|
__webpack_require__.r(__webpack_exports__);
|
|
24148
24344
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
24149
|
-
/* harmony export */ "
|
|
24150
|
-
/* harmony export */ "
|
|
24345
|
+
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__),
|
|
24346
|
+
/* harmony export */ "helpers": () => (/* binding */ helpers)
|
|
24151
24347
|
/* harmony export */ });
|
|
24152
24348
|
/* harmony import */ var _babel_runtime_corejs3_helpers_objectSpread2__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7530);
|
|
24153
24349
|
/* harmony import */ var _babel_runtime_corejs3_core_js_stable_object_assign__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(1942);
|
|
@@ -24160,7 +24356,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
24160
24356
|
/* harmony import */ var _subtree_resolver_index_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(4499);
|
|
24161
24357
|
/* harmony import */ var _interfaces_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(2138);
|
|
24162
24358
|
/* harmony import */ var _execute_index_js__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(3860);
|
|
24163
|
-
/* harmony import */ var
|
|
24359
|
+
/* harmony import */ var _helpers_index_js__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(7712);
|
|
24164
24360
|
|
|
24165
24361
|
|
|
24166
24362
|
|
|
@@ -24182,7 +24378,7 @@ Swagger.clearCache = _resolver_js__WEBPACK_IMPORTED_MODULE_5__.clearCache;
|
|
|
24182
24378
|
Swagger.makeApisTagOperation = _interfaces_js__WEBPACK_IMPORTED_MODULE_7__.makeApisTagOperation;
|
|
24183
24379
|
Swagger.buildRequest = _execute_index_js__WEBPACK_IMPORTED_MODULE_8__.buildRequest;
|
|
24184
24380
|
Swagger.helpers = {
|
|
24185
|
-
opId:
|
|
24381
|
+
opId: _helpers_index_js__WEBPACK_IMPORTED_MODULE_9__.opId
|
|
24186
24382
|
};
|
|
24187
24383
|
Swagger.getBaseUrl = _execute_index_js__WEBPACK_IMPORTED_MODULE_8__.baseUrl;
|
|
24188
24384
|
|