@speclynx/apidom-ns-asyncapi-2 4.15.0 → 5.0.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@speclynx/apidom-ns-asyncapi-2",
3
- "version": "4.15.0",
3
+ "version": "5.0.0",
4
4
  "description": "AsyncAPI 2.x.y namespace for ApiDOM.",
5
5
  "keywords": [
6
6
  "apidom",
@@ -61,10 +61,10 @@
61
61
  "license": "Apache-2.0",
62
62
  "dependencies": {
63
63
  "@babel/runtime-corejs3": "^8.0.0",
64
- "@speclynx/apidom-core": "4.15.0",
65
- "@speclynx/apidom-datamodel": "4.15.0",
66
- "@speclynx/apidom-ns-json-schema-draft-7": "4.15.0",
67
- "@speclynx/apidom-traverse": "4.15.0",
64
+ "@speclynx/apidom-core": "5.0.0",
65
+ "@speclynx/apidom-datamodel": "5.0.0",
66
+ "@speclynx/apidom-ns-json-schema-draft-7": "5.0.0",
67
+ "@speclynx/apidom-traverse": "5.0.0",
68
68
  "ramda": "~0.32.0",
69
69
  "ramda-adjunct": "^6.1.0",
70
70
  "ts-mixer": "^6.0.4"
@@ -79,5 +79,5 @@
79
79
  "README.md",
80
80
  "CHANGELOG.md"
81
81
  ],
82
- "gitHead": "a3f6734745e3f4bee9c4121ebebbf2e9dbf6bc68"
82
+ "gitHead": "5f67f647ddc85ef299fdabe503dc739b658e0415"
83
83
  }
package/src/index.cjs CHANGED
@@ -155,12 +155,96 @@ Object.defineProperty(exports, "ChannelsElement", {
155
155
  return _inspect.ChannelsElement;
156
156
  }
157
157
  });
158
+ Object.defineProperty(exports, "ComponentsChannelBindingsElement", {
159
+ enumerable: true,
160
+ get: function () {
161
+ return _ComponentsChannelBindings.default;
162
+ }
163
+ });
164
+ Object.defineProperty(exports, "ComponentsChannelsElement", {
165
+ enumerable: true,
166
+ get: function () {
167
+ return _ComponentsChannels.default;
168
+ }
169
+ });
170
+ Object.defineProperty(exports, "ComponentsCorrelationIDsElement", {
171
+ enumerable: true,
172
+ get: function () {
173
+ return _ComponentsCorrelationIDs.default;
174
+ }
175
+ });
158
176
  Object.defineProperty(exports, "ComponentsElement", {
159
177
  enumerable: true,
160
178
  get: function () {
161
179
  return _inspect.ComponentsElement;
162
180
  }
163
181
  });
