Skip to content

Commit

Permalink
chore(release): v6.0.0-next-major-spec.13 (#448)
Browse files Browse the repository at this point in the history
  • Loading branch information
asyncapi-bot authored Nov 13, 2023
1 parent 728f63c commit 6caf1dc
Show file tree
Hide file tree
Showing 4 changed files with 99 additions and 15 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@asyncapi/specs",
"version": "6.0.0-next-major-spec.12",
"version": "6.0.0-next-major-spec.13",
"description": "AsyncAPI schema versions",
"main": "index.js",
"types": "index.d.ts",
Expand Down
54 changes: 48 additions & 6 deletions schemas/3.0.0-without-$id.json
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,14 @@
]
},
"bindings": {
"$ref": "#/definitions/serverBindingsObject"
"oneOf": [
{
"$ref": "#/definitions/Reference"
},
{
"$ref": "#/definitions/serverBindingsObject"
}
]
}
}
},
Expand Down Expand Up @@ -1961,7 +1968,14 @@
]
},
"bindings": {
"$ref": "#/definitions/channelBindingsObject"
"oneOf": [
{
"$ref": "#/definitions/Reference"
},
{
"$ref": "#/definitions/channelBindingsObject"
}
]
}
}
},
Expand Down Expand Up @@ -2088,7 +2102,14 @@
}
},
"bindings": {
"$ref": "#/definitions/messageBindingsObject"
"oneOf": [
{
"$ref": "#/definitions/Reference"
},
{
"$ref": "#/definitions/messageBindingsObject"
}
]
},
"traits": {
"type": "array",
Expand Down Expand Up @@ -3826,7 +3847,14 @@
}
},
"bindings": {
"$ref": "#/definitions/messageBindingsObject"
"oneOf": [
{
"$ref": "#/definitions/Reference"
},
{
"$ref": "#/definitions/messageBindingsObject"
}
]
}
}
},
Expand Down Expand Up @@ -4953,7 +4981,14 @@
]
},
"bindings": {
"$ref": "#/definitions/operationBindingsObject"
"oneOf": [
{
"$ref": "#/definitions/Reference"
},
{
"$ref": "#/definitions/operationBindingsObject"
}
]
}
}
},
Expand Down Expand Up @@ -5038,7 +5073,14 @@
"$ref": "#/definitions/operation/properties/externalDocs"
},
"bindings": {
"$ref": "#/definitions/operation/properties/bindings"
"oneOf": [
{
"$ref": "#/definitions/Reference"
},
{
"$ref": "#/definitions/operationBindingsObject"
}
]
}
}
},
Expand Down
54 changes: 48 additions & 6 deletions schemas/3.0.0.json
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,14 @@
]
},
"bindings": {
"$ref": "http://asyncapi.com/definitions/3.0.0/serverBindingsObject.json"
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/serverBindingsObject.json"
}
]
}
}
},
Expand Down Expand Up @@ -2006,7 +2013,14 @@
]
},
"bindings": {
"$ref": "http://asyncapi.com/definitions/3.0.0/channelBindingsObject.json"
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/channelBindingsObject.json"
}
]
}
}
},
Expand Down Expand Up @@ -2135,7 +2149,14 @@
}
},
"bindings": {
"$ref": "http://asyncapi.com/definitions/3.0.0/messageBindingsObject.json"
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/messageBindingsObject.json"
}
]
},
"traits": {
"type": "array",
Expand Down Expand Up @@ -3889,7 +3910,14 @@
}
},
"bindings": {
"$ref": "http://asyncapi.com/definitions/3.0.0/messageBindingsObject.json"
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/messageBindingsObject.json"
}
]
}
}
},
Expand Down Expand Up @@ -5029,7 +5057,14 @@
]
},
"bindings": {
"$ref": "http://asyncapi.com/definitions/3.0.0/operationBindingsObject.json"
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/operationBindingsObject.json"
}
]
}
}
},
Expand Down Expand Up @@ -5117,7 +5152,14 @@
"$ref": "http://asyncapi.com/definitions/3.0.0/operation.json#/properties/externalDocs"
},
"bindings": {
"$ref": "http://asyncapi.com/definitions/3.0.0/operation.json#/properties/bindings"
"oneOf": [
{
"$ref": "http://asyncapi.com/definitions/3.0.0/Reference.json"
},
{
"$ref": "http://asyncapi.com/definitions/3.0.0/operationBindingsObject.json"
}
]
}
}
},
Expand Down

0 comments on commit 6caf1dc

Please sign in to comment.