diff --git a/Api/ApiServer.php b/Api/ApiServer.php index 5402eb78..f04cf4ef 100644 --- a/Api/ApiServer.php +++ b/Api/ApiServer.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Api/AuthenticationApiInterface.php b/Api/AuthenticationApiInterface.php index df2a5af8..1418eca1 100644 --- a/Api/AuthenticationApiInterface.php +++ b/Api/AuthenticationApiInterface.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -48,9 +48,9 @@ interface AuthenticationApiInterface /** * Sets authentication method PandaAuth. * - * @param string $value value of the PandaAuth authentication method + * @param string|null $value value of the PandaAuth authentication method */ - public function setPandaAuth($value); + public function setPandaAuth(?string $value): void; /** * Operation authenticationDelete. @@ -58,6 +58,7 @@ public function setPandaAuth($value); * Expires refresh token * * @param string $x_refresh Refresh Token (required) + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () */ public function authenticationDelete(string $x_refresh, int &$responseCode, array &$responseHeaders): void; @@ -67,6 +68,7 @@ public function authenticationDelete(string $x_refresh, int &$responseCode, arra * * Check token * + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () */ public function authenticationGet(int &$responseCode, array &$responseHeaders): void; @@ -77,6 +79,7 @@ public function authenticationGet(int &$responseCode, array &$responseHeaders): * OAuth Login * * @param OAuthLoginRequest $o_auth_login_request (required) + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?object @@ -89,6 +92,7 @@ public function authenticationOauthPost(OAuthLoginRequest $o_auth_login_request, * Login * * @param LoginRequest $login_request (required) + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?object @@ -101,6 +105,7 @@ public function authenticationPost(LoginRequest $login_request, int &$responseCo * Refresh token * * @param RefreshRequest $refresh_request (required) + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?object @@ -113,6 +118,7 @@ public function authenticationRefreshPost(RefreshRequest $refresh_request, int & * Upgrade a deprecated token to JWT * * @param UpgradeTokenRequest $upgrade_token_request (required) + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?object diff --git a/Api/MediaLibraryApiInterface.php b/Api/MediaLibraryApiInterface.php index 2d5d4874..040f0542 100644 --- a/Api/MediaLibraryApiInterface.php +++ b/Api/MediaLibraryApiInterface.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -47,6 +47,7 @@ interface MediaLibraryApiInterface * * @param int $id ID of any given media file (required) * @param string $attributes (optional, default to '') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?object @@ -62,6 +63,7 @@ public function mediaFileIdGet(int $id, string $attributes, int &$responseCode, * @param int $offset (optional, default to 0) * @param string $attributes (optional, default to '') * @param string $flavor (optional, default to '') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?iterable @@ -79,6 +81,7 @@ public function mediaFilesGet(int $limit, int $offset, string $attributes, strin * @param string $attributes (optional, default to '') * @param string $flavor (optional, default to '') * @param string $package_name In which package you want to search (for more fine tuned results) (optional, default to '') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?iterable @@ -94,6 +97,7 @@ public function mediaFilesSearchGet(string $query, int $limit, int $offset, stri * @param int $limit (optional, default to 20) * @param int $offset (optional, default to 0) * @param string $attributes (optional, default to '') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?iterable diff --git a/Api/NotificationsApiInterface.php b/Api/NotificationsApiInterface.php index ac3a0037..78e20dcf 100644 --- a/Api/NotificationsApiInterface.php +++ b/Api/NotificationsApiInterface.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -43,9 +43,9 @@ interface NotificationsApiInterface /** * Sets authentication method PandaAuth. * - * @param string $value value of the PandaAuth authentication method + * @param string|null $value value of the PandaAuth authentication method */ - public function setPandaAuth($value); + public function setPandaAuth(?string $value): void; /** * Operation notificationIdReadPut. @@ -54,6 +54,7 @@ public function setPandaAuth($value); * * @param int $id (required) * @param string $accept_language (optional, default to 'en') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () */ public function notificationIdReadPut(int $id, string $accept_language, int &$responseCode, array &$responseHeaders): void; @@ -63,6 +64,7 @@ public function notificationIdReadPut(int $id, string $accept_language, int &$re * * Count the number of unseen notifications * + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?object @@ -79,6 +81,7 @@ public function notificationsCountGet(int &$responseCode, array &$responseHeader * @param int $offset (optional, default to 0) * @param string $attributes (optional, default to '') * @param string $type (optional, default to 'all') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?iterable @@ -90,6 +93,7 @@ public function notificationsGet(string $accept_language, int $limit, int $offse * * Mark all notifications as read * + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () */ public function notificationsReadPut(int &$responseCode, array &$responseHeaders): void; diff --git a/Api/ProjectsApiInterface.php b/Api/ProjectsApiInterface.php index 295a9e88..815c77d8 100644 --- a/Api/ProjectsApiInterface.php +++ b/Api/ProjectsApiInterface.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -47,9 +47,9 @@ interface ProjectsApiInterface /** * Sets authentication method PandaAuth. * - * @param string $value value of the PandaAuth authentication method + * @param string|null $value value of the PandaAuth authentication method */ - public function setPandaAuth($value); + public function setPandaAuth(?string $value): void; /** * Operation projectIdCatrobatGet. @@ -57,6 +57,7 @@ public function setPandaAuth($value); * Download the .catrobat (=zip) file of a project * * @param string $id (required) + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?object @@ -69,6 +70,7 @@ public function projectIdCatrobatGet(string $id, int &$responseCode, array &$res * Delete a project * * @param string $id (required) + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () */ public function projectIdDelete(string $id, int &$responseCode, array &$responseHeaders): void; @@ -79,6 +81,7 @@ public function projectIdDelete(string $id, int &$responseCode, array &$response * Get the information of a project * * @param string $id (required) + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?object @@ -93,6 +96,7 @@ public function projectIdGet(string $id, int &$responseCode, array &$responseHea * @param string $id (required) * @param UpdateProjectRequest $update_project_request (required) * @param string $accept_language (optional, default to 'en') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?object @@ -112,6 +116,7 @@ public function projectIdPut(string $id, UpdateProjectRequest $update_project_re * @param int $offset (optional, default to 0) * @param string $attributes (optional, default to '') * @param string $flavor (optional, default to '') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?iterable @@ -125,6 +130,7 @@ public function projectIdRecommendationsGet(string $id, string $category, string * * @param string $id (required) * @param ProjectReportRequest $project_report_request (required) + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () */ public function projectIdReportPost(string $id, ProjectReportRequest $project_report_request, int &$responseCode, array &$responseHeaders): void; @@ -137,6 +143,7 @@ public function projectIdReportPost(string $id, ProjectReportRequest $project_re * @param string $max_version Only shows project with a smaller version number than max version. `Warning!` Current implementation is kinda broken. To ensure correct results use the following format '[0-9].[0-9]{3}' (optional, default to '') * @param string $flavor (optional, default to '') * @param string $accept_language (optional, default to 'en') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?iterable @@ -149,6 +156,7 @@ public function projectsCategoriesGet(string $max_version, string $flavor, strin * Get all possible project extensions. Extensions are automatically added to projects based on their bricks. * * @param string $accept_language (optional, default to 'en') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?iterable @@ -166,6 +174,7 @@ public function projectsExtensionsGet(string $accept_language, int &$responseCod * @param int $offset (optional, default to 0) * @param string $attributes (optional, default to '') * @param string $flavor (optional, default to '') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?iterable @@ -184,6 +193,7 @@ public function projectsFeaturedGet(string $platform, string $max_version, int $ * @param int $offset (optional, default to 0) * @param string $attributes (optional, default to '') * @param string $flavor (optional, default to '') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?iterable @@ -200,6 +210,7 @@ public function projectsGet(string $category, string $accept_language, string $m * @param string $accept_language (optional, default to 'en') * @param string $flavor The flavor of this project (optional) * @param bool $private Indicates whether a program should be private (optional, default to false) + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?object @@ -217,6 +228,7 @@ public function projectsPost(string $checksum, UploadedFile $file, string $accep * @param int $offset (optional, default to 0) * @param string $attributes (optional, default to '') * @param string $flavor (optional, default to '') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?iterable @@ -229,6 +241,7 @@ public function projectsSearchGet(string $query, string $max_version, int $limit * Get all possible project tags. Some Tags will only be availabe during events. * * @param string $accept_language (optional, default to 'en') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?iterable @@ -245,6 +258,7 @@ public function projectsTagsGet(string $accept_language, int &$responseCode, arr * @param int $offset (optional, default to 0) * @param string $attributes (optional, default to '') * @param string $flavor (optional, default to '') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?iterable @@ -262,6 +276,7 @@ public function projectsUserGet(string $max_version, int $limit, int $offset, st * @param int $offset (optional, default to 0) * @param string $attributes (optional, default to '') * @param string $flavor (optional, default to '') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?iterable diff --git a/Api/SearchApiInterface.php b/Api/SearchApiInterface.php index 0bbf2088..7c810f53 100644 --- a/Api/SearchApiInterface.php +++ b/Api/SearchApiInterface.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -49,6 +49,7 @@ interface SearchApiInterface * @param string $type (optional) * @param int $limit (optional, default to 20) * @param int $offset (optional, default to 0) + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?object diff --git a/Api/UserApiInterface.php b/Api/UserApiInterface.php index 572c786f..5b6fd1bf 100644 --- a/Api/UserApiInterface.php +++ b/Api/UserApiInterface.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -47,15 +47,16 @@ interface UserApiInterface /** * Sets authentication method PandaAuth. * - * @param string $value value of the PandaAuth authentication method + * @param string|null $value value of the PandaAuth authentication method */ - public function setPandaAuth($value); + public function setPandaAuth(?string $value): void; /** * Operation userDelete. * * Delete user account * + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () */ public function userDelete(int &$responseCode, array &$responseHeaders): void; @@ -65,6 +66,7 @@ public function userDelete(int &$responseCode, array &$responseHeaders): void; * * Get your private user data * + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?object @@ -77,6 +79,7 @@ public function userGet(int &$responseCode, array &$responseHeaders): ?object; * Get public user data * * @param string $id (required) + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?object @@ -90,6 +93,7 @@ public function userIdGet(string $id, int &$responseCode, array &$responseHeader * * @param RegisterRequest $register_request (required) * @param string $accept_language (optional, default to 'en') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?object @@ -103,6 +107,7 @@ public function userPost(RegisterRequest $register_request, string $accept_langu * * @param UpdateUserRequest $update_user_request (required) * @param string $accept_language (optional, default to 'en') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?object @@ -116,6 +121,7 @@ public function userPut(UpdateUserRequest $update_user_request, string $accept_l * * @param ResetPasswordRequest $reset_password_request (required) * @param string $accept_language (optional, default to 'en') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?object @@ -131,6 +137,7 @@ public function userResetPasswordPost(ResetPasswordRequest $reset_password_reque * @param int $limit (optional, default to 20) * @param int $offset (optional, default to 0) * @param string $attributes (optional, default to '') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?iterable diff --git a/Api/UtilityApiInterface.php b/Api/UtilityApiInterface.php index 703a5bf7..43e8deab 100644 --- a/Api/UtilityApiInterface.php +++ b/Api/UtilityApiInterface.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ @@ -45,6 +45,7 @@ interface UtilityApiInterface * * Health Check * + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () */ public function healthGet(int &$responseCode, array &$responseHeaders): void; @@ -56,6 +57,7 @@ public function healthGet(int &$responseCode, array &$responseHeaders): void; * * @param string $lang_code 2 letter Language-Code is based on ISO693-1 (e.g. German = de, English = en, Russian = ru) (required) * @param string $flavor (optional, default to '') + * @param int &$responseCode The HTTP Response Code * @param array $responseHeaders Additional HTTP headers to return with the response () * * @return ?object diff --git a/Controller/AuthenticationController.php b/Controller/AuthenticationController.php index ea716385..5820d220 100644 --- a/Controller/AuthenticationController.php +++ b/Controller/AuthenticationController.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Controller/Controller.php b/Controller/Controller.php index 8d24c5d9..1d4bfd17 100644 --- a/Controller/Controller.php +++ b/Controller/Controller.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Controller/MediaLibraryController.php b/Controller/MediaLibraryController.php index 822ae39a..639292d2 100644 --- a/Controller/MediaLibraryController.php +++ b/Controller/MediaLibraryController.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Controller/NotificationsController.php b/Controller/NotificationsController.php index e784edea..fc7d0410 100644 --- a/Controller/NotificationsController.php +++ b/Controller/NotificationsController.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Controller/ProjectsController.php b/Controller/ProjectsController.php index c13b2cad..c6bc855a 100644 --- a/Controller/ProjectsController.php +++ b/Controller/ProjectsController.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Controller/SearchController.php b/Controller/SearchController.php index 7687192b..e2d943ba 100644 --- a/Controller/SearchController.php +++ b/Controller/SearchController.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Controller/UserController.php b/Controller/UserController.php index 4335425f..fd8f441d 100644 --- a/Controller/UserController.php +++ b/Controller/UserController.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Controller/UtilityController.php b/Controller/UtilityController.php index 217cb49b..4990034f 100644 --- a/Controller/UtilityController.php +++ b/Controller/UtilityController.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/DependencyInjection/Compiler/OpenAPIServerApiPass.php b/DependencyInjection/Compiler/OpenAPIServerApiPass.php index 0344179e..3a4f978d 100644 --- a/DependencyInjection/Compiler/OpenAPIServerApiPass.php +++ b/DependencyInjection/Compiler/OpenAPIServerApiPass.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/DependencyInjection/OpenAPIServerExtension.php b/DependencyInjection/OpenAPIServerExtension.php index c7fb2773..aa35d17e 100644 --- a/DependencyInjection/OpenAPIServerExtension.php +++ b/DependencyInjection/OpenAPIServerExtension.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/BaseUser.php b/Model/BaseUser.php index 1b8ec823..5dc5c4e5 100644 --- a/Model/BaseUser.php +++ b/Model/BaseUser.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/BasicUserDataResponse.php b/Model/BasicUserDataResponse.php index 5382eb44..525ee706 100644 --- a/Model/BasicUserDataResponse.php +++ b/Model/BasicUserDataResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/DryRun.php b/Model/DryRun.php index 7e8f2be1..798da108 100644 --- a/Model/DryRun.php +++ b/Model/DryRun.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/ExtendedUserDataResponse.php b/Model/ExtendedUserDataResponse.php index d4f101c5..c47a90a7 100644 --- a/Model/ExtendedUserDataResponse.php +++ b/Model/ExtendedUserDataResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/ExtendedUserDataResponseAllOf.php b/Model/ExtendedUserDataResponseAllOf.php index 3405d3d1..faba27cb 100644 --- a/Model/ExtendedUserDataResponseAllOf.php +++ b/Model/ExtendedUserDataResponseAllOf.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/ExtensionResponse.php b/Model/ExtensionResponse.php index 31a20341..321b74e7 100644 --- a/Model/ExtensionResponse.php +++ b/Model/ExtensionResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/FeaturedProjectResponse.php b/Model/FeaturedProjectResponse.php index 1315b7f0..ed606170 100644 --- a/Model/FeaturedProjectResponse.php +++ b/Model/FeaturedProjectResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/JWTResponse.php b/Model/JWTResponse.php index 5a499337..a9b520b1 100644 --- a/Model/JWTResponse.php +++ b/Model/JWTResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/LoginRequest.php b/Model/LoginRequest.php index 40d49afc..9255310e 100644 --- a/Model/LoginRequest.php +++ b/Model/LoginRequest.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/MediaCategoryResponse.php b/Model/MediaCategoryResponse.php index 4acb1772..30429a4e 100644 --- a/Model/MediaCategoryResponse.php +++ b/Model/MediaCategoryResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/MediaFileResponse.php b/Model/MediaFileResponse.php index ab960299..b69ceb6f 100644 --- a/Model/MediaFileResponse.php +++ b/Model/MediaFileResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/MediaPackageResponse.php b/Model/MediaPackageResponse.php index 87571032..473af135 100644 --- a/Model/MediaPackageResponse.php +++ b/Model/MediaPackageResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/NotificationContent.php b/Model/NotificationContent.php index 9a65bbe7..8c8f647d 100644 --- a/Model/NotificationContent.php +++ b/Model/NotificationContent.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/NotificationResponse.php b/Model/NotificationResponse.php index 8e354264..1fe820d0 100644 --- a/Model/NotificationResponse.php +++ b/Model/NotificationResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/NotificationsCountResponse.php b/Model/NotificationsCountResponse.php index 447775a8..668218c3 100644 --- a/Model/NotificationsCountResponse.php +++ b/Model/NotificationsCountResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/OAuthLoginRequest.php b/Model/OAuthLoginRequest.php index 04224a7f..cf9c4a96 100644 --- a/Model/OAuthLoginRequest.php +++ b/Model/OAuthLoginRequest.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/ProjectReportRequest.php b/Model/ProjectReportRequest.php index cab7d19c..cd34c55d 100644 --- a/Model/ProjectReportRequest.php +++ b/Model/ProjectReportRequest.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/ProjectResponse.php b/Model/ProjectResponse.php index 30c187eb..b1c39d5f 100644 --- a/Model/ProjectResponse.php +++ b/Model/ProjectResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/ProjectsCategory.php b/Model/ProjectsCategory.php index ae0d2045..cf63f996 100644 --- a/Model/ProjectsCategory.php +++ b/Model/ProjectsCategory.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/RefreshRequest.php b/Model/RefreshRequest.php index a11699c5..dd0ec043 100644 --- a/Model/RefreshRequest.php +++ b/Model/RefreshRequest.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/RegisterErrorResponse.php b/Model/RegisterErrorResponse.php index 6b158f42..bef60460 100644 --- a/Model/RegisterErrorResponse.php +++ b/Model/RegisterErrorResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/RegisterRequest.php b/Model/RegisterRequest.php index f315766c..cbe42721 100644 --- a/Model/RegisterRequest.php +++ b/Model/RegisterRequest.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/ResetPasswordErrorResponse.php b/Model/ResetPasswordErrorResponse.php index 8f69cca1..cddc6c0f 100644 --- a/Model/ResetPasswordErrorResponse.php +++ b/Model/ResetPasswordErrorResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/ResetPasswordRequest.php b/Model/ResetPasswordRequest.php index 4dcc9e28..11d2f5c4 100644 --- a/Model/ResetPasswordRequest.php +++ b/Model/ResetPasswordRequest.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/SearchResponse.php b/Model/SearchResponse.php index 16bd45e4..3005f143 100644 --- a/Model/SearchResponse.php +++ b/Model/SearchResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/SurveyResponse.php b/Model/SurveyResponse.php index 1bc67266..2942e9d8 100644 --- a/Model/SurveyResponse.php +++ b/Model/SurveyResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/TagResponse.php b/Model/TagResponse.php index 1239f880..f2a982e5 100644 --- a/Model/TagResponse.php +++ b/Model/TagResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/UpdateProjectErrorResponse.php b/Model/UpdateProjectErrorResponse.php index a9670c36..f602238b 100644 --- a/Model/UpdateProjectErrorResponse.php +++ b/Model/UpdateProjectErrorResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/UpdateProjectFailureResponse.php b/Model/UpdateProjectFailureResponse.php index bbe8d24b..4096fb63 100644 --- a/Model/UpdateProjectFailureResponse.php +++ b/Model/UpdateProjectFailureResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/UpdateProjectRequest.php b/Model/UpdateProjectRequest.php index b5db1e9b..7cc923b3 100644 --- a/Model/UpdateProjectRequest.php +++ b/Model/UpdateProjectRequest.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/UpdateUserErrorResponse.php b/Model/UpdateUserErrorResponse.php index 5146b215..d9bd484a 100644 --- a/Model/UpdateUserErrorResponse.php +++ b/Model/UpdateUserErrorResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/UpdateUserRequest.php b/Model/UpdateUserRequest.php index a950d66e..265ad51b 100644 --- a/Model/UpdateUserRequest.php +++ b/Model/UpdateUserRequest.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/UpdateUserRequestAllOf.php b/Model/UpdateUserRequestAllOf.php index 3dd01b91..363f4577 100644 --- a/Model/UpdateUserRequestAllOf.php +++ b/Model/UpdateUserRequestAllOf.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/UpgradeTokenRequest.php b/Model/UpgradeTokenRequest.php index 6a466483..ac6fce2a 100644 --- a/Model/UpgradeTokenRequest.php +++ b/Model/UpgradeTokenRequest.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/Model/UploadErrorResponse.php b/Model/UploadErrorResponse.php index 97eae633..5da31167 100644 --- a/Model/UploadErrorResponse.php +++ b/Model/UploadErrorResponse.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/OpenAPIServerBundle.php b/OpenAPIServerBundle.php index 80bdf67c..ef59a99a 100644 --- a/OpenAPIServerBundle.php +++ b/OpenAPIServerBundle.php @@ -16,7 +16,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/README.md b/README.md index 44b1023e..62e3bf55 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ API for the Catrobat Share Platform This [Symfony](https://symfony.com/) bundle is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: -- API version: v1.1.5 +- API version: v1.1.6 - Build package: org.openapitools.codegen.languages.PhpSymfonyServerCodegen For more information, please visit [https://share.catrob.at](https://share.catrob.at) diff --git a/Tests/Controller/ControllerTest.php b/Tests/Controller/ControllerTest.php index d10af8a0..36c6aa9d 100644 --- a/Tests/Controller/ControllerTest.php +++ b/Tests/Controller/ControllerTest.php @@ -15,7 +15,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/autoload.php b/autoload.php index 356d56c8..93dbc85e 100644 --- a/autoload.php +++ b/autoload.php @@ -5,7 +5,7 @@ * * API for the Catrobat Share Platform * - * The version of the OpenAPI document: v1.1.5 + * The version of the OpenAPI document: v1.1.6 * Contact: webmaster@catrobat.org * Generated by: https://github.com/openapitools/openapi-generator.git */ diff --git a/catroweb.yaml b/catroweb.yaml index f373498e..84caba29 100755 --- a/catroweb.yaml +++ b/catroweb.yaml @@ -2,7 +2,7 @@ openapi: 3.0.3 info: title: "Catroweb API" description: "API for the Catrobat Share Platform" - version: "v1.1.5" + version: "v1.1.6" termsOfService: "https://share.catrob.at/pocketcode/termsOfUse" contact: name: "Catrobat"