|
|
|
@ -2232,7 +2232,10 @@ export type $defs = Record<string, never>; |
|
|
|
export interface operations { |
|
|
|
"avatar-get-avatar": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query?: { |
|
|
|
/** @description Theme used for background */ |
|
|
|
darkTheme?: 0 | 1; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -2243,17 +2246,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody?: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** |
|
|
|
* @description Theme used for background |
|
|
|
* @default false |
|
|
|
*/ |
|
|
|
darkTheme?: boolean; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Room avatar returned */ |
|
|
|
200: { |
|
|
|
@ -3354,7 +3347,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"call-leave-call": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query?: { |
|
|
|
/** @description whether to also terminate the call for all participants */ |
|
|
|
all?: 0 | 1; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -3365,17 +3361,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody?: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** |
|
|
|
* @description whether to also terminate the call for all participants |
|
|
|
* @default false |
|
|
|
*/ |
|
|
|
all?: boolean; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Call left successfully */ |
|
|
|
200: { |
|
|
|
@ -3563,7 +3549,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"call-leave-federated-call": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query: { |
|
|
|
/** @description Federated session id to leave with */ |
|
|
|
sessionId: string; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -3574,14 +3563,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** @description Federated session id to leave with */ |
|
|
|
sessionId: string; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Call left successfully */ |
|
|
|
200: { |
|
|
|
@ -3765,7 +3747,26 @@ export interface operations { |
|
|
|
}; |
|
|
|
"chat-receive-messages": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query: { |
|
|
|
/** @description Polling for new messages (1) or getting the history of the chat (0) */ |
|
|
|
lookIntoFuture: 0 | 1; |
|
|
|
/** @description Number of chat messages to receive (100 by default, 200 at most) */ |
|
|
|
limit?: number; |
|
|
|
/** @description The last known message (serves as offset) */ |
|
|
|
lastKnownMessageId?: number; |
|
|
|
/** @description The last known common read message (so the response is 200 instead of 304 when it changes even when there are no messages) */ |
|
|
|
lastCommonReadId?: number; |
|
|
|
/** @description Number of seconds to wait for new messages (30 by default, 30 at most) */ |
|
|
|
timeout?: number; |
|
|
|
/** @description Automatically set the last read marker when 1, if your client does this itself via chat/{token}/read set to 0 */ |
|
|
|
setReadMarker?: 0 | 1; |
|
|
|
/** @description Include the $lastKnownMessageId in the messages when 1 (default 0) */ |
|
|
|
includeLastKnown?: 0 | 1; |
|
|
|
/** @description When the user status should not be automatically set to online set to 1 (default 0) */ |
|
|
|
noStatusUpdate?: 0 | 1; |
|
|
|
/** @description Set to 0 when notifications should not be marked as read (default 1) */ |
|
|
|
markNotificationsAsRead?: 0 | 1; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -3776,73 +3777,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description Polling for new messages (1) or getting the history of the chat (0) |
|
|
|
* @enum {integer} |
|
|
|
*/ |
|
|
|
lookIntoFuture: 0 | 1; |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description Number of chat messages to receive (100 by default, 200 at most) |
|
|
|
* @default 100 |
|
|
|
*/ |
|
|
|
limit?: number; |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description The last known message (serves as offset) |
|
|
|
* @default 0 |
|
|
|
*/ |
|
|
|
lastKnownMessageId?: number; |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description The last known common read message |
|
|
|
* (so the response is 200 instead of 304 when |
|
|
|
* it changes even when there are no messages) |
|
|
|
* @default 0 |
|
|
|
*/ |
|
|
|
lastCommonReadId?: number; |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description Number of seconds to wait for new messages (30 by default, 30 at most) |
|
|
|
* @default 30 |
|
|
|
*/ |
|
|
|
timeout?: number; |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description Automatically set the last read marker when 1, |
|
|
|
* if your client does this itself via chat/{token}/read set to 0 |
|
|
|
* @default 1 |
|
|
|
* @enum {integer} |
|
|
|
*/ |
|
|
|
setReadMarker?: 0 | 1; |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description Include the $lastKnownMessageId in the messages when 1 (default 0) |
|
|
|
* @default 0 |
|
|
|
* @enum {integer} |
|
|
|
*/ |
|
|
|
includeLastKnown?: 0 | 1; |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description When the user status should not be automatically set to online set to 1 (default 0) |
|
|
|
* @default 0 |
|
|
|
* @enum {integer} |
|
|
|
*/ |
|
|
|
noStatusUpdate?: 0 | 1; |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description Set to 0 when notifications should not be marked as read (default 1) |
|
|
|
* @default 1 |
|
|
|
* @enum {integer} |
|
|
|
*/ |
|
|
|
markNotificationsAsRead?: 0 | 1; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Messages returned */ |
|
|
|
200: { |
|
|
|
@ -4281,7 +4216,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"chat-get-message-context": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query?: { |
|
|
|
/** @description Number of chat messages to receive in both directions (50 by default, 100 at most, might return 201 messages) */ |
|
|
|
limit?: number; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -4294,18 +4232,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody?: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description Number of chat messages to receive in both directions (50 by default, 100 at most, might return 201 messages) |
|
|
|
* @default 50 |
|
|
|
*/ |
|
|
|
limit?: number; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Message context returned */ |
|
|
|
200: { |
|
|
|
@ -4567,7 +4494,14 @@ export interface operations { |
|
|
|
}; |
|
|
|
"chat-mentions": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query: { |
|
|
|
/** @description Text to search for */ |
|
|
|
search: string; |
|
|
|
/** @description Maximum number of results */ |
|
|
|
limit?: number; |
|
|
|
/** @description Include the user statuses */ |
|
|
|
includeStatus?: 0 | 1; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -4578,25 +4512,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** @description Text to search for */ |
|
|
|
search: string; |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description Maximum number of results |
|
|
|
* @default 20 |
|
|
|
*/ |
|
|
|
limit?: number; |
|
|
|
/** |
|
|
|
* @description Include the user statuses |
|
|
|
* @default false |
|
|
|
*/ |
|
|
|
includeStatus?: boolean; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description List of mention suggestions returned */ |
|
|
|
200: { |
|
|
|
@ -4616,7 +4532,14 @@ export interface operations { |
|
|
|
}; |
|
|
|
"chat-get-objects-shared-in-room": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query: { |
|
|
|
/** @description Type of the objects */ |
|
|
|
objectType: string; |
|
|
|
/** @description ID of the last known message */ |
|
|
|
lastKnownMessageId?: number; |
|
|
|
/** @description Maximum number of objects */ |
|
|
|
limit?: number; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -4627,26 +4550,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** @description Type of the objects */ |
|
|
|
objectType: string; |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description ID of the last known message |
|
|
|
* @default 0 |
|
|
|
*/ |
|
|
|
lastKnownMessageId?: number; |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description Maximum number of objects |
|
|
|
* @default 100 |
|
|
|
*/ |
|
|
|
limit?: number; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description List of shared objects messages returned */ |
|
|
|
200: { |
|
|
|
@ -4765,7 +4669,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"chat-get-objects-shared-in-room-overview": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query?: { |
|
|
|
/** @description Maximum number of objects */ |
|
|
|
limit?: number; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -4776,18 +4683,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody?: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description Maximum number of objects |
|
|
|
* @default 7 |
|
|
|
*/ |
|
|
|
limit?: number; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description List of shared objects messages of each type returned */ |
|
|
|
200: { |
|
|
|
@ -5495,7 +5391,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"reaction-get-reactions": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query?: { |
|
|
|
/** @description Emoji to filter */ |
|
|
|
reaction?: string | null; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -5508,14 +5407,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody?: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** @description Emoji to filter */ |
|
|
|
reaction?: string | null; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Reactions returned */ |
|
|
|
200: { |
|
|
|
@ -5637,7 +5529,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"reaction-delete": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query: { |
|
|
|
/** @description Emoji to remove */ |
|
|
|
reaction: string; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -5650,14 +5545,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** @description Emoji to remove */ |
|
|
|
reaction: string; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Reaction deleted successfully */ |
|
|
|
200: { |
|
|
|
@ -5811,7 +5699,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"recording-notification-dismiss": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query: { |
|
|
|
/** @description Timestamp of the notification to be dismissed */ |
|
|
|
timestamp: number; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -5822,17 +5713,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description Timestamp of the notification to be dismissed |
|
|
|
*/ |
|
|
|
timestamp: number; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Notification dismissed successfully */ |
|
|
|
200: { |
|
|
|
@ -5930,7 +5811,14 @@ export interface operations { |
|
|
|
}; |
|
|
|
"room-get-rooms": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query?: { |
|
|
|
/** @description When the user status should not be automatically set to online set to 1 (default 0) */ |
|
|
|
noStatusUpdate?: 0 | 1; |
|
|
|
/** @description Include the user status */ |
|
|
|
includeStatus?: 0 | 1; |
|
|
|
/** @description Filter rooms modified after a timestamp */ |
|
|
|
modifiedSince?: number; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -5940,30 +5828,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody?: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description When the user status should not be automatically set to online set to 1 (default 0) |
|
|
|
* @default 0 |
|
|
|
* @enum {integer} |
|
|
|
*/ |
|
|
|
noStatusUpdate?: 0 | 1; |
|
|
|
/** |
|
|
|
* @description Include the user status |
|
|
|
* @default false |
|
|
|
*/ |
|
|
|
includeStatus?: boolean; |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description Filter rooms modified after a timestamp |
|
|
|
* @default 0 |
|
|
|
*/ |
|
|
|
modifiedSince?: number; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Return list of rooms */ |
|
|
|
200: { |
|
|
|
@ -6109,7 +5974,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"room-get-listed-rooms": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query?: { |
|
|
|
/** @description search term */ |
|
|
|
searchTerm?: string; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -6119,17 +5987,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody?: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** |
|
|
|
* @description search term |
|
|
|
* @default |
|
|
|
*/ |
|
|
|
searchTerm?: string; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Return list of matching rooms */ |
|
|
|
200: { |
|
|
|
@ -6667,7 +6525,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"room-get-participants": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query?: { |
|
|
|
/** @description Include the user statuses */ |
|
|
|
includeStatus?: 0 | 1; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -6678,17 +6539,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody?: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** |
|
|
|
* @description Include the user statuses |
|
|
|
* @default false |
|
|
|
*/ |
|
|
|
includeStatus?: boolean; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Participants returned */ |
|
|
|
200: { |
|
|
|
@ -6814,7 +6665,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"room-get-breakout-room-participants": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query?: { |
|
|
|
/** @description Include the user statuses */ |
|
|
|
includeStatus?: 0 | 1; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -6825,17 +6679,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody?: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** |
|
|
|
* @description Include the user statuses |
|
|
|
* @default false |
|
|
|
*/ |
|
|
|
includeStatus?: boolean; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Breakout room participants returned */ |
|
|
|
200: { |
|
|
|
@ -6945,7 +6789,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"room-remove-attendee-from-room": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query: { |
|
|
|
/** @description ID of the attendee */ |
|
|
|
attendeeId: number; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -6956,17 +6803,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description ID of the attendee |
|
|
|
*/ |
|
|
|
attendeeId: number; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Attendee removed successfully */ |
|
|
|
200: { |
|
|
|
@ -7520,7 +7357,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"room-demote-moderator": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query: { |
|
|
|
/** @description ID of the attendee */ |
|
|
|
attendeeId: number; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -7531,17 +7371,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** |
|
|
|
* Format: int64 |
|
|
|
* @description ID of the attendee |
|
|
|
*/ |
|
|
|
attendeeId: number; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Attendee demoted from moderator successfully */ |
|
|
|
200: { |
|
|
|
@ -8207,7 +8037,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"signaling-get-settings": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query?: { |
|
|
|
/** @description Token of the room */ |
|
|
|
token?: string; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -8217,17 +8050,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody?: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** |
|
|
|
* @description Token of the room |
|
|
|
* @default |
|
|
|
*/ |
|
|
|
token?: string; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Signaling settings returned */ |
|
|
|
200: { |
|
|
|
@ -8497,7 +8320,12 @@ export interface operations { |
|
|
|
}; |
|
|
|
"avatar-get-user-proxy-avatar-without-room": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query: { |
|
|
|
/** @description Federation CloudID to get the avatar for */ |
|
|
|
cloudId: string; |
|
|
|
/** @description Theme used for background */ |
|
|
|
darkTheme?: 0 | 1; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -8509,19 +8337,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** @description Federation CloudID to get the avatar for */ |
|
|
|
cloudId: string; |
|
|
|
/** |
|
|
|
* @description Theme used for background |
|
|
|
* @default false |
|
|
|
*/ |
|
|
|
darkTheme?: boolean; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description User avatar returned */ |
|
|
|
200: { |
|
|
|
@ -8536,7 +8352,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"avatar-get-user-proxy-avatar-dark-without-room": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query: { |
|
|
|
/** @description Federation CloudID to get the avatar for */ |
|
|
|
cloudId: string; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -8548,14 +8367,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** @description Federation CloudID to get the avatar for */ |
|
|
|
cloudId: string; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description User avatar returned */ |
|
|
|
200: { |
|
|
|
@ -8570,7 +8382,12 @@ export interface operations { |
|
|
|
}; |
|
|
|
"avatar-get-user-proxy-avatar": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query: { |
|
|
|
/** @description Federation CloudID to get the avatar for */ |
|
|
|
cloudId: string; |
|
|
|
/** @description Theme used for background */ |
|
|
|
darkTheme?: 0 | 1; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -8583,19 +8400,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** @description Federation CloudID to get the avatar for */ |
|
|
|
cloudId: string; |
|
|
|
/** |
|
|
|
* @description Theme used for background |
|
|
|
* @default false |
|
|
|
*/ |
|
|
|
darkTheme?: boolean; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description User avatar returned */ |
|
|
|
200: { |
|
|
|
@ -8610,7 +8415,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"avatar-get-user-proxy-avatar-dark": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query: { |
|
|
|
/** @description Federation CloudID to get the avatar for */ |
|
|
|
cloudId: string; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -8623,14 +8431,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** @description Federation CloudID to get the avatar for */ |
|
|
|
cloudId: string; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description User avatar returned */ |
|
|
|
200: { |
|
|
|
@ -8873,7 +8674,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"room-leave-federated-room": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query: { |
|
|
|
/** @description Federated session id to leave with */ |
|
|
|
sessionId: string; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -8885,14 +8689,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** @description Federated session id to leave with */ |
|
|
|
sessionId: string; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Successfully left the room */ |
|
|
|
200: { |
|
|
|
@ -9120,7 +8917,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"bot-delete-reaction": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query: { |
|
|
|
/** @description Reaction to delete */ |
|
|
|
reaction: string; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -9134,14 +8934,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** @description Reaction to delete */ |
|
|
|
reaction: string; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Reaction deleted successfully */ |
|
|
|
200: { |
|
|
|
@ -9233,7 +9026,10 @@ export interface operations { |
|
|
|
}; |
|
|
|
"certificate-get-certificate-expiration": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query: { |
|
|
|
/** @description Host to check */ |
|
|
|
host: string; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -9243,14 +9039,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** @description Host to check */ |
|
|
|
host: string; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Certificate expiration returned */ |
|
|
|
200: { |
|
|
|
@ -10030,7 +9819,7 @@ export interface operations { |
|
|
|
number: string; |
|
|
|
/** |
|
|
|
* @description Additional details to verify the validity of the request |
|
|
|
* @default [] |
|
|
|
* @default {} |
|
|
|
*/ |
|
|
|
options?: { |
|
|
|
actorId?: string; |
|
|
|
@ -10175,7 +9964,12 @@ export interface operations { |
|
|
|
}; |
|
|
|
"room-rejected-dial-out-request": { |
|
|
|
parameters: { |
|
|
|
query?: never; |
|
|
|
query: { |
|
|
|
/** @description The call ID provided by the SIP bridge earlier to uniquely identify the call to terminate */ |
|
|
|
callId: string; |
|
|
|
/** @description Additional details to verify the validity of the request */ |
|
|
|
options?: string; |
|
|
|
}; |
|
|
|
header: { |
|
|
|
/** @description Required to be true for the API request to pass */ |
|
|
|
"OCS-APIRequest": boolean; |
|
|
|
@ -10186,24 +9980,7 @@ export interface operations { |
|
|
|
}; |
|
|
|
cookie?: never; |
|
|
|
}; |
|
|
|
requestBody: { |
|
|
|
content: { |
|
|
|
"application/json": { |
|
|
|
/** @description The call ID provided by the SIP bridge earlier to uniquely identify the call to terminate */ |
|
|
|
callId: string; |
|
|
|
/** |
|
|
|
* @description Additional details to verify the validity of the request |
|
|
|
* @default [] |
|
|
|
*/ |
|
|
|
options?: { |
|
|
|
actorId?: string; |
|
|
|
actorType?: string; |
|
|
|
/** Format: int64 */ |
|
|
|
attendeeId?: number; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
requestBody?: never; |
|
|
|
responses: { |
|
|
|
/** @description Call ID reset */ |
|
|
|
200: { |
|
|
|
|