@swagger-api/apidom-parser-adapter-asyncapi-json-3 1.7.0 → 1.9.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,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.9.0](https://github.com/swagger-api/apidom/compare/v1.8.0...v1.9.0) (2026-03-30)
7
+
8
+ **Note:** Version bump only for package @swagger-api/apidom-parser-adapter-asyncapi-json-3
9
+
10
+ # [1.8.0](https://github.com/swagger-api/apidom/compare/v1.7.0...v1.8.0) (2026-03-20)
11
+
12
+ **Note:** Version bump only for package @swagger-api/apidom-parser-adapter-asyncapi-json-3
13
+
6
14
  # [1.7.0](https://github.com/swagger-api/apidom/compare/v1.6.0...v1.7.0) (2026-03-17)
7
15
 
8
16
  ### Reverts
@@ -23511,6 +23511,24 @@
23511
23511
  this.element = 'jmsChannelBinding';
23512
23512
  this.classes.push('channel-binding');
23513
23513
  }
23514
+ get destination() {
23515
+ return this.get('destination');
23516
+ }
23517
+ set destination(destination) {
23518
+ this.set('destination', destination);
23519
+ }
23520
+ get destinationType() {
23521
+ return this.get('destinationType');
23522
+ }
23523
+ set destinationType(destinationType) {
23524
+ this.set('destinationType', destinationType);
23525
+ }
23526
+ get bindingVersion() {
23527
+ return this.get('bindingVersion');
23528
+ }
23529
+ set bindingVersion(bindingVersion) {
23530
+ this.set('bindingVersion', bindingVersion);
23531
+ }
23514
23532
  };
23515
23533
 
