fix(openapi): Regenerate OpenAPI assets

Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
This commit is contained in:
nextcloud-command 2025-12-13 14:16:15 +00:00
parent c9f014e25a
commit e2f59b0709
4 changed files with 20 additions and 40 deletions

View file

@ -15882,21 +15882,11 @@
} }
], ],
"requestBody": { "requestBody": {
"required": true, "required": false,
"content": { "content": {
"application/json": { "application/json": {
"schema": { "schema": {
"type": "object", "type": "object",
"required": [
"roomType",
"readOnly",
"listable",
"lobbyState",
"sipEnabled",
"permissions",
"recordingConsent",
"mentionPermissions"
],
"properties": { "properties": {
"roomType": { "roomType": {
"type": "integer", "type": "integer",

View file

@ -15787,21 +15787,11 @@
} }
], ],
"requestBody": { "requestBody": {
"required": true, "required": false,
"content": { "content": {
"application/json": { "application/json": {
"schema": { "schema": {
"type": "object", "type": "object",
"required": [
"roomType",
"readOnly",
"listable",
"lobbyState",
"sipEnabled",
"permissions",
"recordingConsent",
"mentionPermissions"
],
"properties": { "properties": {
"roomType": { "roomType": {
"type": "integer", "type": "integer",

View file

@ -8554,14 +8554,14 @@ export interface operations {
}; };
cookie?: never; cookie?: never;
}; };
requestBody: { requestBody?: {
content: { content: {
"application/json": { "application/json": {
/** /**
* Format: int64 * Format: int64
* @description Type of the room * @description Type of the room
*/ */
roomType: number; roomType?: number;
/** /**
* @deprecated * @deprecated
* @description User, group, ID to invite Deprecated: Use the `$participants` array instead * @description User, group, ID to invite Deprecated: Use the `$participants` array instead
@ -8599,13 +8599,13 @@ export interface operations {
* @description Read only state of the conversation (Default writable) (only available with `conversation-creation-all` capability) * @description Read only state of the conversation (Default writable) (only available with `conversation-creation-all` capability)
* @enum {integer} * @enum {integer}
*/ */
readOnly: 0 | 1; readOnly?: 0 | 1;
/** /**
* Format: int64 * Format: int64
* @description Scope where the conversation is listable (Default not listable for anyone) (only available with `conversation-creation-all` capability) * @description Scope where the conversation is listable (Default not listable for anyone) (only available with `conversation-creation-all` capability)
* @enum {integer} * @enum {integer}
*/ */
listable: 0 | 1 | 2; listable?: 0 | 1 | 2;
/** /**
* Format: int64 * Format: int64
* @description Seconds after which messages will disappear, 0 disables expiration (Default 0) (only available with `conversation-creation-all` capability) * @description Seconds after which messages will disappear, 0 disables expiration (Default 0) (only available with `conversation-creation-all` capability)
@ -8617,7 +8617,7 @@ export interface operations {
* @description Lobby state of the conversation (Default lobby is disabled) (only available with `conversation-creation-all` capability) * @description Lobby state of the conversation (Default lobby is disabled) (only available with `conversation-creation-all` capability)
* @enum {integer} * @enum {integer}
*/ */
lobbyState: 0 | 1; lobbyState?: 0 | 1;
/** /**
* Format: int64 * Format: int64
* @description Timer when the lobby will be removed (Default null, will not be disabled automatically) (only available with `conversation-creation-all` capability) * @description Timer when the lobby will be removed (Default null, will not be disabled automatically) (only available with `conversation-creation-all` capability)
@ -8629,24 +8629,24 @@ export interface operations {
* @description Whether SIP dial-in shall be enabled (only available with `conversation-creation-all` capability) * @description Whether SIP dial-in shall be enabled (only available with `conversation-creation-all` capability)
* @enum {integer} * @enum {integer}
*/ */
sipEnabled: 0 | 1 | 2; sipEnabled?: 0 | 1 | 2;
/** /**
* Format: int64 * Format: int64
* @description Default permissions for participants (only available with `conversation-creation-all` capability) * @description Default permissions for participants (only available with `conversation-creation-all` capability)
*/ */
permissions: number; permissions?: number;
/** /**
* Format: int64 * Format: int64
* @description Whether participants need to agree to a recording before joining a call (only available with `conversation-creation-all` capability) * @description Whether participants need to agree to a recording before joining a call (only available with `conversation-creation-all` capability)
* @enum {integer} * @enum {integer}
*/ */
recordingConsent: 0 | 1; recordingConsent?: 0 | 1;
/** /**
* Format: int64 * Format: int64
* @description Who can mention at-all in the chat (only available with `conversation-creation-all` capability) * @description Who can mention at-all in the chat (only available with `conversation-creation-all` capability)
* @enum {integer} * @enum {integer}
*/ */
mentionPermissions: 0 | 1; mentionPermissions?: 0 | 1;
/** /**
* @description Description for the conversation (limited to 2.000 characters) (only available with `conversation-creation-all` capability) * @description Description for the conversation (limited to 2.000 characters) (only available with `conversation-creation-all` capability)
* @default * @default

View file

@ -8016,14 +8016,14 @@ export interface operations {
}; };
cookie?: never; cookie?: never;
}; };
requestBody: { requestBody?: {
content: { content: {
"application/json": { "application/json": {
/** /**
* Format: int64 * Format: int64
* @description Type of the room * @description Type of the room
*/ */
roomType: number; roomType?: number;
/** /**
* @deprecated * @deprecated
* @description User, group, ID to invite Deprecated: Use the `$participants` array instead * @description User, group, ID to invite Deprecated: Use the `$participants` array instead
@ -8061,13 +8061,13 @@ export interface operations {
* @description Read only state of the conversation (Default writable) (only available with `conversation-creation-all` capability) * @description Read only state of the conversation (Default writable) (only available with `conversation-creation-all` capability)
* @enum {integer} * @enum {integer}
*/ */
readOnly: 0 | 1; readOnly?: 0 | 1;
/** /**
* Format: int64 * Format: int64
* @description Scope where the conversation is listable (Default not listable for anyone) (only available with `conversation-creation-all` capability) * @description Scope where the conversation is listable (Default not listable for anyone) (only available with `conversation-creation-all` capability)
* @enum {integer} * @enum {integer}
*/ */
listable: 0 | 1 | 2; listable?: 0 | 1 | 2;
/** /**
* Format: int64 * Format: int64
* @description Seconds after which messages will disappear, 0 disables expiration (Default 0) (only available with `conversation-creation-all` capability) * @description Seconds after which messages will disappear, 0 disables expiration (Default 0) (only available with `conversation-creation-all` capability)
@ -8079,7 +8079,7 @@ export interface operations {
* @description Lobby state of the conversation (Default lobby is disabled) (only available with `conversation-creation-all` capability) * @description Lobby state of the conversation (Default lobby is disabled) (only available with `conversation-creation-all` capability)
* @enum {integer} * @enum {integer}
*/ */
lobbyState: 0 | 1; lobbyState?: 0 | 1;
/** /**
* Format: int64 * Format: int64
* @description Timer when the lobby will be removed (Default null, will not be disabled automatically) (only available with `conversation-creation-all` capability) * @description Timer when the lobby will be removed (Default null, will not be disabled automatically) (only available with `conversation-creation-all` capability)
@ -8091,24 +8091,24 @@ export interface operations {
* @description Whether SIP dial-in shall be enabled (only available with `conversation-creation-all` capability) * @description Whether SIP dial-in shall be enabled (only available with `conversation-creation-all` capability)
* @enum {integer} * @enum {integer}
*/ */
sipEnabled: 0 | 1 | 2; sipEnabled?: 0 | 1 | 2;
/** /**
* Format: int64 * Format: int64
* @description Default permissions for participants (only available with `conversation-creation-all` capability) * @description Default permissions for participants (only available with `conversation-creation-all` capability)
*/ */
permissions: number; permissions?: number;
/** /**
* Format: int64 * Format: int64
* @description Whether participants need to agree to a recording before joining a call (only available with `conversation-creation-all` capability) * @description Whether participants need to agree to a recording before joining a call (only available with `conversation-creation-all` capability)
* @enum {integer} * @enum {integer}
*/ */
recordingConsent: 0 | 1; recordingConsent?: 0 | 1;
/** /**
* Format: int64 * Format: int64
* @description Who can mention at-all in the chat (only available with `conversation-creation-all` capability) * @description Who can mention at-all in the chat (only available with `conversation-creation-all` capability)
* @enum {integer} * @enum {integer}
*/ */
mentionPermissions: 0 | 1; mentionPermissions?: 0 | 1;
/** /**
* @description Description for the conversation (limited to 2.000 characters) (only available with `conversation-creation-all` capability) * @description Description for the conversation (limited to 2.000 characters) (only available with `conversation-creation-all` capability)
* @default * @default