@swagger-api/apidom-parser-adapter-asyncapi-json-3 1.6.0 → 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,12 @@
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
+
6
12
  # [1.6.0](https://github.com/swagger-api/apidom/compare/v1.5.1...v1.6.0) (2026-02-27)
7
13
 
8
14
  **Note:** Version bump only for package @swagger-api/apidom-parser-adapter-asyncapi-json-3
@@ -23864,6 +23864,18 @@
23864
23864
  this.element = 'mqtt5ServerBinding';
23865
23865
  this.classes.push('server-binding');
23866
23866
  }
23867
+ get sessionExpiryInterval() {
23868
+ return this.get('sessionExpiryInterval');
23869
+ }
23870
+ set sessionExpiryInterval(sessionExpiryInterval) {
23871
+ this.set('sessionExpiryInterval', sessionExpiryInterval);
23872
+ }
23873
+ get bindingVersion() {
23874
+ return this.get('bindingVersion');
23875
+ }
23876
+ set bindingVersion(bindingVersion) {
23877
+ this.set('bindingVersion', bindingVersion);
23878
+ }
23867
23879
  };
23868
23880
 
23869
23881
  /**
@@ -29163,7 +29175,13 @@
29163
29175
  },
29164
29176
  mqtt5: {
29165
29177
  ServerBinding: {
29166
- $visitor: Mqtt5ServerBindingVisitor
29178
+ $visitor: Mqtt5ServerBindingVisitor,
29179
+ fixedFields: {
29180
+ sessionExpiryInterval: SchemaOrReferenceVisitor,
29181
+ bindingVersion: {
29182
+ $ref: '#/visitors/value'
29183
+ }
29184
+ }
29167
29185
  },
29168
29186
  ChannelBinding: {
29169
29187
  $visitor: Mqtt5ChannelBindingVisitor