@swagger-api/apidom-parser-adapter-asyncapi-json-2 1.0.0-beta.10 → 1.0.0-beta.12
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,14 @@
|
|
|
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.12](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.11...v1.0.0-beta.12) (2025-02-11)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-asyncapi-json-2
|
|
9
|
+
|
|
10
|
+
# [1.0.0-beta.11](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.10...v1.0.0-beta.11) (2025-01-27)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-asyncapi-json-2
|
|
13
|
+
|
|
6
14
|
# [1.0.0-beta.10](https://github.com/swagger-api/apidom/compare/v1.0.0-beta.9...v1.0.0-beta.10) (2025-01-25)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-asyncapi-json-2
|
|
@@ -37667,7 +37667,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
37667
37667
|
*/
|
|
37668
37668
|
class SpecificationVisitor extends _Visitor_mjs__WEBPACK_IMPORTED_MODULE_0__["default"] {
|
|
37669
37669
|
specObj;
|
|
37670
|
-
passingOptionsNames = ['specObj'];
|
|
37670
|
+
passingOptionsNames = ['specObj', 'parent'];
|
|
37671
37671
|
constructor({
|
|
37672
37672
|
specObj,
|
|
37673
37673
|
...rest
|
|
@@ -37704,7 +37704,7 @@ class SpecificationVisitor extends _Visitor_mjs__WEBPACK_IMPORTED_MODULE_0__["de
|
|
|
37704
37704
|
}
|
|
37705
37705
|
toRefractedElement(specPath, element, options = {}) {
|
|
37706
37706
|
/**
|
|
37707
|
-
* This is `Visitor shortcut`: mechanism for short
|
|
37707
|
+
* This is `Visitor shortcut`: mechanism for short-circuiting the traversal and replacing
|
|
37708
37708
|
* it by basic node cloning.
|
|
37709
37709
|
*
|
|
37710
37710
|
* Visiting the element is equivalent to cloning it if the prototype of a visitor
|
|
@@ -38550,7 +38550,7 @@ class JSONSchemaVisitor extends (0,ts_mixer__WEBPACK_IMPORTED_MODULE_0__.Mixin)(
|
|
|
38550
38550
|
this.handleDialectIdentifier(objectElement);
|
|
38551
38551
|
this.handleSchemaIdentifier(objectElement);
|
|
38552
38552
|
|
|
38553
|
-
// for further processing consider this
|
|
38553
|
+
// for further processing consider this JSONSchema Element as parent for all sub-schemas
|
|
38554
38554
|
this.parent = this.element;
|
|
38555
38555
|
return _generics_FixedFieldsVisitor_mjs__WEBPACK_IMPORTED_MODULE_1__["default"].prototype.ObjectElement.call(this, objectElement);
|
|
38556
38556
|
}
|
|
@@ -39365,13 +39365,6 @@ class JSONSchema extends _swagger_api_apidom_ns_json_schema_draft_6__WEBPACK_IMP
|
|
|
39365
39365
|
/**
|
|
39366
39366
|
* Validation keywords for arrays
|
|
39367
39367
|
*/
|
|
39368
|
-
|
|
39369
|
-
get containsProp() {
|
|
39370
|
-
return this.get('contains');
|
|
39371
|
-
}
|
|
39372
|
-
set containsProp(contains) {
|
|
39373
|
-
this.set('contains', contains);
|
|
39374
|
-
}
|
|
39375
39368
|
get items() {
|
|
39376
39369
|
return this.get('items');
|
|
39377
39370
|
}
|
|
@@ -39379,17 +39372,6 @@ class JSONSchema extends _swagger_api_apidom_ns_json_schema_draft_6__WEBPACK_IMP
|
|
|
39379
39372
|
this.set('items', items);
|
|
39380
39373
|
}
|
|
39381
39374
|
|
|
39382
|
-
/**
|
|
39383
|
-
* Validation keywords for objects
|
|
39384
|
-
*/
|
|
39385
|
-
|
|
39386
|
-
get propertyNames() {
|
|
39387
|
-
return this.get('propertyNames');
|
|
39388
|
-
}
|
|
39389
|
-
set propertyNames(propertyNames) {
|
|
39390
|
-
this.set('propertyNames', propertyNames);
|
|
39391
|
-
}
|
|
39392
|
-
|
|
39393
39375
|
/**
|
|
39394
39376
|
* Keywords for Applying Subschemas Conditionally
|
|
39395
39377
|
*
|