@mittwald/api-client 3.0.20 → 3.0.22

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.
@@ -84,6 +84,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
84
84
  projectId?: string | undefined;
85
85
  screenshotId?: string | undefined;
86
86
  screenshotRef?: string | undefined;
87
+ shortId: string;
87
88
  systemSoftware?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppInstalledSystemSoftware[] | undefined;
88
89
  updatePolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppUpdatePolicy | undefined;
89
90
  userInputs?: import("./types.js").MittwaldAPIV2.Components.Schemas.AppSavedUserInput[] | undefined;
@@ -541,38 +542,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
541
542
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
542
543
  }>;
543
544
  }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.AppAppVersion[], 200, "application/json">>>;
544
- /** reconcile detected apps to appInstallations of a project */
545
- reconcileDetectedApps: (request: {
546
- data: {
547
- appName: string;
548
- appVersionClusterVersion: string;
549
- databaseHost?: string | undefined;
550
- databaseUserName?: string | undefined;
551
- installationDirectory: string;
552
- }[];
553
- projectShortId: string;
554
- headers?: {
555
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
556
- } | undefined;
557
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
558
- data: {
559
- appName: string;
560
- appVersionClusterVersion: string;
561
- databaseHost?: string | undefined;
562
- databaseUserName?: string | undefined;
563
- installationDirectory: string;
564
- }[];
565
- } & {
566
- pathParameters: {
567
- projectShortId: string;
568
- };
569
- } & {
570
- headers?: Partial<{
571
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
572
- }> | undefined;
573
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
574
- [x: string]: unknown;
575
- }, 404, "application/json">>>;
576
545
  /** request a copy of an `AppInstallation` */
577
546
  requestAppinstallationCopy: (request: {
578
547
  data: {
@@ -6183,8 +6152,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6183
6152
  };
6184
6153
  /** The mail API allows you to manage your mail accounts. */
6185
6154
  readonly mail: {
6186
- /** Get all deliveryboxes by project ID */
6187
- deliveryboxList: (request: {
6155
+ /** List DeliveryBoxes belonging to a Project. */
6156
+ listDeliveryBoxes: (request: {
6188
6157
  projectId: string;
6189
6158
  headers?: {
6190
6159
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -6204,9 +6173,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6204
6173
  } & Partial<{
6205
6174
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6206
6175
  }>;
6207
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailDeliverybox[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty">>>;
6208
- /** Create a new deliverybox */
6209
- deliveryboxCreate: (request: {
6176
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailDeliverybox[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6177
+ [x: string]: unknown;
6178
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6179
+ [x: string]: unknown;
6180
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6181
+ [x: string]: unknown;
6182
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6183
+ [x: string]: unknown;
6184
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6185
+ [x: string]: unknown;
6186
+ }, 503, "application/json">>>;
6187
+ /** Create a DeliveryBox. */
6188
+ createDeliverybox: (request: {
6210
6189
  data: {
6211
6190
  description: string;
6212
6191
  password: string;
@@ -6235,122 +6214,21 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6235
6214
  } & Partial<{
6236
6215
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6237
6216
  }>;
6238
- }, import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty"> | import("@mittwald/api-client-commons").Response<{
6239
- id: string;
6240
- }, 201, "application/json">>>;
6241
- /** Get a specific deliverybox */
6242
- deliveryboxGetSpecific: (request: {
6243
- id: string;
6244
- headers?: {
6245
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6246
- "x-access-token"?: string | undefined;
6247
- } | undefined;
6248
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6249
- headers?: Partial<{
6250
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6251
- }> | undefined;
6252
- } & {
6253
- pathParameters: {
6254
- id: string;
6255
- };
6256
- } & {
6257
- headers: {
6258
- "x-access-token"?: string | undefined;
6259
- } & Partial<{
6260
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6261
- }>;
6262
- }, import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty"> | import("@mittwald/api-client-commons").Response<{
6263
- authenticationEnabled: boolean;
6264
- description: string;
6265
- id: string;
6266
- name: string;
6267
- passwordUpdatedAt: string;
6268
- projectId: string;
6269
- sendingEnabled: boolean;
6270
- updatedAt: string;
6271
- }, 200, "application/json">>>;
6272
- /** Delete a specific deliverybox */
6273
- deliveryboxDelete: (request: {
6274
- id: string;
6275
- headers?: {
6276
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6277
- "x-access-token"?: string | undefined;
6278
- } | undefined;
6279
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6280
- headers?: Partial<{
6281
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6282
- }> | undefined;
6283
- } & {
6284
- pathParameters: {
6285
- id: string;
6286
- };
6287
- } & {
6288
- headers: {
6289
- "x-access-token"?: string | undefined;
6290
- } & Partial<{
6291
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6292
- }>;
6293
- }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty">>>;
6294
- /** Update the description of an deliverybox */
6295
- deliveryboxUpdateDescription: (request: {
6296
- data: {
6297
- description: string;
6298
- };
6299
- id: string;
6300
- headers?: {
6301
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6302
- "x-access-token"?: string | undefined;
6303
- } | undefined;
6304
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6305
- data: {
6306
- description: string;
6307
- };
6308
- } & {
6309
- pathParameters: {
6310
- id: string;
6311
- };
6312
- } & {
6313
- headers?: Partial<{
6314
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6315
- }> | undefined;
6316
- } & {
6317
- headers: {
6318
- "x-access-token"?: string | undefined;
6319
- } & Partial<{
6320
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6321
- }>;
6322
- }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty">>>;
6323
- /** Update the password for a specific deliverybox */
6324
- deliveryboxUpdatePassword: (request: {
6325
- data: {
6326
- password: string;
6327
- };
6217
+ }, import("@mittwald/api-client-commons").Response<{
6328
6218
  id: string;
6329
- headers?: {
6330
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6331
- "x-access-token"?: string | undefined;
6332
- } | undefined;
6333
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6334
- data: {
6335
- password: string;
6336
- };
6337
- } & {
6338
- pathParameters: {
6339
- id: string;
6340
- };
6341
- } & {
6342
- headers?: Partial<{
6343
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6344
- }> | undefined;
6345
- } & {
6346
- headers: {
6347
- "x-access-token"?: string | undefined;
6348
- } & Partial<{
6349
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6350
- }>;
6351
- }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty">>>;
6352
- /** Get all mail addresses for a project ID */
6353
- mailaddressList: (request: {
6219
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6220
+ [x: string]: unknown;
6221
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6222
+ [x: string]: unknown;
6223
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6224
+ [x: string]: unknown;
6225
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6226
+ [x: string]: unknown;
6227
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6228
+ [x: string]: unknown;
6229
+ }, 503, "application/json">>>;
6230
+ /** List MailAddresses belonging to a Project. */
6231
+ listMailAddresses: (request: {
6354
6232
  projectId: string;
6355
6233
  headers?: {
6356
6234
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -6370,9 +6248,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6370
6248
  } & Partial<{
6371
6249
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6372
6250
  }>;
6373
- }, import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty"> | import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[], 200, "application/json">>>;
6374
- /** Create a new mail address */
6375
- mailaddressCreate: (request: {
6251
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6252
+ [x: string]: unknown;
6253
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6254
+ [x: string]: unknown;
6255
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6256
+ [x: string]: unknown;
6257
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6258
+ [x: string]: unknown;
6259
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6260
+ [x: string]: unknown;
6261
+ }, 503, "application/json">>>;
6262
+ /** Create a MailAddress. */
6263
+ createMailAddress: (request: {
6376
6264
  data: {
6377
6265
  address: string;
6378
6266
  forwardAddresses: string[];
@@ -6426,14 +6314,63 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6426
6314
  } & Partial<{
6427
6315
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6428
6316
  }>;
6429
- }, import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty"> | import("@mittwald/api-client-commons").Response<{
6317
+ }, import("@mittwald/api-client-commons").Response<{
6430
6318
  id: string;
6431
6319
  }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
6432
6320
  [x: string]: unknown;
6433
- }, 400, "application/json">>>;
6434
- /** Get a specific mail address */
6435
- mailaddressGetSpecific: (request: {
6321
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6322
+ [x: string]: unknown;
6323
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6324
+ [x: string]: unknown;
6325
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6326
+ [x: string]: unknown;
6327
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6328
+ [x: string]: unknown;
6329
+ }, 503, "application/json">>>;
6330
+ /** Get a DeliveryBox. */
6331
+ getDeliveryBox: (request: {
6332
+ deliveryBoxId: string;
6333
+ headers?: {
6334
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6335
+ "x-access-token"?: string | undefined;
6336
+ } | undefined;
6337
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6338
+ headers?: Partial<{
6339
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6340
+ }> | undefined;
6341
+ } & {
6342
+ pathParameters: {
6343
+ deliveryBoxId: string;
6344
+ };
6345
+ } & {
6346
+ headers: {
6347
+ "x-access-token"?: string | undefined;
6348
+ } & Partial<{
6349
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6350
+ }>;
6351
+ }, import("@mittwald/api-client-commons").Response<{
6352
+ authenticationEnabled: boolean;
6353
+ description: string;
6436
6354
  id: string;
6355
+ name: string;
6356
+ passwordUpdatedAt: string;
6357
+ projectId: string;
6358
+ sendingEnabled: boolean;
6359
+ updatedAt: string;
6360
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6361
+ [x: string]: unknown;
6362
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6363
+ [x: string]: unknown;
6364
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6365
+ [x: string]: unknown;
6366
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6367
+ [x: string]: unknown;
6368
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6369
+ [x: string]: unknown;
6370
+ }, 503, "application/json">>>;
6371
+ /** Delete a DeliveryBox. */
6372
+ deleteDeliveryBox: (request: {
6373
+ deliveryBoxId: string;
6437
6374
  headers?: {
6438
6375
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6439
6376
  "x-access-token"?: string | undefined;
@@ -6444,7 +6381,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6444
6381
  }> | undefined;
6445
6382
  } & {
6446
6383
  pathParameters: {
6447
- id: string;
6384
+ deliveryBoxId: string;
6448
6385
  };
6449
6386
  } & {
6450
6387
  headers: {
@@ -6452,7 +6389,39 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6452
6389
  } & Partial<{
6453
6390
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6454
6391
  }>;
6455
- }, import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty"> | import("@mittwald/api-client-commons").Response<{
6392
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
6393
+ [x: string]: unknown;
6394
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6395
+ [x: string]: unknown;
6396
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6397
+ [x: string]: unknown;
6398
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6399
+ [x: string]: unknown;
6400
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6401
+ [x: string]: unknown;
6402
+ }, 503, "application/json">>>;
6403
+ /** Get a MailAddress. */
6404
+ getMailAddress: (request: {
6405
+ mailAddressId: string;
6406
+ headers?: {
6407
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6408
+ "x-access-token"?: string | undefined;
6409
+ } | undefined;
6410
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6411
+ headers?: Partial<{
6412
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6413
+ }> | undefined;
6414
+ } & {
6415
+ pathParameters: {
6416
+ mailAddressId: string;
6417
+ };
6418
+ } & {
6419
+ headers: {
6420
+ "x-access-token"?: string | undefined;
6421
+ } & Partial<{
6422
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6423
+ }>;
6424
+ }, import("@mittwald/api-client-commons").Response<{
6456
6425
  address: string;
6457
6426
  autoResponder: {
6458
6427
  active: boolean;
@@ -6484,10 +6453,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6484
6453
  projectId: string;
6485
6454
  receivingDisabled: boolean;
6486
6455
  updatedAt: string;
6487
- }, 200, "application/json">>>;
6488
- /** Delete a specific mail address */
6489
- mailaddressDelete: (request: {
6490
- id: string;
6456
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6457
+ [x: string]: unknown;
6458
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6459
+ [x: string]: unknown;
6460
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6461
+ [x: string]: unknown;
6462
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6463
+ [x: string]: unknown;
6464
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6465
+ [x: string]: unknown;
6466
+ }, 503, "application/json">>>;
6467
+ /** Delete a MailAddress. */
6468
+ deleteMailAddress: (request: {
6469
+ mailAddressId: string;
6491
6470
  headers?: {
6492
6471
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6493
6472
  "x-access-token"?: string | undefined;
@@ -6498,7 +6477,39 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6498
6477
  }> | undefined;
6499
6478
  } & {
6500
6479
  pathParameters: {
6501
- id: string;
6480
+ mailAddressId: string;
6481
+ };
6482
+ } & {
6483
+ headers: {
6484
+ "x-access-token"?: string | undefined;
6485
+ } & Partial<{
6486
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6487
+ }>;
6488
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
6489
+ [x: string]: unknown;
6490
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6491
+ [x: string]: unknown;
6492
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6493
+ [x: string]: unknown;
6494
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6495
+ [x: string]: unknown;
6496
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6497
+ [x: string]: unknown;
6498
+ }, 503, "application/json">>>;
6499
+ /** List mail settings of a Project. */
6500
+ listProjectMailSettings: (request: {
6501
+ projectId: string;
6502
+ headers?: {
6503
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6504
+ "x-access-token"?: string | undefined;
6505
+ } | undefined;
6506
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6507
+ headers?: Partial<{
6508
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6509
+ }> | undefined;
6510
+ } & {
6511
+ pathParameters: {
6512
+ projectId: string;
6502
6513
  };
6503
6514
  } & {
6504
6515
  headers: {
@@ -6506,13 +6517,105 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6506
6517
  } & Partial<{
6507
6518
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6508
6519
  }>;
6509
- }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty">>>;
6510
- /** Update mail-address */
6511
- mailaddressUpdateAddress: (request: {
6520
+ }, import("@mittwald/api-client-commons").Response<{
6521
+ blacklist: string[];
6522
+ projectId: string;
6523
+ whitelist: string[];
6524
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
6525
+ [x: string]: unknown;
6526
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6527
+ [x: string]: unknown;
6528
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6529
+ [x: string]: unknown;
6530
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6531
+ [x: string]: unknown;
6532
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6533
+ [x: string]: unknown;
6534
+ }, 503, "application/json">>>;
6535
+ /** Update the description of a DeliveryBox. */
6536
+ updateDeliveryBoxDescription: (request: {
6537
+ data: {
6538
+ description: string;
6539
+ };
6540
+ deliveryBoxId: string;
6541
+ headers?: {
6542
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6543
+ "x-access-token"?: string | undefined;
6544
+ } | undefined;
6545
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6546
+ data: {
6547
+ description: string;
6548
+ };
6549
+ } & {
6550
+ pathParameters: {
6551
+ deliveryBoxId: string;
6552
+ };
6553
+ } & {
6554
+ headers?: Partial<{
6555
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6556
+ }> | undefined;
6557
+ } & {
6558
+ headers: {
6559
+ "x-access-token"?: string | undefined;
6560
+ } & Partial<{
6561
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6562
+ }>;
6563
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
6564
+ [x: string]: unknown;
6565
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6566
+ [x: string]: unknown;
6567
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6568
+ [x: string]: unknown;
6569
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6570
+ [x: string]: unknown;
6571
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6572
+ [x: string]: unknown;
6573
+ }, 503, "application/json">>>;
6574
+ /** Update the password of a DeliveryBox. */
6575
+ updateDeliveryBoxPassword: (request: {
6576
+ data: {
6577
+ password: string;
6578
+ };
6579
+ deliveryBoxId: string;
6580
+ headers?: {
6581
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6582
+ "x-access-token"?: string | undefined;
6583
+ } | undefined;
6584
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6585
+ data: {
6586
+ password: string;
6587
+ };
6588
+ } & {
6589
+ pathParameters: {
6590
+ deliveryBoxId: string;
6591
+ };
6592
+ } & {
6593
+ headers?: Partial<{
6594
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6595
+ }> | undefined;
6596
+ } & {
6597
+ headers: {
6598
+ "x-access-token"?: string | undefined;
6599
+ } & Partial<{
6600
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6601
+ }>;
6602
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
6603
+ [x: string]: unknown;
6604
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6605
+ [x: string]: unknown;
6606
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6607
+ [x: string]: unknown;
6608
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6609
+ [x: string]: unknown;
6610
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6611
+ [x: string]: unknown;
6612
+ }, 503, "application/json">>>;
6613
+ /** Update a MailAddress. */
6614
+ updateMailAddressAddress: (request: {
6512
6615
  data: {
6513
6616
  address: string;
6514
6617
  };
6515
- id: string;
6618
+ mailAddressId: string;
6516
6619
  headers?: {
6517
6620
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6518
6621
  "x-access-token"?: string | undefined;
@@ -6523,7 +6626,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6523
6626
  };
6524
6627
  } & {
6525
6628
  pathParameters: {
6526
- id: string;
6629
+ mailAddressId: string;
6527
6630
  };
6528
6631
  } & {
6529
6632
  headers?: Partial<{
@@ -6535,9 +6638,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6535
6638
  } & Partial<{
6536
6639
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6537
6640
  }>;
6538
- }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty">>>;
6539
- /** Update the auto responder of a mail address */
6540
- mailaddressUpdateAutoresponder: (request: {
6641
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
6642
+ [x: string]: unknown;
6643
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6644
+ [x: string]: unknown;
6645
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6646
+ [x: string]: unknown;
6647
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6648
+ [x: string]: unknown;
6649
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6650
+ [x: string]: unknown;
6651
+ }, 503, "application/json">>>;
6652
+ /** Update the autoresponder of a MailAddress. */
6653
+ updateMailAddressAutoresponder: (request: {
6541
6654
  data: {
6542
6655
  autoResponder: {
6543
6656
  active: boolean;
@@ -6546,7 +6659,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6546
6659
  startsAt?: string | undefined;
6547
6660
  };
6548
6661
  };
6549
- id: string;
6662
+ mailAddressId: string;
6550
6663
  headers?: {
6551
6664
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6552
6665
  "x-access-token"?: string | undefined;
@@ -6562,7 +6675,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6562
6675
  };
6563
6676
  } & {
6564
6677
  pathParameters: {
6565
- id: string;
6678
+ mailAddressId: string;
6566
6679
  };
6567
6680
  } & {
6568
6681
  headers?: Partial<{
@@ -6574,13 +6687,23 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6574
6687
  } & Partial<{
6575
6688
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6576
6689
  }>;
6577
- }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty">>>;
6578
- /** Enable or disable the catchAll flag for a specific mail address */
6579
- mailaddressUpdateCatchall: (request: {
6690
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
6691
+ [x: string]: unknown;
6692
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6693
+ [x: string]: unknown;
6694
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6695
+ [x: string]: unknown;
6696
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6697
+ [x: string]: unknown;
6698
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6699
+ [x: string]: unknown;
6700
+ }, 503, "application/json">>>;
6701
+ /** Update the catchall of a MailAddress. */
6702
+ updateMailAddressCatchall: (request: {
6580
6703
  data: {
6581
6704
  active: boolean;
6582
6705
  };
6583
- id: string;
6706
+ mailAddressId: string;
6584
6707
  headers?: {
6585
6708
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6586
6709
  "x-access-token"?: string | undefined;
@@ -6591,7 +6714,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6591
6714
  };
6592
6715
  } & {
6593
6716
  pathParameters: {
6594
- id: string;
6717
+ mailAddressId: string;
6595
6718
  };
6596
6719
  } & {
6597
6720
  headers?: Partial<{
@@ -6603,15 +6726,23 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6603
6726
  } & Partial<{
6604
6727
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6605
6728
  }>;
6606
- }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty"> | import("@mittwald/api-client-commons").Response<{
6729
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
6607
6730
  [x: string]: unknown;
6608
- }, 400, "application/json">>>;
6609
- /** Update the addresses an email is forwarded to */
6610
- mailaddressUpdateForwardaddresses: (request: {
6731
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6732
+ [x: string]: unknown;
6733
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6734
+ [x: string]: unknown;
6735
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6736
+ [x: string]: unknown;
6737
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6738
+ [x: string]: unknown;
6739
+ }, 503, "application/json">>>;
6740
+ /** Update the forward addresses of a MailAddresses. */
6741
+ updateMailAddressForwardAddresses: (request: {
6611
6742
  data: {
6612
6743
  forwardAddresses: string[];
6613
6744
  };
6614
- id: string;
6745
+ mailAddressId: string;
6615
6746
  headers?: {
6616
6747
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6617
6748
  "x-access-token"?: string | undefined;
@@ -6622,7 +6753,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6622
6753
  };
6623
6754
  } & {
6624
6755
  pathParameters: {
6625
- id: string;
6756
+ mailAddressId: string;
6626
6757
  };
6627
6758
  } & {
6628
6759
  headers?: Partial<{
@@ -6634,13 +6765,23 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6634
6765
  } & Partial<{
6635
6766
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6636
6767
  }>;
6637
- }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty">>>;
6638
- /** Update the password for a specific mail address */
6639
- mailaddressUpdatePassword: (request: {
6768
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
6769
+ [x: string]: unknown;
6770
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6771
+ [x: string]: unknown;
6772
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6773
+ [x: string]: unknown;
6774
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6775
+ [x: string]: unknown;
6776
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6777
+ [x: string]: unknown;
6778
+ }, 503, "application/json">>>;
6779
+ /** Update the password for a MailAddress. */
6780
+ updateMailAddressPassword: (request: {
6640
6781
  data: {
6641
6782
  password: string;
6642
6783
  };
6643
- id: string;
6784
+ mailAddressId: string;
6644
6785
  headers?: {
6645
6786
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6646
6787
  "x-access-token"?: string | undefined;
@@ -6651,7 +6792,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6651
6792
  };
6652
6793
  } & {
6653
6794
  pathParameters: {
6654
- id: string;
6795
+ mailAddressId: string;
6655
6796
  };
6656
6797
  } & {
6657
6798
  headers?: Partial<{
@@ -6663,13 +6804,23 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6663
6804
  } & Partial<{
6664
6805
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6665
6806
  }>;
6666
- }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty">>>;
6667
- /** Update the quota of a mailbox */
6668
- mailaddressUpdateQuota: (request: {
6807
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
6808
+ [x: string]: unknown;
6809
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6810
+ [x: string]: unknown;
6811
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6812
+ [x: string]: unknown;
6813
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6814
+ [x: string]: unknown;
6815
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6816
+ [x: string]: unknown;
6817
+ }, 503, "application/json">>>;
6818
+ /** Update the quota of a MailAddress. */
6819
+ updateMailAddressQuota: (request: {
6669
6820
  data: {
6670
6821
  quotaInBytes: number;
6671
6822
  };
6672
- id: string;
6823
+ mailAddressId: string;
6673
6824
  headers?: {
6674
6825
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6675
6826
  "x-access-token"?: string | undefined;
@@ -6680,7 +6831,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6680
6831
  };
6681
6832
  } & {
6682
6833
  pathParameters: {
6683
- id: string;
6834
+ mailAddressId: string;
6684
6835
  };
6685
6836
  } & {
6686
6837
  headers?: Partial<{
@@ -6692,9 +6843,19 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6692
6843
  } & Partial<{
6693
6844
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6694
6845
  }>;
6695
- }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty">>>;
6696
- /** Update the spamprotection of a mailbox */
6697
- mailaddressUpdateSpamprotection: (request: {
6846
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
6847
+ [x: string]: unknown;
6848
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6849
+ [x: string]: unknown;
6850
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6851
+ [x: string]: unknown;
6852
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6853
+ [x: string]: unknown;
6854
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6855
+ [x: string]: unknown;
6856
+ }, 503, "application/json">>>;
6857
+ /** Update the spam protection of a MailAddress. */
6858
+ updateMailAddressSpamProtection: (request: {
6698
6859
  data: {
6699
6860
  spamProtection: {
6700
6861
  active: boolean;
@@ -6703,7 +6864,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6703
6864
  relocationMinSpamScore: number;
6704
6865
  };
6705
6866
  };
6706
- id: string;
6867
+ mailAddressId: string;
6707
6868
  headers?: {
6708
6869
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6709
6870
  "x-access-token"?: string | undefined;
@@ -6719,7 +6880,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6719
6880
  };
6720
6881
  } & {
6721
6882
  pathParameters: {
6722
- id: string;
6883
+ mailAddressId: string;
6723
6884
  };
6724
6885
  } & {
6725
6886
  headers?: Partial<{
@@ -6731,79 +6892,50 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6731
6892
  } & Partial<{
6732
6893
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6733
6894
  }>;
6734
- }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty">>>;
6735
- /** Get settings for a given project ID */
6736
- projectsettingGetSpecific: (request: {
6737
- projectId: string;
6738
- headers?: {
6739
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6740
- "x-access-token"?: string | undefined;
6741
- } | undefined;
6742
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6743
- headers?: Partial<{
6744
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6745
- }> | undefined;
6746
- } & {
6747
- pathParameters: {
6748
- projectId: string;
6749
- };
6750
- } & {
6751
- headers: {
6752
- "x-access-token"?: string | undefined;
6753
- } & Partial<{
6754
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6755
- }>;
6756
- }, import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty"> | import("@mittwald/api-client-commons").Response<{
6757
- blacklist: string[];
6758
- projectId: string;
6759
- whitelist: string[];
6760
- }, 200, "application/json">>>;
6761
- /** Update blacklist for a given project ID */
6762
- projectsettingUpdateBlacklist: (request: {
6895
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
6896
+ [x: string]: unknown;
6897
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6898
+ [x: string]: unknown;
6899
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6900
+ [x: string]: unknown;
6901
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6902
+ [x: string]: unknown;
6903
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6904
+ [x: string]: unknown;
6905
+ }, 503, "application/json">>>;
6906
+ /** Update a mail setting of a Project. */
6907
+ updateProjectMailSetting: (request: {
6763
6908
  data: {
6764
6909
  blacklist: string[];
6765
6910
  };
6766
6911
  projectId: string;
6912
+ setting: "blacklist" | "whitelist";
6767
6913
  headers?: {
6768
6914
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6769
6915
  "x-access-token"?: string | undefined;
6770
6916
  } | undefined;
6771
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6772
- data: {
6773
- blacklist: string[];
6774
- };
6775
- } & {
6776
- pathParameters: {
6777
- projectId: string;
6778
- };
6779
- } & {
6780
- headers?: Partial<{
6781
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6782
- }> | undefined;
6783
- } & {
6784
- headers: {
6785
- "x-access-token"?: string | undefined;
6786
- } & Partial<{
6787
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6788
- }>;
6789
- }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty">>>;
6790
- /** Update whitelist for a given project ID */
6791
- projectsettingUpdateWhitelist: (request: {
6917
+ } | {
6792
6918
  data: {
6793
6919
  whitelist: string[];
6794
6920
  };
6795
6921
  projectId: string;
6922
+ setting: "blacklist" | "whitelist";
6796
6923
  headers?: {
6797
6924
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6798
6925
  "x-access-token"?: string | undefined;
6799
6926
  } | undefined;
6800
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6927
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<({
6928
+ data: {
6929
+ blacklist: string[];
6930
+ };
6931
+ } | {
6801
6932
  data: {
6802
6933
  whitelist: string[];
6803
6934
  };
6804
- } & {
6935
+ }) & {
6805
6936
  pathParameters: {
6806
6937
  projectId: string;
6938
+ setting: "blacklist" | "whitelist";
6807
6939
  };
6808
6940
  } & {
6809
6941
  headers?: Partial<{
@@ -6815,7 +6947,17 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6815
6947
  } & Partial<{
6816
6948
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6817
6949
  }>;
6818
- }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{}, 403, "empty"> | import("@mittwald/api-client-commons").Response<{}, 404, "empty"> | import("@mittwald/api-client-commons").Response<{}, 500, "empty"> | import("@mittwald/api-client-commons").Response<{}, 503, "empty">>>;
6950
+ }, import("@mittwald/api-client-commons").Response<{}, 200, "empty"> | import("@mittwald/api-client-commons").Response<{
6951
+ [x: string]: unknown;
6952
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6953
+ [x: string]: unknown;
6954
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
6955
+ [x: string]: unknown;
6956
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6957
+ [x: string]: unknown;
6958
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
6959
+ [x: string]: unknown;
6960
+ }, 503, "application/json">>>;
6819
6961
  };
6820
6962
  /** The project API allows you to manage your projects, and also any kinds of user memberships concerning these projects. */
6821
6963
  readonly project: {