Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix event mapping and add a missing field #13485

Merged
merged 1 commit into from
Mar 18, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -296,7 +296,7 @@
}
},
"AcsChatParticipantAddedToThreadEventData": {
"description": "Schema of the Data property of an EventGridEvent for an Microsoft.Communication.ChatParticipantAddedToThread event.",
"description": "Schema of the Data property of an EventGridEvent for an Microsoft.Communication.ChatThreadParticipantAdded event.",
"allOf": [
{
"$ref": "#/definitions/AcsChatEventInThreadBaseProperties"
Expand Down Expand Up @@ -324,7 +324,7 @@
}
},
"AcsChatParticipantRemovedFromThreadEventData": {
"description": "Schema of the Data property of an EventGridEvent for an Microsoft.Communication.ChatParticipantRemovedFromThread event.",
"description": "Schema of the Data property of an EventGridEvent for an Microsoft.Communication.ChatThreadParticipantRemoved event.",
"allOf": [
{
"$ref": "#/definitions/AcsChatEventInThreadBaseProperties"
Expand Down Expand Up @@ -544,6 +544,10 @@
"description": "Schema of common properties of all thread-level chat events",
"type": "object",
"properties": {
"transactionId": {
"description": "The transaction id will be used as co-relation vector",
"type": "string"
},
"threadId": {
"description": "The chat thread id",
"type": "string"
Expand Down