-
-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update @asyncapi/bundler to 0.5.0 version (#1415)
Co-authored-by: asyncapi-bot <[email protected]>
- Loading branch information
1 parent
f2c0980
commit e4815e0
Showing
10 changed files
with
37 additions
and
99 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
channels: | ||
commentLikedChannel: | ||
address: comment/liked |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,10 @@ | ||
asyncapi: "2.5.0" | ||
asyncapi: "2.6.0" | ||
info: | ||
title: Account Service | ||
version: 1.0.0 | ||
description: This service is in charge of processing user logouts | ||
channels: | ||
user/loggedOut: | ||
subcribe: | ||
unsubcribe: | ||
message: | ||
$ref: 'test/integration/bundle/messages.yaml#/messages/UserLoggedOut' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
asyncapi: "2.5.0" | ||
asyncapi: "2.6.0" | ||
info: | ||
title: Account Service | ||
version: 1.0.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,8 @@ | ||
asyncapi: 3.0.0 | ||
info: | ||
title: Account Service | ||
title: Example Service | ||
version: 1.0.0 | ||
description: This service is in charge of processing user signupsA | ||
description: Example Service. | ||
channels: | ||
userSignedup: | ||
address: 'user/signedup' | ||
messages: | ||
userSignedUpMessage: | ||
$ref: './test/integration/bundle/messages.yaml#/messages/UserSignedUp' | ||
test: | ||
address: '/test' | ||
messages: | ||
testMessage: | ||
$ref: '#/components/messages/TestMessage' | ||
operations: | ||
UserSignedUp: | ||
action: send | ||
channel: | ||
$ref: '#/channels/userSignedup' | ||
messages: | ||
- $ref: './test/integration/bundle/messages.yaml#/messages/UserSignedUp' | ||
TestOpp: | ||
action: send | ||
channel: | ||
$ref: '#/channels/test' | ||
messages: | ||
- $ref: '#/components/messages/TestMessage' | ||
components: | ||
messages: | ||
TestMessage: | ||
payload: | ||
type: string | ||
commentLikedChannel: | ||
$ref: './test/integration/bundle/channels.yaml#/channels/commentLikedChannel' |