@mittwald/api-client 4.421.0 → 4.422.0

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.
@@ -302,6 +302,10 @@ export declare namespace MittwaldAPIV2 {
302
302
  type RequestData = InferredRequestData<typeof descriptors.containerGetService>;
303
303
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetService, TStatus>;
304
304
  }
305
+ namespace ContainerGetTemplateAsset {
306
+ type RequestData = InferredRequestData<typeof descriptors.containerGetTemplateAsset>;
307
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplateAsset, TStatus>;
308
+ }
305
309
  namespace ContainerGetTemplate {
306
310
  type RequestData = InferredRequestData<typeof descriptors.containerGetTemplate>;
307
311
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplate, TStatus>;
@@ -1294,6 +1298,10 @@ export declare namespace MittwaldAPIV2 {
1294
1298
  type RequestData = InferredRequestData<typeof descriptors.mailDisableMailArchive>;
1295
1299
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDisableMailArchive, TStatus>;
1296
1300
  }
1301
+ namespace MailGetMailRateLimit {
1302
+ type RequestData = InferredRequestData<typeof descriptors.mailGetMailRateLimit>;
1303
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailGetMailRateLimit, TStatus>;
1304
+ }
1297
1305
  namespace MailListBackupsForMailAddress {
1298
1306
  type RequestData = InferredRequestData<typeof descriptors.mailListBackupsForMailAddress>;
1299
1307
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListBackupsForMailAddress, TStatus>;
@@ -1302,6 +1310,10 @@ export declare namespace MittwaldAPIV2 {
1302
1310
  type RequestData = InferredRequestData<typeof descriptors.mailListMailAddressesForUser>;
1303
1311
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListMailAddressesForUser, TStatus>;
1304
1312
  }
1313
+ namespace MailListMailRateLimits {
1314
+ type RequestData = InferredRequestData<typeof descriptors.mailListMailRateLimits>;
1315
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListMailRateLimits, TStatus>;
1316
+ }
1305
1317
  namespace MailListProjectMailSettings {
1306
1318
  type RequestData = InferredRequestData<typeof descriptors.mailListProjectMailSettings>;
1307
1319
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListProjectMailSettings, TStatus>;
@@ -1310,6 +1322,10 @@ export declare namespace MittwaldAPIV2 {
1310
1322
  type RequestData = InferredRequestData<typeof descriptors.mailRecoverMailAddressEmails>;
1311
1323
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRecoverMailAddressEmails, TStatus>;
1312
1324
  }
1325
+ namespace MailRequestMailAddressRateLimitChange {
1326
+ type RequestData = InferredRequestData<typeof descriptors.mailRequestMailAddressRateLimitChange>;
1327
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRequestMailAddressRateLimitChange, TStatus>;
1328
+ }
1313
1329
  namespace MailUpdateDeliveryBoxDescription {
1314
1330
  type RequestData = InferredRequestData<typeof descriptors.mailUpdateDeliveryBoxDescription>;
1315
1331
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailUpdateDeliveryBoxDescription, TStatus>;
@@ -1870,22 +1886,6 @@ export declare namespace MittwaldAPIV2 {
1870
1886
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1871
1887
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1872
1888
  }
1873
- namespace MailGetMailRateLimit {
1874
- type RequestData = InferredRequestData<typeof descriptors.mailGetMailRateLimit>;
1875
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailGetMailRateLimit, TStatus>;
1876
- }
1877
- namespace MailListMailRateLimits {
1878
- type RequestData = InferredRequestData<typeof descriptors.mailListMailRateLimits>;
1879
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListMailRateLimits, TStatus>;
1880
- }
1881
- namespace MailRequestMailAddressRateLimitChange {
1882
- type RequestData = InferredRequestData<typeof descriptors.mailRequestMailAddressRateLimitChange>;
1883
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRequestMailAddressRateLimitChange, TStatus>;
1884
- }
1885
- namespace ContainerGetTemplateAsset {
1886
- type RequestData = InferredRequestData<typeof descriptors.containerGetTemplateAsset>;
1887
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplateAsset, TStatus>;
1888
- }
1889
1889
  }
1890
1890
  namespace Components {
1891
1891
  namespace Schemas {
@@ -2927,6 +2927,15 @@ export declare namespace MittwaldAPIV2 {
2927
2927
  version: string;
2928
2928
  website?: string;
2929
2929
  }
2930
+ interface ContainerTemplateStatsListResponse {
2931
+ category?: string;
2932
+ templates?: MittwaldAPIV2.Components.Schemas.ContainerTemplateStatsResponse[];
2933
+ }
2934
+ interface ContainerTemplateStatsResponse {
2935
+ id: string;
2936
+ installations: number;
2937
+ installations30Days: number;
2938
+ }
2930
2939
  interface ContainerTemplateTranslatedString {
2931
2940
  de: string;
2932
2941
  en: string;
@@ -4020,6 +4029,19 @@ export declare namespace MittwaldAPIV2 {
4020
4029
  ownerContactIssues: MittwaldAPIV2.Components.Schemas.DomainmigrationOwnerContactIssue[];
4021
4030
  warnings?: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainMigrationWarning[];
4022
4031
  }
4032
+ /**
4033
+ * One invalid owner contact field behind an ownerContactInvalid issue. A consumer can show a generic 'owner contact invalid' message and append a field-/rule-specific hint via translation.
4034
+ */
4035
+ interface DomainmigrationOwnerContactIssue {
4036
+ /**
4037
+ * The affected owner contact field, e.g. street, name, zip.
4038
+ */
4039
+ field: string;
4040
+ /**
4041
+ * Stable title of the violated contact-schema rule - a translation key for consumers. Absent for the general character validation, which has no such rule title (hence optional).
4042
+ */
4043
+ schemaTitle?: string;
4044
+ }
4023
4045
  interface DomainmigrationSubdomain {
4024
4046
  dnsRecords: MittwaldAPIV2.Components.Schemas.DomainmigrationDNSRecord[];
4025
4047
  hostname: string;
@@ -5312,6 +5334,10 @@ export declare namespace MittwaldAPIV2 {
5312
5334
  keepDays: number;
5313
5335
  relocateSensitivity?: number;
5314
5336
  }
5337
+ interface MailsystemRateLimit {
5338
+ id: string;
5339
+ rateLimit: number;
5340
+ }
5315
5341
  interface MarketplaceContractPartner {
5316
5342
  contractPartner: {
5317
5343
  address: MittwaldAPIV2.Components.Schemas.CommonsAddress;
@@ -5927,6 +5953,57 @@ export declare namespace MittwaldAPIV2 {
5927
5953
  template: MittwaldAPIV2.Components.Schemas.ArticleArticleTemplate;
5928
5954
  }
5929
5955
  type PolicyPolicy = string;
5956
+ interface ActivitylogAppInstallationDatabaseLinked {
5957
+ changes: {
5958
+ after: {
5959
+ database: {};
5960
+ };
5961
+ before: {
5962
+ database: {} | null;
5963
+ };
5964
+ };
5965
+ name: "app.database-linked";
5966
+ parameters: {
5967
+ appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5968
+ database: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5969
+ };
5970
+ }
5971
+ interface ActivitylogAppInstallationDatabaseUnlinked {
5972
+ changes: {
5973
+ after: {
5974
+ database: {} | null;
5975
+ };
5976
+ before: {
5977
+ database: {};
5978
+ };
5979
+ };
5980
+ name: "app.database-unlinked";
5981
+ parameters: {
5982
+ appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5983
+ database: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5984
+ };
5985
+ }
5986
+ interface ActivitylogAppInstallationDeleted {
5987
+ changes: {};
5988
+ name: "app.deleted";
5989
+ parameters: {
5990
+ appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5991
+ };
5992
+ }
5993
+ interface ActivitylogAppInstallationDescriptionSet {
5994
+ changes: {
5995
+ after?: {
5996
+ description: string;
5997
+ };
5998
+ before?: {
5999
+ description: string | null;
6000
+ };
6001
+ };
6002
+ name: "app.description-set";
6003
+ parameters: {
6004
+ appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6005
+ };
6006
+ }
5930
6007
  interface ActivitylogAppInstallationCopyRequested {
5931
6008
  name: "app.copy-requested";
5932
6009
  parameters: {
@@ -6086,6 +6163,18 @@ export declare namespace MittwaldAPIV2 {
6086
6163
  name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6087
6164
  };
6088
6165
  }
6166
+ interface ActivitylogDnsARecordSetManaged {
6167
+ changes: {
6168
+ after?: {
6169
+ aRecords: string;
6170
+ };
6171
+ before?: {};
6172
+ };
6173
+ name: "dns.a-record-set-managed";
6174
+ parameters: {
6175
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6176
+ };
6177
+ }
6089
6178
  interface ActivitylogDnsARecordSet {
6090
6179
  changes: {
6091
6180
  after?: {
@@ -6130,6 +6219,32 @@ export declare namespace MittwaldAPIV2 {
6130
6219
  domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6131
6220
  };
6132
6221
  }
6222
+ interface ActivitylogDnsDomainDeleted {
6223
+ changes: {};
6224
+ name: "dns.domain-deleted";
6225
+ parameters: {
6226
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6227
+ };
6228
+ }
6229
+ interface ActivitylogDnsIngressDeleted {
6230
+ changes: {};
6231
+ name: "dns.ingress-deleted";
6232
+ parameters: {
6233
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6234
+ };
6235
+ }
6236
+ interface ActivitylogDnsMxRecordSetManaged {
6237
+ changes: {
6238
+ after?: {
6239
+ mx: string;
6240
+ };
6241
+ before?: {};
6242
+ };
6243
+ name: "dns.mx-record-set-managed";
6244
+ parameters: {
6245
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6246
+ };
6247
+ }
6133
6248
  interface ActivitylogDnsMxRecordSet {
6134
6249
  changes: {
6135
6250
  after?: {
@@ -6886,121 +7001,6 @@ export declare namespace MittwaldAPIV2 {
6886
7001
  }
6887
7002
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
6888
7003
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
6889
- interface ActivitylogDnsARecordSetManaged {
6890
- changes: {
6891
- after?: {
6892
- aRecords: string;
6893
- };
6894
- before?: {};
6895
- };
6896
- name: "dns.a-record-set-managed";
6897
- parameters: {
6898
- domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6899
- };
6900
- }
6901
- interface ActivitylogDnsDomainDeleted {
6902
- changes: {};
6903
- name: "dns.domain-deleted";
6904
- parameters: {
6905
- domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6906
- };
6907
- }
6908
- interface ActivitylogDnsIngressDeleted {
6909
- changes: {};
6910
- name: "dns.ingress-deleted";
6911
- parameters: {
6912
- domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6913
- };
6914
- }
6915
- interface ActivitylogDnsMxRecordSetManaged {
6916
- changes: {
6917
- after?: {
6918
- mx: string;
6919
- };
6920
- before?: {};
6921
- };
6922
- name: "dns.mx-record-set-managed";
6923
- parameters: {
6924
- domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6925
- };
6926
- }
6927
- interface ContainerTemplateStatsListResponse {
6928
- category?: string;
6929
- templates?: MittwaldAPIV2.Components.Schemas.ContainerTemplateStatsResponse[];
6930
- }
6931
- interface ContainerTemplateStatsResponse {
6932
- id: string;
6933
- installations: number;
6934
- installations30Days: number;
6935
- }
6936
- interface MailsystemRateLimit {
6937
- id: string;
6938
- rateLimit: number;
6939
- }
6940
- interface ActivitylogAppInstallationDatabaseLinked {
6941
- changes: {
6942
- after: {
6943
- database: {};
6944
- };
6945
- before: {
6946
- database: {} | null;
6947
- };
6948
- };
6949
- name: "app.database-linked";
6950
- parameters: {
6951
- appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6952
- database: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6953
- };
6954
- }
6955
- interface ActivitylogAppInstallationDatabaseUnlinked {
6956
- changes: {
6957
- after: {
6958
- database: {} | null;
6959
- };
6960
- before: {
6961
- database: {};
6962
- };
6963
- };
6964
- name: "app.database-unlinked";
6965
- parameters: {
6966
- appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6967
- database: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6968
- };
6969
- }
6970
- interface ActivitylogAppInstallationDescriptionSet {
6971
- changes: {
6972
- after?: {
6973
- description: string;
6974
- };
6975
- before?: {
6976
- description: string | null;
6977
- };
6978
- };
6979
- name: "app.description-set";
6980
- parameters: {
6981
- appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6982
- };
6983
- }
6984
- interface ActivitylogAppInstallationDeleted {
6985
- changes: {};
6986
- name: "app.deleted";
6987
- parameters: {
6988
- appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6989
- };
6990
- }
6991
- /**
6992
- * One invalid owner contact field behind an ownerContactInvalid issue. A consumer can show a generic 'owner contact invalid' message and append a field-/rule-specific hint via translation.
6993
- */
6994
- interface DomainmigrationOwnerContactIssue {
6995
- /**
6996
- * The affected owner contact field, e.g. street, name, zip.
6997
- */
6998
- field: string;
6999
- /**
7000
- * Stable title of the violated contact-schema rule - a translation key for consumers. Absent for the general character validation, which has no such rule title (hence optional).
7001
- */
7002
- schemaTitle?: string;
7003
- }
7004
7004
  interface CommonsAddress {
7005
7005
  street: string;
7006
7006
  houseNumber: string;
@@ -11202,6 +11202,77 @@ export declare namespace MittwaldAPIV2 {
11202
11202
  }
11203
11203
  }
11204
11204
  }
11205
+ namespace V2ContainerTemplatesTemplateIdAssetsAssetPath {
11206
+ namespace Get {
11207
+ namespace Parameters {
11208
+ type Path = {
11209
+ templateId: string;
11210
+ assetPath: string;
11211
+ };
11212
+ type Header = {};
11213
+ type Query = {};
11214
+ }
11215
+ namespace Responses {
11216
+ namespace $200 {
11217
+ namespace Content {
11218
+ type ImageJpeg = string;
11219
+ type ImagePng = string;
11220
+ type ImageSvgXml = string;
11221
+ type ImageWebp = string;
11222
+ }
11223
+ }
11224
+ namespace $400 {
11225
+ namespace Content {
11226
+ interface ApplicationJson {
11227
+ [k: string]: unknown;
11228
+ }
11229
+ }
11230
+ }
11231
+ namespace $403 {
11232
+ namespace Content {
11233
+ interface ApplicationJson {
11234
+ [k: string]: unknown;
11235
+ }
11236
+ }
11237
+ }
11238
+ namespace $404 {
11239
+ namespace Content {
11240
+ interface ApplicationJson {
11241
+ [k: string]: unknown;
11242
+ }
11243
+ }
11244
+ }
11245
+ namespace $429 {
11246
+ namespace Content {
11247
+ interface ApplicationJson {
11248
+ [k: string]: unknown;
11249
+ }
11250
+ }
11251
+ }
11252
+ namespace $500 {
11253
+ namespace Content {
11254
+ interface ApplicationJson {
11255
+ [k: string]: unknown;
11256
+ }
11257
+ }
11258
+ }
11259
+ namespace $503 {
11260
+ namespace Content {
11261
+ interface ApplicationJson {
11262
+ [k: string]: unknown;
11263
+ }
11264
+ }
11265
+ }
11266
+ namespace Default {
11267
+ namespace Content {
11268
+ interface ApplicationJson {
11269
+ [k: string]: unknown;
11270
+ }
11271
+ }
11272
+ }
11273
+ }
11274
+ }
11275
+ }
11205
11276
  namespace V2ContainerTemplatesTemplateId {
11206
11277
  namespace Get {
11207
11278
  namespace Parameters {
@@ -11439,6 +11510,7 @@ export declare namespace MittwaldAPIV2 {
11439
11510
  }
11440
11511
  }
11441
11512
  }
11513
+ namespace V2ContainerTemplateStatistics { }
11442
11514
  namespace V2ContainerTemplates {
11443
11515
  namespace Get {
11444
11516
  namespace Parameters {
@@ -17178,11 +17250,17 @@ export declare namespace MittwaldAPIV2 {
17178
17250
  namespace V2AppinstallationsAppInstallationIdActionsAction { }
17179
17251
  namespace V2AppInstallationsAppInstallationIdActionsAction { }
17180
17252
  namespace V2AppinstallationsAppInstallationIdDatabases { }
17253
+ namespace V2ContainerTemplatesTemplateIdIcon { }
17181
17254
  namespace V2ActionsValidateContainerRegistryUri { }
17182
17255
  namespace V2RegistriesRegistryIdActionsValidateCredentials { }
17183
17256
  namespace V2ContractsContractIdItemsContractItemIdNextTerminationDates { }
17184
17257
  namespace V2CustomerCustomerIdActionsLeave { }
17185
17258
  namespace V2CustomersCustomerIdActionsLeave { }
17259
+ namespace V2MysqlDatabasesMysqlDatabaseIdDefaultCharset { }
17260
+ namespace V2MysqlDatabasesMysqlDatabaseIdDescription { }
17261
+ namespace V2MysqlUsersMysqlUserIdPassword { }
17262
+ namespace V2RedisDatabasesRedisDatabaseIdConfiguration { }
17263
+ namespace V2RedisDatabasesRedisDatabaseIdDescription { }
17186
17264
  namespace V2DnsZonesZoneIdRecordsetAcombinedCustom { }
17187
17265
  namespace V2DnsZonesZoneIdRecordsetAcombinedManagedIngress { }
17188
17266
  namespace V2DnsZonesZoneIdRecordsetCname { }
@@ -24277,6 +24355,45 @@ export declare namespace MittwaldAPIV2 {
24277
24355
  }
24278
24356
  }
24279
24357
  }
24358
+ namespace V2MailRateLimitsMailRateLimitId {
24359
+ namespace Get {
24360
+ namespace Parameters {
24361
+ type Path = {
24362
+ mailRateLimitId: string;
24363
+ };
24364
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
24365
+ type Query = {};
24366
+ }
24367
+ namespace Responses {
24368
+ namespace $200 {
24369
+ namespace Content {
24370
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailsystemRateLimit;
24371
+ }
24372
+ }
24373
+ namespace $404 {
24374
+ namespace Content {
24375
+ interface ApplicationJson {
24376
+ [k: string]: unknown;
24377
+ }
24378
+ }
24379
+ }
24380
+ namespace $429 {
24381
+ namespace Content {
24382
+ interface ApplicationJson {
24383
+ [k: string]: unknown;
24384
+ }
24385
+ }
24386
+ }
24387
+ namespace Default {
24388
+ namespace Content {
24389
+ interface ApplicationJson {
24390
+ [k: string]: unknown;
24391
+ }
24392
+ }
24393
+ }
24394
+ }
24395
+ }
24396
+ }
24280
24397
  namespace V2MailAddressesMailAddressIdBackups {
24281
24398
  namespace Get {
24282
24399
  namespace Parameters {
@@ -24414,6 +24531,36 @@ export declare namespace MittwaldAPIV2 {
24414
24531
  }
24415
24532
  }
24416
24533
  }
24534
+ namespace V2MailRateLimits {
24535
+ namespace Get {
24536
+ namespace Parameters {
24537
+ type Path = {};
24538
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
24539
+ type Query = {};
24540
+ }
24541
+ namespace Responses {
24542
+ namespace $200 {
24543
+ namespace Content {
24544
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailsystemRateLimit[];
24545
+ }
24546
+ }
24547
+ namespace $429 {
24548
+ namespace Content {
24549
+ interface ApplicationJson {
24550
+ [k: string]: unknown;
24551
+ }
24552
+ }
24553
+ }
24554
+ namespace Default {
24555
+ namespace Content {
24556
+ interface ApplicationJson {
24557
+ [k: string]: unknown;
24558
+ }
24559
+ }
24560
+ }
24561
+ }
24562
+ }
24563
+ }
24417
24564
  namespace V2ProjectsProjectIdMailsettings { }
24418
24565
  namespace V2ProjectsProjectIdMailSettings {
24419
24566
  namespace Get {
@@ -24441,7 +24588,68 @@ export declare namespace MittwaldAPIV2 {
24441
24588
  }
24442
24589
  }
24443
24590
  }
24444
- namespace $403 {
24591
+ namespace $403 {
24592
+ namespace Content {
24593
+ interface ApplicationJson {
24594
+ [k: string]: unknown;
24595
+ }
24596
+ }
24597
+ }
24598
+ namespace $404 {
24599
+ namespace Content {
24600
+ interface ApplicationJson {
24601
+ [k: string]: unknown;
24602
+ }
24603
+ }
24604
+ }
24605
+ namespace $429 {
24606
+ namespace Content {
24607
+ interface ApplicationJson {
24608
+ [k: string]: unknown;
24609
+ }
24610
+ }
24611
+ }
24612
+ namespace $500 {
24613
+ namespace Content {
24614
+ interface ApplicationJson {
24615
+ [k: string]: unknown;
24616
+ }
24617
+ }
24618
+ }
24619
+ namespace $503 {
24620
+ namespace Content {
24621
+ interface ApplicationJson {
24622
+ [k: string]: unknown;
24623
+ }
24624
+ }
24625
+ }
24626
+ namespace Default {
24627
+ namespace Content {
24628
+ interface ApplicationJson {
24629
+ [k: string]: unknown;
24630
+ }
24631
+ }
24632
+ }
24633
+ }
24634
+ }
24635
+ }
24636
+ namespace V2MailAddressesMailAddressIdBackupsBackupIdRecovery {
24637
+ namespace Post {
24638
+ namespace Parameters {
24639
+ type Path = {
24640
+ mailAddressId: string;
24641
+ backupId: string;
24642
+ };
24643
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
24644
+ type Query = {};
24645
+ }
24646
+ namespace Responses {
24647
+ namespace $204 {
24648
+ namespace Content {
24649
+ type Empty = unknown;
24650
+ }
24651
+ }
24652
+ namespace $400 {
24445
24653
  namespace Content {
24446
24654
  interface ApplicationJson {
24447
24655
  [k: string]: unknown;
@@ -24462,20 +24670,6 @@ export declare namespace MittwaldAPIV2 {
24462
24670
  }
24463
24671
  }
24464
24672
  }
24465
- namespace $500 {
24466
- namespace Content {
24467
- interface ApplicationJson {
24468
- [k: string]: unknown;
24469
- }
24470
- }
24471
- }
24472
- namespace $503 {
24473
- namespace Content {
24474
- interface ApplicationJson {
24475
- [k: string]: unknown;
24476
- }
24477
- }
24478
- }
24479
24673
  namespace Default {
24480
24674
  namespace Content {
24481
24675
  interface ApplicationJson {
@@ -24486,13 +24680,15 @@ export declare namespace MittwaldAPIV2 {
24486
24680
  }
24487
24681
  }
24488
24682
  }
24489
- namespace V2MailAddressesMailAddressIdBackupsBackupIdRecovery {
24683
+ namespace V2MailAddressesMailAddressIdActionsRequestRateLimitChange {
24490
24684
  namespace Post {
24491
24685
  namespace Parameters {
24492
24686
  type Path = {
24493
24687
  mailAddressId: string;
24494
- backupId: string;
24495
24688
  };
24689
+ interface RequestBody {
24690
+ rateLimitId: string;
24691
+ }
24496
24692
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
24497
24693
  type Query = {};
24498
24694
  }
@@ -24509,6 +24705,13 @@ export declare namespace MittwaldAPIV2 {
24509
24705
  }
24510
24706
  }
24511
24707
  }
24708
+ namespace $403 {
24709
+ namespace Content {
24710
+ interface ApplicationJson {
24711
+ [k: string]: unknown;
24712
+ }
24713
+ }
24714
+ }
24512
24715
  namespace $404 {
24513
24716
  namespace Content {
24514
24717
  interface ApplicationJson {
@@ -24523,6 +24726,20 @@ export declare namespace MittwaldAPIV2 {
24523
24726
  }
24524
24727
  }
24525
24728
  }
24729
+ namespace $500 {
24730
+ namespace Content {
24731
+ interface ApplicationJson {
24732
+ [k: string]: unknown;
24733
+ }
24734
+ }
24735
+ }
24736
+ namespace $503 {
24737
+ namespace Content {
24738
+ interface ApplicationJson {
24739
+ [k: string]: unknown;
24740
+ }
24741
+ }
24742
+ }
24526
24743
  namespace Default {
24527
24744
  namespace Content {
24528
24745
  interface ApplicationJson {
@@ -31246,217 +31463,5 @@ export declare namespace MittwaldAPIV2 {
31246
31463
  }
31247
31464
  }
31248
31465
  }
31249
- namespace V2ContainerTemplateStatistics { }
31250
- namespace V2MailRateLimitsMailRateLimitId {
31251
- namespace Get {
31252
- namespace Parameters {
31253
- type Path = {
31254
- mailRateLimitId: string;
31255
- };
31256
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
31257
- type Query = {};
31258
- }
31259
- namespace Responses {
31260
- namespace $200 {
31261
- namespace Content {
31262
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailsystemRateLimit;
31263
- }
31264
- }
31265
- namespace $404 {
31266
- namespace Content {
31267
- interface ApplicationJson {
31268
- [k: string]: unknown;
31269
- }
31270
- }
31271
- }
31272
- namespace $429 {
31273
- namespace Content {
31274
- interface ApplicationJson {
31275
- [k: string]: unknown;
31276
- }
31277
- }
31278
- }
31279
- namespace Default {
31280
- namespace Content {
31281
- interface ApplicationJson {
31282
- [k: string]: unknown;
31283
- }
31284
- }
31285
- }
31286
- }
31287
- }
31288
- }
31289
- namespace V2MailRateLimits {
31290
- namespace Get {
31291
- namespace Parameters {
31292
- type Path = {};
31293
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
31294
- type Query = {};
31295
- }
31296
- namespace Responses {
31297
- namespace $200 {
31298
- namespace Content {
31299
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailsystemRateLimit[];
31300
- }
31301
- }
31302
- namespace $429 {
31303
- namespace Content {
31304
- interface ApplicationJson {
31305
- [k: string]: unknown;
31306
- }
31307
- }
31308
- }
31309
- namespace Default {
31310
- namespace Content {
31311
- interface ApplicationJson {
31312
- [k: string]: unknown;
31313
- }
31314
- }
31315
- }
31316
- }
31317
- }
31318
- }
31319
- namespace V2MailAddressesMailAddressIdActionsRequestRateLimitChange {
31320
- namespace Post {
31321
- namespace Parameters {
31322
- type Path = {
31323
- mailAddressId: string;
31324
- };
31325
- interface RequestBody {
31326
- rateLimitId: string;
31327
- }
31328
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
31329
- type Query = {};
31330
- }
31331
- namespace Responses {
31332
- namespace $204 {
31333
- namespace Content {
31334
- type Empty = unknown;
31335
- }
31336
- }
31337
- namespace $400 {
31338
- namespace Content {
31339
- interface ApplicationJson {
31340
- [k: string]: unknown;
31341
- }
31342
- }
31343
- }
31344
- namespace $403 {
31345
- namespace Content {
31346
- interface ApplicationJson {
31347
- [k: string]: unknown;
31348
- }
31349
- }
31350
- }
31351
- namespace $404 {
31352
- namespace Content {
31353
- interface ApplicationJson {
31354
- [k: string]: unknown;
31355
- }
31356
- }
31357
- }
31358
- namespace $429 {
31359
- namespace Content {
31360
- interface ApplicationJson {
31361
- [k: string]: unknown;
31362
- }
31363
- }
31364
- }
31365
- namespace $500 {
31366
- namespace Content {
31367
- interface ApplicationJson {
31368
- [k: string]: unknown;
31369
- }
31370
- }
31371
- }
31372
- namespace $503 {
31373
- namespace Content {
31374
- interface ApplicationJson {
31375
- [k: string]: unknown;
31376
- }
31377
- }
31378
- }
31379
- namespace Default {
31380
- namespace Content {
31381
- interface ApplicationJson {
31382
- [k: string]: unknown;
31383
- }
31384
- }
31385
- }
31386
- }
31387
- }
31388
- }
31389
- namespace V2ContainerTemplatesTemplateIdAssetsAssetPath {
31390
- namespace Get {
31391
- namespace Parameters {
31392
- type Path = {
31393
- templateId: string;
31394
- assetPath: string;
31395
- };
31396
- type Header = {};
31397
- type Query = {};
31398
- }
31399
- namespace Responses {
31400
- namespace $200 {
31401
- namespace Content {
31402
- type ImageJpeg = string;
31403
- type ImagePng = string;
31404
- type ImageSvgXml = string;
31405
- type ImageWebp = string;
31406
- }
31407
- }
31408
- namespace $400 {
31409
- namespace Content {
31410
- interface ApplicationJson {
31411
- [k: string]: unknown;
31412
- }
31413
- }
31414
- }
31415
- namespace $403 {
31416
- namespace Content {
31417
- interface ApplicationJson {
31418
- [k: string]: unknown;
31419
- }
31420
- }
31421
- }
31422
- namespace $404 {
31423
- namespace Content {
31424
- interface ApplicationJson {
31425
- [k: string]: unknown;
31426
- }
31427
- }
31428
- }
31429
- namespace $429 {
31430
- namespace Content {
31431
- interface ApplicationJson {
31432
- [k: string]: unknown;
31433
- }
31434
- }
31435
- }
31436
- namespace $500 {
31437
- namespace Content {
31438
- interface ApplicationJson {
31439
- [k: string]: unknown;
31440
- }
31441
- }
31442
- }
31443
- namespace $503 {
31444
- namespace Content {
31445
- interface ApplicationJson {
31446
- [k: string]: unknown;
31447
- }
31448
- }
31449
- }
31450
- namespace Default {
31451
- namespace Content {
31452
- interface ApplicationJson {
31453
- [k: string]: unknown;
31454
- }
31455
- }
31456
- }
31457
- }
31458
- }
31459
- }
31460
- namespace V2ContainerTemplatesTemplateIdIcon { }
31461
31466
  }
31462
31467
  }