openapi-explorer 0.9.387 → 0.9.389
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/CHANGELOG.md +2 -0
- package/dist/browser/openapi-explorer.min.js +4 -4
- package/dist/browser/openapi-explorer.min.js.map +1 -1
- package/dist/es/components/api-request.js +22 -5
- package/dist/es/components/api-response.js +12 -1
- package/dist/es/components/schema-tree.js +1 -1
- package/dist/es/openapi-explorer.js +4 -0
- package/dist/es/styles/schema-styles.js +1 -1
- package/dist/es/templates/callback-template.js +1 -1
- package/dist/es/templates/components-template.js +3 -1
- package/dist/es/templates/endpoint-template.js +1 -1
- package/dist/es/templates/expanded-endpoint-template.js +1 -1
- package/dist/es/utils/schema-utils.js +50 -43
- package/dist/lib/components/api-request.js +22 -5
- package/dist/lib/components/api-response.js +12 -1
- package/dist/lib/components/schema-tree.js +1 -1
- package/dist/lib/openapi-explorer.js +4 -0
- package/dist/lib/styles/schema-styles.js +1 -1
- package/dist/lib/templates/callback-template.js +1 -1
- package/dist/lib/templates/components-template.js +3 -1
- package/dist/lib/templates/endpoint-template.js +1 -1
- package/dist/lib/templates/expanded-endpoint-template.js +1 -1
- package/dist/lib/utils/schema-utils.js +50 -43
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -18,6 +18,8 @@ This package follows standard semvar, `<major>.<minor>.<build>`. No breaking cha
|
|
|
18
18
|
* Sanitize paths coming from the spec that contain invalid characters.
|
|
19
19
|
* Improve display of array types and number/string formats in parameters and models
|
|
20
20
|
* Fix fetch request options to not require unnecessary extra level in setting properties.
|
|
21
|
+
* Fix support for `const` in json schema
|
|
22
|
+
* Fix support for `null` types and add property `display-nulls` to support forcing the display of them in models.
|
|
21
23
|
|
|
22
24
|
## 0.8 ##
|
|
23
25
|
* Removing the `RESET` button as it is confusing for users to see. It only repopulated the defaults, and to do that, you can easily switch tabs and come back.
|