You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For AsyncAPI v3, we need to adapt the frontpage animation (components/DemoAnimation.js) to use AsyncAPI v3 structure instead of v2.
Here are the v3 structure that should be used instead:
asyncapi: 3.0.0info:
title: Account Serviceversion: 1.0.0description: This service is in charge of processing user signups :rocket:channels:
userSignedup:
address: 'user/signedup'messages:
userSignedupMessage:
$ref: '#/components/messages/UserSignedUp'operations:
processUserSignups:
action: 'receive'channel:
$ref: '#/channels/userSignedup'components:
messages:
UserSignedUp:
payload:
type: objectproperties:
displayName:
type: stringdescription: Name of the useremail:
type: stringformat: emaildescription: Email of the user
Here is the list of things that need to be adapted:
I suggest starting by adapting animation for the code, to become as above.
For AsyncAPI v3, we need to adapt the frontpage animation (
components/DemoAnimation.js
) to use AsyncAPI v3 structure instead of v2.Here are the v3 structure that should be used instead:
Here is the list of things that need to be adapted:
Make sure you base your change on the
next-major-spec
branch and target it in your PR 🙂 If you have any questions, don't hesitate to ask.The text was updated successfully, but these errors were encountered: