@mittwald/api-client 4.273.0 → 4.275.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -312,10 +312,10 @@ const buildMailApi = (baseClient) => ({
312
312
  getMailAddress: new ApiCallAsyncResourceFactory(descriptors.mailGetMailAddress, baseClient.mail.getMailAddress).getApiResource,
313
313
  /** List backups belonging to a MailAddress. */
314
314
  listBackupsForMailAddress: new ApiCallAsyncResourceFactory(descriptors.mailListBackupsForMailAddress, baseClient.mail.listBackupsForMailAddress).getApiResource,
315
- /** List mail settings of a Project. */
316
- listProjectMailSettings: new ApiCallAsyncResourceFactory(descriptors.mailListProjectMailSettings, baseClient.mail.listProjectMailSettings).getApiResource,
317
315
  /** List MailAddresses. */
318
316
  listMailAddressesForUser: new ApiCallAsyncResourceFactory(descriptors.mailListMailAddressesForUser, baseClient.mail.listMailAddressesForUser).getApiResource,
317
+ /** List mail settings of a Project. */
318
+ listProjectMailSettings: new ApiCallAsyncResourceFactory(descriptors.mailListProjectMailSettings, baseClient.mail.listProjectMailSettings).getApiResource,
319
319
  });
320
320
  const buildMiscApi = (baseClient) => ({
321
321
  /** Get a list of currently active llm models. */
@@ -617,6 +617,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
617
617
  disableMailArchive: this.requestFunctionFactory(descriptors.mailDisableMailArchive),
618
618
  /** List backups belonging to a MailAddress. */
619
619
  listBackupsForMailAddress: this.requestFunctionFactory(descriptors.mailListBackupsForMailAddress),
620
+ /** List MailAddresses. */
621
+ listMailAddressesForUser: this.requestFunctionFactory(descriptors.mailListMailAddressesForUser),
620
622
  /** List mail settings of a Project. */
621
623
  listProjectMailSettings: this.requestFunctionFactory(descriptors.mailListProjectMailSettings),
622
624
  /** Recover emails for a MailAddress from a backup. */
@@ -629,8 +631,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
629
631
  updateMailAddressAddress: this.requestFunctionFactory(descriptors.mailUpdateMailAddressAddress),
630
632
  /** Update the catch-all of a MailAddress. */
631
633
  updateMailAddressCatchAll: this.requestFunctionFactory(descriptors.mailUpdateMailAddressCatchAll),
632
- /** List MailAddresses. */
633
- listMailAddressesForUser: this.requestFunctionFactory(descriptors.mailListMailAddressesForUser),
634
634
  };
635
635
  /** The notification API allows you to manage your notifications. */
636
636
  notification = {
@@ -1750,6 +1750,12 @@ export const mailListBackupsForMailAddress = {
1750
1750
  method: "GET",
1751
1751
  operationId: "mail-list-backups-for-mail-address",
1752
1752
  };
1753
+ /** List MailAddresses. */
1754
+ export const mailListMailAddressesForUser = {
1755
+ path: "/v2/mail-addresses/",
1756
+ method: "GET",
1757
+ operationId: "mail-list-mail-addresses-for-user",
1758
+ };
1753
1759
  /** List mail settings of a Project. */
1754
1760
  export const mailListProjectMailSettings = {
1755
1761
  path: "/v2/projects/{projectId}/mail-settings",
@@ -2620,9 +2626,3 @@ export const verificationVerifyCompany = {
2620
2626
  method: "POST",
2621
2627
  operationId: "verification-verify-company",
2622
2628
  };
2623
- /** List MailAddresses. */
2624
- export const mailListMailAddressesForUser = {
2625
- path: "/v2/mail-addresses/",
2626
- method: "GET",
2627
- operationId: "mail-list-mail-addresses-for-user",
2628
- };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.272.0';
1
+ export const MittwaldAPIClientVersion = '4.274.0';
@@ -1946,7 +1946,6 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1946
1946
  };
1947
1947
  headers?: {
1948
1948
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1949
- "x-access-token"?: string | undefined;
1950
1949
  } | undefined;
1951
1950
  }) => import("@mittwald/react-use-promise").AsyncResource<{
1952
1951
  domains: string[];
@@ -2478,18 +2477,6 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
2478
2477
  "x-access-token"?: string | undefined;
2479
2478
  } | undefined;
