@mittwald/api-client 0.0.0-experimental-dev-bd6e53b-20260706 → 0.0.0-experimental-dev-8fc4091-20260706

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.
@@ -92,6 +92,8 @@ const buildContainerApi = (baseClient) => ({
92
92
  getServiceLogs: new ApiCallAsyncResourceFactory(descriptors.containerGetServiceLogs, baseClient.container.getServiceLogs).getApiResource,
93
93
  /** Get a Service belonging to a Stack. */
94
94
  getService: new ApiCallAsyncResourceFactory(descriptors.containerGetService, baseClient.container.getService).getApiResource,
95
+ /** Get a Container Template icon. */
96
+ getTemplateIcon: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplateIcon, baseClient.container.getTemplateIcon).getApiResource,
95
97
  /** Get a Container Template by ID. */
96
98
  getTemplate: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplate, baseClient.container.getTemplate).getApiResource,
97
99
  /** List Stacks belonging to the executing user. */
@@ -168,6 +168,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
168
168
  getServiceLogs: this.requestFunctionFactory(descriptors.containerGetServiceLogs),
169
169
  /** Get a Service belonging to a Stack. */
170
170
  getService: this.requestFunctionFactory(descriptors.containerGetService),
171
+ /** Get a Container Template icon. */
172
+ getTemplateIcon: this.requestFunctionFactory(descriptors.containerGetTemplateIcon),
171
173
  /** Get a Container Template by ID. */
172
174
  getTemplate: this.requestFunctionFactory(descriptors.containerGetTemplate),
173
175
  /** List Stacks belonging to the executing user. */
@@ -448,6 +448,12 @@ export const containerGetService = {
448
448
  method: "GET",
449
449
  operationId: "container-get-service",
450
450
  };
451
+ /** Get a Container Template icon. */
452
+ export const containerGetTemplateIcon = {
453
+ path: "/v2/container-templates/{templateId}/icon",
454
+ method: "GET",
455
+ operationId: "container-get-template-icon",
456
+ };
451
457
  /** Get a Container Template by ID. */
