swagger-client 3.17.0 → 3.18.0
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/LICENSE +2 -1
- package/NOTICE +2 -0
- package/dist/swagger-client.browser.js +2794 -1215
- package/dist/swagger-client.browser.min.js +1 -1
- package/dist/swagger-client.browser.min.js.map +1 -1
- package/es/commonjs.js +1 -1
- package/es/execute/index.js +14 -9
- package/es/execute/oas3/build-request.js +1 -1
- package/es/execute/oas3/parameter-builders.js +2 -2
- package/es/execute/oas3/style-serializer.js +2 -1
- package/es/helpers.js +9 -5
- package/es/http/index.js +2 -2
- package/es/index.js +6 -6
- package/es/interfaces.js +1 -1
- package/es/resolver.js +4 -4
- package/es/specmap/index.js +6 -6
- package/es/specmap/lib/all-of.js +3 -3
- package/es/specmap/lib/parameters.js +1 -1
- package/es/specmap/lib/properties.js +1 -1
- package/es/specmap/lib/refs.js +5 -5
- package/es/subtree-resolver/index.js +2 -2
- package/lib/commonjs.js +1 -1
- package/lib/execute/index.js +20 -15
- package/lib/execute/oas3/build-request.js +5 -5
- package/lib/execute/oas3/parameter-builders.js +2 -2
- package/lib/execute/oas3/style-serializer.js +2 -1
- package/lib/execute/swagger2/build-request.js +2 -2
- package/lib/helpers.js +2 -6
- package/lib/http/fold-formdata-to-request.node.js +2 -2
- package/lib/http/index.js +3 -3
- package/lib/index.js +17 -17
- package/lib/interfaces.js +3 -3
- package/lib/resolver.js +13 -13
- package/lib/specmap/index.js +26 -26
- package/lib/specmap/lib/all-of.js +4 -8
- package/lib/specmap/lib/context-tree.js +2 -2
- package/lib/specmap/lib/index.js +2 -2
- package/lib/specmap/lib/parameters.js +6 -6
- package/lib/specmap/lib/properties.js +4 -4
- package/lib/specmap/lib/refs.js +13 -13
- package/lib/subtree-resolver/index.js +4 -4
- package/package.json +23 -24
package/LICENSE
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
|
|
1
2
|
Apache License
|
|
2
3
|
Version 2.0, January 2004
|
|
3
4
|
http://www.apache.org/licenses/
|
|
@@ -186,7 +187,7 @@
|
|
|
186
187
|
same "printed page" as the copyright notice for easier
|
|
187
188
|
identification within third-party archives.
|
|
188
189
|
|
|
189
|
-
Copyright
|
|
190
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
191
|
|
|
191
192
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
193
|
you may not use this file except in compliance with the License.
|
package/NOTICE
ADDED