2480
2479
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddressBackup[]>;
2481
- /** List mail settings of a Project. */
2482
- listProjectMailSettings: (conf: {
2483
- projectId: string;
2484
- headers?: {
2485
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2486
- "x-access-token"?: string | undefined;
2487
- } | undefined;
2488
- }) => import("@mittwald/react-use-promise").AsyncResource<{
2489
- blacklist: string[];
2490
- projectId: string;
2491
- whitelist: string[];
2492
- }>;
2493
2480
  /** List MailAddresses. */
2494
2481
  listMailAddressesForUser: (conf?: {
2495
2482
  headers?: {
@@ -2511,6 +2498,18 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
2511
2498
  order?: ("asc" | "desc")[] | undefined;
2512
2499
  } | undefined;
2513
2500
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[]>;
2501
+ /** List mail settings of a Project. */
2502
+ listProjectMailSettings: (conf: {
2503
+ projectId: string;
2504
+ headers?: {
2505
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2506
+ "x-access-token"?: string | undefined;
2507
+ } | undefined;
2508
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2509
+ blacklist: string[];
2510
+ projectId: string;
2511
+ whitelist: string[];
2512
+ }>;
2514
2513
  };
2515
2514
  declare const buildMiscApi: (baseClient: MittwaldAPIV2Client) => {
2516
2515
  /** Get a list of currently active llm models. */
@@ -16295,6 +16295,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
16295
16295
  createScheduledDeletion: (request: {
16296
16296
  data: {
16297
16297
  deletionDate: string;
16298
+ deleteIngresses?: boolean | undefined;
16298
16299
  };
16299
16300
  domainId: string;
16300
16301
  headers?: {
@@ -16303,6 +16304,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
16303
16304
  } | undefined;
16304
16305
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
16305
16306
  data: {
16307
+ deleteIngresses?: boolean | undefined;
16306
16308
  deletionDate: string;
16307
16309
  };
16308
16310
  } & {
@@ -16325,6 +16327,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
16325
16327
  [x: string]: unknown;
16326
16328
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
16327
16329
  data: {
16330
+ deleteIngresses?: boolean | undefined;
16328
16331
  deletionDate: string;
16329
16332
  };
16330
16333
  } & {
@@ -16852,7 +16855,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
16852
16855
  };
16853
16856
  headers?: {
16854
16857
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
16855
- "x-access-token"?: string | undefined;
16856
16858
  } | undefined;
16857
16859
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
16858
16860
  headers?: Partial<{
@@ -16866,12 +16868,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
16866
16868
  } & Partial<{
16867
16869
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
16868
16870
  }>;
16869
- } & {
16870
- headers: {
16871
- "x-access-token"?: string | undefined;
16872
- } & Partial<{
16873
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
16874
- }>;
16875
16871
  }, import("@mittwald/api-client-commons").Response<{
16876
16872
  domains: string[];
16877
16873
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -16892,12 +16888,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
16892
16888
  } & Partial<{
16893
16889
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
16894
16890
  }>;
16895
- } & {
16896
- headers: {
16897
- "x-access-token"?: string | undefined;
16898
- } & Partial<{
16899
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
16900
- }>;
16901
16891
  }, import("@mittwald/api-client-commons").Response<{
16902
16892
  domains: string[];
16903
16893
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -19407,6 +19397,103 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
19407
19397
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
19408
19398
  [x: string]: unknown;
19409
19399
  }, 500, "application/json">>>;
19400
+ /** List MailAddresses. */
19401
+ listMailAddressesForUser: (request?: {
19402
+ headers?: {
19403
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
19404
+ "x-access-token"?: string | undefined;
19405
+ } | undefined;
19406
+ queryParameters?: {
19407
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
19408
+ projectId?: string | undefined;
19409
+ search?: string | undefined;
19410
+ forwardAddress?: boolean | undefined;
19411
+ catchAll?: boolean | undefined;
19412
+ autoResponder?: boolean | undefined;
19413
+ mailArchive?: boolean | undefined;
19414
+ limit?: number | undefined;
19415
+ skip?: number | undefined;
19416
+ page?: number | undefined;
19417
+ sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[] | undefined;
19418
+ order?: ("asc" | "desc")[] | undefined;
19419
+ } | undefined;
19420
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
19421
+ headers?: Partial<{
19422
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19423
+ }>;
19424
+ } & {
19425
+ queryParameters: {
19426
+ projectId?: string | undefined;
19427
+ search?: string | undefined;
19428
+ forwardAddress?: boolean | undefined;
19429
+ catchAll?: boolean | undefined;
19430
+ autoResponder?: boolean | undefined;
19431
+ mailArchive?: boolean | undefined;
19432
+ limit?: number | undefined;
19433
+ skip?: number | undefined;
19434
+ page?: number | undefined;
19435
+ sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[] | undefined;
19436
+ order?: ("asc" | "desc")[] | undefined;
19437
+ } & Partial<{
19438
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19439
+ }>;
19440
+ } & {
19441
+ headers: {
19442
+ "x-access-token"?: string | undefined;
19443
+ } & Partial<{
19444
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19445
+ }>;
19446
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
19447
+ [x: string]: unknown;
19448
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
19449
+ [x: string]: unknown;
19450
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
19451
+ [x: string]: unknown;
19452
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
19453
+ [x: string]: unknown;
19454
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
19455
+ [x: string]: unknown;
19456
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
19457
+ [x: string]: unknown;
19458
+ }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
19459
+ headers?: Partial<{
19460
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19461
+ }>;
19462
+ } & {
19463
+ queryParameters: {
19464
+ projectId?: string | undefined;
19465
+ search?: string | undefined;
19466
+ forwardAddress?: boolean | undefined;
19467
+ catchAll?: boolean | undefined;
19468
+ autoResponder?: boolean | undefined;
19469
+ mailArchive?: boolean | undefined;
19470
+ limit?: number | undefined;
19471
+ skip?: number | undefined;
19472
+ page?: number | undefined;
19473
+ sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[] | undefined;
19474
+ order?: ("asc" | "desc")[] | undefined;
19475
+ } & Partial<{
19476
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19477
+ }>;
19478
+ } & {
19479
+ headers: {
19480
+ "x-access-token"?: string | undefined;
19481
+ } & Partial<{
19482
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19483
+ }>;
19484
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
19485
+ [x: string]: unknown;
19486
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
19487
+ [x: string]: unknown;
19488
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
19489
+ [x: string]: unknown;
19490
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
19491
+ [x: string]: unknown;
19492
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
19493
+ [x: string]: unknown;
19494
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
19495
+ [x: string]: unknown;
19496
+ }, 503, "application/json">>>;
19410
19497
  /** List mail settings of a Project. */
19411
19498
  listProjectMailSettings: (request: {
19412
19499
  projectId: string;
@@ -19810,103 +19897,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
19810
19897
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
19811
19898
  [x: string]: unknown;
19812
19899
  }, 503, "application/json">>>;
19813
- /** List MailAddresses. */
19814
- listMailAddressesForUser: (request?: {
19815
- headers?: {
19816
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
19817
- "x-access-token"?: string | undefined;
19818
- } | undefined;
19819
- queryParameters?: {
19820
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
19821
- projectId?: string | undefined;
19822
- search?: string | undefined;
19823
- forwardAddress?: boolean | undefined;
19824
- catchAll?: boolean | undefined;
19825
- autoResponder?: boolean | undefined;
19826
- mailArchive?: boolean | undefined;
19827
- limit?: number | undefined;
19828
- skip?: number | undefined;
19829
- page?: number | undefined;
19830
- sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[] | undefined;
19831
- order?: ("asc" | "desc")[] | undefined;
19832
- } | undefined;
19833
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
19834
- headers?: Partial<{
19835
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19836
- }>;
19837
- } & {
19838
- queryParameters: {
19839
- projectId?: string | undefined;
19840
- search?: string | undefined;
19841
- forwardAddress?: boolean | undefined;
19842
- catchAll?: boolean | undefined;
19843
- autoResponder?: boolean | undefined;
19844
- mailArchive?: boolean | undefined;
19845
- limit?: number | undefined;
19846
- skip?: number | undefined;
19847
- page?: number | undefined;
19848
- sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[] | undefined;
19849
- order?: ("asc" | "desc")[] | undefined;
19850
- } & Partial<{
19851
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19852
- }>;
19853
- } & {
19854
- headers: {
19855
- "x-access-token"?: string | undefined;
19856
- } & Partial<{
19857
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19858
- }>;
19859
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
19860
- [x: string]: unknown;
19861
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
19862
- [x: string]: unknown;
19863
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
19864
- [x: string]: unknown;
19865
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
19866
- [x: string]: unknown;
19867
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
19868
- [x: string]: unknown;
19869
- }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
19870
- [x: string]: unknown;
19871
- }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
19872
- headers?: Partial<{
19873
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19874
- }>;
19875
- } & {
19876
- queryParameters: {
19877
- projectId?: string | undefined;
19878
- search?: string | undefined;
19879
- forwardAddress?: boolean | undefined;
19880
- catchAll?: boolean | undefined;
19881
- autoResponder?: boolean | undefined;
19882
- mailArchive?: boolean | undefined;
19883
- limit?: number | undefined;
19884
- skip?: number | undefined;
19885
- page?: number | undefined;
19886
- sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[] | undefined;
19887
- order?: ("asc" | "desc")[] | undefined;
19888
- } & Partial<{
19889
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19890
- }>;
19891
- } & {
19892
- headers: {
19893
- "x-access-token"?: string | undefined;
19894
- } & Partial<{
19895
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19896
- }>;
19897
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
19898
- [x: string]: unknown;
19899
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
19900
- [x: string]: unknown;
19901
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
19902
- [x: string]: unknown;
19903
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
19904
- [x: string]: unknown;
19905
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
19906
- [x: string]: unknown;
19907
- }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
19908
- [x: string]: unknown;
19909
- }, 503, "application/json">>>;
19910
19900
  };
