@mittwald/api-client 4.414.0 → 4.415.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>;
@@ -1314,6 +1318,10 @@ export declare namespace MittwaldAPIV2 {
1314
1318
  type RequestData = InferredRequestData<typeof descriptors.mailDisableMailArchive>;
1315
1319
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDisableMailArchive, TStatus>;
1316
1320
  }
1321
+ namespace MailGetMailRateLimit {
1322
+ type RequestData = InferredRequestData<typeof descriptors.mailGetMailRateLimit>;
1323
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailGetMailRateLimit, TStatus>;
1324
+ }
1317
1325
  namespace MailListBackupsForMailAddress {
1318
1326
  type RequestData = InferredRequestData<typeof descriptors.mailListBackupsForMailAddress>;
1319
1327
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListBackupsForMailAddress, TStatus>;
@@ -1322,6 +1330,10 @@ export declare namespace MittwaldAPIV2 {
1322
1330
  type RequestData = InferredRequestData<typeof descriptors.mailListMailAddressesForUser>;
1323
1331
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListMailAddressesForUser, TStatus>;
1324
1332
  }
1333
+ namespace MailListMailRateLimits {
1334
+ type RequestData = InferredRequestData<typeof descriptors.mailListMailRateLimits>;
1335
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListMailRateLimits, TStatus>;
1336
+ }
1325
1337
  namespace MailListProjectMailSettings {
1326
1338
  type RequestData = InferredRequestData<typeof descriptors.mailListProjectMailSettings>;
1327
1339
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListProjectMailSettings, TStatus>;
@@ -1330,6 +1342,10 @@ export declare namespace MittwaldAPIV2 {
1330
1342
  type RequestData = InferredRequestData<typeof descriptors.mailRecoverMailAddressEmails>;
1331
1343
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRecoverMailAddressEmails, TStatus>;
1332
1344
  }
1345
+ namespace MailRequestMailAddressRateLimitChange {
1346
+ type RequestData = InferredRequestData<typeof descriptors.mailRequestMailAddressRateLimitChange>;
1347
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRequestMailAddressRateLimitChange, TStatus>;
1348
+ }
1333
1349
  namespace MailUpdateDeliveryBoxDescription {
1334
1350
  type RequestData = InferredRequestData<typeof descriptors.mailUpdateDeliveryBoxDescription>;
1335
1351
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailUpdateDeliveryBoxDescription, TStatus>;
@@ -1890,22 +1906,6 @@ export declare namespace MittwaldAPIV2 {
1890
1906
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1891
1907
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1892
1908
  }
1893
- namespace MailGetMailRateLimit {
1894
- type RequestData = InferredRequestData<typeof descriptors.mailGetMailRateLimit>;
1895
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailGetMailRateLimit, TStatus>;
1896
- }
1897
- namespace MailListMailRateLimits {
1898
- type RequestData = InferredRequestData<typeof descriptors.mailListMailRateLimits>;
1899
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListMailRateLimits, TStatus>;
1900
- }
1901
- namespace MailRequestMailAddressRateLimitChange {
1902
- type RequestData = InferredRequestData<typeof descriptors.mailRequestMailAddressRateLimitChange>;
1903
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRequestMailAddressRateLimitChange, TStatus>;
1904
- }
1905
- namespace ContainerGetTemplateAsset {
1906
- type RequestData = InferredRequestData<typeof descriptors.containerGetTemplateAsset>;
1907
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplateAsset, TStatus>;
1908
- }
1909
1909
  }
1910
1910
  namespace Components {
1911
1911
  namespace Schemas {
@@ -2947,6 +2947,15 @@ export declare namespace MittwaldAPIV2 {
2947
2947
  version: string;
2948
2948
  website?: string;
2949
2949
  }
2950
+ interface ContainerTemplateStatsListResponse {
2951
+ category?: string;
2952
+ templates?: MittwaldAPIV2.Components.Schemas.ContainerTemplateStatsResponse[];
2953
+ }
2954
+ interface ContainerTemplateStatsResponse {
2955
+ id: string;
2956
+ installations: number;
2957
+ installations30Days: number;
2958
+ }
2950
2959
  interface ContainerTemplateTranslatedString {
2951
2960
  de: string;
2952
2961
  en: string;
@@ -3993,8 +4002,9 @@ export declare namespace MittwaldAPIV2 {
3993
4002
  * * `insufficientState`: the COAB data is incomplete (e.g. missing registrar, price or owner) or the domain is still reserved at the registry.
3994
4003
  * * `contractDateOutOfRange`: the COAB contract's next-period date is in the past or more than two years in the future.
3995
4004
  * * `invalidDomainName`: the COAB domain name does not match the `idn-naked-domain` format we accept.
4005
+ * * `ownerContactInvalid`: the domain's owner contact data (Inhaberdaten) failed validation at the registry/domain-service (invalid characters, or a TLD-specific contact-schema rule such as no consecutive whitespaces), so the migration is rejected. `ownerContactIssues` on the domain carries the affected field(s)/rule(s).
3996
4006
  */
3997
- type DomainmigrationDomainNotMigratableReason = "needEpp" | "tldNotSupported" | "tldNotMigratable" | "premiumDomain" | "registrarNotSupported" | "notOrderable" | "insufficientState" | "contractDateOutOfRange" | "invalidDomainName";
4007
+ type DomainmigrationDomainNotMigratableReason = "needEpp" | "tldNotSupported" | "tldNotMigratable" | "premiumDomain" | "registrarNotSupported" | "notOrderable" | "insufficientState" | "contractDateOutOfRange" | "invalidDomainName" | "ownerContactInvalid";
3998
4008
  /**
3999
4009
  * A non-migratable-domain failure: one selected domain cannot be migrated. type is always domainNotMigratable, path is the affected domain, and context.reason carries the typed reason code.
4000
4010
  */
@@ -4036,6 +4046,7 @@ export declare namespace MittwaldAPIV2 {
4036
4046
  hostname: string;
4037
4047
  issues: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainNotMigratableReason[];
4038
4048
  migratable: false;
4049
+ ownerContactIssues: MittwaldAPIV2.Components.Schemas.DomainmigrationOwnerContactIssue[];
4039
4050
  warnings?: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainMigrationWarning[];
4040
4051
  }
4041
4052
  interface DomainmigrationSubdomain {
@@ -5328,6 +5339,10 @@ export declare namespace MittwaldAPIV2 {
5328
5339
  keepDays: number;
5329
5340
  relocateSensitivity?: number;
5330
5341
  }
5342
+ interface MailsystemRateLimit {
5343
+ id: string;
5344
+ rateLimit: number;
5345
+ }
5331
5346
  interface MarketplaceContractPartner {
5332
5347
  contractPartner: {
5333
5348
  address: MittwaldAPIV2.Components.Schemas.CommonsAddress;
@@ -5943,6 +5958,57 @@ export declare namespace MittwaldAPIV2 {
5943
5958
  template: MittwaldAPIV2.Components.Schemas.ArticleArticleTemplate;
5944
5959
  }
5945
5960
  type PolicyPolicy = string;
5961
+ interface ActivitylogAppInstallationDatabaseLinked {
5962
+ changes: {
5963
+ after: {
5964
+ database: {};
5965
+ };
5966
+ before: {
5967
+ database: {} | null;
5968
+ };
5969
+ };
5970
+ name: "app.database-linked";
5971
+ parameters: {
5972
+ appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5973
+ database: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5974
+ };
5975
+ }
5976
+ interface ActivitylogAppInstallationDatabaseUnlinked {
5977
+ changes: {
5978
+ after: {
5979
+ database: {} | null;
5980
+ };
5981
+ before: {
5982
+ database: {};
5983
+ };
5984
+ };
5985
+ name: "app.database-unlinked";
5986
+ parameters: {
5987
+ appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5988
+ database: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5989
+ };
5990
+ }
5991
+ interface ActivitylogAppInstallationDeleted {
5992
+ changes: {};
5993
+ name: "app.deleted";
5994
+ parameters: {
5995
+ appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
5996
+ };
5997
+ }
5998
+ interface ActivitylogAppInstallationDescriptionSet {
5999
+ changes: {
6000
+ after?: {
6001
+ description: string;
6002
+ };
6003
+ before?: {
6004
+ description: string | null;
6005
+ };
6006
+ };
6007
+ name: "app.description-set";
6008
+ parameters: {
6009
+ appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6010
+ };
6011
+ }
5946
6012
  interface ActivitylogAppInstallationCopyRequested {
5947
6013
  name: "app.copy-requested";
5948
6014
  parameters: {
@@ -6102,6 +6168,18 @@ export declare namespace MittwaldAPIV2 {
6102
6168
  name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6103
6169
  };
6104
6170
  }
6171
+ interface ActivitylogDnsARecordSetManaged {
6172
+ changes: {
6173
+ after?: {
6174
+ aRecords: string;
6175
+ };
6176
+ before?: {};
6177
+ };
6178
+ name: "dns.a-record-set-managed";
6179
+ parameters: {
6180
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6181
+ };
6182
+ }
6105
6183
  interface ActivitylogDnsARecordSet {
6106
6184
  changes: {
6107
6185
  after?: {
@@ -6146,6 +6224,32 @@ export declare namespace MittwaldAPIV2 {
6146
6224
  domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6147
6225
  };
6148
6226
  }
6227
+ interface ActivitylogDnsDomainDeleted {
6228
+ changes: {};
6229
+ name: "dns.domain-deleted";
6230
+ parameters: {
6231
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6232
+ };
6233
+ }
6234
+ interface ActivitylogDnsIngressDeleted {
6235
+ changes: {};
6236
+ name: "dns.ingress-deleted";
6237
+ parameters: {
6238
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6239
+ };
6240
+ }
6241
+ interface ActivitylogDnsMxRecordSetManaged {
6242
+ changes: {
6243
+ after?: {
6244
+ mx: string;
6245
+ };
6246
+ before?: {};
6247
+ };
6248
+ name: "dns.mx-record-set-managed";
6249
+ parameters: {
6250
+ domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6251
+ };
6252
+ }
6149
6253
  interface ActivitylogDnsMxRecordSet {
6150
6254
  changes: {
6151
6255
  after?: {
@@ -6902,107 +7006,18 @@ export declare namespace MittwaldAPIV2 {
6902
7006
  }
6903
7007
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
6904
7008
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
6905
- interface ActivitylogDnsARecordSetManaged {
6906
- changes: {
6907
- after?: {
6908
- aRecords: string;
6909
- };
6910
- before?: {};
6911
- };
6912
- name: "dns.a-record-set-managed";
6913
- parameters: {
6914
- domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6915
- };
6916
- }
6917
- interface ActivitylogDnsDomainDeleted {
6918
- changes: {};
6919
- name: "dns.domain-deleted";
6920
- parameters: {
6921
- domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6922
- };
6923
- }
6924
- interface ActivitylogDnsIngressDeleted {
6925
- changes: {};
6926
- name: "dns.ingress-deleted";
6927
- parameters: {
6928
- domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6929
- };
6930
- }
6931
- interface ActivitylogDnsMxRecordSetManaged {
6932
- changes: {
6933
- after?: {
6934
- mx: string;
6935
- };
6936
- before?: {};
6937
- };
6938
- name: "dns.mx-record-set-managed";
6939
- parameters: {
6940
- domain: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6941
- };
6942
- }
6943
- interface ContainerTemplateStatsListResponse {
6944
- category?: string;
6945
- templates?: MittwaldAPIV2.Components.Schemas.ContainerTemplateStatsResponse[];
6946
- }
6947
- interface ContainerTemplateStatsResponse {
6948
- id: string;
6949
- installations: number;
6950
- installations30Days: number;
6951
- }
6952
- interface MailsystemRateLimit {
6953
- id: string;
6954
- rateLimit: number;
6955
- }
6956
- interface ActivitylogAppInstallationDatabaseLinked {
6957
- changes: {
6958
- after: {
6959
- database: {};
6960
- };
6961
- before: {
6962
- database: {} | null;
6963
- };
6964
- };
6965
- name: "app.database-linked";
6966
- parameters: {
6967
- appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6968
- database: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6969
- };
6970
- }
6971
- interface ActivitylogAppInstallationDatabaseUnlinked {
6972
- changes: {
6973
- after: {
6974
- database: {} | null;
6975
- };
6976
- before: {
6977
- database: {};
6978
- };
6979
- };
6980
- name: "app.database-unlinked";
6981
- parameters: {
6982
- appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6983
- database: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6984
- };
6985
- }
6986
- interface ActivitylogAppInstallationDeleted {
6987
- changes: {};
6988
- name: "app.deleted";
6989
- parameters: {
6990
- appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
6991
- };
6992
- }
6993
- interface ActivitylogAppInstallationDescriptionSet {
6994
- changes: {
6995
- after?: {
6996
- description: string;
6997
- };
6998
- before?: {
6999
- description: string | null;
7000
- };
7001
- };
7002
- name: "app.description-set";
7003
- parameters: {
7004
- appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
7005
- };
7009
+ /**
7010
+ * 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.
7011
+ */
7012
+ interface DomainmigrationOwnerContactIssue {
7013
+ /**
7014
+ * The affected owner contact field, e.g. street, name, zip.
7015
+ */
7016
+ field: string;
7017
+ /**
7018
+ * 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).
7019
+ */
7020
+ schemaTitle?: string;
7006
7021
  }
7007
7022
  interface CommonsAddress {
7008
7023
  street: string;
@@ -11205,11 +11220,12 @@ export declare namespace MittwaldAPIV2 {
11205
11220
  }
11206
11221
  }
11207
11222
  }
11208
- namespace V2ContainerTemplatesTemplateId {
11223
+ namespace V2ContainerTemplatesTemplateIdAssetsAssetPath {
11209
11224
  namespace Get {
11210
11225
  namespace Parameters {
11211
11226
  type Path = {
11212
11227
  templateId: string;
11228
+ assetPath: string;
11213
11229
  };
11214
11230
  type Header = {};
11215
11231
  type Query = {};
@@ -11217,7 +11233,77 @@ export declare namespace MittwaldAPIV2 {
11217
11233
  namespace Responses {
11218
11234
  namespace $200 {
11219
11235
  namespace Content {
11220
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerTemplate;
11236
+ type ImageJpeg = string;
11237
+ type ImagePng = string;
11238
+ type ImageSvgXml = string;
11239
+ type ImageWebp = string;
11240
+ }
11241
+ }
11242
+ namespace $400 {
11243
+ namespace Content {
11244
+ interface ApplicationJson {
11245
+ [k: string]: unknown;
11246
+ }
11247
+ }
11248
+ }
11249
+ namespace $403 {
11250
+ namespace Content {
11251
+ interface ApplicationJson {
11252
+ [k: string]: unknown;
11253
+ }
11254
+ }
11255
+ }
11256
+ namespace $404 {
11257
+ namespace Content {
11258
+ interface ApplicationJson {
11259
+ [k: string]: unknown;
11260
+ }
11261
+ }
11262
+ }
11263
+ namespace $429 {
11264
+ namespace Content {
11265
+ interface ApplicationJson {
11266
+ [k: string]: unknown;
11267
+ }
11268
+ }
11269
+ }
11270
+ namespace $500 {
11271
+ namespace Content {
11272
+ interface ApplicationJson {
11273
+ [k: string]: unknown;
11274
+ }
11275
+ }
11276
+ }
11277
+ namespace $503 {
11278
+ namespace Content {
11279
+ interface ApplicationJson {
11280
+ [k: string]: unknown;
11281
+ }
11282
+ }
11283
+ }
11284
+ namespace Default {
11285
+ namespace Content {
11286
+ interface ApplicationJson {
11287
+ [k: string]: unknown;
11288
+ }
11289
+ }
11290
+ }
11291
+ }
11292
+ }
11293
+ }
11294
+ namespace V2ContainerTemplatesTemplateId {
11295
+ namespace Get {
11296
+ namespace Parameters {
11297
+ type Path = {
11298
+ templateId: string;
11299
+ };
11300
+ type Header = {};
11301
+ type Query = {};
11302
+ }
11303
+ namespace Responses {
11304
+ namespace $200 {
11305
+ namespace Content {
11306
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerTemplate;
11221
11307
  }
11222
11308
  }
11223
11309
  namespace $400 {
@@ -11442,6 +11528,7 @@ export declare namespace MittwaldAPIV2 {
11442
11528
  }
11443
11529
  }
11444
11530
  }
11531
+ namespace V2ContainerTemplateStatistics { }
11445
11532
  namespace V2ContainerTemplates {
11446
11533
  namespace Get {
11447
11534
  namespace Parameters {
@@ -17425,6 +17512,7 @@ export declare namespace MittwaldAPIV2 {
17425
17512
  namespace V2AppinstallationsAppInstallationIdActionsAction { }
17426
17513
  namespace V2AppInstallationsAppInstallationIdActionsAction { }
17427
17514
  namespace V2AppinstallationsAppInstallationIdDatabases { }
17515
+ namespace V2ContainerTemplatesTemplateIdIcon { }
17428
17516
  namespace V2ActionsValidateContainerRegistryUri { }
17429
17517
  namespace V2RegistriesRegistryIdActionsValidateCredentials { }
17430
17518
  namespace V2ContractsContractIdItemsContractItemIdNextTerminationDates { }
@@ -24524,6 +24612,45 @@ export declare namespace MittwaldAPIV2 {
24524
24612
  }
24525
24613
  }
24526
24614
  }
24615
+ namespace V2MailRateLimitsMailRateLimitId {
24616
+ namespace Get {
24617
+ namespace Parameters {
24618
+ type Path = {
24619
+ mailRateLimitId: string;
24620
+ };
24621
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
24622
+ type Query = {};
24623
+ }
24624
+ namespace Responses {
24625
+ namespace $200 {
24626
+ namespace Content {
24627
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailsystemRateLimit;
24628
+ }
24629
+ }
24630
+ namespace $404 {
24631
+ namespace Content {
24632
+ interface ApplicationJson {
24633
+ [k: string]: unknown;
24634
+ }
24635
+ }
24636
+ }
24637
+ namespace $429 {
24638
+ namespace Content {
24639
+ interface ApplicationJson {
24640
+ [k: string]: unknown;
24641
+ }
24642
+ }
24643
+ }
24644
+ namespace Default {
24645
+ namespace Content {
24646
+ interface ApplicationJson {
24647
+ [k: string]: unknown;
24648
+ }
24649
+ }
24650
+ }
24651
+ }
24652
+ }
24653
+ }
24527
24654
  namespace V2MailAddressesMailAddressIdBackups {
24528
24655
  namespace Get {
24529
24656
  namespace Parameters {
@@ -24661,6 +24788,36 @@ export declare namespace MittwaldAPIV2 {
24661
24788
  }
24662
24789
  }
24663
24790
  }
24791
+ namespace V2MailRateLimits {
24792
+ namespace Get {
24793
+ namespace Parameters {
24794
+ type Path = {};
24795
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
24796
+ type Query = {};
24797
+ }
24798
+ namespace Responses {
24799
+ namespace $200 {
24800
+ namespace Content {
24801
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailsystemRateLimit[];
24802
+ }
24803
+ }
24804
+ namespace $429 {
24805
+ namespace Content {
24806
+ interface ApplicationJson {
24807
+ [k: string]: unknown;
24808
+ }
24809
+ }
24810
+ }
24811
+ namespace Default {
24812
+ namespace Content {
24813
+ interface ApplicationJson {
24814
+ [k: string]: unknown;
24815
+ }
24816
+ }
24817
+ }
24818
+ }
24819
+ }
24820
+ }
24664
24821
  namespace V2ProjectsProjectIdMailsettings { }
24665
24822
  namespace V2ProjectsProjectIdMailSettings {
24666
24823
  namespace Get {
@@ -24780,6 +24937,76 @@ export declare namespace MittwaldAPIV2 {
24780
24937
  }
24781
24938
  }
24782
24939
  }
24940
+ namespace V2MailAddressesMailAddressIdActionsRequestRateLimitChange {
24941
+ namespace Post {
24942
+ namespace Parameters {
24943
+ type Path = {
24944
+ mailAddressId: string;
24945
+ };
24946
+ interface RequestBody {
24947
+ rateLimitId: string;
24948
+ }
24949
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
24950
+ type Query = {};
24951
+ }
24952
+ namespace Responses {
24953
+ namespace $204 {
24954
+ namespace Content {
24955
+ type Empty = unknown;
24956
+ }
24957
+ }
24958
+ namespace $400 {
24959
+ namespace Content {
24960
+ interface ApplicationJson {
24961
+ [k: string]: unknown;
24962
+ }
24963
+ }
24964
+ }
24965
+ namespace $403 {
24966
+ namespace Content {
24967
+ interface ApplicationJson {
24968
+ [k: string]: unknown;
24969
+ }
24970
+ }
24971
+ }
24972
+ namespace $404 {
24973
+ namespace Content {
24974
+ interface ApplicationJson {
24975
+ [k: string]: unknown;
24976
+ }
24977
+ }
24978
+ }
24979
+ namespace $429 {
24980
+ namespace Content {
24981
+ interface ApplicationJson {
24982
+ [k: string]: unknown;
24983
+ }
24984
+ }
24985
+ }
24986
+ namespace $500 {
24987
+ namespace Content {
24988
+ interface ApplicationJson {
24989
+ [k: string]: unknown;
24990
+ }
24991
+ }
24992
+ }
24993
+ namespace $503 {
24994
+ namespace Content {
24995
+ interface ApplicationJson {
24996
+ [k: string]: unknown;
24997
+ }
24998
+ }
24999
+ }
25000
+ namespace Default {
25001
+ namespace Content {
25002
+ interface ApplicationJson {
25003
+ [k: string]: unknown;
25004
+ }
25005
+ }
25006
+ }
25007
+ }
25008
+ }
25009
+ }
24783
25010
  namespace V2DeliveryBoxesDeliveryBoxIdDescription {
24784
25011
  namespace Patch {
24785
25012
  namespace Parameters {
@@ -31493,216 +31720,5 @@ export declare namespace MittwaldAPIV2 {
31493
31720
  }
31494
31721
  }
31495
31722
  }
31496
- namespace V2ContainerTemplateStatistics { }
31497
- namespace V2MailRateLimitsMailRateLimitId {
31498
- namespace Get {
31499
- namespace Parameters {
31500
- type Path = {
31501
- mailRateLimitId: string;
31502
- };
31503
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
31504
- type Query = {};
31505
- }
31506
- namespace Responses {
31507
- namespace $200 {
31508
- namespace Content {
31509
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailsystemRateLimit;
31510
- }
31511
- }
31512
- namespace $404 {
31513
- namespace Content {
31514
- interface ApplicationJson {
31515
- [k: string]: unknown;
31516
- }
31517
- }
31518
- }
31519
- namespace $429 {
31520
- namespace Content {
31521
- interface ApplicationJson {
31522
- [k: string]: unknown;
31523
- }
31524
- }
31525
- }
31526
- namespace Default {
31527
- namespace Content {
31528
- interface ApplicationJson {
31529
- [k: string]: unknown;
31530
- }
31531
- }
31532
- }
31533
- }
31534
- }
31535
- }
31536
- namespace V2MailRateLimits {
31537
- namespace Get {
31538
- namespace Parameters {
31539
- type Path = {};
31540
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
31541
- type Query = {};
31542
- }
31543
- namespace Responses {
31544
- namespace $200 {
31545
- namespace Content {
31546
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailsystemRateLimit[];
31547
- }
31548
- }
31549
- namespace $429 {
31550
- namespace Content {
31551
- interface ApplicationJson {
31552
- [k: string]: unknown;
31553
- }
31554
- }
31555
- }
31556
- namespace Default {
31557
- namespace Content {
31558
- interface ApplicationJson {
31559
- [k: string]: unknown;
31560
- }
31561
- }
31562
- }
31563
- }
31564
- }
31565
- }
31566
- namespace V2MailAddressesMailAddressIdActionsRequestRateLimitChange {
31567
- namespace Post {
31568
- namespace Parameters {
31569
- type Path = {
31570
- mailAddressId: string;
31571
- };
31572
- interface RequestBody {
31573
- rateLimitId: string;
31574
- }
31575
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
31576
- type Query = {};
31577
- }
31578
- namespace Responses {
31579
- namespace $204 {
31580
- namespace Content {
31581
- type Empty = unknown;
31582
- }
31583
- }
31584
- namespace $400 {
31585
- namespace Content {
31586
- interface ApplicationJson {
31587
- [k: string]: unknown;
31588
- }
31589
- }
31590
- }
31591
- namespace $403 {
31592
- namespace Content {
31593
- interface ApplicationJson {
31594
- [k: string]: unknown;
31595
- }
31596
- }
31597
- }
31598
- namespace $404 {
31599
- namespace Content {
31600
- interface ApplicationJson {
31601
- [k: string]: unknown;
31602
- }
31603
- }
31604
- }
31605
- namespace $429 {
31606
- namespace Content {
31607
- interface ApplicationJson {
31608
- [k: string]: unknown;
31609
- }
31610
- }
31611
- }
31612
- namespace $500 {
31613
- namespace Content {
31614
- interface ApplicationJson {
31615
- [k: string]: unknown;
31616
- }
31617
- }
31618
- }
31619
- namespace $503 {
31620
- namespace Content {
31621
- interface ApplicationJson {
31622
- [k: string]: unknown;
31623
- }
31624
- }
31625
- }
31626
- namespace Default {
31627
- namespace Content {
31628
- interface ApplicationJson {
31629
- [k: string]: unknown;
31630
- }
31631
- }
31632
- }
31633
- }
31634
- }
31635
- }
31636
- namespace V2ContainerTemplatesTemplateIdAssetsAssetPath {
31637
- namespace Get {
31638
- namespace Parameters {
31639
- type Path = {
31640
- templateId: string;
31641
- assetPath: string;
31642
- };
31643
- type Header = {};
31644
- type Query = {};
31645
- }
31646
- namespace Responses {
31647
- namespace $200 {
31648
- namespace Content {
31649
- type ImageJpeg = string;
31650
- type ImagePng = string;
31651
- type ImageSvgXml = string;
31652
- type ImageWebp = string;
31653
- }
31654
- }
31655
- namespace $400 {
31656
- namespace Content {
31657
- interface ApplicationJson {
31658
- [k: string]: unknown;
31659
- }
31660
- }
31661
- }
31662
- namespace $403 {
31663
- namespace Content {
31664
- interface ApplicationJson {
31665
- [k: string]: unknown;
31666
- }
31667
- }
31668
- }
31669
- namespace $404 {
31670
- namespace Content {
31671
- interface ApplicationJson {
31672
- [k: string]: unknown;
31673
- }
31674
- }
31675
- }
31676
- namespace $429 {
31677
- namespace Content {
31678
- interface ApplicationJson {
31679
- [k: string]: unknown;
31680
- }
31681
- }
31682
- }
31683
- namespace $500 {
31684
- namespace Content {
31685
- interface ApplicationJson {
31686
- [k: string]: unknown;
31687
- }
31688
- }
31689
- }
31690
- namespace $503 {
31691
- namespace Content {
31692
- interface ApplicationJson {
31693
- [k: string]: unknown;
31694
- }
31695
- }
31696
- }
31697
- namespace Default {
31698
- namespace Content {
31699
- interface ApplicationJson {
31700
- [k: string]: unknown;
31701
- }
31702
- }
31703
- }
31704
- }
31705
- }
31706
- }
31707
31723
  }
31708
31724
  }