@swagger-api/apidom-parser-adapter-asyncapi-yaml-3 1.5.1 → 1.7.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,16 @@
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.7.0](https://github.com/swagger-api/apidom/compare/v1.6.0...v1.7.0) (2026-03-17)
7
+
8
+ ### Reverts
9
+
10
+ - Revert "chore(release): cut the v1.7.0 release [skip ci]" ([1d0010f](https://github.com/swagger-api/apidom/commit/1d0010f034f88e3d72096ed2689accffdd0a490b))
11
+
12
+ # [1.6.0](https://github.com/swagger-api/apidom/compare/v1.5.1...v1.6.0) (2026-02-27)
13
+
14
+ **Note:** Version bump only for package @swagger-api/apidom-parser-adapter-asyncapi-yaml-3
15
+
6
16
  ## [1.5.1](https://github.com/swagger-api/apidom/compare/v1.5.0...v1.5.1) (2026-02-19)
7
17
 
8
18
  **Note:** Version bump only for package @swagger-api/apidom-parser-adapter-asyncapi-yaml-3
@@ -25584,6 +25584,18 @@
25584
25584
  this.element = 'mqtt5ServerBinding';
25585
25585
  this.classes.push('server-binding');
25586
25586
  }
25587
+ get sessionExpiryInterval() {
25588
+ return this.get('sessionExpiryInterval');
25589
+ }
25590
+ set sessionExpiryInterval(sessionExpiryInterval) {
25591
+ this.set('sessionExpiryInterval', sessionExpiryInterval);
25592
+ }
25593
+ get bindingVersion() {
25594
+ return this.get('bindingVersion');
25595
+ }
25596
+ set bindingVersion(bindingVersion) {
25597
+ this.set('bindingVersion', bindingVersion);
25598
+ }
25587
25599
  };
25588
25600
 
25589
25601
  /**
@@ -30883,7 +30895,13 @@
30883
30895
  },
30884
30896
  mqtt5: {
30885
30897
  ServerBinding: {
30886
- $visitor: Mqtt5ServerBindingVisitor
30898
+ $visitor: Mqtt5ServerBindingVisitor,
30899
+ fixedFields: {
30900
+ sessionExpiryInterval: SchemaOrReferenceVisitor,
30901
+ bindingVersion: {
30902
+ $ref: '#/visitors/value'
30903
+ }
30904
+ }
30887
30905
  },
30888
30906
  ChannelBinding: {
30889
30907
  $visitor: Mqtt5ChannelBindingVisitor