@swagger-api/apidom-parser-adapter-asyncapi-yaml-3 1.8.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,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
|
+
# [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-yaml-3
|
|
9
|
+
|
|
6
10
|
# [1.8.0](https://github.com/swagger-api/apidom/compare/v1.7.0...v1.8.0) (2026-03-20)
|
|
7
11
|
|
|
8
12
|
**Note:** Version bump only for package @swagger-api/apidom-parser-adapter-asyncapi-yaml-3
|
|
@@ -19827,6 +19827,9 @@
|
|
|
19827
19827
|
if (parser === null) {
|
|
19828
19828
|
throw new ApiDOMError('Error while initializing web-tree-sitter and loading tree-sitter-yaml grammar.');
|
|
19829
19829
|
}
|
|
19830
|
+
if (currentTree !== null) {
|
|
19831
|
+
currentTree.delete();
|
|
19832
|
+
}
|
|
19830
19833
|
currentTree = parser.parse(source);
|
|
19831
19834
|
parser.reset();
|
|
19832
19835
|
return currentTree;
|
|
@@ -25233,6 +25236,24 @@
|
|
|
25233
25236
|
this.element = 'jmsChannelBinding';
|
|
25234
25237
|
this.classes.push('channel-binding');
|
|
25235
25238
|
}
|
|
25239
|
+
get destination() {
|
|
25240
|
+
return this.get('destination');
|
|
25241
|
+
}
|
|
25242
|
+
set destination(destination) {
|
|
25243
|
+
this.set('destination', destination);
|
|
25244
|
+
}
|
|
25245
|
+
get destinationType() {
|
|
25246
|
+
return this.get('destinationType');
|
|
25247
|
+
}
|
|
25248
|
+
set destinationType(destinationType) {
|
|
25249
|
+
this.set('destinationType', destinationType);
|
|
25250
|
+
}
|
|
25251
|
+
get bindingVersion() {
|
|
25252
|
+
return this.get('bindingVersion');
|
|
25253
|
+
}
|
|
25254
|
+
set bindingVersion(bindingVersion) {
|
|
25255
|
+
this.set('bindingVersion', bindingVersion);
|
|
25256
|
+
}
|
|
25236
25257
|
};
|
|
25237
25258
|
|
|
25238
25259
|
/**
|
|
@@ -25244,6 +25265,18 @@
|
|
|
25244
25265
|
this.element = 'jmsMessageBinding';
|
|
25245
25266
|
this.classes.push('message-binding');
|
|
25246
25267
|
}
|
|
25268
|
+
get headers() {
|
|
25269
|
+
return this.get('headers');
|
|
25270
|
+
}
|
|
25271
|
+
set headers(headers) {
|
|
25272
|
+
this.set('headers', headers);
|
|
25273
|
+
}
|
|
25274
|
+
get bindingVersion() {
|
|
25275
|
+
return this.get('bindingVersion');
|
|
25276
|
+
}
|
|
25277
|
+
set bindingVersion(bindingVersion) {
|
|
25278
|
+
this.set('bindingVersion', bindingVersion);
|
|
25279
|
+
}
|
|
25247
25280
|
};
|
|
25248
25281
|
|
|
25249
25282
|
/**
|
|
@@ -25266,6 +25299,30 @@
|
|
|
25266
25299
|
this.element = 'jmsServerBinding';
|
|
25267
25300
|
this.classes.push('server-binding');
|
|
25268
25301
|
}
|
|
25302
|
+
get jmsConnectionFactory() {
|
|
25303
|
+
return this.get('jmsConnectionFactory');
|
|
25304
|
+
}
|
|
25305
|
+
set jmsConnectionFactory(jmsConnectionFactory) {
|
|
25306
|
+
this.set('jmsConnectionFactory', jmsConnectionFactory);
|
|
25307
|
+
}
|
|
25308
|
+
get properties() {
|
|
25309
|
+
return this.get('properties');
|
|
25310
|
+
}
|
|
25311
|
+
set properties(properties) {
|
|
25312
|
+
this.set('properties', properties);
|
|
25313
|
+
}
|
|
25314
|
+
get clientID() {
|
|
25315
|
+
return this.get('clientID');
|
|
25316
|
+
}
|
|
25317
|
+
set clientID(clientID) {
|
|
25318
|
+
this.set('clientID', clientID);
|
|
25319
|
+
}
|
|
25320
|
+
get bindingVersion() {
|
|
25321
|
+
return this.get('bindingVersion');
|
|
25322
|
+
}
|
|
25323
|
+
set bindingVersion(bindingVersion) {
|
|
25324
|
+
this.set('bindingVersion', bindingVersion);
|
|
25325
|
+
}
|
|
25269
25326
|
};
|
|
25270
25327
|
|
|
25271
25328
|
/**
|
|
@@ -25891,6 +25948,24 @@
|
|
|
25891
25948
|
set destinations(destinations) {
|
|
25892
25949
|
this.set('destinations', destinations);
|
|
25893
25950
|
}
|
|
25951
|
+
get timeToLive() {
|
|
25952
|
+
return this.get('timeToLive');
|
|
25953
|
+
}
|
|
25954
|
+
set timeToLive(timeToLive) {
|
|
25955
|
+
this.set('timeToLive', timeToLive);
|
|
25956
|
+
}
|
|
25957
|
+
get priority() {
|
|
25958
|
+
return this.get('priority');
|
|
25959
|
+
}
|
|
25960
|
+
set priority(priority) {
|
|
25961
|
+
this.set('priority', priority);
|
|
25962
|
+
}
|
|
25963
|
+
get dmqEligible() {
|
|
25964
|
+
return this.get('dmqEligible');
|
|
25965
|
+
}
|
|
25966
|
+
set dmqEligible(dmqEligible) {
|
|
25967
|
+
this.set('dmqEligible', dmqEligible);
|
|
25968
|
+
}
|
|
25894
25969
|
};
|
|
25895
25970
|
|
|
25896
25971
|
/**
|
|
@@ -25914,6 +25989,12 @@
|
|
|
25914
25989
|
set msgVpn(msgVpn) {
|
|
25915
25990
|
this.set('msgVpn', msgVpn);
|
|
25916
25991
|
}
|
|
25992
|
+
get clientName() {
|
|
25993
|
+
return this.get('clientName');
|
|
25994
|
+
}
|
|
25995
|
+
set clientName(clientName) {
|
|
25996
|
+
this.set('clientName', clientName);
|
|
25997
|
+
}
|
|
25917
25998
|
};
|
|
25918
25999
|
|
|
25919
26000
|
/**
|
|
@@ -25925,6 +26006,24 @@
|
|
|
25925
26006
|
this.element = 'sqsChannelBinding';
|
|
25926
26007
|
this.classes.push('channel-binding');
|
|
25927
26008
|
}
|
|
26009
|
+
get queue() {
|
|
26010
|
+
return this.get('queue');
|
|
26011
|
+
}
|
|
26012
|
+
set queue(queue) {
|
|
26013
|
+
this.set('queue', queue);
|
|
26014
|
+
}
|
|
26015
|
+
get deadLetterQueue() {
|
|
26016
|
+
return this.get('deadLetterQueue');
|
|
26017
|
+
}
|
|
26018
|
+
set deadLetterQueue(deadLetterQueue) {
|
|
26019
|
+
this.set('deadLetterQueue', deadLetterQueue);
|
|
26020
|
+
}
|
|
26021
|
+
get bindingVersion() {
|
|
26022
|
+
return this.get('bindingVersion');
|
|
26023
|
+
}
|
|
26024
|
+
set bindingVersion(bindingVersion) {
|
|
26025
|
+
this.set('bindingVersion', bindingVersion);
|
|
26026
|
+
}
|
|
25928
26027
|
};
|
|
25929
26028
|
|
|
25930
26029
|
/**
|
|
@@ -25947,6 +26046,18 @@
|
|
|
25947
26046
|
this.element = 'sqsOperationBinding';
|
|
25948
26047
|
this.classes.push('operation-binding');
|
|
25949
26048
|
}
|
|
26049
|
+
get queues() {
|
|
26050
|
+
return this.get('queues');
|
|
26051
|
+
}
|
|
26052
|
+
set queues(queues) {
|
|
26053
|
+
this.set('queues', queues);
|
|
26054
|
+
}
|
|
26055
|
+
get bindingVersion() {
|
|
26056
|
+
return this.get('bindingVersion');
|
|
26057
|
+
}
|
|
26058
|
+
set bindingVersion(bindingVersion) {
|
|
26059
|
+
this.set('bindingVersion', bindingVersion);
|
|
26060
|
+
}
|
|
25950
26061
|
};
|
|
25951
26062
|
|
|
25952
26063
|
/**
|
|
@@ -30987,16 +31098,47 @@
|
|
|
30987
31098
|
},
|
|
30988
31099
|
jms: {
|
|
30989
31100
|
ServerBinding: {
|
|
30990
|
-
$visitor: JmsServerBindingVisitor
|
|
31101
|
+
$visitor: JmsServerBindingVisitor,
|
|
31102
|
+
fixedFields: {
|
|
31103
|
+
jmsConnectionFactory: {
|
|
31104
|
+
$ref: '#/visitors/value'
|
|
31105
|
+
},
|
|
31106
|
+
properties: {
|
|
31107
|
+
$ref: '#/visitors/value'
|
|
31108
|
+
},
|
|
31109
|
+
clientID: {
|
|
31110
|
+
$ref: '#/visitors/value'
|
|
31111
|
+
},
|
|
31112
|
+
bindingVersion: {
|
|
31113
|
+
$ref: '#/visitors/value'
|
|
31114
|
+
}
|
|
31115
|
+
}
|
|
30991
31116
|
},
|
|
30992
31117
|
ChannelBinding: {
|
|
30993
|
-
$visitor: JmsChannelBindingVisitor
|
|
31118
|
+
$visitor: JmsChannelBindingVisitor,
|
|
31119
|
+
fixedFields: {
|
|
31120
|
+
destination: {
|
|
31121
|
+
$ref: '#/visitors/value'
|
|
31122
|
+
},
|
|
31123
|
+
destinationType: {
|
|
31124
|
+
$ref: '#/visitors/value'
|
|
31125
|
+
},
|
|
31126
|
+
bindingVersion: {
|
|
31127
|
+
$ref: '#/visitors/value'
|
|
31128
|
+
}
|
|
31129
|
+
}
|
|
30994
31130
|
},
|
|
30995
31131
|
OperationBinding: {
|
|
30996
31132
|
$visitor: JmsOperationBindingVisitor
|
|
30997
31133
|
},
|
|
30998
31134
|
MessageBinding: {
|
|
30999
|
-
$visitor: JmsMessageBindingVisitor
|
|
31135
|
+
$visitor: JmsMessageBindingVisitor,
|
|
31136
|
+
fixedFields: {
|
|
31137
|
+
headers: SchemaVisitor$1,
|
|
31138
|
+
bindingVersion: {
|
|
31139
|
+
$ref: '#/visitors/value'
|
|
31140
|
+
}
|
|
31141
|
+
}
|
|
31000
31142
|
}
|
|
31001
31143
|
},
|
|
31002
31144
|
sns: {
|
|
@@ -31022,6 +31164,9 @@
|
|
|
31022
31164
|
},
|
|
31023
31165
|
msgVpn: {
|
|
31024
31166
|
$ref: '#/visitors/value'
|
|
31167
|
+
},
|
|
31168
|
+
clientName: {
|
|
31169
|
+
$ref: '#/visitors/value'
|
|
31025
31170
|
}
|
|
31026
31171
|
}
|
|
31027
31172
|
},
|
|
@@ -31036,6 +31181,11 @@
|
|
|
31036
31181
|
},
|
|
31037
31182
|
destinations: {
|
|
31038
31183
|
$ref: '#/visitors/value'
|
|
31184
|
+
},
|
|
31185
|
+
timeToLive: SchemaOrReferenceVisitor,
|
|
31186
|
+
priority: SchemaOrReferenceVisitor,
|
|
31187
|
+
dmqEligible: {
|
|
31188
|
+
$ref: '#/visitors/value'
|
|
31039
31189
|
}
|
|
31040
31190
|
}
|
|
31041
31191
|
},
|
|
@@ -31048,10 +31198,29 @@
|
|
|
31048
31198
|
$visitor: SqsServerBindingVisitor
|
|
31049
31199
|
},
|
|
31050
31200
|
ChannelBinding: {
|
|
31051
|
-
$visitor: SqsChannelBindingVisitor
|
|
31201
|
+
$visitor: SqsChannelBindingVisitor,
|
|
31202
|
+
fixedFields: {
|
|
31203
|
+
queue: {
|
|
31204
|
+
$ref: '#/visitors/value'
|
|
31205
|
+
},
|
|
31206
|
+
deadLetterQueue: {
|
|
31207
|
+
$ref: '#/visitors/value'
|
|
31208
|
+
},
|
|
31209
|
+
bindingVersion: {
|
|
31210
|
+
$ref: '#/visitors/value'
|
|
31211
|
+
}
|
|
31212
|
+
}
|
|
31052
31213
|
},
|
|
31053
31214
|
OperationBinding: {
|
|
31054
|
-
$visitor: SqsOperationBindingVisitor
|
|
31215
|
+
$visitor: SqsOperationBindingVisitor,
|
|
31216
|
+
fixedFields: {
|
|
31217
|
+
queues: {
|
|
31218
|
+
$ref: '#/visitors/value'
|
|
31219
|
+
},
|
|
31220
|
+
bindingVersion: {
|
|
31221
|
+
$ref: '#/visitors/value'
|
|
31222
|
+
}
|
|
31223
|
+
}
|
|
31055
31224
|
},
|
|
31056
31225
|
MessageBinding: {
|
|
31057
31226
|
$visitor: SqsMessageBindingVisitor
|