Merge pull request #16552 from nextcloud/dependabot/composer/vendor-bin/openapi-extractor/nextcloud/openapi-extractor-1.8.7

ci(deps-dev): Bump nextcloud/openapi-extractor from 1.8.6 to 1.8.7 in /vendor-bin/openapi-extractor
This commit is contained in:
github-actions[bot] 2025-12-13 14:26:38 +00:00 committed by GitHub
commit cb343b836d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 34 additions and 54 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

View file

@ -82,16 +82,16 @@
}, },
{ {
"name": "nextcloud/openapi-extractor", "name": "nextcloud/openapi-extractor",
"version": "v1.8.6", "version": "v1.8.7",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/nextcloud-releases/openapi-extractor.git", "url": "https://github.com/nextcloud-releases/openapi-extractor.git",
"reference": "3874ffb6817ab5b616a5e909c48c7cd13889cafa" "reference": "230f61925c362779652b0038a1314ce5f931e853"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/nextcloud-releases/openapi-extractor/zipball/3874ffb6817ab5b616a5e909c48c7cd13889cafa", "url": "https://api.github.com/repos/nextcloud-releases/openapi-extractor/zipball/230f61925c362779652b0038a1314ce5f931e853",
"reference": "3874ffb6817ab5b616a5e909c48c7cd13889cafa", "reference": "230f61925c362779652b0038a1314ce5f931e853",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -102,9 +102,9 @@
"phpstan/phpdoc-parser": "^2.1" "phpstan/phpdoc-parser": "^2.1"
}, },
"require-dev": { "require-dev": {
"nextcloud/coding-standard": "^1.2", "nextcloud/coding-standard": "^1.4.0",
"nextcloud/ocp": "dev-master", "nextcloud/ocp": "dev-master",
"rector/rector": "^2.0" "rector/rector": "^2.2.8"
}, },
"bin": [ "bin": [
"bin/generate-spec", "bin/generate-spec",
@ -123,22 +123,22 @@
"description": "A tool for extracting OpenAPI specifications from Nextcloud source code", "description": "A tool for extracting OpenAPI specifications from Nextcloud source code",
"support": { "support": {
"issues": "https://github.com/nextcloud-releases/openapi-extractor/issues", "issues": "https://github.com/nextcloud-releases/openapi-extractor/issues",
"source": "https://github.com/nextcloud-releases/openapi-extractor/tree/v1.8.6" "source": "https://github.com/nextcloud-releases/openapi-extractor/tree/v1.8.7"
}, },
"time": "2025-10-01T13:53:28+00:00" "time": "2025-12-02T09:52:06+00:00"
}, },
{ {
"name": "nikic/php-parser", "name": "nikic/php-parser",
"version": "v5.6.1", "version": "v5.7.0",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/nikic/PHP-Parser.git", "url": "https://github.com/nikic/PHP-Parser.git",
"reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2" "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
}, },
"dist": { "dist": {
"type": "zip", "type": "zip",
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2", "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
"reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2", "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
"shasum": "" "shasum": ""
}, },
"require": { "require": {
@ -181,9 +181,9 @@
], ],
"support": { "support": {
"issues": "https://github.com/nikic/PHP-Parser/issues", "issues": "https://github.com/nikic/PHP-Parser/issues",
"source": "https://github.com/nikic/PHP-Parser/tree/v5.6.1" "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
}, },
"time": "2025-08-13T20:13:15+00:00" "time": "2025-12-06T11:56:16+00:00"
}, },
{ {
"name": "phpstan/phpdoc-parser", "name": "phpstan/phpdoc-parser",