feat: add response status to calendar event host details (#21934)

* feat: add response status to calendar event host details

* docs: update calendar event response status description from attendee to host
This commit is contained in:
Somay Chauhan
2025-06-20 07:23:18 +00:00
committed by GitHub
parent 956fd6ae2f
commit 795fd788e2
4 changed files with 44 additions and 22 deletions
+6 -1
View File
@@ -24102,7 +24102,7 @@
},
"CalendarEventResponseStatus": {
"type": "string",
"description": "Attendee's response to the invitation",
"description": "Host's response to the invitation",
"enum": ["accepted", "pending", "declined", "needsAction"]
},
"CalendarEventAttendee": {
@@ -24150,6 +24150,11 @@
"type": "string",
"nullable": true,
"description": "Display name of the event host"
},
"responseStatus": {
"nullable": true,
"example": "accepted",
"$ref": "#/components/schemas/CalendarEventResponseStatus"
}
},
"required": ["email"]