Skip to content

Commit

Permalink
Update generated client
Browse files Browse the repository at this point in the history
  • Loading branch information
mittwald-machine committed Apr 9, 2024
1 parent 4a8bdba commit 21443a2
Show file tree
Hide file tree
Showing 133 changed files with 10,242 additions and 1,183 deletions.
2 changes: 2 additions & 0 deletions src/Generated/V2/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
use Mittwald\ApiClient\Generated\V2\Clients\Domain\DomainClient;
use Mittwald\ApiClient\Generated\V2\Clients\File\FileClient;
use Mittwald\ApiClient\Generated\V2\Clients\Mail\MailClient;
use Mittwald\ApiClient\Generated\V2\Clients\Marketplace\MarketplaceClient;
use Mittwald\ApiClient\Generated\V2\Clients\Notification\NotificationClient;
use Mittwald\ApiClient\Generated\V2\Clients\PageInsights\PageInsightsClient;
use Mittwald\ApiClient\Generated\V2\Clients\Project\ProjectClient;
Expand Down Expand Up @@ -52,4 +53,5 @@ public function article(): ArticleClient;
public function container(): ContainerClient;
public function pageInsights(): PageInsightsClient;
public function relocation(): RelocationClient;
public function marketplace(): MarketplaceClient;
}
7 changes: 7 additions & 0 deletions src/Generated/V2/ClientImpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@
use Mittwald\ApiClient\Generated\V2\Clients\File\FileClientImpl;
use Mittwald\ApiClient\Generated\V2\Clients\Mail\MailClient;
use Mittwald\ApiClient\Generated\V2\Clients\Mail\MailClientImpl;
use Mittwald\ApiClient\Generated\V2\Clients\Marketplace\MarketplaceClient;
use Mittwald\ApiClient\Generated\V2\Clients\Marketplace\MarketplaceClientImpl;
use Mittwald\ApiClient\Generated\V2\Clients\Notification\NotificationClient;
use Mittwald\ApiClient\Generated\V2\Clients\Notification\NotificationClientImpl;
use Mittwald\ApiClient\Generated\V2\Clients\PageInsights\PageInsightsClient;
Expand Down Expand Up @@ -147,4 +149,9 @@ public function relocation(): RelocationClient
{
return new RelocationClientImpl($this->client);
}

public function marketplace(): MarketplaceClient
{
return new MarketplaceClientImpl($this->client);
}
}
78 changes: 39 additions & 39 deletions src/Generated/V2/Clients/App/AppClient.php

Large diffs are not rendered by default.