452
458
  export const containerGetTemplate = {
453
459
  path: "/v2/container-templates/{templateId}",
@@ -20,6 +20,8 @@ const buildAiHostingApi = (baseClient) => ({
20
20
  projectGetDetailedModels: new ApiCallAsyncResourceFactory(descriptors.aiHostingProjectGetDetailedModels, baseClient.aiHosting.projectGetDetailedModels).getApiResource,
21
21
  /** Get ai hosting plan and usages of a project. Same as the customer route, but less details. */
22
22
  projectGetUsage: new ApiCallAsyncResourceFactory(descriptors.aiHostingProjectGetUsage, baseClient.aiHosting.projectGetUsage).getApiResource,
23
+ /** Get ai hosting subscriptions of a customer. */
24
+ customerGetSubscriptions: new ApiCallAsyncResourceFactory(descriptors.aiHostingCustomerGetSubscriptions, baseClient.aiHosting.customerGetSubscriptions).getApiResource,
23
25
  });
24
26
  const buildAppApi = (baseClient) => ({
25
27
  /** Get an App. */
@@ -92,6 +94,8 @@ const buildContainerApi = (baseClient) => ({
92
94
  getServiceLogs: new ApiCallAsyncResourceFactory(descriptors.containerGetServiceLogs, baseClient.container.getServiceLogs).getApiResource,
93
95
  /** Get a Service belonging to a Stack. */
94
96
  getService: new ApiCallAsyncResourceFactory(descriptors.containerGetService, baseClient.container.getService).getApiResource,
97
+ /** Get a Container Template icon. */
98
+ getTemplateIcon: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplateIcon, baseClient.container.getTemplateIcon).getApiResource,
95
99
  /** Get a Container Template by ID. */
96
100
  getTemplate: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplate, baseClient.container.getTemplate).getApiResource,
97
101
  /** List Stacks belonging to the executing user. */
@@ -104,8 +108,6 @@ const buildContainerApi = (baseClient) => ({
104
108
  listTemplates: new ApiCallAsyncResourceFactory(descriptors.containerListTemplates, baseClient.container.listTemplates).getApiResource,
105
109
  /** List Volumes belonging to a Project. */
106
110
  listVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListVolumes, baseClient.container.listVolumes).getApiResource,
107
- /** Get a Container Template icon. */
108
- getTemplateIcon: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplateIcon, baseClient.container.getTemplateIcon).getApiResource,
109
111
  });
110
112
  const buildContractApi = (baseClient) => ({
111
113
  /** Return the BaseItem of the Contract with the given ID. */
@@ -278,16 +280,16 @@ const buildDatabaseApi = (baseClient) => ({
278
280
  listRedisVersions: new ApiCallAsyncResourceFactory(descriptors.databaseListRedisVersions, baseClient.database.listRedisVersions).getApiResource,
279
281
  });
280
282
  const buildDomainApi = (baseClient) => ({
281
- /** List Domains */
282
- listDomains: new ApiCallAsyncResourceFactory(descriptors.domainListDomains, baseClient.domain.listDomains).getApiResource,
283
+ /** List domains. */
284
+ serviceNextListDomains: new ApiCallAsyncResourceFactory(descriptors.domainServiceNextListDomains, baseClient.domain.serviceNextListDomains).getApiResource,
283
285
  /** Get a DNSZone. */
284
286
  dnsGetDnsZone: new ApiCallAsyncResourceFactory(descriptors.dnsGetDnsZone, baseClient.domain.dnsGetDnsZone).getApiResource,
285
287
  /** Get a zone file for a DNSZone. */
286
288
  dnsGetZoneFile: new ApiCallAsyncResourceFactory(descriptors.dnsGetZoneFile, baseClient.domain.dnsGetZoneFile).getApiResource,
287
289
  /** List DNSZones belonging to a Project. */
288
290
  dnsListDnsZones: new ApiCallAsyncResourceFactory(descriptors.dnsListDnsZones, baseClient.domain.dnsListDnsZones).getApiResource,
289
- /** Get a Domain. */
290
- getDomain: new ApiCallAsyncResourceFactory(descriptors.domainGetDomain, baseClient.domain.getDomain).getApiResource,
291
+ /** Get a domain. */
292
+ serviceNextGetDomain: new ApiCallAsyncResourceFactory(descriptors.domainServiceNextGetDomain, baseClient.domain.serviceNextGetDomain).getApiResource,
291
293
  /** Get a Contact-Verification. */
292
294
  getContactVerification: new ApiCallAsyncResourceFactory(descriptors.domainGetContactVerification, baseClient.domain.getContactVerification).getApiResource,
293
295
  /** Get the latest screenshot's FileReference belonging to a Domain. */
@@ -298,6 +300,8 @@ const buildDomainApi = (baseClient) => ({
298
300
  listTldContactSchemas: new ApiCallAsyncResourceFactory(descriptors.domainListTldContactSchemas, baseClient.domain.listTldContactSchemas).getApiResource,
299
301
  /** List TLDs. */
300
302
  listTlds: new ApiCallAsyncResourceFactory(descriptors.domainListTlds, baseClient.domain.listTlds).getApiResource,
303
+ /** List Domain-Migrations belonging to a pAccount. */
304
+ migrationListMigrationsByPaccount: new ApiCallAsyncResourceFactory(descriptors.domainMigrationListMigrationsByPaccount, baseClient.domain.migrationListMigrationsByPaccount).getApiResource,
301
305
  /** List Domain-Migrations belonging to a Project. */
302
306
  migrationListMigrationsByProjectId: new ApiCallAsyncResourceFactory(descriptors.domainMigrationListMigrationsByProjectId, baseClient.domain.migrationListMigrationsByProjectId).getApiResource,
303
307
  /** Suggest a list of domains based on a prompt using AI. */
@@ -362,12 +366,20 @@ const buildMailApi = (baseClient) => ({
362
366
  getDeliveryBox: new ApiCallAsyncResourceFactory(descriptors.mailGetDeliveryBox, baseClient.mail.getDeliveryBox).getApiResource,
363
367
  /** Get a MailAddress. */
364
368
  getMailAddress: new ApiCallAsyncResourceFactory(descriptors.mailGetMailAddress, baseClient.mail.getMailAddress).getApiResource,
369
+ /** Get a Mail RateLimit. */
370
+ getMailRateLimit: new ApiCallAsyncResourceFactory(descriptors.mailGetMailRateLimit, baseClient.mail.getMailRateLimit).getApiResource,
365
371
  /** List backups belonging to a MailAddress. */
366
372
  listBackupsForMailAddress: new ApiCallAsyncResourceFactory(descriptors.mailListBackupsForMailAddress, baseClient.mail.listBackupsForMailAddress).getApiResource,
367
373
  /** List MailAddresses. */
368
374
  listMailAddressesForUser: new ApiCallAsyncResourceFactory(descriptors.mailListMailAddressesForUser, baseClient.mail.listMailAddressesForUser).getApiResource,
375
+ /** List Mail RateLimits. */
376
+ listMailRateLimits: new ApiCallAsyncResourceFactory(descriptors.mailListMailRateLimits, baseClient.mail.listMailRateLimits).getApiResource,
369
377
  /** List mail settings of a Project. */
370
378
  listProjectMailSettings: new ApiCallAsyncResourceFactory(descriptors.mailListProjectMailSettings, baseClient.mail.listProjectMailSettings).getApiResource,
379
+ /** Get a Migration. */
380
+ migrationGetMigration: new ApiCallAsyncResourceFactory(descriptors.mailMigrationGetMigration, baseClient.mail.migrationGetMigration).getApiResource,
381
+ /** List Migrations belonging to a Project in customer center or mStudio. */
382
+ migrationListMigrations: new ApiCallAsyncResourceFactory(descriptors.mailMigrationListMigrations, baseClient.mail.migrationListMigrations).getApiResource,
371
383
  });
372
384
  const buildMiscApi = (baseClient) => ({
373
385
  /** List valid time zones. */
@@ -40,6 +40,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
40
40
  projectGetUsage: this.requestFunctionFactory(descriptors.aiHostingProjectGetUsage),
41
41
  /** Links a container with a project licence. */
42
42
  projectLinkContainer: this.requestFunctionFactory(descriptors.aiHostingProjectLinkContainer),
43
+ /** Get ai hosting subscriptions of a customer. */
44
+ customerGetSubscriptions: this.requestFunctionFactory(descriptors.aiHostingCustomerGetSubscriptions),
43
45
  };
44
46
  /** The App API allows you to manage your apps within a project, and all the system softwares that are installed as dependencies. */
45
47
  app = {
@@ -168,6 +170,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
168
170
  getServiceLogs: this.requestFunctionFactory(descriptors.containerGetServiceLogs),
169
171
  /** Get a Service belonging to a Stack. */
170
172
  getService: this.requestFunctionFactory(descriptors.containerGetService),
173
+ /** Get a Container Template icon. */
174
+ getTemplateIcon: this.requestFunctionFactory(descriptors.containerGetTemplateIcon),
171
175
  /** Get a Container Template by ID. */
172
176
  getTemplate: this.requestFunctionFactory(descriptors.containerGetTemplate),
173
177
  /** List Stacks belonging to the executing user. */
@@ -194,8 +198,6 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
194
198
  startService: this.requestFunctionFactory(descriptors.containerStartService),
195
199
  /** Stop a started Service. */
196
200
  stopService: this.requestFunctionFactory(descriptors.containerStopService),
197
- /** Get a Container Template icon. */
198
- getTemplateIcon: this.requestFunctionFactory(descriptors.containerGetTemplateIcon),
199
201
  };
200
202
  /** The contract API allows you to manage your contracts and orders */
201
203
  contract = {
@@ -559,8 +561,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
559
561
  };
560
562
  /** The domain API allows you to manage your domains, DNS records, SSL certificates and ingress resources. */
561
563
  domain = {
562
- /** List Domains */
563
- listDomains: this.requestFunctionFactory(descriptors.domainListDomains),
564
+ /** List domains. */
565
+ serviceNextListDomains: this.requestFunctionFactory(descriptors.domainServiceNextListDomains),
564
566
  /** Update the nameservers of a Domain. */
565
567
  updateDomainNameservers: this.requestFunctionFactory(descriptors.domainUpdateDomainNameservers),
566
568
  /** Update the paths of an Ingress. */
@@ -593,8 +595,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
593
595
  checkDomainTransferability: this.requestFunctionFactory(descriptors.domainCheckDomainTransferability),
594
596
  /** Create an auth code for a Domains transfer-out process. */
595
597
  createDomainAuthCode: this.requestFunctionFactory(descriptors.domainCreateDomainAuthCode),
596
- /** Get a Domain. */
597
- getDomain: this.requestFunctionFactory(descriptors.domainGetDomain),
598
+ /** Get a domain. */
599
+ serviceNextGetDomain: this.requestFunctionFactory(descriptors.domainServiceNextGetDomain),
598
600
  /** Delete a Domain. */
599
601
  deleteDomain: this.requestFunctionFactory(descriptors.domainDeleteDomain),
600
602
  /** Get a Contact-Verification. */
@@ -607,8 +609,14 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
607
609
  listTldContactSchemas: this.requestFunctionFactory(descriptors.domainListTldContactSchemas),
608
610
  /** List TLDs. */
609
611
  listTlds: this.requestFunctionFactory(descriptors.domainListTlds),
612
+ /** Check if a Domain-Migration from a pAccount into a Project is possible. */
613
+ migrationCheckMigrationIsPossible: this.requestFunctionFactory(descriptors.domainMigrationCheckMigrationIsPossible),
614
+ /** List Domain-Migrations belonging to a pAccount. */
615
+ migrationListMigrationsByPaccount: this.requestFunctionFactory(descriptors.domainMigrationListMigrationsByPaccount),
610
616
  /** List Domain-Migrations belonging to a Project. */
611
617
  migrationListMigrationsByProjectId: this.requestFunctionFactory(descriptors.domainMigrationListMigrationsByProjectId),
618
+ /** Order a Domain-Migration from a pAccount into a Project. */
619
+ migrationOrderDomainMigration: this.requestFunctionFactory(descriptors.domainMigrationOrderDomainMigration),
612
620
  /** Resends a Contact-Verification email. */
613
621
  resendContactVerificationEmail: this.requestFunctionFactory(descriptors.domainResendContactVerificationEmail),
614
622
  /** Resend a Domain email. */
@@ -653,6 +661,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
653
661
  sslReplaceCertificate: this.requestFunctionFactory(descriptors.sslReplaceCertificate),
654
662
  /** List Certificates belonging to a Project or an Ingress. */
655
663
  sslListCertificates: this.requestFunctionFactory(descriptors.sslListCertificates),
664
+ /** Update the certificate of a CertificateRequest. */
665
+ sslSetCertificateRequestCertificate: this.requestFunctionFactory(descriptors.sslSetCertificateRequestCertificate),
656
666
  };
657
667
  /** The mail API allows you to manage your mail accounts. */
658
668
  mail = {
@@ -686,14 +696,28 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
686
696
  deleteMailAddress: this.requestFunctionFactory(descriptors.mailDeleteMailAddress),
687
697
  /** Disable the mail-archive of a MailAddress. */
688
698
  disableMailArchive: this.requestFunctionFactory(descriptors.mailDisableMailArchive),
699
+ /** Get a Mail RateLimit. */
700
+ getMailRateLimit: this.requestFunctionFactory(descriptors.mailGetMailRateLimit),
689
701
  /** List backups belonging to a MailAddress. */
690
702
  listBackupsForMailAddress: this.requestFunctionFactory(descriptors.mailListBackupsForMailAddress),
691
703
  /** List MailAddresses. */
692
704
  listMailAddressesForUser: this.requestFunctionFactory(descriptors.mailListMailAddressesForUser),
705
+ /** List Mail RateLimits. */
706
+ listMailRateLimits: this.requestFunctionFactory(descriptors.mailListMailRateLimits),
693
707
  /** List mail settings of a Project. */
694
708
  listProjectMailSettings: this.requestFunctionFactory(descriptors.mailListProjectMailSettings),
709
+ /** Check if a Migration between two projects is possible. */
710
+ migrationCheckMigrationIsPossible: this.requestFunctionFactory(descriptors.mailMigrationCheckMigrationIsPossible),
711
+ /** Get a Migration. */
712
+ migrationGetMigration: this.requestFunctionFactory(descriptors.mailMigrationGetMigration),
713
+ /** List Migrations belonging to a Project in customer center or mStudio. */
714
+ migrationListMigrations: this.requestFunctionFactory(descriptors.mailMigrationListMigrations),
715
+ /** Request a Mail Migration between two projects. */
716
+ migrationRequestMailMigration: this.requestFunctionFactory(descriptors.mailMigrationRequestMailMigration),
695
717
  /** Recover emails for a MailAddress from a backup. */
696
718
  recoverMailAddressEmails: this.requestFunctionFactory(descriptors.mailRecoverMailAddressEmails),
719
+ /** Request a rate limit change for a MailAddress. */
720
+ requestMailAddressRateLimitChange: this.requestFunctionFactory(descriptors.mailRequestMailAddressRateLimitChange),
697
721
  /** Update the description of a DeliveryBox. */
698
722
  updateDeliveryBoxDescription: this.requestFunctionFactory(descriptors.mailUpdateDeliveryBoxDescription),
699
723
  /** Update the password of a DeliveryBox. */
@@ -448,6 +448,12 @@ export const containerGetService = {
448
448
  method: "GET",
449
449
  operationId: "container-get-service",
450
450
  };
451
+ /** Get a Container Template icon. */
452
+ export const containerGetTemplateIcon = {
453
+ path: "/v3-next/container-templates/{templateId}/icon",
454
+ method: "GET",
455
+ operationId: "container-get-template-icon",
456
+ };
451
457
  /** Get a Container Template by ID. */
452
458
  export const containerGetTemplate = {
453
459
  path: "/v3-next/container-templates/{templateId}",
@@ -1186,11 +1192,11 @@ export const databaseUpdateRedisDatabaseDescription = {
1186
1192
  method: "PATCH",
1187
1193
  operationId: "database-update-redis-database-description",
1188
1194
  };
1189
- /** List Domains */
1190
- export const domainListDomains = {
1195
+ /** List domains. */
1196
+ export const domainServiceNextListDomains = {
1191
1197
  path: "/v3-next/domains",
1192
1198
  method: "GET",
1193
- operationId: "domain-list-domains",
1199
+ operationId: "domain-service-next-list-domains",
1194
1200
  };
1195
1201
  /** Update the nameservers of a Domain. */
1196
1202
  export const domainUpdateDomainNameservers = {
@@ -1336,11 +1342,11 @@ export const domainCreateDomainAuthCode = {
1336
1342
  method: "POST",
1337
1343
  operationId: "domain-create-domain-auth-code",
1338
1344
  };
1339
- /** Get a Domain. */
1340
- export const domainGetDomain = {
1345
+ /** Get a domain. */
1346
+ export const domainServiceNextGetDomain = {
1341
1347
  path: "/v3-next/domains/{domainId}",
1342
1348
  method: "GET",
1343
- operationId: "domain-get-domain",
1349
+ operationId: "domain-service-next-get-domain",
1344
1350
  };
1345
1351
  /** Delete a Domain. */
1346
1352
  export const domainDeleteDomain = {
@@ -1378,12 +1384,30 @@ export const domainListTlds = {
1378
1384
  method: "GET",
1379
1385
  operationId: "domain-list-tlds",
1380
1386
  };
1387
+ /** Check if a Domain-Migration from a pAccount into a Project is possible. */
1388
+ export const domainMigrationCheckMigrationIsPossible = {
1389
+ path: "/v3-next/domain-migrations/actions/possibility-check",
1390
+ method: "POST",
1391
+ operationId: "domain-migration-check-migration-is-possible",
1392
+ };
1393
+ /** List Domain-Migrations belonging to a pAccount. */
1394
+ export const domainMigrationListMigrationsByPaccount = {
1395
+ path: "/v3-next/p-accounts/{pAccount}/domain-migrations",
1396
+ method: "GET",
1397
+ operationId: "domain-migration-list-migrations-by-p-account",
1398
+ };
1381
1399
  /** List Domain-Migrations belonging to a Project. */
1382
1400
  export const domainMigrationListMigrationsByProjectId = {
1383
1401
  path: "/v3-next/projects/{projectId}/domain-migrations",
1384
1402
  method: "GET",
1385
1403
  operationId: "domain-migration-list-migrations-by-project-id",
1386
1404
  };
1405
+ /** Order a Domain-Migration from a pAccount into a Project. */
1406
+ export const domainMigrationOrderDomainMigration = {
1407
+ path: "/v3-next/domain-migrations",
1408
+ method: "POST",
1409
+ operationId: "domain-migration-order-domain-migration",
1410
+ };
1387
1411
  /** Resends a Contact-Verification email. */
1388
1412
  export const domainResendContactVerificationEmail = {
1389
1413
  path: "/v3-next/contact-verifications/{contactVerificationId}/actions/resend-contact-verification-email",
@@ -1966,6 +1990,12 @@ export const mailDisableMailArchive = {
1966
1990
  method: "DELETE",
1967
1991
  operationId: "mail-disable-mail-archive",
1968
1992
  };
1993
+ /** Get a Mail RateLimit. */
1994
+ export const mailGetMailRateLimit = {
1995
+ path: "/v3-next/mail-rate-limits/{mailRateLimitId}",
1996
+ method: "GET",
1997
+ operationId: "mail-get-mail-rate-limit",
1998
+ };
1969
1999
  /** List backups belonging to a MailAddress. */
1970
2000
  export const mailListBackupsForMailAddress = {
1971
2001
  path: "/v3-next/mail-addresses/{mailAddressId}/backups",
@@ -1978,18 +2008,54 @@ export const mailListMailAddressesForUser = {
1978
2008
  method: "GET",
1979
2009
  operationId: "mail-list-mail-addresses-for-user",
1980
2010
  };
2011
+ /** List Mail RateLimits. */
2012
+ export const mailListMailRateLimits = {
2013
+ path: "/v3-next/mail-rate-limits",
2014
+ method: "GET",
2015
+ operationId: "mail-list-mail-rate-limits",
2016
+ };
1981
2017
  /** List mail settings of a Project. */
1982
2018
  export const mailListProjectMailSettings = {
1983
2019
  path: "/v3-next/projects/{projectId}/mail-settings",
1984
2020
  method: "GET",
1985
2021
  operationId: "mail-list-project-mail-settings",
1986
2022
  };
2023
+ /** Check if a Migration between two projects is possible. */
2024
+ export const mailMigrationCheckMigrationIsPossible = {
2025
+ path: "/v3-next/mail-migrations/actions/possibility-check",
2026
+ method: "POST",
2027
+ operationId: "mail-migration-check-migration-is-possible",
2028
+ };
2029
+ /** Get a Migration. */
2030
+ export const mailMigrationGetMigration = {
2031
+ path: "/v3-next/mail-migrations/{migrationId}",
2032
+ method: "GET",
2033
+ operationId: "mail-migration-get-migration",
2034
+ };
2035
+ /** List Migrations belonging to a Project in customer center or mStudio. */
2036
+ export const mailMigrationListMigrations = {
2037
+ path: "/v3-next/mail-migrations",
2038
+ method: "GET",
2039
+ operationId: "mail-migration-list-migrations",
2040
+ };
2041
+ /** Request a Mail Migration between two projects. */
2042
+ export const mailMigrationRequestMailMigration = {
2043
+ path: "/v3-next/mail-migrations/actions/request",
2044
+ method: "POST",
2045
+ operationId: "mail-migration-request-mail-migration",
2046
+ };
1987
2047
  /** Recover emails for a MailAddress from a backup. */
1988
2048
  export const mailRecoverMailAddressEmails = {
1989
2049
  path: "/v3-next/mail-addresses/{mailAddressId}/backups/{backupId}/recovery",
1990
2050
  method: "POST",
1991
2051
  operationId: "mail-recover-mail-address-emails",
1992
2052
  };
2053
+ /** Request a rate limit change for a MailAddress. */
2054
+ export const mailRequestMailAddressRateLimitChange = {
2055
+ path: "/v3-next/mail-addresses/{mailAddressId}/request-rate-limit-change",
2056
+ method: "POST",
2057
+ operationId: "mail-request-mail-address-rate-limit-change",
2058
+ };
1993
2059
  /** Update the description of a DeliveryBox. */
1994
2060
  export const mailUpdateDeliveryBoxDescription = {
1995
2061
  path: "/v3-next/delivery-boxes/{deliveryBoxId}/description",
@@ -2476,6 +2542,12 @@ export const sslListCertificates = {
2476
2542
  method: "GET",
2477
2543
  operationId: "ssl-list-certificates",
2478
2544
  };
2545
+ /** Update the certificate of a CertificateRequest. */
2546
+ export const sslSetCertificateRequestCertificate = {
2547
+ path: "/v3-next/certificate-requests/{certificateRequestId}/certificate",
2548
+ method: "PATCH",
2549
+ operationId: "ssl-set-certificate-request-certificate",
2550
+ };
2479
2551
  /** Get storage space Statistics belonging to a Project. */
2480
2552
  export const storagespaceGetProjectStatistics = {
2481
2553
  path: "/v3-next/projects/{projectId}/storage-space-statistics",
@@ -2830,9 +2902,9 @@ export const verificationVerifyCompany = {
2830
2902
  method: "POST",
2831
2903
  operationId: "verification-verify-company",
2832
2904
  };
2833
- /** Get a Container Template icon. */
2834
- export const containerGetTemplateIcon = {
2835
- path: "/v3-next/container-templates/{templateId}/icon",
2905
+ /** Get ai hosting subscriptions of a customer. */
2906
+ export const aiHostingCustomerGetSubscriptions = {
2907
+ path: "/v3-next/customers/{customerId}/ai-subscriptions",
2836
2908
  method: "GET",
2837
- operationId: "container-get-template-icon",
2909
+ operationId: "ai-hosting-customer-get-subscriptions",
2838
2910
  };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.405.0';
1
+ export const MittwaldAPIClientVersion = "0.0.0-development";
@@ -668,6 +668,13 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
668
668
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
669
669
  statusSetAt: string;
670
670
  }>;
671
+ /** Get a Container Template icon. */
672
+ getTemplateIcon: (conf: {
673
+ templateId: string;
674
+ headers?: {
675
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
676
+ } | undefined;
677
+ }) => import("@mittwald/react-use-promise").AsyncResource<string>;
671
678
  /** Get a Container Template by ID. */
672
679
  getTemplate: (conf: {
673
680
  templateId: string;
@@ -676,29 +683,42 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
676
683
  } | undefined;
677
684
  }) => import("@mittwald/react-use-promise").AsyncResource<{
678
685
  categories: string[];
679
- description: {
680
- de: string;
681
- en: string;
682
- };
686
+ description: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
683
687
  developer: string;
684
688
  domains?: {
685
689
  port: string;
690
+ purpose?: string;
686
691
  service: string;
687
692
  userInput: string;
688
693
  }[] | undefined;
689
- icon: string;
694
+ help?: {
695
+ alerts?: {
696
+ content: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
697
+ heading: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
698
+ link?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
699
+ linkText?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
700
+ status: string;
701
+ }[];
702
+ technicalDetails?: {
703
+ key: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
704
+ value: string;
705
+ }[];
706
+ } | undefined;
707
+ iconUrl: string;
690
708
  id: string;
691
- license?: string | undefined;
709
+ license?: {
710
+ link?: string;
711
+ name: string;
712
+ } | undefined;
692
713
  manifestVersion: string;
693
- name: string;
714
+ name: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
694
715
  repository?: string | undefined;
695
- tagline: {
696
- de: string;
697
- en: string;
698
- };
716
+ supportLink?: string | undefined;
717
+ tagline: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
699
718
  userInputs?: {
700
719
  dataSource?: string;
701
720
  defaultValue?: string;
721
+ label?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
702
722
  name: string;
703
723
  required: boolean;
704
724
  validationSchema?: string;
@@ -764,6 +784,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
764
784
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
765
785
  category?: string | undefined;
766
786
  searchTerm?: string | undefined;
787
+ type?: "component" | "standalone" | undefined;
767
788
  limit?: number | undefined;
768
789
  skip?: number | undefined;
769
790
  page?: number | undefined;