diff --git a/openapi-full.json b/openapi-full.json index c4036183369..6dff86acbb6 100644 --- a/openapi-full.json +++ b/openapi-full.json @@ -17561,6 +17561,15 @@ "format": "int64", "description": "Unix timestamp when the meeting starts" }, + "attendeeIds": { + "type": "array", + "nullable": true, + "description": "List of attendee ids to invite, if null everyone will be invited, if empty array only the actor will receive the event", + "items": { + "type": "integer", + "format": "int64" + } + }, "end": { "type": "integer", "format": "int64", diff --git a/openapi.json b/openapi.json index a188eb108e7..df2397ebf40 100644 --- a/openapi.json +++ b/openapi.json @@ -17719,6 +17719,15 @@ "format": "int64", "description": "Unix timestamp when the meeting starts" }, + "attendeeIds": { + "type": "array", + "nullable": true, + "description": "List of attendee ids to invite, if null everyone will be invited, if empty array only the actor will receive the event", + "items": { + "type": "integer", + "format": "int64" + } + }, "end": { "type": "integer", "format": "int64", diff --git a/src/types/openapi/openapi-full.ts b/src/types/openapi/openapi-full.ts index ad38e0edf1a..9dd7dd543cb 100644 --- a/src/types/openapi/openapi-full.ts +++ b/src/types/openapi/openapi-full.ts @@ -8704,6 +8704,8 @@ export interface operations { * @description Unix timestamp when the meeting starts */ start: number; + /** @description List of attendee ids to invite, if null everyone will be invited, if empty array only the actor will receive the event */ + attendeeIds?: number[] | null; /** * Format: int64 * @description Unix timestamp when the meeting ends, falls back to 60 minutes after start diff --git a/src/types/openapi/openapi.ts b/src/types/openapi/openapi.ts index e9c79f43f4e..f3eb66da936 100644 --- a/src/types/openapi/openapi.ts +++ b/src/types/openapi/openapi.ts @@ -8288,6 +8288,8 @@ export interface operations { * @description Unix timestamp when the meeting starts */ start: number; + /** @description List of attendee ids to invite, if null everyone will be invited, if empty array only the actor will receive the event */ + attendeeIds?: number[] | null; /** * Format: int64 * @description Unix timestamp when the meeting ends, falls back to 60 minutes after start