@mittwald/api-client 3.1.14 → 3.1.16

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.
@@ -1244,22 +1244,6 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1244
1244
  }>;
1245
1245
  };
1246
1246
  declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
1247
- /** List DeliveryBoxes belonging to a Project. */
1248
- listDeliveryBoxes: (conf: {
1249
- projectId: string;
1250
- headers?: {
1251
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1252
- "x-access-token"?: string | undefined;
1253
- } | undefined;
1254
- }) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailDeliverybox[]>;
1255
- /** List MailAddresses belonging to a Project. */
1256
- listMailAddresses: (conf: {
1257
- projectId: string;
1258
- headers?: {
1259
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1260
- "x-access-token"?: string | undefined;
1261
- } | undefined;
1262
- }) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[]>;
1263
1247
  /** Get a DeliveryBox. */
1264
1248
  getDeliveryBox: (conf: {
1265
1249
  deliveryBoxId: string;
@@ -1317,6 +1301,22 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
1317
1301
  receivingDisabled: boolean;
1318
1302
  updatedAt: string;
1319
1303
  }>;
1304
+ /** List DeliveryBoxes belonging to a Project. */
1305
+ listDeliveryBoxes: (conf: {
1306
+ projectId: string;
1307
+ headers?: {
1308
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1309
+ "x-access-token"?: string | undefined;
1310
+ } | undefined;
1311
+ }) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailDeliverybox[]>;
1312
+ /** List MailAddresses belonging to a Project. */
1313
+ listMailAddresses: (conf: {
1314
+ projectId: string;
1315
+ headers?: {
1316
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1317
+ "x-access-token"?: string | undefined;
1318
+ } | undefined;
1319
+ }) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[]>;
1320
1320
  /** List mail settings of a Project. */
1321
1321
  listProjectMailSettings: (conf: {
1322
1322
  projectId: string;
@@ -211,14 +211,14 @@ const buildFileApi = (baseClient) => ({
211
211
  getFileUploadTypeRules: new react_1.ApiCallAsyncResourceFactory(descriptors.fileGetFileUploadTypeRules, baseClient.file.getFileUploadTypeRules).getApiResource,
212
212
  });
213
213
  const buildMailApi = (baseClient) => ({
214
- /** List DeliveryBoxes belonging to a Project. */
215
- listDeliveryBoxes: new react_1.ApiCallAsyncResourceFactory(descriptors.mailListDeliveryBoxes, baseClient.mail.listDeliveryBoxes).getApiResource,
216
- /** List MailAddresses belonging to a Project. */
217
- listMailAddresses: new react_1.ApiCallAsyncResourceFactory(descriptors.mailListMailAddresses, baseClient.mail.listMailAddresses).getApiResource,
218
214
  /** Get a DeliveryBox. */
219
215
  getDeliveryBox: new react_1.ApiCallAsyncResourceFactory(descriptors.mailGetDeliveryBox, baseClient.mail.getDeliveryBox).getApiResource,
220
216
  /** Get a MailAddress. */
221
217
  getMailAddress: new react_1.ApiCallAsyncResourceFactory(descriptors.mailGetMailAddress, baseClient.mail.getMailAddress).getApiResource,
218
+ /** List DeliveryBoxes belonging to a Project. */
219
+ listDeliveryBoxes: new react_1.ApiCallAsyncResourceFactory(descriptors.mailListDeliveryBoxes, baseClient.mail.listDeliveryBoxes).getApiResource,
220
+ /** List MailAddresses belonging to a Project. */
221
+ listMailAddresses: new react_1.ApiCallAsyncResourceFactory(descriptors.mailListMailAddresses, baseClient.mail.listMailAddresses).getApiResource,
222
222
  /** List mail settings of a Project. */
223
223
  listProjectMailSettings: new react_1.ApiCallAsyncResourceFactory(descriptors.mailListProjectMailSettings, baseClient.mail.listProjectMailSettings).getApiResource,
224
224
  });
@@ -6032,9 +6032,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6032
6032
  };
6033
6033
  /** The mail API allows you to manage your mail accounts. */
6034
6034
  readonly mail: {
6035
- /** List DeliveryBoxes belonging to a Project. */
6036
- listDeliveryBoxes: (request: {
6037
- projectId: string;
6035
+ /** Get a DeliveryBox. */
6036
+ getDeliveryBox: (request: {
6037
+ deliveryBoxId: string;
6038
6038
  headers?: {
6039
6039
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6040
6040
  "x-access-token"?: string | undefined;
@@ -6045,49 +6045,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6045
6045
  }> | undefined;
6046
6046
  } & {
6047
6047
  pathParameters: {
6048
- projectId: string;
6049
- };
6050
- } & {
6051
- headers: {
6052
- "x-access-token"?: string | undefined;
6053
- } & Partial<{
6054
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6055
- }>;
6056
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailDeliverybox[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6057
- [x: string]: unknown;
6058
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6059
- [x: string]: unknown;
6060
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6061
- [x: string]: unknown;
6062
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6063
- [x: string]: unknown;
6064
- }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6065
- [x: string]: unknown;
6066
- }, 503, "application/json">>>;
6067
- /** Create a DeliveryBox. */
6068
- createDeliverybox: (request: {
6069
- data: {
6070
- description: string;
6071
- password: string;
6072
- };
6073
- projectId: string;
6074
- headers?: {
6075
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6076
- "x-access-token"?: string | undefined;
6077
- } | undefined;
6078
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6079
- data: {
6080
- description: string;
6081
- password: string;
6082
- };
6083
- } & {
6084
- pathParameters: {
6085
- projectId: string;
6048
+ deliveryBoxId: string;
6086
6049
  };
6087
- } & {
6088
- headers?: Partial<{
6089
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6090
- }> | undefined;
6091
6050
  } & {
6092
6051
  headers: {
6093
6052
  "x-access-token"?: string | undefined;
@@ -6095,8 +6054,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6095
6054
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6096
6055
  }>;
6097
6056
  }, import("@mittwald/api-client-commons").Response<{
6057
+ authenticationEnabled: boolean;
6058
+ description: string;
6098
6059
  id: string;
6099
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6060
+ name: string;
6061
+ passwordUpdatedAt: string;
6062
+ projectId: string;
6063
+ sendingEnabled: boolean;
6064
+ updatedAt: string;
6065
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6100
6066
  [x: string]: unknown;
6101
6067
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6102
6068
  [x: string]: unknown;
@@ -6107,9 +6073,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6107
6073
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6108
6074
  [x: string]: unknown;
6109
6075
  }, 503, "application/json">>>;
6110
- /** List MailAddresses belonging to a Project. */
6111
- listMailAddresses: (request: {
6112
- projectId: string;
6076
+ /** Delete a DeliveryBox. */
6077
+ deleteDeliveryBox: (request: {
6078
+ deliveryBoxId: string;
6113
6079
  headers?: {
6114
6080
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6115
6081
  "x-access-token"?: string | undefined;
@@ -6120,83 +6086,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6120
6086
  }> | undefined;
6121
6087
  } & {
6122
6088
  pathParameters: {
6123
- projectId: string;
6124
- };
6125
- } & {
6126
- headers: {
6127
- "x-access-token"?: string | undefined;
6128
- } & Partial<{
6129
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6130
- }>;
6131
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[], 200, "application/json"> | 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
- }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6140
- [x: string]: unknown;
6141
- }, 503, "application/json">>>;
6142
- /** Create a MailAddress. */
6143
- createMailAddress: (request: {
6144
- data: {
6145
- address: string;
6146
- forwardAddresses: string[];
6147
- };
6148
- projectId: string;
6149
- headers?: {
6150
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6151
- "x-access-token"?: string | undefined;
6152
- } | undefined;
6153
- } | {
6154
- data: {
6155
- address: string;
6156
- isCatchAll: boolean;
6157
- mailbox: {
6158
- enableSpamProtection: boolean;
6159
- password: string;
6160
- quotaInBytes: number;
6161
- };
6162
- };
6163
- projectId: string;
6164
- headers?: {
6165
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6166
- "x-access-token"?: string | undefined;
6167
- } | undefined;
6168
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
6169
- data: {
6170
- address: string;
6171
- forwardAddresses: string[];
6172
- };
6173
- } | {
6174
- data: {
6175
- address: string;
6176
- isCatchAll: boolean;
6177
- mailbox: {
6178
- enableSpamProtection: boolean;
6179
- password: string;
6180
- quotaInBytes: number;
6181
- };
6182
- };
6183
- }) & {
6184
- pathParameters: {
6185
- projectId: string;
6089
+ deliveryBoxId: string;
6186
6090
  };
6187
- } & {
6188
- headers?: Partial<{
6189
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6190
- }> | undefined;
6191
6091
  } & {
6192
6092
  headers: {
6193
6093
  "x-access-token"?: string | undefined;
6194
6094
  } & Partial<{
6195
6095
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6196
6096
  }>;
6197
- }, import("@mittwald/api-client-commons").Response<{
6198
- id: string;
6199
- }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6097
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
6200
6098
  [x: string]: unknown;
6201
6099
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6202
6100
  [x: string]: unknown;
@@ -6207,9 +6105,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6207
6105
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6208
6106
  [x: string]: unknown;
6209
6107
  }, 503, "application/json">>>;
6210
- /** Get a DeliveryBox. */
6211
- getDeliveryBox: (request: {
6212
- deliveryBoxId: string;
6108
+ /** Get a MailAddress. */
6109
+ getMailAddress: (request: {
6110
+ mailAddressId: string;
6213
6111
  headers?: {
6214
6112
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6215
6113
  "x-access-token"?: string | undefined;
@@ -6220,7 +6118,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6220
6118
  }> | undefined;
6221
6119
  } & {
6222
6120
  pathParameters: {
6223
- deliveryBoxId: string;
6121
+ mailAddressId: string;
6224
6122
  };
6225
6123
  } & {
6226
6124
  headers: {
@@ -6229,13 +6127,36 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6229
6127
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6230
6128
  }>;
6231
6129
  }, import("@mittwald/api-client-commons").Response<{
6232
- authenticationEnabled: boolean;
6233
- description: string;
6130
+ address: string;
6131
+ autoResponder: {
6132
+ active: boolean;
6133
+ expiresAt?: string | undefined;
6134
+ message: string;
6135
+ startsAt?: string | undefined;
6136
+ };
6137
+ forwardAddresses: string[];
6234
6138
  id: string;
6235
- name: string;
6236
- passwordUpdatedAt: string;
6139
+ isArchived: boolean;
6140
+ isCatchAll: boolean;
6141
+ mailbox?: {
6142
+ passwordUpdatedAt: string;
6143
+ sendingEnabled: boolean;
6144
+ spamProtection: {
6145
+ active: boolean;
6146
+ autoDeleteSpam: boolean;
6147
+ folder: "spam" | "inbox";
6148
+ relocationMinSpamScore: number;
6149
+ };
6150
+ storageInBytes: {
6151
+ current: {
6152
+ updatedAt: string;
6153
+ value: number;
6154
+ };
6155
+ limit: number;
6156
+ };
6157
+ } | undefined;
6237
6158
  projectId: string;
6238
- sendingEnabled: boolean;
6159
+ receivingDisabled: boolean;
6239
6160
  updatedAt: string;
6240
6161
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6241
6162
  [x: string]: unknown;
@@ -6248,9 +6169,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6248
6169
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6249
6170
  [x: string]: unknown;
6250
6171
  }, 503, "application/json">>>;
6251
- /** Delete a DeliveryBox. */
6252
- deleteDeliveryBox: (request: {
6253
- deliveryBoxId: string;
6172
+ /** Delete a MailAddress. */
6173
+ deleteMailAddress: (request: {
6174
+ mailAddressId: string;
6254
6175
  headers?: {
6255
6176
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6256
6177
  "x-access-token"?: string | undefined;
@@ -6261,7 +6182,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6261
6182
  }> | undefined;
6262
6183
  } & {
6263
6184
  pathParameters: {
6264
- deliveryBoxId: string;
6185
+ mailAddressId: string;
6265
6186
  };
6266
6187
  } & {
6267
6188
  headers: {
@@ -6280,9 +6201,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6280
6201
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6281
6202
  [x: string]: unknown;
6282
6203
  }, 503, "application/json">>>;
6283
- /** Get a MailAddress. */
6284
- getMailAddress: (request: {
6285
- mailAddressId: string;
6204
+ /** List DeliveryBoxes belonging to a Project. */
6205
+ listDeliveryBoxes: (request: {
6206
+ projectId: string;
6286
6207
  headers?: {
6287
6208
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6288
6209
  "x-access-token"?: string | undefined;
@@ -6293,7 +6214,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6293
6214
  }> | undefined;
6294
6215
  } & {
6295
6216
  pathParameters: {
6296
- mailAddressId: string;
6217
+ projectId: string;
6297
6218
  };
6298
6219
  } & {
6299
6220
  headers: {
@@ -6301,39 +6222,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6301
6222
  } & Partial<{
6302
6223
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6303
6224
  }>;
6304
- }, import("@mittwald/api-client-commons").Response<{
6305
- address: string;
6306
- autoResponder: {
6307
- active: boolean;
6308
- expiresAt?: string | undefined;
6309
- message: string;
6310
- startsAt?: string | undefined;
6311
- };
6312
- forwardAddresses: string[];
6313
- id: string;
6314
- isArchived: boolean;
6315
- isCatchAll: boolean;
6316
- mailbox?: {
6317
- passwordUpdatedAt: string;
6318
- sendingEnabled: boolean;
6319
- spamProtection: {
6320
- active: boolean;
6321
- autoDeleteSpam: boolean;
6322
- folder: "spam" | "inbox";
6323
- relocationMinSpamScore: number;
6324
- };
6325
- storageInBytes: {
6326
- current: {
6327
- updatedAt: string;
6328
- value: number;
6329
- };
6330
- limit: number;
6331
- };
6332
- } | undefined;
6333
- projectId: string;
6334
- receivingDisabled: boolean;
6335
- updatedAt: string;
6336
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6225
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailDeliverybox[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6337
6226
  [x: string]: unknown;
6338
6227
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6339
6228
  [x: string]: unknown;
@@ -6344,9 +6233,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6344
6233
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6345
6234
  [x: string]: unknown;
6346
6235
  }, 503, "application/json">>>;
6347
- /** Delete a MailAddress. */
6348
- deleteMailAddress: (request: {
6349
- mailAddressId: string;
6236
+ /** List MailAddresses belonging to a Project. */
6237
+ listMailAddresses: (request: {
6238
+ projectId: string;
6350
6239
  headers?: {
6351
6240
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6352
6241
  "x-access-token"?: string | undefined;
@@ -6357,7 +6246,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6357
6246
  }> | undefined;
6358
6247
  } & {
6359
6248
  pathParameters: {
6360
- mailAddressId: string;
6249
+ projectId: string;
6361
6250
  };
6362
6251
  } & {
6363
6252
  headers: {
@@ -6365,7 +6254,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6365
6254
  } & Partial<{
6366
6255
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6367
6256
  }>;
6368
- }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
6257
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6369
6258
  [x: string]: unknown;
6370
6259
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6371
6260
  [x: string]: unknown;
@@ -419,14 +419,6 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
419
419
  };
420
420
  /** The mail API allows you to manage your mail accounts. */
421
421
  this.mail = {
422
- /** List DeliveryBoxes belonging to a Project. */
423
- listDeliveryBoxes: this.requestFunctionFactory(descriptors.mailListDeliveryBoxes),
424
- /** Create a DeliveryBox. */
425
- createDeliverybox: this.requestFunctionFactory(descriptors.mailCreateDeliverybox),
426
- /** List MailAddresses belonging to a Project. */
427
- listMailAddresses: this.requestFunctionFactory(descriptors.mailListMailAddresses),
428
- /** Create a MailAddress. */
429
- createMailAddress: this.requestFunctionFactory(descriptors.mailCreateMailAddress),
430
422
  /** Get a DeliveryBox. */
431
423
  getDeliveryBox: this.requestFunctionFactory(descriptors.mailGetDeliveryBox),
432
424
  /** Delete a DeliveryBox. */
@@ -435,6 +427,10 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
435
427
  getMailAddress: this.requestFunctionFactory(descriptors.mailGetMailAddress),
436
428
  /** Delete a MailAddress. */
437
429
  deleteMailAddress: this.requestFunctionFactory(descriptors.mailDeleteMailAddress),
430
+ /** List DeliveryBoxes belonging to a Project. */
431
+ listDeliveryBoxes: this.requestFunctionFactory(descriptors.mailListDeliveryBoxes),
432
+ /** List MailAddresses belonging to a Project. */
433
+ listMailAddresses: this.requestFunctionFactory(descriptors.mailListMailAddresses),
438
434
  /** List mail settings of a Project. */
439
435
  listProjectMailSettings: this.requestFunctionFactory(descriptors.mailListProjectMailSettings),
440
436
  /** Update the description of a DeliveryBox. */
@@ -325,14 +325,6 @@ export declare const invoiceGetDetailOfInvoiceSettings: OpenAPIOperation<Request
325
325
  export declare const invoiceUpdateInvoiceSettings: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoiceSettings.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
326
326
  /** List Invoices of a Customer. */
327
327
  export declare const invoiceListCustomerInvoices: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoices.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
328
- /** List DeliveryBoxes belonging to a Project. */
329
- export declare const mailListDeliveryBoxes: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
330
- /** Create a DeliveryBox. */
331
- export declare const mailCreateDeliverybox: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
332
- /** List MailAddresses belonging to a Project. */
333
- export declare const mailListMailAddresses: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
334
- /** Create a MailAddress. */
335
- export declare const mailCreateMailAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
336
328
  /** Get a DeliveryBox. */
337
329
  export declare const mailGetDeliveryBox: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxId.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DeliveryBoxesDeliveryBoxId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
338
330
  /** Delete a DeliveryBox. */
@@ -341,6 +333,10 @@ export declare const mailDeleteDeliveryBox: OpenAPIOperation<RequestType<Simplif
341
333
  export declare const mailGetMailAddress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
342
334
  /** Delete a MailAddress. */
343
335
  export declare const mailDeleteMailAddress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
336
+ /** List DeliveryBoxes belonging to a Project. */
337
+ export declare const mailListDeliveryBoxes: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDeliveryBoxes.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
338
+ /** List MailAddresses belonging to a Project. */
339
+ export declare const mailListMailAddresses: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailAddresses.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
344
340
  /** List mail settings of a Project. */
345
341
  export declare const mailListProjectMailSettings: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettings.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
346
342
  /** Update the description of a DeliveryBox. */
@@ -3,9 +3,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.conversationCreateConversation = exports.conversationListConversations = exports.contractListContracts = exports.contractGetNextTerminationDateForItem = exports.contractGetDetailOfContract = exports.contractGetDetailOfContractItem = exports.contractGetDetailOfContractByServer = exports.contractGetDetailOfContractByProject = exports.contractGetDetailOfContractByDomain = exports.contractGetBaseItemOfContract = exports.contractCancelContractTermination = exports.contractTerminateContract = exports.contractCancelContractTariffChange = exports.contractCancelContractItemTermination = exports.contractTerminateContractItem = exports.backupUpdateProjectBackupDescription = exports.backupDeleteProjectBackup = exports.backupGetProjectBackup = exports.backupUpdateProjectBackupSchedule = exports.backupDeleteProjectBackupSchedule = exports.backupGetProjectBackupSchedule = exports.backupCreateProjectBackup = exports.backupListProjectBackups = exports.backupCreateProjectBackupSchedule = exports.backupListProjectBackupSchedules = exports.backupDeleteProjectBackupExport = exports.backupCreateProjectBackupExport = exports.articleListArticles = exports.articleGetArticle = exports.appUnlinkDatabase = exports.appSetDatabaseUsers = exports.appRetrieveStatus = exports.appRequestAppinstallationCopy = exports.appListUpdateCandidatesForAppversion = exports.appListSystemsoftwareversions = exports.appListSystemsoftwares = exports.appListAppversions = exports.appListApps = exports.appRequestAppinstallation = exports.appListAppinstallations = exports.appLinkDatabase = exports.appGetSystemsoftwareversion = exports.appGetSystemsoftware = exports.appGetMissingDependenciesForAppinstallation = exports.appGetAppversion = exports.appPatchAppinstallation = exports.appUninstallAppinstallation = exports.appGetAppinstallation = exports.appGetApp = exports.appExecuteAction = void 0;
4
4
  exports.databaseCreateMysqlDatabase = exports.databaseListMysqlDatabases = exports.customerResendCustomerInviteMail = exports.customerRemoveAvatar = exports.customerRequestAvatarUpload = exports.customerListMembershipsForCustomer = exports.customerListInvitesForCustomer = exports.customerListCustomerMemberships = exports.customerListCustomerInvites = exports.customerLeaveCustomer = exports.customerIsCustomerLegallyCompetent = exports.customerGetCustomerTokenInvite = exports.customerDeleteCustomer = exports.customerUpdateCustomer = exports.customerGetCustomer = exports.customerUpdateCustomerMembership = exports.customerDeleteCustomerMembership = exports.customerGetCustomerMembership = exports.customerDeleteCustomerInvite = exports.customerGetCustomerInvite = exports.customerDeleteCategory = exports.customerUpdateCategory = exports.customerGetCustomerCategory = exports.customerDeclineCustomerInvite = exports.customerCreateCustomer = exports.customerListCustomers = exports.customerCreateCustomerInvite = exports.customerCreateCategory = exports.customerListOfCustomerCategories = exports.customerAcceptCustomerInvite = exports.cronjobUpdateCronjobAppId = exports.cronjobGetExecution = exports.cronjobUpdateCronjob = exports.cronjobDeleteCronjob = exports.cronjobGetCronjob = exports.cronjobCreateExecution = exports.cronjobListExecutions = exports.cronjobCreateCronjob = exports.cronjobListCronjobs = exports.cronjobAbortExecution = exports.conversationUpdateMessage = exports.conversationSetConversationStatus = exports.conversationRequestFileUpload = exports.conversationListCategories = exports.conversationGetFileAccessToken = exports.conversationUpdateConversation = exports.conversationGetConversation = exports.conversationGetCategory = exports.conversationCreateMessage = exports.conversationListMessagesByConversation = void 0;
5
5
  exports.fileGetFile = exports.fileGetFileMeta = exports.fileCreateFile = exports.domainVerifyDomainOwnership = exports.domainUpdateDomainProjectId = exports.domainUpdateDomainContact = exports.domainUpdateDomainAuthCode = exports.domainResendDomainEmail = exports.domainListTlds = exports.domainListTldContactSchemas = exports.domainListDomains = exports.domainListDomainOwnerships = exports.domainGetLatestScreenshot = exports.domainGetDomainOwnership = exports.domainDeleteDomain = exports.domainGetDomain = exports.domainUpdateDomainNameservers = exports.domainCreateDomainAuthCode = exports.domainCreateDomainAuthCode2 = exports.domainCheckDomainRegistrability = exports.domainAbortDomainDeclaration = exports.dnsUpdateRecordSet = exports.dnsSetRecordSetManaged = exports.dnsListDnsZones = exports.dnsDeleteDnsZone = exports.dnsGetDnsZone = exports.dnsCreateDnsZone = exports.newsletterSubscribeUser = exports.databaseUpdateRedisDatabaseDescription = exports.databaseUpdateRedisDatabaseConfiguration = exports.databaseUpdateMysqlUserPassword = exports.databaseUpdateMysqlDatabaseDescription = exports.databaseUpdateMysqlDatabaseDefaultCharset = exports.databaseListRedisVersions = exports.databaseListMysqlVersions = exports.databaseListMysqlCharsets = exports.databaseGetMysqlUserPhpMyAdminUrl = exports.databaseEnableMysqlUser = exports.databaseDisableMysqlUser = exports.databaseDeleteRedisDatabase = exports.databaseGetRedisDatabase = exports.databaseDeleteMysqlUser = exports.databaseUpdateMysqlUser = exports.databaseGetMysqlUser = exports.databaseDeleteMysqlDatabase = exports.databaseGetMysqlDatabase = exports.databaseCreateRedisDatabase = exports.databaseListRedisDatabases = exports.databaseCreateMysqlUser = exports.databaseListMysqlUsers = void 0;
6
- exports.projectDeclineProjectInvite = exports.projectCreateProject = exports.projectCreateProjectInvite = exports.projectAcceptProjectInvite = exports.passwordValidationGetPasswordPolicy = exports.pageinsightsListPerformanceDataForProject = exports.pageinsightsGetPerformanceData = exports.orderPreviewTariffChange = exports.orderPreviewOrder = exports.orderListProjectOrders = exports.orderListCustomerOrders = exports.orderGetOrder = exports.orderCreateTariffChange = exports.orderCreateOrder = exports.notificationsReadNotification = exports.notificationsReadAllNotifications = exports.notificationsListNotifications = exports.notificationsCountUnreadNotifications = exports.newsletterUnsubscribeUser = exports.newsletterGetInfo = exports.mailUpdateProjectMailSetting = exports.mailUpdateMailAddressSpamProtection = exports.mailUpdateMailAddressQuota = exports.mailUpdateMailAddressPassword = exports.mailUpdateMailAddressForwardAddresses = exports.mailUpdateMailAddressCatchAll = exports.mailUpdateMailAddressAutoresponder = exports.mailUpdateMailAddressAddress = exports.mailUpdateDeliveryBoxPassword = exports.mailUpdateDeliveryBoxDescription = exports.mailListProjectMailSettings = exports.mailDeleteMailAddress = exports.mailGetMailAddress = exports.mailDeleteDeliveryBox = exports.mailGetDeliveryBox = exports.mailCreateMailAddress = exports.mailListMailAddresses = exports.mailCreateDeliverybox = exports.mailListDeliveryBoxes = exports.invoiceListCustomerInvoices = exports.invoiceUpdateInvoiceSettings = exports.invoiceGetDetailOfInvoiceSettings = exports.invoiceDetailOfInvoice = exports.ingressUpdateIngressTls = exports.ingressRequestIngressAcmeCertificateIssuance = exports.ingressUpdateIngressPaths = exports.ingressDeleteIngress = exports.ingressGetIngress = exports.ingressCreateIngress = exports.ingressListIngresses = void 0;
7
- exports.userCheckToken = exports.userChangePassword = exports.userChangeEmail = exports.userGetOwnEmail = exports.userAuthenticate = exports.userAuthenticateMfa = exports.userRemovePhoneNumber = exports.userAddPhoneNumber = exports.sshUserUpdateSshUser = exports.sshUserDeleteSshUser = exports.sshUserGetSshUser = exports.sshUserCreateSshUser = exports.sshUserListSshUsers = exports.sftpUserUpdateSftpUser = exports.sftpUserDeleteSftpUser = exports.sftpUserGetSftpUser = exports.sftpUserCreateSftpUser = exports.sftpUserListSftpUsers = exports.servicetokenAuthenticateService = exports.relocationCreateRelocation = exports.relocationCreateLegacyTariffChange = exports.projectUpdateServerDescription = exports.projectUpdateProjectDescription = exports.projectResendProjectInviteMail = exports.projectListServers = exports.projectListProjects = exports.projectListProjectMemberships = exports.projectListProjectInvites = exports.projectListMembershipsForProject = exports.projectListInvitesForProject = exports.projectLeaveProject = exports.projectGetServer = exports.projectGetSelfMembershipForProject = exports.projectGetProjectTokenInvite = exports.projectFileSystemListFiles = exports.projectFileSystemGetJwt = exports.projectFileSystemGetFileContent = exports.projectFileSystemGetDiskUsage = exports.projectFileSystemGetDirectories = exports.projectDeleteServerAvatar = exports.projectRequestServerAvatarUpload = exports.projectDeleteProject = exports.projectGetProject = exports.projectUpdateProjectMembership = exports.projectDeleteProjectMembership = exports.projectGetProjectMembership = exports.projectDeleteProjectInvite = exports.projectGetProjectInvite = exports.projectDeleteProjectAvatar = exports.projectRequestProjectAvatarUpload = void 0;
8
- exports.fileGetFileUploadTypeRules = exports.fileGetFileUploadTokenRules = exports.userVerifyRegistration = exports.userVerifyPhoneNumber = exports.userVerifyEmail = exports.userSupportCodeRequest = exports.userResendVerificationEmail = exports.userRemoveAvatar = exports.userRequestAvatarUpload = exports.userRegister = exports.userLogout = exports.userTerminateAllSessions = exports.userListSessions = exports.userListFeedback = exports.userInitPasswordReset = exports.userInitMfa = exports.userUpdatePersonalInformation = exports.userGetUser = exports.userTerminateSession = exports.userGetSession = exports.userUpdatePersonalizedSettings = exports.userGetPersonalizedSettings = exports.userGetPasswordUpdatedAt = exports.userUpdateAccount = exports.userGetOwnAccount = exports.userDeleteUser = exports.userDeleteSshKey = exports.userEditSshKey = exports.userGetSshKey = exports.userDeleteApiToken = exports.userEditApiToken = exports.userGetApiToken = exports.userCreateSshKey = exports.userListSshKeys = exports.userCreateFeedback = exports.userCreateApiToken = exports.userListApiTokens = exports.userConfirmPasswordReset = exports.userDisableMfa = exports.userConfirmMfa = exports.userResetRecoverycodes = exports.userGetMfaStatus = void 0;
6
+ exports.projectDeleteProjectAvatar = exports.projectRequestProjectAvatarUpload = exports.projectDeclineProjectInvite = exports.projectCreateProject = exports.projectCreateProjectInvite = exports.projectAcceptProjectInvite = exports.passwordValidationGetPasswordPolicy = exports.pageinsightsListPerformanceDataForProject = exports.pageinsightsGetPerformanceData = exports.orderPreviewTariffChange = exports.orderPreviewOrder = exports.orderListProjectOrders = exports.orderListCustomerOrders = exports.orderGetOrder = exports.orderCreateTariffChange = exports.orderCreateOrder = exports.notificationsReadNotification = exports.notificationsReadAllNotifications = exports.notificationsListNotifications = exports.notificationsCountUnreadNotifications = exports.newsletterUnsubscribeUser = exports.newsletterGetInfo = exports.mailUpdateProjectMailSetting = exports.mailUpdateMailAddressSpamProtection = exports.mailUpdateMailAddressQuota = exports.mailUpdateMailAddressPassword = exports.mailUpdateMailAddressForwardAddresses = exports.mailUpdateMailAddressCatchAll = exports.mailUpdateMailAddressAutoresponder = exports.mailUpdateMailAddressAddress = exports.mailUpdateDeliveryBoxPassword = exports.mailUpdateDeliveryBoxDescription = exports.mailListProjectMailSettings = exports.mailListMailAddresses = exports.mailListDeliveryBoxes = exports.mailDeleteMailAddress = exports.mailGetMailAddress = exports.mailDeleteDeliveryBox = exports.mailGetDeliveryBox = exports.invoiceListCustomerInvoices = exports.invoiceUpdateInvoiceSettings = exports.invoiceGetDetailOfInvoiceSettings = exports.invoiceDetailOfInvoice = exports.ingressUpdateIngressTls = exports.ingressRequestIngressAcmeCertificateIssuance = exports.ingressUpdateIngressPaths = exports.ingressDeleteIngress = exports.ingressGetIngress = exports.ingressCreateIngress = exports.ingressListIngresses = void 0;
7
+ exports.userResetRecoverycodes = exports.userGetMfaStatus = exports.userCheckToken = exports.userChangePassword = exports.userChangeEmail = exports.userGetOwnEmail = exports.userAuthenticate = exports.userAuthenticateMfa = exports.userRemovePhoneNumber = exports.userAddPhoneNumber = exports.sshUserUpdateSshUser = exports.sshUserDeleteSshUser = exports.sshUserGetSshUser = exports.sshUserCreateSshUser = exports.sshUserListSshUsers = exports.sftpUserUpdateSftpUser = exports.sftpUserDeleteSftpUser = exports.sftpUserGetSftpUser = exports.sftpUserCreateSftpUser = exports.sftpUserListSftpUsers = exports.servicetokenAuthenticateService = exports.relocationCreateRelocation = exports.relocationCreateLegacyTariffChange = exports.projectUpdateServerDescription = exports.projectUpdateProjectDescription = exports.projectResendProjectInviteMail = exports.projectListServers = exports.projectListProjects = exports.projectListProjectMemberships = exports.projectListProjectInvites = exports.projectListMembershipsForProject = exports.projectListInvitesForProject = exports.projectLeaveProject = exports.projectGetServer = exports.projectGetSelfMembershipForProject = exports.projectGetProjectTokenInvite = exports.projectFileSystemListFiles = exports.projectFileSystemGetJwt = exports.projectFileSystemGetFileContent = exports.projectFileSystemGetDiskUsage = exports.projectFileSystemGetDirectories = exports.projectDeleteServerAvatar = exports.projectRequestServerAvatarUpload = exports.projectDeleteProject = exports.projectGetProject = exports.projectUpdateProjectMembership = exports.projectDeleteProjectMembership = exports.projectGetProjectMembership = exports.projectDeleteProjectInvite = exports.projectGetProjectInvite = void 0;
8
+ exports.fileGetFileUploadTypeRules = exports.fileGetFileUploadTokenRules = exports.userVerifyRegistration = exports.userVerifyPhoneNumber = exports.userVerifyEmail = exports.userSupportCodeRequest = exports.userResendVerificationEmail = exports.userRemoveAvatar = exports.userRequestAvatarUpload = exports.userRegister = exports.userLogout = exports.userTerminateAllSessions = exports.userListSessions = exports.userListFeedback = exports.userInitPasswordReset = exports.userInitMfa = exports.userUpdatePersonalInformation = exports.userGetUser = exports.userTerminateSession = exports.userGetSession = exports.userUpdatePersonalizedSettings = exports.userGetPersonalizedSettings = exports.userGetPasswordUpdatedAt = exports.userUpdateAccount = exports.userGetOwnAccount = exports.userDeleteUser = exports.userDeleteSshKey = exports.userEditSshKey = exports.userGetSshKey = exports.userDeleteApiToken = exports.userEditApiToken = exports.userGetApiToken = exports.userCreateSshKey = exports.userListSshKeys = exports.userCreateFeedback = exports.userCreateApiToken = exports.userListApiTokens = exports.userConfirmPasswordReset = exports.userDisableMfa = exports.userConfirmMfa = void 0;
9
9
  /** Execute a runtime concerning action on a specific `AppInstallation`. */
10
10
  exports.appExecuteAction = {
11
11
  path: "/v2/app-installations/{appInstallationId}/actions/{action}",
@@ -972,30 +972,6 @@ exports.invoiceListCustomerInvoices = {
972
972
  method: "GET",
973
973
  operationId: "invoice-list-customer-invoices",
974
974
  };
975
- /** List DeliveryBoxes belonging to a Project. */
976
- exports.mailListDeliveryBoxes = {
977
- path: "/v2/projects/{projectId}/delivery-boxes",
978
- method: "GET",
979
- operationId: "mail-list-delivery-boxes",
980
- };
981
- /** Create a DeliveryBox. */
982
- exports.mailCreateDeliverybox = {
983
- path: "/v2/projects/{projectId}/delivery-boxes",
984
- method: "POST",
985
- operationId: "mail-create-deliverybox",
986
- };
987
- /** List MailAddresses belonging to a Project. */
988
- exports.mailListMailAddresses = {
989
- path: "/v2/projects/{projectId}/mail-addresses",
990
- method: "GET",
991
- operationId: "mail-list-mail-addresses",
992
- };
993
- /** Create a MailAddress. */
994
- exports.mailCreateMailAddress = {
995
- path: "/v2/projects/{projectId}/mail-addresses",
996
- method: "POST",
997
- operationId: "mail-create-mail-address",
998
- };
999
975
  /** Get a DeliveryBox. */
1000
976
  exports.mailGetDeliveryBox = {
1001
977
  path: "/v2/delivery-boxes/{deliveryBoxId}",
@@ -1020,6 +996,18 @@ exports.mailDeleteMailAddress = {
1020
996
  method: "DELETE",
1021
997
  operationId: "mail-delete-mail-address",
1022
998
  };
999
+ /** List DeliveryBoxes belonging to a Project. */
1000
+ exports.mailListDeliveryBoxes = {
1001
+ path: "/v2/projects/{projectId}/delivery-boxes",
1002
+ method: "GET",
1003
+ operationId: "mail-list-delivery-boxes",
1004
+ };
1005
+ /** List MailAddresses belonging to a Project. */
1006
+ exports.mailListMailAddresses = {
1007
+ path: "/v2/projects/{projectId}/mail-addresses",
1008
+ method: "GET",
1009
+ operationId: "mail-list-mail-addresses",
1010
+ };
1023
1011
  /** List mail settings of a Project. */
1024
1012
  exports.mailListProjectMailSettings = {
1025
1013
  path: "/v2/projects/{projectId}/mail-settings",