@mittwald/api-client 3.1.14 → 3.1.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1090,20 +1090,6 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1090
1090
  projectId: string;
1091
1091
  txtRecord: string;
1092
1092
  }>;
1093
- /** Get the latest screenshot's FileReference belonging to a Domain. */
1094
- getLatestScreenshot: (conf: {
1095
- data: {
1096
- domainName: string;
1097
- path: string;
1098
- };
1099
- domainId: string;
1100
- headers?: {
1101
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1102
- "x-access-token"?: string | undefined;
1103
- } | undefined;
1104
- }) => import("@mittwald/react-use-promise/types").AsyncResource<{
1105
- reference?: string | undefined;
1106
- }>;
1107
1093
  /** List the DomainOwnerships of a project. */
1108
1094
  listDomainOwnerships: (conf: {
1109
1095
  projectId: string;
@@ -1173,6 +1159,20 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1173
1159
  projectId: string;
1174
1160
  tls: import("./types.js").MittwaldAPIV2.Components.Schemas.IngressTlsAcme | import("./types.js").MittwaldAPIV2.Components.Schemas.IngressTlsCertificate;
1175
1161
  }>;
1162
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
1163
+ getLatestScreenshot: (conf: {
1164
+ data: {
1165
+ domainName: string;
1166
+ path: string;
1167
+ };
1168
+ domainId: string;
1169
+ headers?: {
1170
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1171
+ "x-access-token"?: string | undefined;
1172
+ } | undefined;
1173
+ }) => import("@mittwald/react-use-promise/types").AsyncResource<{
1174
+ reference?: string | undefined;
1175
+ }>;
1176
1176
  };
1177
1177
  declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1178
1178
  /** Get a File's meta. */