23516
23534
  /**
@@ -23522,6 +23540,18 @@
23522
23540
  this.element = 'jmsMessageBinding';
23523
23541
  this.classes.push('message-binding');
23524
23542
  }
23543
+ get headers() {
23544
+ return this.get('headers');
23545
+ }
23546
+ set headers(headers) {
23547
+ this.set('headers', headers);
23548
+ }
23549
+ get bindingVersion() {
23550
+ return this.get('bindingVersion');
23551
+ }
23552
+ set bindingVersion(bindingVersion) {
23553
+ this.set('bindingVersion', bindingVersion);
23554
+ }
23525
23555
  };
23526
23556
 
23527
23557
  /**
@@ -23544,6 +23574,30 @@
23544
23574
  this.element = 'jmsServerBinding';
23545
23575
  this.classes.push('server-binding');
23546
23576
  }
23577
+ get jmsConnectionFactory() {
23578
+ return this.get('jmsConnectionFactory');
23579
+ }
23580
+ set jmsConnectionFactory(jmsConnectionFactory) {
23581
+ this.set('jmsConnectionFactory', jmsConnectionFactory);
23582
+ }
23583
+ get properties() {
23584
+ return this.get('properties');
23585
+ }
23586
+ set properties(properties) {
23587
+ this.set('properties', properties);
23588
+ }
23589
+ get clientID() {
23590
+ return this.get('clientID');
23591
+ }
23592
+ set clientID(clientID) {
23593
+ this.set('clientID', clientID);
23594
+ }
23595
+ get bindingVersion() {
23596
+ return this.get('bindingVersion');
23597
+ }
23598
+ set bindingVersion(bindingVersion) {
23599
+ this.set('bindingVersion', bindingVersion);
23600
+ }
23547
23601
  };
23548
23602
 
23549
23603
  /**
@@ -24169,6 +24223,24 @@
24169
24223
  set destinations(destinations) {
24170
24224
  this.set('destinations', destinations);
24171
24225
  }
24226
+ get timeToLive() {
24227
+ return this.get('timeToLive');
24228
+ }
24229
+ set timeToLive(timeToLive) {
24230
+ this.set('timeToLive', timeToLive);
24231
+ }
24232
+ get priority() {
24233
+ return this.get('priority');
24234
+ }
24235
+ set priority(priority) {
24236
+ this.set('priority', priority);
24237
+ }
24238
+ get dmqEligible() {
24239
+ return this.get('dmqEligible');
24240
+ }
24241
+ set dmqEligible(dmqEligible) {
24242
+ this.set('dmqEligible', dmqEligible);
24243
+ }
24172
24244
  };
24173
24245
 
24174
24246
  /**
@@ -24192,6 +24264,12 @@
24192
24264
  set msgVpn(msgVpn) {
24193
24265
  this.set('msgVpn', msgVpn);
24194
24266
  }
24267
+ get clientName() {
24268
+ return this.get('clientName');
24269
+ }
24270
+ set clientName(clientName) {
24271
+ this.set('clientName', clientName);
24272
+ }
24195
24273
  };
24196
24274
 
24197
24275
  /**
@@ -24203,6 +24281,24 @@
24203
24281
  this.element = 'sqsChannelBinding';
24204
24282
  this.classes.push('channel-binding');
24205
24283
  }
24284
+ get queue() {
24285
+ return this.get('queue');
24286
+ }
24287
+ set queue(queue) {
24288
+ this.set('queue', queue);
24289
+ }
24290
+ get deadLetterQueue() {
24291
+ return this.get('deadLetterQueue');
24292
+ }
24293
+ set deadLetterQueue(deadLetterQueue) {
24294
+ this.set('deadLetterQueue', deadLetterQueue);
24295
+ }
24296
+ get bindingVersion() {
24297
+ return this.get('bindingVersion');
24298
+ }
24299
+ set bindingVersion(bindingVersion) {
24300
+ this.set('bindingVersion', bindingVersion);
24301
+ }
24206
24302
  };
24207
24303
 
24208
24304
  /**
@@ -24225,6 +24321,18 @@
24225
24321
  this.element = 'sqsOperationBinding';
24226
24322
  this.classes.push('operation-binding');
24227
24323
  }
24324
+ get queues() {
24325
+ return this.get('queues');
24326
+ }
24327
+ set queues(queues) {
24328
+ this.set('queues', queues);
24329
+ }
24330
+ get bindingVersion() {
24331
+ return this.get('bindingVersion');
24332
+ }
24333
+ set bindingVersion(bindingVersion) {
24334
+ this.set('bindingVersion', bindingVersion);
24335
+ }
24228
24336
  };
24229
24337
 
24230
24338
  /**
@@ -29265,16 +29373,47 @@
29265
29373
  },
29266
29374
  jms: {
29267
29375
  ServerBinding: {
29268
- $visitor: JmsServerBindingVisitor
29376
+ $visitor: JmsServerBindingVisitor,
29377
+ fixedFields: {
29378
+ jmsConnectionFactory: {
29379
+ $ref: '#/visitors/value'
29380
+ },
29381
+ properties: {
29382
+ $ref: '#/visitors/value'
29383
+ },
29384
+ clientID: {
29385
+ $ref: '#/visitors/value'
29386
+ },
29387
+ bindingVersion: {
29388
+ $ref: '#/visitors/value'
29389
+ }
29390
+ }
29269
29391
  },
29270
29392
  ChannelBinding: {
29271
- $visitor: JmsChannelBindingVisitor
29393
+ $visitor: JmsChannelBindingVisitor,
29394
+ fixedFields: {
29395
+ destination: {
29396
+ $ref: '#/visitors/value'
29397
+ },
29398
+ destinationType: {
29399
+ $ref: '#/visitors/value'
29400
+ },
29401
+ bindingVersion: {
29402
+ $ref: '#/visitors/value'
29403
+ }
29404
+ }
29272
29405
  },
29273
29406
  OperationBinding: {
29274
29407
  $visitor: JmsOperationBindingVisitor
29275
29408
  },
29276
29409
  MessageBinding: {
29277
- $visitor: JmsMessageBindingVisitor
29410
+ $visitor: JmsMessageBindingVisitor,
29411
+ fixedFields: {
29412
+ headers: SchemaVisitor$1,
29413
+ bindingVersion: {
29414
+ $ref: '#/visitors/value'
29415
+ }
29416
+ }
29278
29417
  }
29279
29418
  },
29280
29419
  sns: {
@@ -29300,6 +29439,9 @@
29300
29439
  },
29301
29440
  msgVpn: {
29302
29441
  $ref: '#/visitors/value'
29442
+ },
29443
+ clientName: {
29444
+ $ref: '#/visitors/value'
29303
29445
  }
29304
29446
  }
29305
29447
  },
@@ -29314,6 +29456,11 @@
29314
29456
  },
29315
29457
  destinations: {
29316
29458
  $ref: '#/visitors/value'
29459
+ },
29460
+ timeToLive: SchemaOrReferenceVisitor,
29461
+ priority: SchemaOrReferenceVisitor,
29462
+ dmqEligible: {
29463
+ $ref: '#/visitors/value'
29317
29464
  }
29318
29465
  }
29319
29466
  },
@@ -29326,10 +29473,29 @@
29326
29473
  $visitor: SqsServerBindingVisitor
29327
29474
  },
29328
29475
  ChannelBinding: {
29329
- $visitor: SqsChannelBindingVisitor
29476
+ $visitor: SqsChannelBindingVisitor,
29477
+ fixedFields: {
29478
+ queue: {
29479
+ $ref: '#/visitors/value'
29480
+ },
29481
+ deadLetterQueue: {
29482
+ $ref: '#/visitors/value'
29483
+ },
29484
+ bindingVersion: {
29485
+ $ref: '#/visitors/value'
29486
+ }
29487
+ }
29330
29488
  },
29331
29489
  OperationBinding: {
29332
- $visitor: SqsOperationBindingVisitor
29490
+ $visitor: SqsOperationBindingVisitor,
29491
+ fixedFields: {
29492
+ queues: {
29493
+ $ref: '#/visitors/value'
29494
+ },
29495
+ bindingVersion: {
29496
+ $ref: '#/visitors/value'
29497
+ }
29498
+ }
29333
29499
  },
29334
29500
  MessageBinding: {
29335
29501
  $visitor: SqsMessageBindingVisitor