@swagger-api/apidom-ns-json-schema-draft-7 1.0.0-beta.6 → 1.0.0-beta.7

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 CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.0.0-beta.7](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.6...v1.0.0-beta.7) (2025-01-21)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **ns-json-schema-draft-7:** add missing method overrides ([#4668](https://github.com/swagger-api/apidom/issues/4668)) ([15d2866](https://github.com/swagger-api/apidom/commit/15d2866fc0b8cb26c30cfbce29f4f38e3b75f777)), closes [#1819](https://github.com/swagger-api/apidom/issues/1819)
11
+ - **ns-json-schema-draft-7:** add support for headerSchema ([#4652](https://github.com/swagger-api/apidom/issues/4652)) ([81682cc](https://github.com/swagger-api/apidom/commit/81682ccee1a9c75374d163e0248b082a491a13d3)), closes [#1819](https://github.com/swagger-api/apidom/issues/1819)
12
+
13
+ ### Features
14
+
15
+ - **ns-json-schema-draft-7:** handle inheritance of $schema and $id ([#4659](https://github.com/swagger-api/apidom/issues/4659)) ([a4fbd7b](https://github.com/swagger-api/apidom/commit/a4fbd7b962fb5af752cff521eeb19b318a974c46)), closes [#1819](https://github.com/swagger-api/apidom/issues/1819)
16
+
6
17
  # [1.0.0-beta.6](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.5...v1.0.0-beta.6) (2024-12-30)
7
18
 
8
19
  **Note:** Version bump only for package @swagger-api/apidom-ns-json-schema-draft-7
package/README.md CHANGED
@@ -132,7 +132,7 @@ const plugin = ({ predicates, namespace }) => ({
132
132
  },
133
133
  });
134
134
 
135
- MediaElement.refract(objectElement, { plugins: [plugin] }); // => LinkDescriptionElement({ anchor = 'nodes/{thisNodeId}', anchorPointer = '#/relative/json/pointer/x' })
135
+ LinkDescriptionElement.refract(objectElement, { plugins: [plugin] }); // => LinkDescriptionElement({ anchor = 'nodes/{thisNodeId}', anchorPointer = '#/relative/json/pointer/x' })
136
136
  ```
137
137
 
138
138
  You can define as many plugins as needed to enhance the resulting namespaced ApiDOM structure.