-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #148 from Catrobat/create-pull-request/patch-17248…
…56403 Bump autogenerated OpenAPI code
- Loading branch information
Showing
105 changed files
with
257 additions
and
276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
* | ||
* API for the Catrobat Share Platform | ||
* | ||
* The version of the OpenAPI document: v1.4.4 | ||
* The version of the OpenAPI document: v1.5.2 | ||
* Contact: [email protected] | ||
* Generated by: https://github.com/openapitools/openapi-generator.git | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
* | ||
* API for the Catrobat Share Platform | ||
* | ||
* The version of the OpenAPI document: v1.4.4 | ||
* The version of the OpenAPI document: v1.5.2 | ||
* Contact: [email protected] | ||
* Generated by: https://github.com/openapitools/openapi-generator.git | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
* | ||
* API for the Catrobat Share Platform | ||
* | ||
* The version of the OpenAPI document: v1.4.4 | ||
* The version of the OpenAPI document: v1.5.2 | ||
* Contact: [email protected] | ||
* Generated by: https://github.com/openapitools/openapi-generator.git | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
* | ||
* API for the Catrobat Share Platform | ||
* | ||
* The version of the OpenAPI document: v1.4.4 | ||
* The version of the OpenAPI document: v1.5.2 | ||
* Contact: [email protected] | ||
* Generated by: https://github.com/openapitools/openapi-generator.git | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
* | ||
* API for the Catrobat Share Platform | ||
* | ||
* The version of the OpenAPI document: v1.4.4 | ||
* The version of the OpenAPI document: v1.5.2 | ||
* Contact: [email protected] | ||
* Generated by: https://github.com/openapitools/openapi-generator.git | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
* | ||
* API for the Catrobat Share Platform | ||
* | ||
* The version of the OpenAPI document: v1.4.4 | ||
* The version of the OpenAPI document: v1.5.2 | ||
* Contact: [email protected] | ||
* Generated by: https://github.com/openapitools/openapi-generator.git | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
* | ||
* API for the Catrobat Share Platform | ||
* | ||
* The version of the OpenAPI document: v1.4.4 | ||
* The version of the OpenAPI document: v1.5.2 | ||
* Contact: [email protected] | ||
* Generated by: https://github.com/openapitools/openapi-generator.git | ||
*/ | ||
|
@@ -29,7 +29,7 @@ | |
|
||
namespace OpenAPI\Server\Api; | ||
|
||
use OpenAPI\Server\Model\StudioUpdateRequest; | ||
use Symfony\Component\HttpFoundation\File\UploadedFile; | ||
|
||
/** | ||
* StudioApiInterface Interface Doc Comment. | ||
|
@@ -54,16 +54,24 @@ public function setBearerAuth(?string $value): void; | |
* | ||
* Update a Studio | ||
* | ||
* @param string $id (required) | ||
* @param StudioUpdateRequest $studio_update_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 () | ||
* @param string $id (required) | ||
* @param string $accept_language (optional, default to 'en') | ||
* @param string|null $name The name of the studio (optional) | ||
* @param string $description A small description about the Studio (optional, default to '') | ||
* @param bool $is_public This flag sets the studios' visibility to public or private (optional, default to true) | ||
* @param bool $enable_comments This flag enables or disabled the possibility to add comments to the studio (optional, default to true) | ||
* @param UploadedFile|null $image_file (optional) | ||
* @param int &$responseCode The HTTP Response Code | ||
* @param array $responseHeaders Additional HTTP headers to return with the response () | ||
*/ | ||
public function studioIdPut( | ||
string $id, | ||
StudioUpdateRequest $studio_update_request, | ||
string $accept_language, | ||
?string $name, | ||
string $description, | ||
bool $is_public, | ||
bool $enable_comments, | ||
?UploadedFile $image_file, | ||
int &$responseCode, | ||
array &$responseHeaders | ||
): array|object|null; | ||
|
@@ -73,14 +81,22 @@ public function studioIdPut( | |
* | ||
* Create a new Studio | ||
* | ||
* @param StudioUpdateRequest $studio_update_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 () | ||
* @param string $accept_language (optional, default to 'en') | ||
* @param string|null $name The name of the studio (optional) | ||
* @param string $description A small description about the Studio (optional, default to '') | ||
* @param bool $is_public This flag sets the studios' visibility to public or private (optional, default to true) | ||
* @param bool $enable_comments This flag enables or disabled the possibility to add comments to the studio (optional, default to true) | ||
* @param UploadedFile|null $image_file (optional) | ||
* @param int &$responseCode The HTTP Response Code | ||
* @param array $responseHeaders Additional HTTP headers to return with the response () | ||
*/ | ||
public function studioPost( | ||
StudioUpdateRequest $studio_update_request, | ||
string $accept_language, | ||
?string $name, | ||
string $description, | ||
bool $is_public, | ||
bool $enable_comments, | ||
?UploadedFile $image_file, | ||
int &$responseCode, | ||
array &$responseHeaders | ||
): array|object|null; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
* | ||
* API for the Catrobat Share Platform | ||
* | ||
* The version of the OpenAPI document: v1.4.4 | ||
* The version of the OpenAPI document: v1.5.2 | ||
* Contact: [email protected] | ||
* Generated by: https://github.com/openapitools/openapi-generator.git | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
* | ||
* API for the Catrobat Share Platform | ||
* | ||
* The version of the OpenAPI document: v1.4.4 | ||
* The version of the OpenAPI document: v1.5.2 | ||
* Contact: [email protected] | ||
* Generated by: https://github.com/openapitools/openapi-generator.git | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
* | ||
* API for the Catrobat Share Platform | ||
* | ||
* The version of the OpenAPI document: v1.4.4 | ||
* The version of the OpenAPI document: v1.5.2 | ||
* Contact: [email protected] | ||
* Generated by: https://github.com/openapitools/openapi-generator.git | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
* | ||
* API for the Catrobat Share Platform | ||
* | ||
* The version of the OpenAPI document: v1.4.4 | ||
* The version of the OpenAPI document: v1.5.2 | ||
* Contact: [email protected] | ||
* Generated by: https://github.com/openapitools/openapi-generator.git | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
* | ||
* API for the Catrobat Share Platform | ||
* | ||
* The version of the OpenAPI document: v1.4.4 | ||
* The version of the OpenAPI document: v1.5.2 | ||
* Contact: [email protected] | ||
* Generated by: https://github.com/openapitools/openapi-generator.git | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
* | ||
* API for the Catrobat Share Platform | ||
* | ||
* The version of the OpenAPI document: v1.4.4 | ||
* The version of the OpenAPI document: v1.5.2 | ||
* Contact: [email protected] | ||
* Generated by: https://github.com/openapitools/openapi-generator.git | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
* | ||
* API for the Catrobat Share Platform | ||
* | ||
* The version of the OpenAPI document: v1.4.4 | ||
* The version of the OpenAPI document: v1.5.2 | ||
* Contact: [email protected] | ||
* Generated by: https://github.com/openapitools/openapi-generator.git | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
* | ||
* API for the Catrobat Share Platform | ||
* | ||
* The version of the OpenAPI document: v1.4.4 | ||
* The version of the OpenAPI document: v1.5.2 | ||
* Contact: [email protected] | ||
* Generated by: https://github.com/openapitools/openapi-generator.git | ||
*/ | ||
|
Oops, something went wrong.