@@ -185,8 +185,6 @@ const buildDomainApi = (baseClient) => ({
185
185
  getDomain: new react_1.ApiCallAsyncResourceFactory(descriptors.domainGetDomain, baseClient.domain.getDomain).getApiResource,
186
186
  /** Get a DomainOwnership. */
187
187
  getDomainOwnership: new react_1.ApiCallAsyncResourceFactory(descriptors.domainGetDomainOwnership, baseClient.domain.getDomainOwnership).getApiResource,
188
- /** Get the latest screenshot's FileReference belonging to a Domain. */
189
- getLatestScreenshot: new react_1.ApiCallAsyncResourceFactory(descriptors.domainGetLatestScreenshot, baseClient.domain.getLatestScreenshot).getApiResource,
190
188
  /** List the DomainOwnerships of a project. */
191
189
  listDomainOwnerships: new react_1.ApiCallAsyncResourceFactory(descriptors.domainListDomainOwnerships, baseClient.domain.listDomainOwnerships).getApiResource,
192
190
  /** List Domains belonging to a Project. */
@@ -199,6 +197,8 @@ const buildDomainApi = (baseClient) => ({
199
197
  ingressListIngresses: new react_1.ApiCallAsyncResourceFactory(descriptors.ingressListIngresses, baseClient.domain.ingressListIngresses).getApiResource,
200
198
  /** Get an Ingress. */
201
199
  ingressGetIngress: new react_1.ApiCallAsyncResourceFactory(descriptors.ingressGetIngress, baseClient.domain.ingressGetIngress).getApiResource,
200
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
201
+ getLatestScreenshot: new react_1.ApiCallAsyncResourceFactory(descriptors.domainGetLatestScreenshot, baseClient.domain.getLatestScreenshot).getApiResource,
202
202
  });
203
203
  const buildFileApi = (baseClient) => ({
204
204
  /** Get a File's meta. */
@@ -5356,41 +5356,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5356
5356
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5357
5357
  [x: string]: unknown;
5358
5358
  }, 404, "application/json">>>;
5359
- /** Get the latest screenshot's FileReference belonging to a Domain. */
5360
- getLatestScreenshot: (request: {
5361
- data: {
5362
- domainName: string;
5363
- path: string;
5364
- };
5365
- domainId: string;
5366
- headers?: {
5367
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5368
- "x-access-token"?: string | undefined;
5369
- } | undefined;
5370
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5371
- data: {
5372
- domainName: string;
5373
- path: string;
5374
- };
5375
- } & {
5376
- pathParameters: {
5377
- domainId: string;
5378
- };
5379
- } & {
5380
- headers?: Partial<{
5381
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5382
- }> | undefined;
5383
- } & {
5384
- headers: {
5385
- "x-access-token"?: string | undefined;
5386
- } & Partial<{
5387
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5388
- }>;
5389
- }, import("@mittwald/api-client-commons").Response<{
5390
- reference?: string | undefined;
5391
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5392
- [x: string]: unknown;
5393
- }, 404, "application/json">>>;
5394
5359
  /** List the DomainOwnerships of a project. */
5395
5360
  listDomainOwnerships: (request: {
5396
5361
  projectId: string;
@@ -5870,6 +5835,41 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5870
5835
  }, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5871
5836
  [x: string]: unknown;
5872
5837
  }, 404, "application/json">>>;
5838
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
5839
+ getLatestScreenshot: (request: {
5840
+ data: {
5841
+ domainName: string;
5842
+ path: string;
5843
+ };
5844
+ domainId: string;
5845
+ headers?: {
5846
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5847
+ "x-access-token"?: string | undefined;
5848
+ } | undefined;
5849
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5850
+ data: {
5851
+ domainName: string;
5852
+ path: string;
5853
+ };
5854
+ } & {
5855
+ pathParameters: {
5856
+ domainId: string;
5857
+ };
5858
+ } & {
5859
+ headers?: Partial<{
5860
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5861
+ }> | undefined;
5862
+ } & {
5863
+ headers: {
5864
+ "x-access-token"?: string | undefined;
5865
+ } & Partial<{
5866
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5867
+ }>;
5868
+ }, import("@mittwald/api-client-commons").Response<{
5869
+ reference?: string | undefined;
5870
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5871
+ [x: string]: unknown;
5872
+ }, 404, "application/json">>>;
5873
5873
  };
5874
5874
  /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
5875
5875
  readonly file: {
@@ -369,8 +369,6 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
369
369
  deleteDomain: this.requestFunctionFactory(descriptors.domainDeleteDomain),
370
370
  /** Get a DomainOwnership. */
371
371
  getDomainOwnership: this.requestFunctionFactory(descriptors.domainGetDomainOwnership),
372
- /** Get the latest screenshot's FileReference belonging to a Domain. */
373
- getLatestScreenshot: this.requestFunctionFactory(descriptors.domainGetLatestScreenshot),
374
372
  /** List the DomainOwnerships of a project. */
375
373
  listDomainOwnerships: this.requestFunctionFactory(descriptors.domainListDomainOwnerships),
376
374
  /** List Domains belonging to a Project. */
@@ -403,6 +401,8 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
403
401
  ingressRequestIngressAcmeCertificateIssuance: this.requestFunctionFactory(descriptors.ingressRequestIngressAcmeCertificateIssuance),
404
402
  /** Update the tls settings of an Ingress. */
405
403
  ingressUpdateIngressTls: this.requestFunctionFactory(descriptors.ingressUpdateIngressTls),
404
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
405
+ getLatestScreenshot: this.requestFunctionFactory(descriptors.domainGetLatestScreenshot),
406
406
  };
407
407
  /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
408
408
  this.file = {
@@ -277,8 +277,6 @@ export declare const domainGetDomain: OpenAPIOperation<RequestType<Simplify<null
277
277
  export declare const domainDeleteDomain: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
278
278
  /** Get a DomainOwnership. */
279
279
  export declare const domainGetDomainOwnership: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
280
- /** Get the latest screenshot's FileReference belonging to a Domain. */
281
- export declare const domainGetLatestScreenshot: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
282
280
  /** List the DomainOwnerships of a project. */
283
281
  export declare const domainListDomainOwnerships: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
284
282
  /** List Domains belonging to a Project. */
@@ -583,6 +581,8 @@ export declare const userVerifyEmail: OpenAPIOperation<RequestType<Simplify<Mitt
583
581
  export declare const userVerifyPhoneNumber: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
584
582
  /** Verify your registration. */
585
583
  export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
584
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
585
+ export declare const domainGetLatestScreenshot: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
586
586
  /** Get a FileUploadToken's rules. */
587
587
  export declare const fileGetFileUploadTokenRules: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
588
588
  /** Get a FileUploadType's rules. */
@@ -2,10 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.conversationCreateConversation = exports.conversationListConversations = exports.contractListContracts = exports.contractGetNextTerminationDateForItem = exports.contractGetDetailOfContract = exports.contractGetDetailOfContractItem = exports.contractGetDetailOfContractByServer = exports.contractGetDetailOfContractByProject = exports.contractGetDetailOfContractByDomain = exports.contractGetBaseItemOfContract = exports.contractCancelContractTermination = exports.contractTerminateContract = exports.contractCancelContractTariffChange = exports.contractCancelContractItemTermination = exports.contractTerminateContractItem = exports.backupUpdateProjectBackupDescription = exports.backupDeleteProjectBackup = exports.backupGetProjectBackup = exports.backupUpdateProjectBackupSchedule = exports.backupDeleteProjectBackupSchedule = exports.backupGetProjectBackupSchedule = exports.backupCreateProjectBackup = exports.backupListProjectBackups = exports.backupCreateProjectBackupSchedule = exports.backupListProjectBackupSchedules = exports.backupDeleteProjectBackupExport = exports.backupCreateProjectBackupExport = exports.articleListArticles = exports.articleGetArticle = exports.appUnlinkDatabase = exports.appSetDatabaseUsers = exports.appRetrieveStatus = exports.appRequestAppinstallationCopy = exports.appListUpdateCandidatesForAppversion = exports.appListSystemsoftwareversions = exports.appListSystemsoftwares = exports.appListAppversions = exports.appListApps = exports.appRequestAppinstallation = exports.appListAppinstallations = exports.appLinkDatabase = exports.appGetSystemsoftwareversion = exports.appGetSystemsoftware = exports.appGetMissingDependenciesForAppinstallation = exports.appGetAppversion = exports.appPatchAppinstallation = exports.appUninstallAppinstallation = exports.appGetAppinstallation = exports.appGetApp = exports.appExecuteAction = void 0;
4
4
  exports.databaseCreateMysqlDatabase = exports.databaseListMysqlDatabases = exports.customerResendCustomerInviteMail = exports.customerRemoveAvatar = exports.customerRequestAvatarUpload = exports.customerListMembershipsForCustomer = exports.customerListInvitesForCustomer = exports.customerListCustomerMemberships = exports.customerListCustomerInvites = exports.customerLeaveCustomer = exports.customerIsCustomerLegallyCompetent = exports.customerGetCustomerTokenInvite = exports.customerDeleteCustomer = exports.customerUpdateCustomer = exports.customerGetCustomer = exports.customerUpdateCustomerMembership = exports.customerDeleteCustomerMembership = exports.customerGetCustomerMembership = exports.customerDeleteCustomerInvite = exports.customerGetCustomerInvite = exports.customerDeleteCategory = exports.customerUpdateCategory = exports.customerGetCustomerCategory = exports.customerDeclineCustomerInvite = exports.customerCreateCustomer = exports.customerListCustomers = exports.customerCreateCustomerInvite = exports.customerCreateCategory = exports.customerListOfCustomerCategories = exports.customerAcceptCustomerInvite = exports.cronjobUpdateCronjobAppId = exports.cronjobGetExecution = exports.cronjobUpdateCronjob = exports.cronjobDeleteCronjob = exports.cronjobGetCronjob = exports.cronjobCreateExecution = exports.cronjobListExecutions = exports.cronjobCreateCronjob = exports.cronjobListCronjobs = exports.cronjobAbortExecution = exports.conversationUpdateMessage = exports.conversationSetConversationStatus = exports.conversationRequestFileUpload = exports.conversationListCategories = exports.conversationGetFileAccessToken = exports.conversationUpdateConversation = exports.conversationGetConversation = exports.conversationGetCategory = exports.conversationCreateMessage = exports.conversationListMessagesByConversation = void 0;
5
- exports.fileGetFile = exports.fileGetFileMeta = exports.fileCreateFile = exports.domainVerifyDomainOwnership = exports.domainUpdateDomainProjectId = exports.domainUpdateDomainContact = exports.domainUpdateDomainAuthCode = exports.domainResendDomainEmail = exports.domainListTlds = exports.domainListTldContactSchemas = exports.domainListDomains = exports.domainListDomainOwnerships = exports.domainGetLatestScreenshot = exports.domainGetDomainOwnership = exports.domainDeleteDomain = exports.domainGetDomain = exports.domainUpdateDomainNameservers = exports.domainCreateDomainAuthCode = exports.domainCreateDomainAuthCode2 = exports.domainCheckDomainRegistrability = exports.domainAbortDomainDeclaration = exports.dnsUpdateRecordSet = exports.dnsSetRecordSetManaged = exports.dnsListDnsZones = exports.dnsDeleteDnsZone = exports.dnsGetDnsZone = exports.dnsCreateDnsZone = exports.newsletterSubscribeUser = exports.databaseUpdateRedisDatabaseDescription = exports.databaseUpdateRedisDatabaseConfiguration = exports.databaseUpdateMysqlUserPassword = exports.databaseUpdateMysqlDatabaseDescription = exports.databaseUpdateMysqlDatabaseDefaultCharset = exports.databaseListRedisVersions = exports.databaseListMysqlVersions = exports.databaseListMysqlCharsets = exports.databaseGetMysqlUserPhpMyAdminUrl = exports.databaseEnableMysqlUser = exports.databaseDisableMysqlUser = exports.databaseDeleteRedisDatabase = exports.databaseGetRedisDatabase = exports.databaseDeleteMysqlUser = exports.databaseUpdateMysqlUser = exports.databaseGetMysqlUser = exports.databaseDeleteMysqlDatabase = exports.databaseGetMysqlDatabase = exports.databaseCreateRedisDatabase = exports.databaseListRedisDatabases = exports.databaseCreateMysqlUser = exports.databaseListMysqlUsers = void 0;
6
- exports.projectDeclineProjectInvite = exports.projectCreateProject = exports.projectCreateProjectInvite = exports.projectAcceptProjectInvite = exports.passwordValidationGetPasswordPolicy = exports.pageinsightsListPerformanceDataForProject = exports.pageinsightsGetPerformanceData = exports.orderPreviewTariffChange = exports.orderPreviewOrder = exports.orderListProjectOrders = exports.orderListCustomerOrders = exports.orderGetOrder = exports.orderCreateTariffChange = exports.orderCreateOrder = exports.notificationsReadNotification = exports.notificationsReadAllNotifications = exports.notificationsListNotifications = exports.notificationsCountUnreadNotifications = exports.newsletterUnsubscribeUser = exports.newsletterGetInfo = exports.mailUpdateProjectMailSetting = exports.mailUpdateMailAddressSpamProtection = exports.mailUpdateMailAddressQuota = exports.mailUpdateMailAddressPassword = exports.mailUpdateMailAddressForwardAddresses = exports.mailUpdateMailAddressCatchAll = exports.mailUpdateMailAddressAutoresponder = exports.mailUpdateMailAddressAddress = exports.mailUpdateDeliveryBoxPassword = exports.mailUpdateDeliveryBoxDescription = exports.mailListProjectMailSettings = exports.mailDeleteMailAddress = exports.mailGetMailAddress = exports.mailDeleteDeliveryBox = exports.mailGetDeliveryBox = exports.mailCreateMailAddress = exports.mailListMailAddresses = exports.mailCreateDeliverybox = exports.mailListDeliveryBoxes = exports.invoiceListCustomerInvoices = exports.invoiceUpdateInvoiceSettings = exports.invoiceGetDetailOfInvoiceSettings = exports.invoiceDetailOfInvoice = exports.ingressUpdateIngressTls = exports.ingressRequestIngressAcmeCertificateIssuance = exports.ingressUpdateIngressPaths = exports.ingressDeleteIngress = exports.ingressGetIngress = exports.ingressCreateIngress = exports.ingressListIngresses = void 0;
7
- exports.userCheckToken = exports.userChangePassword = exports.userChangeEmail = exports.userGetOwnEmail = exports.userAuthenticate = exports.userAuthenticateMfa = exports.userRemovePhoneNumber = exports.userAddPhoneNumber = exports.sshUserUpdateSshUser = exports.sshUserDeleteSshUser = exports.sshUserGetSshUser = exports.sshUserCreateSshUser = exports.sshUserListSshUsers = exports.sftpUserUpdateSftpUser = exports.sftpUserDeleteSftpUser = exports.sftpUserGetSftpUser = exports.sftpUserCreateSftpUser = exports.sftpUserListSftpUsers = exports.servicetokenAuthenticateService = exports.relocationCreateRelocation = exports.relocationCreateLegacyTariffChange = exports.projectUpdateServerDescription = exports.projectUpdateProjectDescription = exports.projectResendProjectInviteMail = exports.projectListServers = exports.projectListProjects = exports.projectListProjectMemberships = exports.projectListProjectInvites = exports.projectListMembershipsForProject = exports.projectListInvitesForProject = exports.projectLeaveProject = exports.projectGetServer = exports.projectGetSelfMembershipForProject = exports.projectGetProjectTokenInvite = exports.projectFileSystemListFiles = exports.projectFileSystemGetJwt = exports.projectFileSystemGetFileContent = exports.projectFileSystemGetDiskUsage = exports.projectFileSystemGetDirectories = exports.projectDeleteServerAvatar = exports.projectRequestServerAvatarUpload = exports.projectDeleteProject = exports.projectGetProject = exports.projectUpdateProjectMembership = exports.projectDeleteProjectMembership = exports.projectGetProjectMembership = exports.projectDeleteProjectInvite = exports.projectGetProjectInvite = exports.projectDeleteProjectAvatar = exports.projectRequestProjectAvatarUpload = void 0;
8
- exports.fileGetFileUploadTypeRules = exports.fileGetFileUploadTokenRules = exports.userVerifyRegistration = exports.userVerifyPhoneNumber = exports.userVerifyEmail = exports.userSupportCodeRequest = exports.userResendVerificationEmail = exports.userRemoveAvatar = exports.userRequestAvatarUpload = exports.userRegister = exports.userLogout = exports.userTerminateAllSessions = exports.userListSessions = exports.userListFeedback = exports.userInitPasswordReset = exports.userInitMfa = exports.userUpdatePersonalInformation = exports.userGetUser = exports.userTerminateSession = exports.userGetSession = exports.userUpdatePersonalizedSettings = exports.userGetPersonalizedSettings = exports.userGetPasswordUpdatedAt = exports.userUpdateAccount = exports.userGetOwnAccount = exports.userDeleteUser = exports.userDeleteSshKey = exports.userEditSshKey = exports.userGetSshKey = exports.userDeleteApiToken = exports.userEditApiToken = exports.userGetApiToken = exports.userCreateSshKey = exports.userListSshKeys = exports.userCreateFeedback = exports.userCreateApiToken = exports.userListApiTokens = exports.userConfirmPasswordReset = exports.userDisableMfa = exports.userConfirmMfa = exports.userResetRecoverycodes = exports.userGetMfaStatus = void 0;
5
+ exports.ingressListIngresses = exports.fileGetFile = exports.fileGetFileMeta = exports.fileCreateFile = exports.domainVerifyDomainOwnership = exports.domainUpdateDomainProjectId = exports.domainUpdateDomainContact = exports.domainUpdateDomainAuthCode = exports.domainResendDomainEmail = exports.domainListTlds = exports.domainListTldContactSchemas = exports.domainListDomains = exports.domainListDomainOwnerships = exports.domainGetDomainOwnership = exports.domainDeleteDomain = exports.domainGetDomain = exports.domainUpdateDomainNameservers = exports.domainCreateDomainAuthCode = exports.domainCreateDomainAuthCode2 = exports.domainCheckDomainRegistrability = exports.domainAbortDomainDeclaration = exports.dnsUpdateRecordSet = exports.dnsSetRecordSetManaged = exports.dnsListDnsZones = exports.dnsDeleteDnsZone = exports.dnsGetDnsZone = exports.dnsCreateDnsZone = exports.newsletterSubscribeUser = exports.databaseUpdateRedisDatabaseDescription = exports.databaseUpdateRedisDatabaseConfiguration = exports.databaseUpdateMysqlUserPassword = exports.databaseUpdateMysqlDatabaseDescription = exports.databaseUpdateMysqlDatabaseDefaultCharset = exports.databaseListRedisVersions = exports.databaseListMysqlVersions = exports.databaseListMysqlCharsets = exports.databaseGetMysqlUserPhpMyAdminUrl = exports.databaseEnableMysqlUser = exports.databaseDisableMysqlUser = exports.databaseDeleteRedisDatabase = exports.databaseGetRedisDatabase = exports.databaseDeleteMysqlUser = exports.databaseUpdateMysqlUser = exports.databaseGetMysqlUser = exports.databaseDeleteMysqlDatabase = exports.databaseGetMysqlDatabase = exports.databaseCreateRedisDatabase = exports.databaseListRedisDatabases = exports.databaseCreateMysqlUser = exports.databaseListMysqlUsers = void 0;
6
+ exports.projectRequestProjectAvatarUpload = exports.projectDeclineProjectInvite = exports.projectCreateProject = exports.projectCreateProjectInvite = exports.projectAcceptProjectInvite = exports.passwordValidationGetPasswordPolicy = exports.pageinsightsListPerformanceDataForProject = exports.pageinsightsGetPerformanceData = exports.orderPreviewTariffChange = exports.orderPreviewOrder = exports.orderListProjectOrders = exports.orderListCustomerOrders = exports.orderGetOrder = exports.orderCreateTariffChange = exports.orderCreateOrder = exports.notificationsReadNotification = exports.notificationsReadAllNotifications = exports.notificationsListNotifications = exports.notificationsCountUnreadNotifications = exports.newsletterUnsubscribeUser = exports.newsletterGetInfo = exports.mailUpdateProjectMailSetting = exports.mailUpdateMailAddressSpamProtection = exports.mailUpdateMailAddressQuota = exports.mailUpdateMailAddressPassword = exports.mailUpdateMailAddressForwardAddresses = exports.mailUpdateMailAddressCatchAll = exports.mailUpdateMailAddressAutoresponder = exports.mailUpdateMailAddressAddress = exports.mailUpdateDeliveryBoxPassword = exports.mailUpdateDeliveryBoxDescription = exports.mailListProjectMailSettings = exports.mailDeleteMailAddress = exports.mailGetMailAddress = exports.mailDeleteDeliveryBox = exports.mailGetDeliveryBox = exports.mailCreateMailAddress = exports.mailListMailAddresses = exports.mailCreateDeliverybox = exports.mailListDeliveryBoxes = exports.invoiceListCustomerInvoices = exports.invoiceUpdateInvoiceSettings = exports.invoiceGetDetailOfInvoiceSettings = exports.invoiceDetailOfInvoice = exports.ingressUpdateIngressTls = exports.ingressRequestIngressAcmeCertificateIssuance = exports.ingressUpdateIngressPaths = exports.ingressDeleteIngress = exports.ingressGetIngress = exports.ingressCreateIngress = void 0;
7
+ exports.userGetMfaStatus = exports.userCheckToken = exports.userChangePassword = exports.userChangeEmail = exports.userGetOwnEmail = exports.userAuthenticate = exports.userAuthenticateMfa = exports.userRemovePhoneNumber = exports.userAddPhoneNumber = exports.sshUserUpdateSshUser = exports.sshUserDeleteSshUser = exports.sshUserGetSshUser = exports.sshUserCreateSshUser = exports.sshUserListSshUsers = exports.sftpUserUpdateSftpUser = exports.sftpUserDeleteSftpUser = exports.sftpUserGetSftpUser = exports.sftpUserCreateSftpUser = exports.sftpUserListSftpUsers = exports.servicetokenAuthenticateService = exports.relocationCreateRelocation = exports.relocationCreateLegacyTariffChange = exports.projectUpdateServerDescription = exports.projectUpdateProjectDescription = exports.projectResendProjectInviteMail = exports.projectListServers = exports.projectListProjects = exports.projectListProjectMemberships = exports.projectListProjectInvites = exports.projectListMembershipsForProject = exports.projectListInvitesForProject = exports.projectLeaveProject = exports.projectGetServer = exports.projectGetSelfMembershipForProject = exports.projectGetProjectTokenInvite = exports.projectFileSystemListFiles = exports.projectFileSystemGetJwt = exports.projectFileSystemGetFileContent = exports.projectFileSystemGetDiskUsage = exports.projectFileSystemGetDirectories = exports.projectDeleteServerAvatar = exports.projectRequestServerAvatarUpload = exports.projectDeleteProject = exports.projectGetProject = exports.projectUpdateProjectMembership = exports.projectDeleteProjectMembership = exports.projectGetProjectMembership = exports.projectDeleteProjectInvite = exports.projectGetProjectInvite = exports.projectDeleteProjectAvatar = void 0;
8
+ exports.fileGetFileUploadTypeRules = exports.fileGetFileUploadTokenRules = exports.domainGetLatestScreenshot = exports.userVerifyRegistration = exports.userVerifyPhoneNumber = exports.userVerifyEmail = exports.userSupportCodeRequest = exports.userResendVerificationEmail = exports.userRemoveAvatar = exports.userRequestAvatarUpload = exports.userRegister = exports.userLogout = exports.userTerminateAllSessions = exports.userListSessions = exports.userListFeedback = exports.userInitPasswordReset = exports.userInitMfa = exports.userUpdatePersonalInformation = exports.userGetUser = exports.userTerminateSession = exports.userGetSession = exports.userUpdatePersonalizedSettings = exports.userGetPersonalizedSettings = exports.userGetPasswordUpdatedAt = exports.userUpdateAccount = exports.userGetOwnAccount = exports.userDeleteUser = exports.userDeleteSshKey = exports.userEditSshKey = exports.userGetSshKey = exports.userDeleteApiToken = exports.userEditApiToken = exports.userGetApiToken = exports.userCreateSshKey = exports.userListSshKeys = exports.userCreateFeedback = exports.userCreateApiToken = exports.userListApiTokens = exports.userConfirmPasswordReset = exports.userDisableMfa = exports.userConfirmMfa = exports.userResetRecoverycodes = void 0;
9
9
  /** Execute a runtime concerning action on a specific `AppInstallation`. */
10
10
  exports.appExecuteAction = {
11
11
  path: "/v2/app-installations/{appInstallationId}/actions/{action}",
@@ -828,12 +828,6 @@ exports.domainGetDomainOwnership = {
828
828
  method: "GET",
829
829
  operationId: "domain-get-domain-ownership",
830
830
  };
831
- /** Get the latest screenshot's FileReference belonging to a Domain. */
832
- exports.domainGetLatestScreenshot = {
833
- path: "/v2/domains/{domainId}/latest-screenshot",
834
- method: "GET",
835
- operationId: "domain-get-latest-screenshot",
836
- };
837
831
  /** List the DomainOwnerships of a project. */
838
832
  exports.domainListDomainOwnerships = {
839
833
  path: "/v2/projects/{projectId}/domain-ownerships",
@@ -1746,6 +1740,12 @@ exports.userVerifyRegistration = {
1746
1740
  method: "POST",
1747
1741
  operationId: "user-verify-registration",
1748
1742
  };
1743
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
1744
+ exports.domainGetLatestScreenshot = {
1745
+ path: "/v2/domains/{domainId}/latest-screenshot",
1746
+ method: "GET",
1747
+ operationId: "domain-get-latest-screenshot",
1748
+ };
1749
1749
  /** Get a FileUploadToken's rules. */
1750
1750
  exports.fileGetFileUploadTokenRules = {
1751
1751
  path: "/v2/file-upload-tokens/{fileUploadToken}/rules",
@@ -550,10 +550,6 @@ export declare module MittwaldAPIV2 {
550
550
  type RequestData = InferredRequestData<typeof descriptors.domainGetDomainOwnership>;
551
551
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetDomainOwnership, TStatus>;
552
552
  }
553
- namespace DomainGetLatestScreenshot {
554
- type RequestData = InferredRequestData<typeof descriptors.domainGetLatestScreenshot>;
555
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetLatestScreenshot, TStatus>;
556
- }
557
553
  namespace DomainListDomainOwnerships {
558
554
  type RequestData = InferredRequestData<typeof descriptors.domainListDomainOwnerships>;
559
555
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainListDomainOwnerships, TStatus>;
@@ -1162,6 +1158,10 @@ export declare module MittwaldAPIV2 {
1162
1158
  type RequestData = InferredRequestData<typeof descriptors.userVerifyRegistration>;
1163
1159
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userVerifyRegistration, TStatus>;
1164
1160
  }
1161
+ namespace DomainGetLatestScreenshot {
1162
+ type RequestData = InferredRequestData<typeof descriptors.domainGetLatestScreenshot>;
1163
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetLatestScreenshot, TStatus>;
1164
+ }
1165
1165
  namespace FileGetFileUploadTokenRules {
1166
1166
  type RequestData = InferredRequestData<typeof descriptors.fileGetFileUploadTokenRules>;
1167
1167
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.fileGetFileUploadTokenRules, TStatus>;
@@ -7809,7 +7809,6 @@ export declare module MittwaldAPIV2 {
7809
7809
  namespace V2DomainsDomainIdContracts { }
7810
7810
  namespace V2ProjectsProjectIdContracts { }
7811
7811
  namespace V2ServersServerIdContracts { }
7812
- namespace V2DomainsDomainIdScreenshotsNewest { }
7813
7812
  namespace V2NewsletterSubscriptions {
7814
7813
  namespace Post {
7815
7814
  namespace Parameters {
@@ -8417,44 +8416,6 @@ export declare module MittwaldAPIV2 {
8417
8416
  }
8418
8417
  }
8419
8418
  namespace V2DomainsHandleSchemaDomainName { }
8420
- namespace V2DomainsDomainIdLatestScreenshot {
8421
- namespace Get {
8422
- namespace Parameters {
8423
- type Path = {
8424
- domainId: string;
8425
- };
8426
- interface RequestBody {
8427
- domainName: string;
8428
- path: string;
8429
- }
8430
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
8431
- type Query = {};
8432
- }
8433
- namespace Responses {
8434
- namespace $200 {
8435
- namespace Content {
8436
- interface ApplicationJson {
8437
- reference?: string;
8438
- }
8439
- }
8440
- }
8441
- namespace $404 {
8442
- namespace Content {
8443
- interface ApplicationJson {
8444
- [k: string]: unknown;
8445
- }
8446
- }
8447
- }
8448
- namespace Default {
8449
- namespace Content {
8450
- interface ApplicationJson {
8451
- [k: string]: unknown;
8452
- }
8453
- }
8454
- }
8455
- }
8456
- }
8457
- }
8458
8419
  namespace V2ProjectsProjectIdDomainOwnerships {
8459
8420
  namespace Get {
8460
8421
  namespace Parameters {
@@ -14690,6 +14651,45 @@ export declare module MittwaldAPIV2 {
14690
14651
  }
14691
14652
  }
14692
14653
  }
14654
+ namespace V2DomainsDomainIdScreenshotsNewest { }
14655
+ namespace V2DomainsDomainIdLatestScreenshot {
14656
+ namespace Get {
14657
+ namespace Parameters {
14658
+ type Path = {
14659
+ domainId: string;
14660
+ };
14661
+ interface RequestBody {
14662
+ domainName: string;
14663
+ path: string;
14664
+ }
14665
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14666
+ type Query = {};
14667
+ }
14668
+ namespace Responses {
14669
+ namespace $200 {
14670
+ namespace Content {
14671
+ interface ApplicationJson {
14672
+ reference?: string;
14673
+ }
14674
+ }
14675
+ }
14676
+ namespace $404 {
14677
+ namespace Content {
14678
+ interface ApplicationJson {
14679
+ [k: string]: unknown;
14680
+ }
14681
+ }
14682
+ }
14683
+ namespace Default {
14684
+ namespace Content {
14685
+ interface ApplicationJson {
14686
+ [k: string]: unknown;
14687
+ }
14688
+ }
14689
+ }
14690
+ }
14691
+ }
14692
+ }
14693
14693
  namespace V2AppinstallationsAppInstallationIdDatabases { }
14694
14694
  namespace V2FileUploadTokensFileUploadTokenRules {
14695
14695
  namespace Get {
@@ -1090,20 +1090,6 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1090
1090
  projectId: string;
1091
1091
  txtRecord: string;
1092
1092
  }>;
1093
- /** Get the latest screenshot's FileReference belonging to a Domain. */
1094
- getLatestScreenshot: (conf: {
1095
- data: {
1096
- domainName: string;
1097
- path: string;
1098
- };
1099
- domainId: string;
1100
- headers?: {
1101
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1102
- "x-access-token"?: string | undefined;
1103
- } | undefined;
1104
- }) => import("@mittwald/react-use-promise/types").AsyncResource<{
1105
- reference?: string | undefined;
1106
- }>;
1107
1093
  /** List the DomainOwnerships of a project. */
1108
1094
  listDomainOwnerships: (conf: {
1109
1095
  projectId: string;
@@ -1173,6 +1159,20 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1173
1159
  projectId: string;
1174
1160
  tls: import("./types.js").MittwaldAPIV2.Components.Schemas.IngressTlsAcme | import("./types.js").MittwaldAPIV2.Components.Schemas.IngressTlsCertificate;
1175
1161
  }>;
1162
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
1163
+ getLatestScreenshot: (conf: {
1164
+ data: {
1165
+ domainName: string;
1166
+ path: string;
1167
+ };
1168
+ domainId: string;
1169
+ headers?: {
1170
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1171
+ "x-access-token"?: string | undefined;
1172
+ } | undefined;
1173
+ }) => import("@mittwald/react-use-promise/types").AsyncResource<{
1174
+ reference?: string | undefined;
1175
+ }>;
1176
1176
  };
1177
1177
  declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1178
1178
  /** Get a File's meta. */
@@ -156,8 +156,6 @@ const buildDomainApi = (baseClient) => ({
156
156
  getDomain: new ApiCallAsyncResourceFactory(descriptors.domainGetDomain, baseClient.domain.getDomain).getApiResource,
157
157
  /** Get a DomainOwnership. */
158
158
  getDomainOwnership: new ApiCallAsyncResourceFactory(descriptors.domainGetDomainOwnership, baseClient.domain.getDomainOwnership).getApiResource,
159
- /** Get the latest screenshot's FileReference belonging to a Domain. */
160
- getLatestScreenshot: new ApiCallAsyncResourceFactory(descriptors.domainGetLatestScreenshot, baseClient.domain.getLatestScreenshot).getApiResource,
161
159
  /** List the DomainOwnerships of a project. */
162
160
  listDomainOwnerships: new ApiCallAsyncResourceFactory(descriptors.domainListDomainOwnerships, baseClient.domain.listDomainOwnerships).getApiResource,
163
161
  /** List Domains belonging to a Project. */
@@ -170,6 +168,8 @@ const buildDomainApi = (baseClient) => ({
170
168
  ingressListIngresses: new ApiCallAsyncResourceFactory(descriptors.ingressListIngresses, baseClient.domain.ingressListIngresses).getApiResource,
171
169
  /** Get an Ingress. */
172
170
  ingressGetIngress: new ApiCallAsyncResourceFactory(descriptors.ingressGetIngress, baseClient.domain.ingressGetIngress).getApiResource,
171
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
172
+ getLatestScreenshot: new ApiCallAsyncResourceFactory(descriptors.domainGetLatestScreenshot, baseClient.domain.getLatestScreenshot).getApiResource,
173
173
  });
174
174
  const buildFileApi = (baseClient) => ({
175
175
  /** Get a File's meta. */
@@ -5356,41 +5356,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5356
5356
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5357
5357
  [x: string]: unknown;
5358
5358
  }, 404, "application/json">>>;
5359
- /** Get the latest screenshot's FileReference belonging to a Domain. */
5360
- getLatestScreenshot: (request: {
5361
- data: {
5362
- domainName: string;
5363
- path: string;
5364
- };
5365
- domainId: string;
5366
- headers?: {
5367
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5368
- "x-access-token"?: string | undefined;
5369
- } | undefined;
5370
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5371
- data: {
5372
- domainName: string;
5373
- path: string;
5374
- };
5375
- } & {
5376
- pathParameters: {
5377
- domainId: string;
5378
- };
5379
- } & {
5380
- headers?: Partial<{
5381
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5382
- }> | undefined;
5383
- } & {
5384
- headers: {
5385
- "x-access-token"?: string | undefined;
5386
- } & Partial<{
5387
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5388
- }>;
5389
- }, import("@mittwald/api-client-commons").Response<{
5390
- reference?: string | undefined;
5391
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5392
- [x: string]: unknown;
5393
- }, 404, "application/json">>>;
5394
5359
  /** List the DomainOwnerships of a project. */
5395
5360
  listDomainOwnerships: (request: {
5396
5361
  projectId: string;
@@ -5870,6 +5835,41 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5870
5835
  }, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5871
5836
  [x: string]: unknown;
5872
5837
  }, 404, "application/json">>>;
5838
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
5839
+ getLatestScreenshot: (request: {
5840
+ data: {
5841
+ domainName: string;
5842
+ path: string;
5843
+ };
5844
+ domainId: string;
5845
+ headers?: {
5846
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5847
+ "x-access-token"?: string | undefined;
5848
+ } | undefined;
5849
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5850
+ data: {
5851
+ domainName: string;
5852
+ path: string;
5853
+ };
5854
+ } & {
5855
+ pathParameters: {
5856
+ domainId: string;
5857
+ };
5858
+ } & {
5859
+ headers?: Partial<{
5860
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5861
+ }> | undefined;
5862
+ } & {
5863
+ headers: {
5864
+ "x-access-token"?: string | undefined;
5865
+ } & Partial<{
5866
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5867
+ }>;
5868
+ }, import("@mittwald/api-client-commons").Response<{
5869
+ reference?: string | undefined;
5870
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5871
+ [x: string]: unknown;
5872
+ }, 404, "application/json">>>;
5873
5873
  };
5874
5874
  /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
5875
5875
  readonly file: {
@@ -341,8 +341,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
341
341
  deleteDomain: this.requestFunctionFactory(descriptors.domainDeleteDomain),
342
342
  /** Get a DomainOwnership. */
343
343
  getDomainOwnership: this.requestFunctionFactory(descriptors.domainGetDomainOwnership),
344
- /** Get the latest screenshot's FileReference belonging to a Domain. */
345
- getLatestScreenshot: this.requestFunctionFactory(descriptors.domainGetLatestScreenshot),
346
344
  /** List the DomainOwnerships of a project. */
347
345
  listDomainOwnerships: this.requestFunctionFactory(descriptors.domainListDomainOwnerships),
348
346
  /** List Domains belonging to a Project. */
@@ -375,6 +373,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
375
373
  ingressRequestIngressAcmeCertificateIssuance: this.requestFunctionFactory(descriptors.ingressRequestIngressAcmeCertificateIssuance),
376
374
  /** Update the tls settings of an Ingress. */
377
375
  ingressUpdateIngressTls: this.requestFunctionFactory(descriptors.ingressUpdateIngressTls),
376
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
377
+ getLatestScreenshot: this.requestFunctionFactory(descriptors.domainGetLatestScreenshot),
378
378
  };
379
379
  /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
380
380
  file = {
@@ -277,8 +277,6 @@ export declare const domainGetDomain: OpenAPIOperation<RequestType<Simplify<null
277
277
  export declare const domainDeleteDomain: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
278
278
  /** Get a DomainOwnership. */
279
279
  export declare const domainGetDomainOwnership: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
280
- /** Get the latest screenshot's FileReference belonging to a Domain. */
281
- export declare const domainGetLatestScreenshot: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
282
280
  /** List the DomainOwnerships of a project. */
283
281
  export declare const domainListDomainOwnerships: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
284
282
  /** List Domains belonging to a Project. */
@@ -583,6 +581,8 @@ export declare const userVerifyEmail: OpenAPIOperation<RequestType<Simplify<Mitt
583
581
  export declare const userVerifyPhoneNumber: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
584
582
  /** Verify your registration. */
585
583
  export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
584
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
585
+ export declare const domainGetLatestScreenshot: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
586
586
  /** Get a FileUploadToken's rules. */
587
587
  export declare const fileGetFileUploadTokenRules: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
588
588
  /** Get a FileUploadType's rules. */
@@ -820,12 +820,6 @@ export const domainGetDomainOwnership = {
820
820
  method: "GET",
821
821
  operationId: "domain-get-domain-ownership",
822
822
  };
823
- /** Get the latest screenshot's FileReference belonging to a Domain. */
824
- export const domainGetLatestScreenshot = {
825
- path: "/v2/domains/{domainId}/latest-screenshot",
826
- method: "GET",
827
- operationId: "domain-get-latest-screenshot",
828
- };
829
823
  /** List the DomainOwnerships of a project. */
830
824
  export const domainListDomainOwnerships = {
831
825
  path: "/v2/projects/{projectId}/domain-ownerships",
@@ -1738,6 +1732,12 @@ export const userVerifyRegistration = {
1738
1732
  method: "POST",
1739
1733
  operationId: "user-verify-registration",
1740
1734
  };
1735
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
1736
+ export const domainGetLatestScreenshot = {
1737
+ path: "/v2/domains/{domainId}/latest-screenshot",
1738
+ method: "GET",
1739
+ operationId: "domain-get-latest-screenshot",
1740
+ };
1741
1741
  /** Get a FileUploadToken's rules. */
1742
1742
  export const fileGetFileUploadTokenRules = {
1743
1743
  path: "/v2/file-upload-tokens/{fileUploadToken}/rules",
@@ -550,10 +550,6 @@ export declare module MittwaldAPIV2 {
550
550
  type RequestData = InferredRequestData<typeof descriptors.domainGetDomainOwnership>;
551
551
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetDomainOwnership, TStatus>;
552
552
  }
553
- namespace DomainGetLatestScreenshot {
554
- type RequestData = InferredRequestData<typeof descriptors.domainGetLatestScreenshot>;
555
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetLatestScreenshot, TStatus>;
556
- }
557
553
  namespace DomainListDomainOwnerships {
558
554
  type RequestData = InferredRequestData<typeof descriptors.domainListDomainOwnerships>;
559
555
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainListDomainOwnerships, TStatus>;
@@ -1162,6 +1158,10 @@ export declare module MittwaldAPIV2 {
1162
1158
  type RequestData = InferredRequestData<typeof descriptors.userVerifyRegistration>;
1163
1159
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userVerifyRegistration, TStatus>;
1164
1160
  }
1161
+ namespace DomainGetLatestScreenshot {
1162
+ type RequestData = InferredRequestData<typeof descriptors.domainGetLatestScreenshot>;
1163
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetLatestScreenshot, TStatus>;
1164
+ }
1165
1165
  namespace FileGetFileUploadTokenRules {
1166
1166
  type RequestData = InferredRequestData<typeof descriptors.fileGetFileUploadTokenRules>;
1167
1167
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.fileGetFileUploadTokenRules, TStatus>;
@@ -7809,7 +7809,6 @@ export declare module MittwaldAPIV2 {
7809
7809
  namespace V2DomainsDomainIdContracts { }
7810
7810
  namespace V2ProjectsProjectIdContracts { }
7811
7811
  namespace V2ServersServerIdContracts { }
7812
- namespace V2DomainsDomainIdScreenshotsNewest { }
7813
7812
  namespace V2NewsletterSubscriptions {
7814
7813
  namespace Post {
7815
7814
  namespace Parameters {
@@ -8417,44 +8416,6 @@ export declare module MittwaldAPIV2 {
8417
8416
  }
8418
8417
  }
8419
8418
  namespace V2DomainsHandleSchemaDomainName { }
8420
- namespace V2DomainsDomainIdLatestScreenshot {
8421
- namespace Get {
8422
- namespace Parameters {
8423
- type Path = {
8424
- domainId: string;
8425
- };
8426
- interface RequestBody {
8427
- domainName: string;
8428
- path: string;
8429
- }
8430
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
8431
- type Query = {};
8432
- }
8433
- namespace Responses {
8434
- namespace $200 {
8435
- namespace Content {
8436
- interface ApplicationJson {
8437
- reference?: string;
8438
- }
8439
- }
8440
- }
8441
- namespace $404 {
8442
- namespace Content {
8443
- interface ApplicationJson {
8444
- [k: string]: unknown;
8445
- }
8446
- }
8447
- }
8448
- namespace Default {
8449
- namespace Content {
8450
- interface ApplicationJson {
8451
- [k: string]: unknown;
8452
- }
8453
- }
8454
- }
8455
- }
8456
- }
8457
- }
8458
8419
  namespace V2ProjectsProjectIdDomainOwnerships {
8459
8420
  namespace Get {
8460
8421
  namespace Parameters {
@@ -14690,6 +14651,45 @@ export declare module MittwaldAPIV2 {
14690
14651
  }
14691
14652
  }
14692
14653
  }
14654
+ namespace V2DomainsDomainIdScreenshotsNewest { }
14655
+ namespace V2DomainsDomainIdLatestScreenshot {
14656
+ namespace Get {
14657
+ namespace Parameters {
14658
+ type Path = {
14659
+ domainId: string;
14660
+ };
14661
+ interface RequestBody {
14662
+ domainName: string;
14663
+ path: string;
14664
+ }
14665
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14666
+ type Query = {};
14667
+ }
14668
+ namespace Responses {
14669
+ namespace $200 {
14670
+ namespace Content {
14671
+ interface ApplicationJson {
14672
+ reference?: string;
14673
+ }
14674
+ }
14675
+ }
14676
+ namespace $404 {
14677
+ namespace Content {
14678
+ interface ApplicationJson {
14679
+ [k: string]: unknown;
14680
+ }
14681
+ }
14682
+ }
14683
+ namespace Default {
14684
+ namespace Content {
14685
+ interface ApplicationJson {
14686
+ [k: string]: unknown;
14687
+ }
14688
+ }
14689
+ }
14690
+ }
14691
+ }
14692
+ }
14693
14693
  namespace V2AppinstallationsAppInstallationIdDatabases { }
14694
14694
  namespace V2FileUploadTokensFileUploadTokenRules {
14695
14695
  namespace Get {
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '3.1.14';
1
+ export declare const MittwaldAPIClientVersion = '3.1.15';
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '3.1.14';
1
+ export const MittwaldAPIClientVersion = '3.1.15';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "3.1.14",
3
+ "version": "3.1.15",
4
4
  "description": "Auto-generated client for the mittwald API",
5
5
  "license": "MIT",
6
6
  "repository": "github:mittwald/api-client-js",