@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.
@@ -669,6 +669,14 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV3NextClient) => {
669
669
  status: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceStatus;
670
670
  statusSetAt: string;
671
671
  }>;
672
+ /** Get a Container Template asset. */
673
+ getTemplateAsset: (conf: {
674
+ templateId: string;
675
+ assetPath: string;
676
+ headers?: {
677
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
678
+ } | undefined;
679
+ }) => import("@mittwald/react-use-promise").AsyncResource<string>;
672
680
  /** Get a Container Template by ID. */
673
681
  getTemplate: (conf: {
674
682
  templateId: string;
@@ -807,14 +815,6 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV3NextClient) => {
807
815
  page?: number | undefined;
808
816
  } | undefined;
809
817
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerVolumeResponse[]>;
810
- /** Get a Container Template asset. */
811
- getTemplateAsset: (conf: {
812
- templateId: string;
813
- assetPath: string;
814
- headers?: {
815
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
816
- } | undefined;
817
- }) => import("@mittwald/react-use-promise").AsyncResource<string>;
818
818
  };
819
819
  declare const buildContractApi: (baseClient: MittwaldAPIV3NextClient) => {
820
820
  /** Return the BaseItem of the Contract with the given ID. */
@@ -2898,6 +2898,17 @@ declare const buildMailApi: (baseClient: MittwaldAPIV3NextClient) => {
2898
2898
  receivingDisabled: boolean;
2899
2899
  updatedAt: string;
2900
2900
  }>;
2901
+ /** Get a Mail RateLimit. */
2902
+ getMailRateLimit: (conf: {
2903
+ mailRateLimitId: string;
2904
+ headers?: {
2905
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2906
+ "x-access-token"?: string | undefined;
2907
+ } | undefined;
2908
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2909
+ id: string;
2910
+ rateLimit: number;
2911
+ }>;
2901
2912
  /** List backups belonging to a MailAddress. */
2902
2913
  listBackupsForMailAddress: (conf: {
2903
2914
  mailAddressId: string;
@@ -2927,6 +2938,13 @@ declare const buildMailApi: (baseClient: MittwaldAPIV3NextClient) => {
2927
2938
  order?: ("asc" | "desc")[] | undefined;
2928
2939
  } | undefined;
2929
2940
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMailMailAddress[]>;
2941
+ /** List Mail RateLimits. */
2942
+ listMailRateLimits: (conf?: {
2943
+ headers?: {
2944
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2945
+ "x-access-token"?: string | undefined;
2946
+ } | undefined;
2947
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMailsystemRateLimit[]>;
2930
2948
  /** List mail settings of a Project. */
2931
2949
  listProjectMailSettings: (conf: {
2932
2950
  projectId: string;
@@ -2939,24 +2957,6 @@ declare const buildMailApi: (baseClient: MittwaldAPIV3NextClient) => {
2939
2957
  projectId: string;
2940
2958
  whitelist: string[];
2941
2959
  }>;
2942
- /** Get a Mail RateLimit. */
2943
- getMailRateLimit: (conf: {
2944
- mailRateLimitId: string;
2945
- headers?: {
2946
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2947
- "x-access-token"?: string | undefined;
2948
- } | undefined;
2949
- }) => import("@mittwald/react-use-promise").AsyncResource<{
2950
- id: string;
2951
- rateLimit: number;
2952
- }>;
2953
- /** List Mail RateLimits. */
2954
- listMailRateLimits: (conf?: {
2955
- headers?: {
2956
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2957
- "x-access-token"?: string | undefined;
2958
- } | undefined;
2959
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMailsystemRateLimit[]>;
2960
2960
  };
2961
2961
  declare const buildMiscApi: (baseClient: MittwaldAPIV3NextClient) => {
2962
2962
  /** List valid time zones. */
@@ -5090,6 +5090,56 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
5090
5090
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5091
5091
  [x: string]: unknown;
5092
5092
  }, 500, "application/json">>>;
5093
+ /** Get a Container Template asset. */
5094
+ getTemplateAsset: (request: {
5095
+ templateId: string;
5096
+ assetPath: string;
5097
+ headers?: {
5098
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5099
+ } | undefined;
5100
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5101
+ headers?: Partial<{
5102
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5103
+ }>;
5104
+ } & {
5105
+ pathParameters: {
5106
+ templateId: string;
5107
+ assetPath: string;
5108
+ };
5109
+ }, import("@mittwald/api-client-commons").Response<string, 200, "image/jpeg"> | import("@mittwald/api-client-commons").Response<string, 200, "image/png"> | import("@mittwald/api-client-commons").Response<string, 200, "image/svg+xml"> | import("@mittwald/api-client-commons").Response<string, 200, "image/webp"> | import("@mittwald/api-client-commons").Response<{
5110
+ [x: string]: unknown;
5111
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5112
+ [x: string]: unknown;
5113
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5114
+ [x: string]: unknown;
5115
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5116
+ [x: string]: unknown;
5117
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5118
+ [x: string]: unknown;
5119
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
5120
+ [x: string]: unknown;
5121
+ }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5122
+ headers?: Partial<{
5123
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5124
+ }>;
5125
+ } & {
5126
+ pathParameters: {
5127
+ templateId: string;
5128
+ assetPath: string;
5129
+ };
5130
+ }, import("@mittwald/api-client-commons").Response<string, 200, "image/jpeg"> | import("@mittwald/api-client-commons").Response<string, 200, "image/png"> | import("@mittwald/api-client-commons").Response<string, 200, "image/svg+xml"> | import("@mittwald/api-client-commons").Response<string, 200, "image/webp"> | import("@mittwald/api-client-commons").Response<{
5131
+ [x: string]: unknown;
5132
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5133
+ [x: string]: unknown;
5134
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5135
+ [x: string]: unknown;
5136
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5137
+ [x: string]: unknown;
5138
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5139
+ [x: string]: unknown;
5140
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
5141
+ [x: string]: unknown;
5142
+ }, 503, "application/json">>>;
5093
5143
  /** Get a Container Template by ID. */
5094
5144
  getTemplate: (request: {
5095
5145
  templateId: string;
@@ -6091,56 +6141,6 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
6091
6141
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6092
6142
  [x: string]: unknown;
6093
6143
  }, 500, "application/json">>>;
6094
- /** Get a Container Template asset. */
6095
- getTemplateAsset: (request: {
6096
- templateId: string;
6097
- assetPath: string;
6098
- headers?: {
6099
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6100
- } | undefined;
6101
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
6102
- headers?: Partial<{
6103
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6104
- }>;
6105
- } & {
6106
- pathParameters: {
6107
- templateId: string;
6108
- assetPath: string;
6109
- };
6110
- }, import("@mittwald/api-client-commons").Response<string, 200, "image/jpeg"> | import("@mittwald/api-client-commons").Response<string, 200, "image/png"> | import("@mittwald/api-client-commons").Response<string, 200, "image/svg+xml"> | import("@mittwald/api-client-commons").Response<string, 200, "image/webp"> | import("@mittwald/api-client-commons").Response<{
6111
- [x: string]: unknown;
6112
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6113
- [x: string]: unknown;
6114
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6115
- [x: string]: unknown;
6116
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6117
- [x: string]: unknown;
6118
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6119
- [x: string]: unknown;
6120
- }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6121
- [x: string]: unknown;
6122
- }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6123
- headers?: Partial<{
6124
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6125
- }>;
6126
- } & {
6127
- pathParameters: {
6128
- templateId: string;
6129
- assetPath: string;
6130
- };
6131
- }, import("@mittwald/api-client-commons").Response<string, 200, "image/jpeg"> | import("@mittwald/api-client-commons").Response<string, 200, "image/png"> | import("@mittwald/api-client-commons").Response<string, 200, "image/svg+xml"> | import("@mittwald/api-client-commons").Response<string, 200, "image/webp"> | import("@mittwald/api-client-commons").Response<{
6132
- [x: string]: unknown;
6133
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6134
- [x: string]: unknown;
6135
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6136
- [x: string]: unknown;
6137
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6138
- [x: string]: unknown;
6139
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
6140
- [x: string]: unknown;
6141
- }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6142
- [x: string]: unknown;
6143
- }, 503, "application/json">>>;
6144
6144
  };
6145
6145
  /** The contract API allows you to manage your contracts and orders */
6146
6146
  readonly contract: {
@@ -21624,6 +21624,56 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
21624
21624
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
21625
21625
  [x: string]: unknown;
21626
21626
  }, 503, "application/json">>>;
21627
+ /** Get a Mail RateLimit. */
21628
+ getMailRateLimit: (request: {
21629
+ mailRateLimitId: string;
21630
+ headers?: {
21631
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
21632
+ "x-access-token"?: string | undefined;
21633
+ } | undefined;
21634
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
21635
+ headers?: Partial<{
21636
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
21637
+ }>;
21638
+ } & {
21639
+ pathParameters: {
21640
+ mailRateLimitId: string;
21641
+ };
21642
+ } & {
21643
+ headers: {
21644
+ "x-access-token"?: string | undefined;
21645
+ } & Partial<{
21646
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
21647
+ }>;
21648
+ }, import("@mittwald/api-client-commons").Response<{
21649
+ id: string;
21650
+ rateLimit: number;
21651
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
21652
+ [x: string]: unknown;
21653
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
21654
+ [x: string]: unknown;
21655
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
21656
+ headers?: Partial<{
21657
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
21658
+ }>;
21659
+ } & {
21660
+ pathParameters: {
21661
+ mailRateLimitId: string;
21662
+ };
21663
+ } & {
21664
+ headers: {
21665
+ "x-access-token"?: string | undefined;
21666
+ } & Partial<{
21667
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
21668
+ }>;
21669
+ }, import("@mittwald/api-client-commons").Response<{
21670
+ id: string;
21671
+ rateLimit: number;
21672
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
21673
+ [x: string]: unknown;
21674
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
21675
+ [x: string]: unknown;
21676
+ }, 429, "application/json">>>;
21627
21677
  /** List backups belonging to a MailAddress. */
21628
21678
  listBackupsForMailAddress: (request: {
21629
21679
  mailAddressId: string;
@@ -21777,6 +21827,37 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
21777
21827
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
21778
21828
  [x: string]: unknown;
21779
21829
  }, 503, "application/json">>>;
21830
+ /** List Mail RateLimits. */
21831
+ listMailRateLimits: (request?: {
21832
+ headers?: {
21833
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
21834
+ "x-access-token"?: string | undefined;
21835
+ } | undefined;
21836
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
21837
+ headers?: Partial<{
21838
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
21839
+ }>;
21840
+ } & {
21841
+ headers: {
21842
+ "x-access-token"?: string | undefined;
21843
+ } & Partial<{
21844
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
21845
+ }>;
21846
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMailsystemRateLimit[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
21847
+ [x: string]: unknown;
21848
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
21849
+ headers?: Partial<{
21850
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
21851
+ }>;
21852
+ } & {
21853
+ headers: {
21854
+ "x-access-token"?: string | undefined;
21855
+ } & Partial<{
21856
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
21857
+ }>;
21858
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMailsystemRateLimit[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
21859
+ [x: string]: unknown;
21860
+ }, 429, "application/json">>>;
21780
21861
  /** List mail settings of a Project. */
21781
21862
  listProjectMailSettings: (request: {
21782
21863
  projectId: string;
@@ -21896,23 +21977,23 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
21896
21977
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
21897
21978
  [x: string]: unknown;
21898
21979
  }, 429, "application/json">>>;
21899
- /** Update the description of a DeliveryBox. */
21900
- updateDeliveryBoxDescription: (request: {
21980
+ /** Request a rate limit change for a MailAddress. */
21981
+ requestMailAddressRateLimitChange: (request: {
21901
21982
  data: {
21902
- description: string;
21983
+ rateLimitId: string;
21903
21984
  };
21904
- deliveryBoxId: string;
21985
+ mailAddressId: string;
21905
21986
  headers?: {
21906
21987
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
21907
21988
  "x-access-token"?: string | undefined;
21908
21989
  } | undefined;
21909
21990
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
21910
21991
  data: {
21911
- description: string;
21992
+ rateLimitId: string;
21912
21993
  };
21913
21994
  } & {
21914
21995
  pathParameters: {
21915
- deliveryBoxId: string;
21996
+ mailAddressId: string;
21916
21997
  };
21917
21998
  } & {
21918
21999
  headers?: Partial<{
@@ -21938,11 +22019,11 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
21938
22019
  [x: string]: unknown;
21939
22020
  }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
21940
22021
  data: {
21941
- description: string;
22022
+ rateLimitId: string;
21942
22023
  };
21943
22024
  } & {
21944
22025
  pathParameters: {
21945
- deliveryBoxId: string;
22026
+ mailAddressId: string;
21946
22027
  };
21947
22028
  } & {
21948
22029
  headers?: Partial<{
@@ -21967,10 +22048,10 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
21967
22048
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
21968
22049
  [x: string]: unknown;
21969
22050
  }, 503, "application/json">>>;
21970
- /** Update the password of a DeliveryBox. */
21971
- updateDeliveryBoxPassword: (request: {
22051
+ /** Update the description of a DeliveryBox. */
22052
+ updateDeliveryBoxDescription: (request: {
21972
22053
  data: {
21973
- password: string;
22054
+ description: string;
21974
22055
  };
21975
22056
  deliveryBoxId: string;
21976
22057
  headers?: {
@@ -21979,7 +22060,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
21979
22060
  } | undefined;
21980
22061
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
21981
22062
  data: {
21982
- password: string;
22063
+ description: string;
21983
22064
  };
21984
22065
  } & {
21985
22066
  pathParameters: {
@@ -22009,7 +22090,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
22009
22090
  [x: string]: unknown;
22010
22091
  }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22011
22092
  data: {
22012
- password: string;
22093
+ description: string;
22013
22094
  };
22014
22095
  } & {
22015
22096
  pathParameters: {
@@ -22038,23 +22119,23 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
22038
22119
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
22039
22120
  [x: string]: unknown;
22040
22121
  }, 503, "application/json">>>;
22041
- /** Update a MailAddress. */
22042
- updateMailAddressAddress: (request: {
22122
+ /** Update the password of a DeliveryBox. */
22123
+ updateDeliveryBoxPassword: (request: {
22043
22124
  data: {
22044
- address: string;
22125
+ password: string;
22045
22126
  };
22046
- mailAddressId: string;
22127
+ deliveryBoxId: string;
22047
22128
  headers?: {
22048
22129
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22049
22130
  "x-access-token"?: string | undefined;
22050
22131
  } | undefined;
22051
22132
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22052
22133
  data: {
22053
- address: string;
22134
+ password: string;
22054
22135
  };
22055
22136
  } & {
22056
22137
  pathParameters: {
22057
- mailAddressId: string;
22138
+ deliveryBoxId: string;
22058
22139
  };
22059
22140
  } & {
22060
22141
  headers?: Partial<{
@@ -22080,11 +22161,11 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
22080
22161
  [x: string]: unknown;
22081
22162
  }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22082
22163
  data: {
22083
- address: string;
22164
+ password: string;
22084
22165
  };
22085
22166
  } & {
22086
22167
  pathParameters: {
22087
- mailAddressId: string;
22168
+ deliveryBoxId: string;
22088
22169
  };
22089
22170
  } & {
22090
22171
  headers?: Partial<{
@@ -22109,10 +22190,10 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
22109
22190
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
22110
22191
  [x: string]: unknown;
22111
22192
  }, 503, "application/json">>>;
22112
- /** Update the catch-all of a MailAddress. */
22113
- updateMailAddressCatchAll: (request: {
22193
+ /** Update a MailAddress. */
22194
+ updateMailAddressAddress: (request: {
22114
22195
  data: {
22115
- active: boolean;
22196
+ address: string;
22116
22197
  };
22117
22198
  mailAddressId: string;
22118
22199
  headers?: {
@@ -22121,7 +22202,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
22121
22202
  } | undefined;
22122
22203
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22123
22204
  data: {
22124
- active: boolean;
22205
+ address: string;
22125
22206
  };
22126
22207
  } & {
22127
22208
  pathParameters: {
@@ -22151,7 +22232,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
22151
22232
  [x: string]: unknown;
22152
22233
  }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22153
22234
  data: {
22154
- active: boolean;
22235
+ address: string;
22155
22236
  };
22156
22237
  } & {
22157
22238
  pathParameters: {
@@ -22180,91 +22261,10 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
22180
22261
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
22181
22262
  [x: string]: unknown;
22182
22263
  }, 503, "application/json">>>;
22183
- /** Get a Mail RateLimit. */
22184
- getMailRateLimit: (request: {
22185
- mailRateLimitId: string;
22186
- headers?: {
22187
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22188
- "x-access-token"?: string | undefined;
22189
- } | undefined;
22190
- }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22191
- headers?: Partial<{
22192
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22193
- }>;
22194
- } & {
22195
- pathParameters: {
22196
- mailRateLimitId: string;
22197
- };
22198
- } & {
22199
- headers: {
22200
- "x-access-token"?: string | undefined;
22201
- } & Partial<{
22202
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22203
- }>;
22204
- }, import("@mittwald/api-client-commons").Response<{
22205
- id: string;
22206
- rateLimit: number;
22207
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22208
- [x: string]: unknown;
22209
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
22210
- [x: string]: unknown;
22211
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22212
- headers?: Partial<{
22213
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22214
- }>;
22215
- } & {
22216
- pathParameters: {
22217
- mailRateLimitId: string;
22218
- };
22219
- } & {
22220
- headers: {
22221
- "x-access-token"?: string | undefined;
22222
- } & Partial<{
22223
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22224
- }>;
22225
- }, import("@mittwald/api-client-commons").Response<{
22226
- id: string;
22227
- rateLimit: number;
22228
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22229
- [x: string]: unknown;
22230
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
22231
- [x: string]: unknown;
22232
- }, 429, "application/json">>>;
22233
- /** List Mail RateLimits. */
22234
- listMailRateLimits: (request?: {
22235
- headers?: {
22236
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22237
- "x-access-token"?: string | undefined;
22238
- } | undefined;
22239
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22240
- headers?: Partial<{
22241
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22242
- }>;
22243
- } & {
22244
- headers: {
22245
- "x-access-token"?: string | undefined;
22246
- } & Partial<{
22247
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22248
- }>;
22249
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMailsystemRateLimit[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22250
- [x: string]: unknown;
22251
- }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22252
- headers?: Partial<{
22253
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22254
- }>;
22255
- } & {
22256
- headers: {
22257
- "x-access-token"?: string | undefined;
22258
- } & Partial<{
22259
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22260
- }>;
22261
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldMailsystemRateLimit[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22262
- [x: string]: unknown;
22263
- }, 429, "application/json">>>;
22264
- /** Request a rate limit change for a MailAddress. */
22265
- requestMailAddressRateLimitChange: (request: {
22264
+ /** Update the catch-all of a MailAddress. */
22265
+ updateMailAddressCatchAll: (request: {
22266
22266
  data: {
22267
- rateLimitId: string;
22267
+ active: boolean;
22268
22268
  };
22269
22269
  mailAddressId: string;
22270
22270
  headers?: {
@@ -22273,7 +22273,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
22273
22273
  } | undefined;
22274
22274
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22275
22275
  data: {
22276
- rateLimitId: string;
22276
+ active: boolean;
22277
22277
  };
22278
22278
  } & {
22279
22279
  pathParameters: {
@@ -22303,7 +22303,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
22303
22303
  [x: string]: unknown;
22304
22304
  }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22305
22305
  data: {
22306
- rateLimitId: string;
22306
+ active: boolean;
22307
22307
  };
22308
22308
  } & {
22309
22309
  pathParameters: {