Fix conferenceSolutionKey structure for Google Meet

- Change type from 'hangoutsMeet' to 'event'
- Add name: 'hangoutsMeet' property
- This matches Google Calendar API requirements for creating Meet conferences
This commit is contained in:
dwindown
2025-12-23 11:43:56 +07:00
parent 23f8f70c83
commit 9f2d36b5f5

View File

@@ -210,7 +210,10 @@ serve(async (req: Request): Promise<Response> => {
conferenceData: { conferenceData: {
createRequest: { createRequest: {
requestId: body.slot_id, requestId: body.slot_id,
conferenceSolutionKey: { type: "hangoutsMeet" }, conferenceSolutionKey: {
type: "event",
name: "hangoutsMeet"
},
}, },
}, },
}; };