182
+ Object.defineProperty(exports, "ComponentsMessageBindingsElement", {
183
+ enumerable: true,
184
+ get: function () {
185
+ return _ComponentsMessageBindings.default;
186
+ }
187
+ });
188
+ Object.defineProperty(exports, "ComponentsMessageTraitsElement", {
189
+ enumerable: true,
190
+ get: function () {
191
+ return _ComponentsMessageTraits.default;
192
+ }
193
+ });
194
+ Object.defineProperty(exports, "ComponentsMessagesElement", {
195
+ enumerable: true,
196
+ get: function () {
197
+ return _ComponentsMessages.default;
198
+ }
199
+ });
200
+ Object.defineProperty(exports, "ComponentsOperationBindingsElement", {
201
+ enumerable: true,
202
+ get: function () {
203
+ return _ComponentsOperationBindings.default;
204
+ }
205
+ });
206
+ Object.defineProperty(exports, "ComponentsOperationTraitsElement", {
207
+ enumerable: true,
208
+ get: function () {
209
+ return _ComponentsOperationTraits.default;
210
+ }
211
+ });
212
+ Object.defineProperty(exports, "ComponentsParametersElement", {
213
+ enumerable: true,
214
+ get: function () {
215
+ return _ComponentsParameters.default;
216
+ }
217
+ });
218
+ Object.defineProperty(exports, "ComponentsSchemasElement", {
219
+ enumerable: true,
220
+ get: function () {
221
+ return _ComponentsSchemas.default;
222
+ }
223
+ });
224
+ Object.defineProperty(exports, "ComponentsSecuritySchemesElement", {
225
+ enumerable: true,
226
+ get: function () {
227
+ return _ComponentsSecuritySchemes.default;
228
+ }
229
+ });
230
+ Object.defineProperty(exports, "ComponentsServerBindingsElement", {
231
+ enumerable: true,
232
+ get: function () {
233
+ return _ComponentsServerBindings.default;
234
+ }
235
+ });
236
+ Object.defineProperty(exports, "ComponentsServerVariablesElement", {
237
+ enumerable: true,
238
+ get: function () {
239
+ return _ComponentsServerVariables.default;
240
+ }
241
+ });
242
+ Object.defineProperty(exports, "ComponentsServersElement", {
243
+ enumerable: true,
244
+ get: function () {
245
+ return _ComponentsServers.default;
246
+ }
247
+ });
164
248
  Object.defineProperty(exports, "ContactElement", {
165
249
  enumerable: true,
166
250
  get: function () {
@@ -1599,4 +1683,18 @@ var _SpecificationVisitor = _interopRequireDefault(require("./refractor/visitors
1599
1683
  var _Visitor = _interopRequireDefault(require("./refractor/visitors/Visitor.cjs"));
1600
1684
  var _bases = require("./refractor/visitors/async-api-2/bases.cjs");
1601
1685
  var _inspect = require("./refractor/inspect.cjs");
1602
- var _index = _interopRequireWildcard(require("./refractor/index.cjs"));
1686
+ var _index = _interopRequireWildcard(require("./refractor/index.cjs"));
1687
+ var _ComponentsChannelBindings = _interopRequireDefault(require("./elements/nces/ComponentsChannelBindings.cjs"));
1688
+ var _ComponentsChannels = _interopRequireDefault(require("./elements/nces/ComponentsChannels.cjs"));
1689
+ var _ComponentsCorrelationIDs = _interopRequireDefault(require("./elements/nces/ComponentsCorrelationIDs.cjs"));
1690
+ var _ComponentsMessageBindings = _interopRequireDefault(require("./elements/nces/ComponentsMessageBindings.cjs"));
1691
+ var _ComponentsMessages = _interopRequireDefault(require("./elements/nces/ComponentsMessages.cjs"));
1692
+ var _ComponentsMessageTraits = _interopRequireDefault(require("./elements/nces/ComponentsMessageTraits.cjs"));
1693
+ var _ComponentsOperationBindings = _interopRequireDefault(require("./elements/nces/ComponentsOperationBindings.cjs"));
1694
+ var _ComponentsOperationTraits = _interopRequireDefault(require("./elements/nces/ComponentsOperationTraits.cjs"));
1695
+ var _ComponentsParameters = _interopRequireDefault(require("./elements/nces/ComponentsParameters.cjs"));
1696
+ var _ComponentsSchemas = _interopRequireDefault(require("./elements/nces/ComponentsSchemas.cjs"));
1697
+ var _ComponentsSecuritySchemes = _interopRequireDefault(require("./elements/nces/ComponentsSecuritySchemes.cjs"));
1698
+ var _ComponentsServerBindings = _interopRequireDefault(require("./elements/nces/ComponentsServerBindings.cjs"));
1699
+ var _ComponentsServers = _interopRequireDefault(require("./elements/nces/ComponentsServers.cjs"));
1700
+ var _ComponentsServerVariables = _interopRequireDefault(require("./elements/nces/ComponentsServerVariables.cjs"));
package/src/index.mjs CHANGED
@@ -98,4 +98,18 @@ refractSqsChannelBinding, refractSqsMessageBinding, refractSqsOperationBinding,
98
98
  // STOMP
99
99
  refractStompChannelBinding, refractStompMessageBinding, refractStompOperationBinding, refractStompServerBinding,
100
100
  // WebSocket
101
- refractWebSocketChannelBinding, refractWebSocketMessageBinding, refractWebSocketOperationBinding, refractWebSocketServerBinding } from "./refractor/index.mjs";
101
+ refractWebSocketChannelBinding, refractWebSocketMessageBinding, refractWebSocketOperationBinding, refractWebSocketServerBinding } from "./refractor/index.mjs";
102
+ export { default as ComponentsChannelBindingsElement } from "./elements/nces/ComponentsChannelBindings.mjs";
103
+ export { default as ComponentsChannelsElement } from "./elements/nces/ComponentsChannels.mjs";
104
+ export { default as ComponentsCorrelationIDsElement } from "./elements/nces/ComponentsCorrelationIDs.mjs";
105
+ export { default as ComponentsMessageBindingsElement } from "./elements/nces/ComponentsMessageBindings.mjs";
106
+ export { default as ComponentsMessagesElement } from "./elements/nces/ComponentsMessages.mjs";
107
+ export { default as ComponentsMessageTraitsElement } from "./elements/nces/ComponentsMessageTraits.mjs";
108
+ export { default as ComponentsOperationBindingsElement } from "./elements/nces/ComponentsOperationBindings.mjs";
109
+ export { default as ComponentsOperationTraitsElement } from "./elements/nces/ComponentsOperationTraits.mjs";
110
+ export { default as ComponentsParametersElement } from "./elements/nces/ComponentsParameters.mjs";
111
+ export { default as ComponentsSchemasElement } from "./elements/nces/ComponentsSchemas.mjs";
112
+ export { default as ComponentsSecuritySchemesElement } from "./elements/nces/ComponentsSecuritySchemes.mjs";
113
+ export { default as ComponentsServerBindingsElement } from "./elements/nces/ComponentsServerBindings.mjs";
114
+ export { default as ComponentsServersElement } from "./elements/nces/ComponentsServers.mjs";
115
+ export { default as ComponentsServerVariablesElement } from "./elements/nces/ComponentsServerVariables.mjs";