swagger-client 3.37.0 → 3.37.1
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/README.md
CHANGED
|
@@ -24,7 +24,7 @@ Compatibility between Swagger Client and the OpenAPI Specification is as follows
|
|
|
24
24
|
|
|
25
25
|
Swagger Client Version | Release Date | OpenAPI Spec compatibility | Notes
|
|
26
26
|
------------------ |--------------|---------------------------------------------------------| -----
|
|
27
|
-
3.37.x |
|
|
27
|
+
3.37.x | 2026-02-27 | 2.0, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.0.4, 3.1.0, 3.2.0 | [tag v3.37.0](https://github.com/swagger-api/swagger-js/releases/tag/v3.37.0)
|
|
28
28
|
3.33.x | 2024-12-30 | 2.0, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.0.4, 3.1.0 | [tag v3.33.0](https://github.com/swagger-api/swagger-js/releases/tag/v3.33.0)
|
|
29
29
|
3.19.x | 2023-01-23 | 2.0, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.1.0 | [tag v3.19.0-alpha.3](https://github.com/swagger-api/swagger-js/releases/tag/v3.19.0-alpha.3)
|
|
30
30
|
3.10.x | 2020-01-17 | 2.0, 3.0.0, 3.0.1, 3.0.2, 3.0.3 | [tag v3.10.0](https://github.com/swagger-api/swagger-js/tree/v3.10.0)
|
|
@@ -15763,7 +15763,7 @@ var isObject = __webpack_require__(46285);
|
|
|
15763
15763
|
var createNonEnumerableProperty = __webpack_require__(61626);
|
|
15764
15764
|
|
|
15765
15765
|
// `InstallErrorCause` abstract operation
|
|
15766
|
-
// https://tc39.es/
|
|
15766
|
+
// https://tc39.es/ecma262/#sec-installerrorcause
|
|
15767
15767
|
module.exports = function (O, options) {
|
|
15768
15768
|
if (isObject(options) && 'cause' in options) {
|
|
15769
15769
|
createNonEnumerableProperty(O, 'cause', options.cause);
|
|
@@ -16909,10 +16909,10 @@ var SHARED = '__core-js_shared__';
|
|
|
16909
16909
|
var store = module.exports = globalThis[SHARED] || defineGlobalProperty(SHARED, {});
|
|
16910
16910
|
|
|
16911
16911
|
(store.versions || (store.versions = [])).push({
|
|
16912
|
-
version: '3.
|
|
16912
|
+
version: '3.48.0',
|
|
16913
16913
|
mode: IS_PURE ? 'pure' : 'global',
|
|
16914
|
-
copyright: '©
|
|
16915
|
-
license: 'https://github.com/zloirock/core-js/blob/v3.
|
|
16914
|
+
copyright: '© 2013–2025 Denis Pushkarev (zloirock.ru), 2025–2026 CoreJS Company (core-js.io). All rights reserved.',
|
|
16915
|
+
license: 'https://github.com/zloirock/core-js/blob/v3.48.0/LICENSE',
|
|
16916
16916
|
source: 'https://github.com/zloirock/core-js'
|
|
16917
16917
|
});
|
|
16918
16918
|
|
|
@@ -17158,7 +17158,7 @@ var wellKnownSymbol = __webpack_require__(76264);
|
|
|
17158
17158
|
|
|
17159
17159
|
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
|
|
17160
17160
|
var test = {};
|
|
17161
|
-
|
|
17161
|
+
// eslint-disable-next-line unicorn/no-immediate-mutation -- ES3 syntax limitation
|
|
17162
17162
|
test[TO_STRING_TAG] = 'z';
|
|
17163
17163
|
|
|
17164
17164
|
module.exports = String(test) === '[object z]';
|
|
@@ -17560,6 +17560,7 @@ var FORCED = new Error('e', { cause: 7 }).cause !== 7;
|
|
|
17560
17560
|
|
|
17561
17561
|
var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {
|
|
17562
17562
|
var O = {};
|
|
17563
|
+
// eslint-disable-next-line unicorn/no-immediate-mutation -- ES3 syntax limitation
|
|
17563
17564
|
O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED);
|
|
17564
17565
|
$({ global: true, constructor: true, arity: 1, forced: FORCED }, O);
|
|
17565
17566
|
};
|
|
@@ -17567,6 +17568,7 @@ var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {
|
|
|
17567
17568
|
var exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {
|
|
17568
17569
|
if (WebAssembly && WebAssembly[ERROR_NAME]) {
|
|
17569
17570
|
var O = {};
|
|
17571
|
+
// eslint-disable-next-line unicorn/no-immediate-mutation -- ES3 syntax limitation
|
|
17570
17572
|
O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED);
|
|
17571
17573
|
$({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED }, O);
|
|
17572
17574
|
}
|