@mittwald/api-client 3.1.16 → 3.1.17

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.
@@ -5830,6 +5830,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5830
5830
  ingressUpdateIngressTls: (request: {
5831
5831
  data: {
5832
5832
  acme: boolean;
5833
+ requestDeadline?: string | undefined;
5833
5834
  };
5834
5835
  ingressId: string;
5835
5836
  headers?: {
@@ -5848,6 +5849,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5848
5849
  }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
5849
5850
  data: {
5850
5851
  acme: boolean;
5852
+ requestDeadline?: string | undefined;
5851
5853
  };
5852
5854
  } | {
5853
5855
  data: {
@@ -6233,6 +6235,49 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6233
6235
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6234
6236
  [x: string]: unknown;
6235
6237
  }, 503, "application/json">>>;
6238
+ /** Create a DeliveryBox. */
6239
+ createDeliverybox: (request: {
6240
+ data: {
6241
+ description: string;
6242
+ password: string;
6243
+ };
6244
+ projectId: string;
6245
+ headers?: {
6246
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6247
+ "x-access-token"?: string | undefined;
6248
+ } | undefined;
6249
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6250
+ data: {
6251
+ description: string;
6252
+ password: string;
6253
+ };
6254
+ } & {
6255
+ pathParameters: {
6256
+ projectId: string;
6257
+ };
6258
+ } & {
6259
+ headers?: Partial<{
6260
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6261
+ }> | undefined;
6262
+ } & {
6263
+ headers: {
6264
+ "x-access-token"?: string | undefined;
6265
+ } & Partial<{
6266
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6267
+ }>;
6268
+ }, import("@mittwald/api-client-commons").Response<{
6269
+ id: string;
6270
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6271
+ [x: string]: unknown;
6272
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6273
+ [x: string]: unknown;
6274
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6275
+ [x: string]: unknown;
6276
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6277
+ [x: string]: unknown;
6278
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6279
+ [x: string]: unknown;
6280
+ }, 503, "application/json">>>;
6236
6281
  /** List MailAddresses belonging to a Project. */
6237
6282
  listMailAddresses: (request: {
6238
6283
  projectId: string;
@@ -6265,6 +6310,74 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6265
6310
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6266
6311
  [x: string]: unknown;
6267
6312
  }, 503, "application/json">>>;
6313
+ /** Create a MailAddress. */
6314
+ createMailAddress: (request: {
6315
+ data: {
6316
+ address: string;
6317
+ forwardAddresses: string[];
6318
+ };
6319
+ projectId: string;
6320
+ headers?: {
6321
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6322
+ "x-access-token"?: string | undefined;
6323
+ } | undefined;
6324
+ } | {
6325
+ data: {
6326
+ address: string;
6327
+ isCatchAll: boolean;
6328
+ mailbox: {
6329
+ enableSpamProtection: boolean;
6330
+ password: string;
6331
+ quotaInBytes: number;
6332
+ };
6333
+ };
6334
+ projectId: string;
6335
+ headers?: {
6336
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6337
+ "x-access-token"?: string | undefined;
6338
+ } | undefined;
6339
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
6340
+ data: {
6341
+ address: string;
6342
+ forwardAddresses: string[];
6343
+ };
6344
+ } | {
6345
+ data: {
6346
+ address: string;
6347
+ isCatchAll: boolean;
6348
+ mailbox: {
6349
+ enableSpamProtection: boolean;
6350
+ password: string;
6351
+ quotaInBytes: number;
6352
+ };
6353
+ };
6354
+ }) & {
6355
+ pathParameters: {
6356
+ projectId: string;
6357
+ };
6358
+ } & {
6359
+ headers?: Partial<{
6360
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6361
+ }> | undefined;
6362
+ } & {
6363
+ headers: {
6364
+ "x-access-token"?: string | undefined;
6365
+ } & Partial<{
6366
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6367
+ }>;
6368
+ }, import("@mittwald/api-client-commons").Response<{
6369
+ id: string;
6370
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6371
+ [x: string]: unknown;
6372
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6373
+ [x: string]: unknown;
6374
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6375
+ [x: string]: unknown;
6376
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6377
+ [x: string]: unknown;
6378
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6379
+ [x: string]: unknown;
6380
+ }, 503, "application/json">>>;
6268
6381
  /** List mail settings of a Project. */
6269
6382
  listProjectMailSettings: (request: {
6270
6383
  projectId: string;
@@ -429,8 +429,12 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
429
429
  deleteMailAddress: this.requestFunctionFactory(descriptors.mailDeleteMailAddress),
430
430
  /** List DeliveryBoxes belonging to a Project. */
431
431
  listDeliveryBoxes: this.requestFunctionFactory(descriptors.mailListDeliveryBoxes),
432
+ /** Create a DeliveryBox. */
433
+ createDeliverybox: this.requestFunctionFactory(descriptors.mailCreateDeliverybox),
432
434
  /** List MailAddresses belonging to a Project. */
433
435
  listMailAddresses: this.requestFunctionFactory(descriptors.mailListMailAddresses),
436
+ /** Create a MailAddress. */
437
+ createMailAddress: this.requestFunctionFactory(descriptors.mailCreateMailAddress),
434
438
  /** List mail settings of a Project. */
435
439
  listProjectMailSettings: this.requestFunctionFactory(descriptors.mailListProjectMailSettings),
436
440
  /** Update the description of a DeliveryBox. */
@@ -335,8 +335,12 @@ export declare const mailGetMailAddress: OpenAPIOperation<RequestType<Simplify<n
335
335
  export declare const mailDeleteMailAddress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
336
336
  /** List DeliveryBoxes belonging to a Project. */
337
337
  export declare const mailListDeliveryBoxes: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
338
+ /** Create a DeliveryBox. */
339
+ export declare const mailCreateDeliverybox: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
338
340
  /** List MailAddresses belonging to a Project. */
339
341
  export declare const mailListMailAddresses: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
342
+ /** Create a MailAddress. */
343
+ export declare const mailCreateMailAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
340
344
  /** List mail settings of a Project. */
341
345
  export declare const mailListProjectMailSettings: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
342
346
  /** Update the description of a DeliveryBox. */
@@ -3,9 +3,9 @@ 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
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.projectDeleteProjectAvatar = 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.mailListMailAddresses = exports.mailListDeliveryBoxes = exports.mailDeleteMailAddress = exports.mailGetMailAddress = exports.mailDeleteDeliveryBox = exports.mailGetDeliveryBox = 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.userResetRecoverycodes = 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 = 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 = 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.mailCreateMailAddress = exports.mailListMailAddresses = exports.mailCreateDeliverybox = exports.mailListDeliveryBoxes = exports.mailDeleteMailAddress = exports.mailGetMailAddress = exports.mailDeleteDeliveryBox = exports.mailGetDeliveryBox = 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;
9
9
  /** Execute a runtime concerning action on a specific `AppInstallation`. */
10
10
  exports.appExecuteAction = {
11
11
  path: "/v2/app-installations/{appInstallationId}/actions/{action}",
@@ -1002,12 +1002,24 @@ exports.mailListDeliveryBoxes = {
1002
1002
  method: "GET",
1003
1003
  operationId: "mail-list-delivery-boxes",
1004
1004
  };
1005
+ /** Create a DeliveryBox. */
1006
+ exports.mailCreateDeliverybox = {
1007
+ path: "/v2/projects/{projectId}/delivery-boxes",
1008
+ method: "POST",
1009
+ operationId: "mail-create-deliverybox",
1010
+ };
1005
1011
  /** List MailAddresses belonging to a Project. */
1006
1012
  exports.mailListMailAddresses = {
1007
1013
  path: "/v2/projects/{projectId}/mail-addresses",
1008
1014
  method: "GET",
1009
1015
  operationId: "mail-list-mail-addresses",
1010
1016
  };
1017
+ /** Create a MailAddress. */
1018
+ exports.mailCreateMailAddress = {
1019
+ path: "/v2/projects/{projectId}/mail-addresses",
1020
+ method: "POST",
1021
+ operationId: "mail-create-mail-address",
1022
+ };
1011
1023
  /** List mail settings of a Project. */
1012
1024
  exports.mailListProjectMailSettings = {
1013
1025
  path: "/v2/projects/{projectId}/mail-settings",
@@ -666,10 +666,18 @@ export declare module MittwaldAPIV2 {
666
666
  type RequestData = InferredRequestData<typeof descriptors.mailListDeliveryBoxes>;
667
667
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListDeliveryBoxes, TStatus>;
668
668
  }
669
+ namespace MailCreateDeliverybox {
670
+ type RequestData = InferredRequestData<typeof descriptors.mailCreateDeliverybox>;
671
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailCreateDeliverybox, TStatus>;
672
+ }
669
673
  namespace MailListMailAddresses {
670
674
  type RequestData = InferredRequestData<typeof descriptors.mailListMailAddresses>;
671
675
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListMailAddresses, TStatus>;
672
676
  }
677
+ namespace MailCreateMailAddress {
678
+ type RequestData = InferredRequestData<typeof descriptors.mailCreateMailAddress>;
679
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailCreateMailAddress, TStatus>;
680
+ }
673
681
  namespace MailListProjectMailSettings {
674
682
  type RequestData = InferredRequestData<typeof descriptors.mailListProjectMailSettings>;
675
683
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListProjectMailSettings, TStatus>;
@@ -2143,6 +2151,7 @@ export declare module MittwaldAPIV2 {
2143
2151
  * Has to be `true`, as ssl cannot be deactivated.
2144
2152
  */
2145
2153
  acme: boolean;
2154
+ requestDeadline?: string;
2146
2155
  }
2147
2156
  interface IngressTlsCertificate {
2148
2157
  certificateId: string;
@@ -9623,6 +9632,70 @@ export declare module MittwaldAPIV2 {
9623
9632
  }
9624
9633
  }
9625
9634
  }
9635
+ namespace Post {
9636
+ namespace Parameters {
9637
+ type Path = {
9638
+ projectId: string;
9639
+ };
9640
+ interface RequestBody {
9641
+ description: string;
9642
+ password: string;
9643
+ }
9644
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9645
+ type Query = {};
9646
+ }
9647
+ namespace Responses {
9648
+ namespace $201 {
9649
+ namespace Content {
9650
+ interface ApplicationJson {
9651
+ id: string;
9652
+ }
9653
+ }
9654
+ }
9655
+ namespace $400 {
9656
+ namespace Content {
9657
+ interface ApplicationJson {
9658
+ [k: string]: unknown;
9659
+ }
9660
+ }
9661
+ }
9662
+ namespace $403 {
9663
+ namespace Content {
9664
+ interface ApplicationJson {
9665
+ [k: string]: unknown;
9666
+ }
9667
+ }
9668
+ }
9669
+ namespace $404 {
9670
+ namespace Content {
9671
+ interface ApplicationJson {
9672
+ [k: string]: unknown;
9673
+ }
9674
+ }
9675
+ }
9676
+ namespace $500 {
9677
+ namespace Content {
9678
+ interface ApplicationJson {
9679
+ [k: string]: unknown;
9680
+ }
9681
+ }
9682
+ }
9683
+ namespace $503 {
9684
+ namespace Content {
9685
+ interface ApplicationJson {
9686
+ [k: string]: unknown;
9687
+ }
9688
+ }
9689
+ }
9690
+ namespace Default {
9691
+ namespace Content {
9692
+ interface ApplicationJson {
9693
+ [k: string]: unknown;
9694
+ }
9695
+ }
9696
+ }
9697
+ }
9698
+ }
9626
9699
  }
9627
9700
  namespace V2ProjectsProjectIdMailaddresses { }
9628
9701
  namespace V2ProjectsProjectIdMailAddresses {
@@ -9684,6 +9757,67 @@ export declare module MittwaldAPIV2 {
9684
9757
  }
9685
9758
  }
9686
9759
  }
9760
+ namespace Post {
9761
+ namespace Parameters {
9762
+ type Path = {
9763
+ projectId: string;
9764
+ };
9765
+ type RequestBody = MittwaldAPIV2.Components.Schemas.MailCreateForwardAddress | MittwaldAPIV2.Components.Schemas.MailCreateMailAddress;
9766
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9767
+ type Query = {};
9768
+ }
9769
+ namespace Responses {
9770
+ namespace $201 {
9771
+ namespace Content {
9772
+ interface ApplicationJson {
9773
+ id: string;
9774
+ }
9775
+ }
9776
+ }
9777
+ namespace $400 {
9778
+ namespace Content {
9779
+ interface ApplicationJson {
9780
+ [k: string]: unknown;
9781
+ }
9782
+ }
9783
+ }
9784
+ namespace $403 {
9785
+ namespace Content {
9786
+ interface ApplicationJson {
9787
+ [k: string]: unknown;
9788
+ }
9789
+ }
9790
+ }
9791
+ namespace $404 {
9792
+ namespace Content {
9793
+ interface ApplicationJson {
9794
+ [k: string]: unknown;
9795
+ }
9796
+ }
9797
+ }
9798
+ namespace $500 {
9799
+ namespace Content {
9800
+ interface ApplicationJson {
9801
+ [k: string]: unknown;
9802
+ }
9803
+ }
9804
+ }
9805
+ namespace $503 {
9806
+ namespace Content {
9807
+ interface ApplicationJson {
9808
+ [k: string]: unknown;
9809
+ }
9810
+ }
9811
+ }
9812
+ namespace Default {
9813
+ namespace Content {
9814
+ interface ApplicationJson {
9815
+ [k: string]: unknown;
9816
+ }
9817
+ }
9818
+ }
9819
+ }
9820
+ }
9687
9821
  }
9688
9822
  namespace V2ProjectsProjectIdMailsettings { }
9689
9823
  namespace V2ProjectsProjectIdMailSettings {
@@ -5830,6 +5830,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5830
5830
  ingressUpdateIngressTls: (request: {
5831
5831
  data: {
5832
5832
  acme: boolean;
5833
+ requestDeadline?: string | undefined;
5833
5834
  };
5834
5835
  ingressId: string;
5835
5836
  headers?: {
@@ -5848,6 +5849,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5848
5849
  }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
5849
5850
  data: {
5850
5851
  acme: boolean;
5852
+ requestDeadline?: string | undefined;
5851
5853
  };
5852
5854
  } | {
5853
5855
  data: {
@@ -6233,6 +6235,49 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6233
6235
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6234
6236
  [x: string]: unknown;
6235
6237
  }, 503, "application/json">>>;
6238
+ /** Create a DeliveryBox. */
6239
+ createDeliverybox: (request: {
6240
+ data: {
6241
+ description: string;
6242
+ password: string;
6243
+ };
6244
+ projectId: string;
6245
+ headers?: {
6246
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6247
+ "x-access-token"?: string | undefined;
6248
+ } | undefined;
6249
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6250
+ data: {
6251
+ description: string;
6252
+ password: string;
6253
+ };
6254
+ } & {
6255
+ pathParameters: {
6256
+ projectId: string;
6257
+ };
6258
+ } & {
6259
+ headers?: Partial<{
6260
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6261
+ }> | undefined;
6262
+ } & {
6263
+ headers: {
6264
+ "x-access-token"?: string | undefined;
6265
+ } & Partial<{
6266
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6267
+ }>;
6268
+ }, import("@mittwald/api-client-commons").Response<{
6269
+ id: string;
6270
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6271
+ [x: string]: unknown;
6272
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6273
+ [x: string]: unknown;
6274
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6275
+ [x: string]: unknown;
6276
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6277
+ [x: string]: unknown;
6278
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6279
+ [x: string]: unknown;
6280
+ }, 503, "application/json">>>;
6236
6281
  /** List MailAddresses belonging to a Project. */
6237
6282
  listMailAddresses: (request: {
6238
6283
  projectId: string;
@@ -6265,6 +6310,74 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6265
6310
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6266
6311
  [x: string]: unknown;
6267
6312
  }, 503, "application/json">>>;
6313
+ /** Create a MailAddress. */
6314
+ createMailAddress: (request: {
6315
+ data: {
6316
+ address: string;
6317
+ forwardAddresses: string[];
6318
+ };
6319
+ projectId: string;
6320
+ headers?: {
6321
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6322
+ "x-access-token"?: string | undefined;
6323
+ } | undefined;
6324
+ } | {
6325
+ data: {
6326
+ address: string;
6327
+ isCatchAll: boolean;
6328
+ mailbox: {
6329
+ enableSpamProtection: boolean;
6330
+ password: string;
6331
+ quotaInBytes: number;
6332
+ };
6333
+ };
6334
+ projectId: string;
6335
+ headers?: {
6336
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6337
+ "x-access-token"?: string | undefined;
6338
+ } | undefined;
6339
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
6340
+ data: {
6341
+ address: string;
6342
+ forwardAddresses: string[];
6343
+ };
6344
+ } | {
6345
+ data: {
6346
+ address: string;
6347
+ isCatchAll: boolean;
6348
+ mailbox: {
6349
+ enableSpamProtection: boolean;
6350
+ password: string;
6351
+ quotaInBytes: number;
6352
+ };
6353
+ };
6354
+ }) & {
6355
+ pathParameters: {
6356
+ projectId: string;
6357
+ };
6358
+ } & {
6359
+ headers?: Partial<{
6360
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6361
+ }> | undefined;
6362
+ } & {
6363
+ headers: {
6364
+ "x-access-token"?: string | undefined;
6365
+ } & Partial<{
6366
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6367
+ }>;
6368
+ }, import("@mittwald/api-client-commons").Response<{
6369
+ id: string;
6370
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6371
+ [x: string]: unknown;
6372
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6373
+ [x: string]: unknown;
6374
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6375
+ [x: string]: unknown;
6376
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6377
+ [x: string]: unknown;
6378
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6379
+ [x: string]: unknown;
6380
+ }, 503, "application/json">>>;
6268
6381
  /** List mail settings of a Project. */
6269
6382
  listProjectMailSettings: (request: {
6270
6383
  projectId: string;
@@ -401,8 +401,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
401
401
  deleteMailAddress: this.requestFunctionFactory(descriptors.mailDeleteMailAddress),
402
402
  /** List DeliveryBoxes belonging to a Project. */
403
403
  listDeliveryBoxes: this.requestFunctionFactory(descriptors.mailListDeliveryBoxes),
404
+ /** Create a DeliveryBox. */
405
+ createDeliverybox: this.requestFunctionFactory(descriptors.mailCreateDeliverybox),
404
406
  /** List MailAddresses belonging to a Project. */
405
407
  listMailAddresses: this.requestFunctionFactory(descriptors.mailListMailAddresses),
408
+ /** Create a MailAddress. */
409
+ createMailAddress: this.requestFunctionFactory(descriptors.mailCreateMailAddress),
406
410
  /** List mail settings of a Project. */
407
411
  listProjectMailSettings: this.requestFunctionFactory(descriptors.mailListProjectMailSettings),
408
412
  /** Update the description of a DeliveryBox. */
@@ -335,8 +335,12 @@ export declare const mailGetMailAddress: OpenAPIOperation<RequestType<Simplify<n
335
335
  export declare const mailDeleteMailAddress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
336
336
  /** List DeliveryBoxes belonging to a Project. */
337
337
  export declare const mailListDeliveryBoxes: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
338
+ /** Create a DeliveryBox. */
339
+ export declare const mailCreateDeliverybox: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
338
340
  /** List MailAddresses belonging to a Project. */
339
341
  export declare const mailListMailAddresses: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
342
+ /** Create a MailAddress. */
343
+ export declare const mailCreateMailAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
340
344
  /** List mail settings of a Project. */
341
345
  export declare const mailListProjectMailSettings: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
342
346
  /** Update the description of a DeliveryBox. */
@@ -994,12 +994,24 @@ export const mailListDeliveryBoxes = {
994
994
  method: "GET",
995
995
  operationId: "mail-list-delivery-boxes",
996
996
  };
997
+ /** Create a DeliveryBox. */
998
+ export const mailCreateDeliverybox = {
999
+ path: "/v2/projects/{projectId}/delivery-boxes",
1000
+ method: "POST",
1001
+ operationId: "mail-create-deliverybox",
1002
+ };
997
1003
  /** List MailAddresses belonging to a Project. */
998
1004
  export const mailListMailAddresses = {
999
1005
  path: "/v2/projects/{projectId}/mail-addresses",
1000
1006
  method: "GET",
1001
1007
  operationId: "mail-list-mail-addresses",
1002
1008
  };
1009
+ /** Create a MailAddress. */
1010
+ export const mailCreateMailAddress = {
1011
+ path: "/v2/projects/{projectId}/mail-addresses",
1012
+ method: "POST",
1013
+ operationId: "mail-create-mail-address",
1014
+ };
1003
1015
  /** List mail settings of a Project. */
1004
1016
  export const mailListProjectMailSettings = {
1005
1017
  path: "/v2/projects/{projectId}/mail-settings",
@@ -666,10 +666,18 @@ export declare module MittwaldAPIV2 {
666
666
  type RequestData = InferredRequestData<typeof descriptors.mailListDeliveryBoxes>;
667
667
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListDeliveryBoxes, TStatus>;
668
668
  }
669
+ namespace MailCreateDeliverybox {
670
+ type RequestData = InferredRequestData<typeof descriptors.mailCreateDeliverybox>;
671
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailCreateDeliverybox, TStatus>;
672
+ }
669
673
  namespace MailListMailAddresses {
670
674
  type RequestData = InferredRequestData<typeof descriptors.mailListMailAddresses>;
671
675
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListMailAddresses, TStatus>;
672
676
  }
677
+ namespace MailCreateMailAddress {
678
+ type RequestData = InferredRequestData<typeof descriptors.mailCreateMailAddress>;
679
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailCreateMailAddress, TStatus>;
680
+ }
673
681
  namespace MailListProjectMailSettings {
674
682
  type RequestData = InferredRequestData<typeof descriptors.mailListProjectMailSettings>;
675
683
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListProjectMailSettings, TStatus>;
@@ -2143,6 +2151,7 @@ export declare module MittwaldAPIV2 {
2143
2151
  * Has to be `true`, as ssl cannot be deactivated.
2144
2152
  */
2145
2153
  acme: boolean;
2154
+ requestDeadline?: string;
2146
2155
  }
2147
2156
  interface IngressTlsCertificate {
2148
2157
  certificateId: string;
@@ -9623,6 +9632,70 @@ export declare module MittwaldAPIV2 {
9623
9632
  }
9624
9633
  }
9625
9634
  }
9635
+ namespace Post {
9636
+ namespace Parameters {
9637
+ type Path = {
9638
+ projectId: string;
9639
+ };
9640
+ interface RequestBody {
9641
+ description: string;
9642
+ password: string;
9643
+ }
9644
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9645
+ type Query = {};
9646
+ }
9647
+ namespace Responses {
9648
+ namespace $201 {
9649
+ namespace Content {
9650
+ interface ApplicationJson {
9651
+ id: string;
9652
+ }
9653
+ }
9654
+ }
9655
+ namespace $400 {
9656
+ namespace Content {
9657
+ interface ApplicationJson {
9658
+ [k: string]: unknown;
9659
+ }
9660
+ }
9661
+ }
9662
+ namespace $403 {
9663
+ namespace Content {
9664
+ interface ApplicationJson {
9665
+ [k: string]: unknown;
9666
+ }
9667
+ }
9668
+ }
9669
+ namespace $404 {
9670
+ namespace Content {
9671
+ interface ApplicationJson {
9672
+ [k: string]: unknown;
9673
+ }
9674
+ }
9675
+ }
9676
+ namespace $500 {
9677
+ namespace Content {
9678
+ interface ApplicationJson {
9679
+ [k: string]: unknown;
9680
+ }
9681
+ }
9682
+ }
9683
+ namespace $503 {
9684
+ namespace Content {
9685
+ interface ApplicationJson {
9686
+ [k: string]: unknown;
9687
+ }
9688
+ }
9689
+ }
9690
+ namespace Default {
9691
+ namespace Content {
9692
+ interface ApplicationJson {
9693
+ [k: string]: unknown;
9694
+ }
9695
+ }
9696
+ }
9697
+ }
9698
+ }
9626
9699
  }
9627
9700
  namespace V2ProjectsProjectIdMailaddresses { }
9628
9701
  namespace V2ProjectsProjectIdMailAddresses {
@@ -9684,6 +9757,67 @@ export declare module MittwaldAPIV2 {
9684
9757
  }
9685
9758
  }
9686
9759
  }
9760
+ namespace Post {
9761
+ namespace Parameters {
9762
+ type Path = {
9763
+ projectId: string;
9764
+ };
9765
+ type RequestBody = MittwaldAPIV2.Components.Schemas.MailCreateForwardAddress | MittwaldAPIV2.Components.Schemas.MailCreateMailAddress;
9766
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9767
+ type Query = {};
9768
+ }
9769
+ namespace Responses {
9770
+ namespace $201 {
9771
+ namespace Content {
9772
+ interface ApplicationJson {
9773
+ id: string;
9774
+ }
9775
+ }
9776
+ }
9777
+ namespace $400 {
9778
+ namespace Content {
9779
+ interface ApplicationJson {
9780
+ [k: string]: unknown;
9781
+ }
9782
+ }
9783
+ }
9784
+ namespace $403 {
9785
+ namespace Content {
9786
+ interface ApplicationJson {
9787
+ [k: string]: unknown;
9788
+ }
9789
+ }
9790
+ }
9791
+ namespace $404 {
9792
+ namespace Content {
9793
+ interface ApplicationJson {
9794
+ [k: string]: unknown;
9795
+ }
9796
+ }
9797
+ }
9798
+ namespace $500 {
9799
+ namespace Content {
9800
+ interface ApplicationJson {
9801
+ [k: string]: unknown;
9802
+ }
9803
+ }
9804
+ }
9805
+ namespace $503 {
9806
+ namespace Content {
9807
+ interface ApplicationJson {
9808
+ [k: string]: unknown;
9809
+ }
9810
+ }
9811
+ }
9812
+ namespace Default {
9813
+ namespace Content {
9814
+ interface ApplicationJson {
9815
+ [k: string]: unknown;
9816
+ }
9817
+ }
9818
+ }
9819
+ }
9820
+ }
9687
9821
  }
9688
9822
  namespace V2ProjectsProjectIdMailsettings { }
9689
9823
  namespace V2ProjectsProjectIdMailSettings {
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '3.1.16';
1
+ export declare const MittwaldAPIClientVersion = '3.1.17';
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '3.1.16';
1
+ export const MittwaldAPIClientVersion = '3.1.17';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "3.1.16",
3
+ "version": "3.1.17",
4
4
  "description": "Auto-generated client for the mittwald API",
5
5
  "license": "MIT",
6
6
  "repository": "github:mittwald/api-client-js",