@swagger-api/apidom-parser-adapter-openapi-yaml-3-1 0.82.2 → 0.83.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/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,10 @@
|
|
|
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
|
+
# [0.83.0](https://github.com/swagger-api/apidom/compare/v0.82.2...v0.83.0) (2023-11-07)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-openapi-yaml-3-1
|
|
9
|
+
|
|
6
10
|
## [0.82.2](https://github.com/swagger-api/apidom/compare/v0.82.1...v0.82.2) (2023-11-03)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-openapi-yaml-3-1
|
|
@@ -18893,7 +18893,7 @@ class CloneError extends _swagger_api_apidom_error__WEBPACK_IMPORTED_MODULE_0__[
|
|
|
18893
18893
|
constructor(message, structuredOptions) {
|
|
18894
18894
|
super(message, structuredOptions);
|
|
18895
18895
|
if (typeof structuredOptions !== 'undefined') {
|
|
18896
|
-
this.value = structuredOptions.
|
|
18896
|
+
this.value = structuredOptions.value;
|
|
18897
18897
|
}
|
|
18898
18898
|
}
|
|
18899
18899
|
}
|
|
@@ -36454,7 +36454,7 @@ const analyze = (cst, {
|
|
|
36454
36454
|
} = {}) => {
|
|
36455
36455
|
const cursor = cst.walk();
|
|
36456
36456
|
const iterator = new _TreeCursorIterator_mjs__WEBPACK_IMPORTED_MODULE_0__["default"](cursor);
|
|
36457
|
-
const rootNode =
|
|
36457
|
+
const [rootNode] = Array.from(iterator);
|
|
36458
36458
|
const cstVisitor = (0,_visitors_CstVisitor_mjs__WEBPACK_IMPORTED_MODULE_1__["default"])();
|
|
36459
36459
|
const astVisitor = (0,_visitors_YamlAstVisitor_mjs__WEBPACK_IMPORTED_MODULE_2__["default"])();
|
|
36460
36460
|
const schema = (0,_swagger_api_apidom_ast__WEBPACK_IMPORTED_MODULE_3__["default"])();
|