Skip to content

Commit

Permalink
chore(assets): Recompile assets
Browse files Browse the repository at this point in the history
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Jan 10, 2025
1 parent b6c5822 commit 1b77ec6
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 0 deletions.
9 changes: 9 additions & 0 deletions openapi-full.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
9 changes: 9 additions & 0 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 2 additions & 0 deletions src/types/openapi/openapi-full.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions src/types/openapi/openapi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1b77ec6

Please sign in to comment.