78 changes: 39 additions & 39 deletions src/Generated/V2/Clients/App/AppClientImpl.php

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/Generated/V2/Clients/Article/ArticleClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ interface ArticleClient
* @see https://developer.mittwald.de/reference/v2/#tag/Article/operation/article-get-article
* @throws GuzzleException
* @throws UnexpectedResponseException
* @param GetArticle\GetArticleRequest $request An object representing the request for this operation
* @return GetArticle\GetArticleOKResponse The Article object
* @param GetArticleRequest $request An object representing the request for this operation
* @return GetArticleOKResponse The Article object
*/
public function getArticle(GetArticleRequest $request): GetArticleOKResponse;
/**
Expand All @@ -41,8 +41,8 @@ public function getArticle(GetArticleRequest $request): GetArticleOKResponse;
* @see https://developer.mittwald.de/reference/v2/#tag/Article/operation/article-list-articles
* @throws GuzzleException
* @throws UnexpectedResponseException
* @param ListArticles\ListArticlesRequest $request An object representing the request for this operation
* @return ListArticles\ListArticlesOKResponse Object containing the list of Articles
* @param ListArticlesRequest $request An object representing the request for this operation
* @return ListArticlesOKResponse Object containing the list of Articles
*/
public function listArticles(ListArticlesRequest $request): ListArticlesOKResponse;
}
8 changes: 4 additions & 4 deletions src/Generated/V2/Clients/Article/ArticleClientImpl.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ public function __construct(Client $client)
* @see https://developer.mittwald.de/reference/v2/#tag/Article/operation/article-get-article
* @throws GuzzleException
* @throws UnexpectedResponseException
* @param GetArticle\GetArticleRequest $request An object representing the request for this operation
* @return GetArticle\GetArticleOKResponse The Article object
* @param GetArticleRequest $request An object representing the request for this operation
* @return GetArticleOKResponse The Article object
*/
public function getArticle(GetArticleRequest $request): GetArticleOKResponse
{
Expand All @@ -65,8 +65,8 @@ public function getArticle(GetArticleRequest $request): GetArticleOKResponse
* @see https://developer.mittwald.de/reference/v2/#tag/Article/operation/article-list-articles
* @throws GuzzleException
* @throws UnexpectedResponseException
* @param ListArticles\ListArticlesRequest $request An object representing the request for this operation
* @return ListArticles\ListArticlesOKResponse Object containing the list of Articles
* @param ListArticlesRequest $request An object representing the request for this operation
* @return ListArticlesOKResponse Object containing the list of Articles
*/
public function listArticles(ListArticlesRequest $request): ListArticlesOKResponse
{
Expand Down
36 changes: 18 additions & 18 deletions src/Generated/V2/Clients/Backup/BackupClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ interface BackupClient
* @see https://developer.mittwald.de/reference/v2/#tag/Backup/operation/backup-create-project-backup
* @throws GuzzleException
* @throws UnexpectedResponseException
* @param CreateProjectBackup\CreateProjectBackupRequest $request An object representing the request for this operation
* @return CreateProjectBackup\CreateProjectBackupCreatedResponse Created
* @param CreateProjectBackupRequest $request An object representing the request for this operation
* @return CreateProjectBackupCreatedResponse Created
*/
public function createProjectBackup(CreateProjectBackupRequest $request): CreateProjectBackupCreatedResponse;
/**
Expand All @@ -56,7 +56,7 @@ public function createProjectBackup(CreateProjectBackupRequest $request): Create
* @see https://developer.mittwald.de/reference/v2/#tag/Backup/operation/backup-create-project-backup-export
* @throws GuzzleException
* @throws UnexpectedResponseException
* @param CreateProjectBackupExport\CreateProjectBackupExportRequest $request An object representing the request for this operation
* @param CreateProjectBackupExportRequest $request An object representing the request for this operation
* @return EmptyResponse NoContent
*/
public function createProjectBackupExport(CreateProjectBackupExportRequest $request): EmptyResponse;
Expand All @@ -66,8 +66,8 @@ public function createProjectBackupExport(CreateProjectBackupExportRequest $requ
* @see https://developer.mittwald.de/reference/v2/#tag/Backup/operation/backup-create-project-backup-schedule
* @throws GuzzleException
* @throws UnexpectedResponseException
* @param CreateProjectBackupSchedule\CreateProjectBackupScheduleRequest $request An object representing the request for this operation
* @return CreateProjectBackupSchedule\CreateProjectBackupScheduleCreatedResponse Created
* @param CreateProjectBackupScheduleRequest $request An object representing the request for this operation
* @return CreateProjectBackupScheduleCreatedResponse Created
*/
public function createProjectBackupSchedule(CreateProjectBackupScheduleRequest $request): CreateProjectBackupScheduleCreatedResponse;
/**
Expand All @@ -76,7 +76,7 @@ public function createProjectBackupSchedule(CreateProjectBackupScheduleRequest $
* @see https://developer.mittwald.de/reference/v2/#tag/Backup/operation/backup-delete-project-backup
* @throws GuzzleException
* @throws UnexpectedResponseException
* @param DeleteProjectBackup\DeleteProjectBackupRequest $request An object representing the request for this operation
* @param DeleteProjectBackupRequest $request An object representing the request for this operation
* @return EmptyResponse NoContent
*/
public function deleteProjectBackup(DeleteProjectBackupRequest $request): EmptyResponse;
Expand All @@ -86,7 +86,7 @@ public function deleteProjectBackup(DeleteProjectBackupRequest $request): EmptyR
* @see https://developer.mittwald.de/reference/v2/#tag/Backup/operation/backup-delete-project-backup-export
* @throws GuzzleException
* @throws UnexpectedResponseException
* @param DeleteProjectBackupExport\DeleteProjectBackupExportRequest $request An object representing the request for this operation
* @param DeleteProjectBackupExportRequest $request An object representing the request for this operation
* @return EmptyResponse NoContent
*/
public function deleteProjectBackupExport(DeleteProjectBackupExportRequest $request): EmptyResponse;
Expand All @@ -96,7 +96,7 @@ public function deleteProjectBackupExport(DeleteProjectBackupExportRequest $requ
* @see https://developer.mittwald.de/reference/v2/#tag/Backup/operation/backup-delete-project-backup-schedule
* @throws GuzzleException
* @throws UnexpectedResponseException
* @param DeleteProjectBackupSchedule\DeleteProjectBackupScheduleRequest $request An object representing the request for this operation
* @param DeleteProjectBackupScheduleRequest $request An object representing the request for this operation
* @return EmptyResponse NoContent
*/
public function deleteProjectBackupSchedule(DeleteProjectBackupScheduleRequest $request): EmptyResponse;
Expand All @@ -106,8 +106,8 @@ public function deleteProjectBackupSchedule(DeleteProjectBackupScheduleRequest $
* @see https://developer.mittwald.de/reference/v2/#tag/Backup/operation/backup-get-project-backup
* @throws GuzzleException
* @throws UnexpectedResponseException
* @param GetProjectBackup\GetProjectBackupRequest $request An object representing the request for this operation
* @return GetProjectBackup\GetProjectBackupOKResponse OK
* @param GetProjectBackupRequest $request An object representing the request for this operation
* @return GetProjectBackupOKResponse OK
*/
public function getProjectBackup(GetProjectBackupRequest $request): GetProjectBackupOKResponse;
/**
Expand All @@ -116,8 +116,8 @@ public function getProjectBackup(GetProjectBackupRequest $request): GetProjectBa
* @see https://developer.mittwald.de/reference/v2/#tag/Backup/operation/backup-get-project-backup-schedule
* @throws GuzzleException
* @throws UnexpectedResponseException
* @param GetProjectBackupSchedule\GetProjectBackupScheduleRequest $request An object representing the request for this operation
* @return GetProjectBackupSchedule\GetProjectBackupScheduleOKResponse OK
* @param GetProjectBackupScheduleRequest $request An object representing the request for this operation
* @return GetProjectBackupScheduleOKResponse OK
*/
public function getProjectBackupSchedule(GetProjectBackupScheduleRequest $request): GetProjectBackupScheduleOKResponse;
/**
Expand All @@ -126,8 +126,8 @@ public function getProjectBackupSchedule(GetProjectBackupScheduleRequest $reques
* @see https://developer.mittwald.de/reference/v2/#tag/Backup/operation/backup-list-project-backup-schedules
* @throws GuzzleException
* @throws UnexpectedResponseException
* @param ListProjectBackupSchedules\ListProjectBackupSchedulesRequest $request An object representing the request for this operation
* @return ListProjectBackupSchedules\ListProjectBackupSchedulesOKResponse OK
* @param ListProjectBackupSchedulesRequest $request An object representing the request for this operation
* @return ListProjectBackupSchedulesOKResponse OK
*/
public function listProjectBackupSchedules(ListProjectBackupSchedulesRequest $request): ListProjectBackupSchedulesOKResponse;
/**
Expand All @@ -136,8 +136,8 @@ public function listProjectBackupSchedules(ListProjectBackupSchedulesRequest $re
* @see https://developer.mittwald.de/reference/v2/#tag/Backup/operation/backup-list-project-backups
* @throws GuzzleException
* @throws UnexpectedResponseException
* @param ListProjectBackups\ListProjectBackupsRequest $request An object representing the request for this operation
* @return ListProjectBackups\ListProjectBackupsOKResponse OK
* @param ListProjectBackupsRequest $request An object representing the request for this operation
* @return ListProjectBackupsOKResponse OK
*/
public function listProjectBackups(ListProjectBackupsRequest $request): ListProjectBackupsOKResponse;
/**
Expand All @@ -146,7 +146,7 @@ public function listProjectBackups(ListProjectBackupsRequest $request): ListProj
* @see https://developer.mittwald.de/reference/v2/#tag/Backup/operation/backup-update-project-backup-description
* @throws GuzzleException
* @throws UnexpectedResponseException
* @param UpdateProjectBackupDescription\UpdateProjectBackupDescriptionRequest $request An object representing the request for this operation
* @param UpdateProjectBackupDescriptionRequest $request An object representing the request for this operation
* @return EmptyResponse NoContent
*/
public function updateProjectBackupDescription(UpdateProjectBackupDescriptionRequest $request): EmptyResponse;
Expand All @@ -156,7 +156,7 @@ public function updateProjectBackupDescription(UpdateProjectBackupDescriptionReq
* @see https://developer.mittwald.de/reference/v2/#tag/Backup/operation/backup-update-project-backup-schedule
* @throws GuzzleException
* @throws UnexpectedResponseException
* @param UpdateProjectBackupSchedule\UpdateProjectBackupScheduleRequest $request An object representing the request for this operation
* @param UpdateProjectBackupScheduleRequest $request An object representing the request for this operation
* @return EmptyResponse NoContent
*/
public function updateProjectBackupSchedule(UpdateProjectBackupScheduleRequest $request): EmptyResponse;
Expand Down
Loading

0 comments on commit 21443a2

Please sign in to comment.