19911
19901
  /** The notification API allows you to manage your notifications. */
19912
19902
  readonly notification: {
@@ -587,6 +587,8 @@ export declare const mailDeleteMailAddress: OpenAPIOperation<RequestType<Simplif
587
587
  export declare const mailDisableMailArchive: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdMailArchive.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
588
588
  /** List backups belonging to a MailAddress. */
589
589
  export declare const mailListBackupsForMailAddress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdBackups.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
590
+ /** List MailAddresses. */
591
+ export declare const mailListMailAddressesForUser: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
590
592
  /** List mail settings of a Project. */
591
593
  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.$429.Content.ApplicationJson>, 429, "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">>;
592
594
  /** Recover emails for a MailAddress from a backup. */
@@ -877,5 +879,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
877
879
  export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
878
880
  /** Check if a company exists. */
879
881
  export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$500.Content.Empty>, 500, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
880
- /** List MailAddresses. */
881
- export declare const mailListMailAddressesForUser: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddresses.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -1170,6 +1170,10 @@ export declare namespace MittwaldAPIV2 {
1170
1170
  type RequestData = InferredRequestData<typeof descriptors.mailListBackupsForMailAddress>;
1171
1171
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListBackupsForMailAddress, TStatus>;
1172
1172
  }
1173
+ namespace MailListMailAddressesForUser {
1174
+ type RequestData = InferredRequestData<typeof descriptors.mailListMailAddressesForUser>;
1175
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListMailAddressesForUser, TStatus>;
1176
+ }
1173
1177
  namespace MailListProjectMailSettings {
1174
1178
  type RequestData = InferredRequestData<typeof descriptors.mailListProjectMailSettings>;
1175
1179
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListProjectMailSettings, TStatus>;
@@ -1750,10 +1754,6 @@ export declare namespace MittwaldAPIV2 {
1750
1754
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1751
1755
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1752
1756
  }
1753
- namespace MailListMailAddressesForUser {
1754
- type RequestData = InferredRequestData<typeof descriptors.mailListMailAddressesForUser>;
1755
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListMailAddressesForUser, TStatus>;
1756
- }
1757
1757
  }
1758
1758
  namespace Components {
1759
1759
  namespace Schemas {
@@ -15410,6 +15410,10 @@ export declare namespace MittwaldAPIV2 {
15410
15410
  domainId: string;
15411
15411
  };
15412
15412
  interface RequestBody {
15413
+ /**
15414
+ * Whether to also delete the corresponding Ingress and subdomain Ingresses.
15415
+ */
15416
+ deleteIngresses?: boolean;
15413
15417
  deletionDate: string;
15414
15418
  }
15415
15419
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
@@ -15890,7 +15894,7 @@ export declare namespace MittwaldAPIV2 {
15890
15894
  namespace Get {
15891
15895
  namespace Parameters {
15892
15896
  type Path = {};
15893
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
15897
+ type Header = {};
15894
15898
  type Query = {
15895
15899
  prompt: string;
15896
15900
  domainCount?: number;
@@ -20884,6 +20888,83 @@ export declare namespace MittwaldAPIV2 {
20884
20888
  }
20885
20889
  }
20886
20890
  }
20891
+ namespace V2MailAddresses {
20892
+ namespace Get {
20893
+ namespace Parameters {
20894
+ type Path = {};
20895
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
20896
+ type Query = {
20897
+ projectId?: string;
20898
+ search?: string;
20899
+ forwardAddress?: boolean;
20900
+ catchAll?: boolean;
20901
+ autoResponder?: boolean;
20902
+ mailArchive?: boolean;
20903
+ limit?: number;
20904
+ skip?: number;
20905
+ page?: number;
20906
+ sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[];
20907
+ order?: ("asc" | "desc")[];
20908
+ };
20909
+ }
20910
+ namespace Responses {
20911
+ namespace $200 {
20912
+ namespace Content {
20913
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress[];
20914
+ }
20915
+ }
20916
+ namespace $400 {
20917
+ namespace Content {
20918
+ interface ApplicationJson {
20919
+ [k: string]: unknown;
20920
+ }
20921
+ }
20922
+ }
20923
+ namespace $403 {
20924
+ namespace Content {
20925
+ interface ApplicationJson {
20926
+ [k: string]: unknown;
20927
+ }
20928
+ }
20929
+ }
20930
+ namespace $404 {
20931
+ namespace Content {
20932
+ interface ApplicationJson {
20933
+ [k: string]: unknown;
20934
+ }
20935
+ }
20936
+ }
20937
+ namespace $429 {
20938
+ namespace Content {
20939
+ interface ApplicationJson {
20940
+ [k: string]: unknown;
20941
+ }
20942
+ }
20943
+ }
20944
+ namespace $500 {
20945
+ namespace Content {
20946
+ interface ApplicationJson {
20947
+ [k: string]: unknown;
20948
+ }
20949
+ }
20950
+ }
20951
+ namespace $503 {
20952
+ namespace Content {
20953
+ interface ApplicationJson {
20954
+ [k: string]: unknown;
20955
+ }
20956
+ }
20957
+ }
20958
+ namespace Default {
20959
+ namespace Content {
20960
+ interface ApplicationJson {
20961
+ [k: string]: unknown;
20962
+ }
20963
+ }
20964
+ }
20965
+ }
20966
+ }
20967
+ }
20887
20968
  namespace V2ProjectsProjectIdMailsettings { }
20888
20969
  namespace V2ProjectsProjectIdMailSettings {
20889
20970
  namespace Get {
@@ -27890,82 +27971,5 @@ export declare namespace MittwaldAPIV2 {
27890
27971
  }
27891
27972
  }
27892
27973
  }
27893
- namespace V2MailAddresses {
27894
- namespace Get {
27895
- namespace Parameters {
27896
- type Path = {};
27897
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
27898
- type Query = {
27899
- projectId?: string;
27900
- search?: string;
27901
- forwardAddress?: boolean;
27902
- catchAll?: boolean;
27903
- autoResponder?: boolean;
27904
- mailArchive?: boolean;
27905
- limit?: number;
27906
- skip?: number;
27907
- page?: number;
27908
- sort?: ("address.domain" | "address.local" | "updatedAt" | "projectId" | "mailbox.quota" | "mailbox.name" | "mailbox.storageInBytes.current" | "mailbox.storageInBytes.limit")[];
27909
- order?: ("asc" | "desc")[];
27910
- };
27911
- }
27912
- namespace Responses {
27913
- namespace $200 {
27914
- namespace Content {
27915
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailMailAddress[];
27916
- }
27917
- }
27918
- namespace $400 {
27919
- namespace Content {
27920
- interface ApplicationJson {
27921
- [k: string]: unknown;
27922
- }
27923
- }
27924
- }
27925
- namespace $403 {
27926
- namespace Content {
27927
- interface ApplicationJson {
27928
- [k: string]: unknown;
27929
- }
27930
- }
27931
- }
27932
- namespace $404 {
27933
- namespace Content {
27934
- interface ApplicationJson {
27935
- [k: string]: unknown;
27936
- }
27937
- }
27938
- }
27939
- namespace $429 {
27940
- namespace Content {
27941
- interface ApplicationJson {
27942
- [k: string]: unknown;
27943
- }
27944
- }
27945
- }
27946
- namespace $500 {
27947
- namespace Content {
27948
- interface ApplicationJson {
27949
- [k: string]: unknown;
27950
- }
27951
- }
27952
- }
27953
- namespace $503 {
27954
- namespace Content {
27955
- interface ApplicationJson {
27956
- [k: string]: unknown;
27957
- }
27958
- }
27959
- }
27960
- namespace Default {
27961
- namespace Content {
27962
- interface ApplicationJson {
27963
- [k: string]: unknown;
27964
- }
27965
- }
27966
- }
27967
- }
27968
- }
27969
- }
27970
27974
  }
27971
27975
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.272.0';
1
+ export declare const MittwaldAPIClientVersion = '4.274.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.273.0",
3
+ "version": "4.275.0",
4
4
  "author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
5
5
  "type": "module",
6
6
  "description": "Auto-generated client for the mittwald API",
@@ -46,11 +46,11 @@
46
46
  "test:compile": "run tsc --noEmit"
47
47
  },
48
48
  "dependencies": {
49
- "@mittwald/api-client-commons": "^4.273.0",
49
+ "@mittwald/api-client-commons": "^4.275.0",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^4.273.0",
53
+ "@mittwald/api-code-generator": "^4.275.0",
54
54
  "@mittwald/react-use-promise": "^2.6.2",
55
55
  "@types/node": "^22.18.11",
56
56
  "@types/react": "^18.3.26",
@@ -80,5 +80,5 @@
80
80
  "optional": true
81
81
  }
82
82
  },
83
- "gitHead": "b5589d2520581e1451412b91bc2f3d683d9b3899"
83
+ "gitHead": "cb71d8ac7d06c2df84a65c3b1062f649dd1d18d9"
84
84
  }