@mittwald/api-client 0.0.0-development-e8f2771-20260612 → 0.0.0-development-9f66b59-20260619

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.
@@ -362,10 +362,14 @@ const buildMailApi = (baseClient) => ({
362
362
  getDeliveryBox: new ApiCallAsyncResourceFactory(descriptors.mailGetDeliveryBox, baseClient.mail.getDeliveryBox).getApiResource,
363
363
  /** Get a MailAddress. */
364
364
  getMailAddress: new ApiCallAsyncResourceFactory(descriptors.mailGetMailAddress, baseClient.mail.getMailAddress).getApiResource,
365
+ /** Get a Mail RateLimit. */
366
+ getMailRateLimit: new ApiCallAsyncResourceFactory(descriptors.mailGetMailRateLimit, baseClient.mail.getMailRateLimit).getApiResource,
365
367
  /** List backups belonging to a MailAddress. */
366
368
  listBackupsForMailAddress: new ApiCallAsyncResourceFactory(descriptors.mailListBackupsForMailAddress, baseClient.mail.listBackupsForMailAddress).getApiResource,
367
369
  /** List MailAddresses. */
368
370
  listMailAddressesForUser: new ApiCallAsyncResourceFactory(descriptors.mailListMailAddressesForUser, baseClient.mail.listMailAddressesForUser).getApiResource,
371
+ /** List Mail RateLimits. */
372
+ listMailRateLimits: new ApiCallAsyncResourceFactory(descriptors.mailListMailRateLimits, baseClient.mail.listMailRateLimits).getApiResource,
369
373
  /** List mail settings of a Project. */
370
374
  listProjectMailSettings: new ApiCallAsyncResourceFactory(descriptors.mailListProjectMailSettings, baseClient.mail.listProjectMailSettings).getApiResource,
371
375
  /** Get a Migration. */
@@ -446,6 +450,8 @@ const buildProjectApi = (baseClient) => ({
446
450
  getServer: new ApiCallAsyncResourceFactory(descriptors.projectGetServer, baseClient.project.getServer).getApiResource,
447
451
  /** List Memberships belonging to a Project. */
448
452
  listMembershipsForProject: new ApiCallAsyncResourceFactory(descriptors.projectListMembershipsForProject, baseClient.project.listMembershipsForProject).getApiResource,
453
+ /** Get the activities of a project. */
454
+ listProjectActivities: new ApiCallAsyncResourceFactory(descriptors.projectListProjectActivities, baseClient.project.listProjectActivities).getApiResource,
449
455
  /** List ProjectInvites belonging to the executing user. */
450
456
  listProjectInvites: new ApiCallAsyncResourceFactory(descriptors.projectListProjectInvites, baseClient.project.listProjectInvites).getApiResource,
451
457
  /** List ProjectMemberships belonging to the executing user. */
@@ -694,10 +694,14 @@ export class MittwaldAPIV2Client extends ApiClientBase {
694
694
  deleteMailAddress: this.requestFunctionFactory(descriptors.mailDeleteMailAddress),
695
695
  /** Disable the mail-archive of a MailAddress. */
696
696
  disableMailArchive: this.requestFunctionFactory(descriptors.mailDisableMailArchive),
697
+ /** Get a Mail RateLimit. */
698
+ getMailRateLimit: this.requestFunctionFactory(descriptors.mailGetMailRateLimit),
697
699
  /** List backups belonging to a MailAddress. */
698
700
  listBackupsForMailAddress: this.requestFunctionFactory(descriptors.mailListBackupsForMailAddress),
699
701
  /** List MailAddresses. */
700
702
  listMailAddressesForUser: this.requestFunctionFactory(descriptors.mailListMailAddressesForUser),
703
+ /** List Mail RateLimits. */
704
+ listMailRateLimits: this.requestFunctionFactory(descriptors.mailListMailRateLimits),
701
705
  /** List mail settings of a Project. */
702
706
  listProjectMailSettings: this.requestFunctionFactory(descriptors.mailListProjectMailSettings),
703
707
  /** Check if a Migration between two projects is possible. */
@@ -718,6 +722,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
718
722
  updateMailAddressAddress: this.requestFunctionFactory(descriptors.mailUpdateMailAddressAddress),
719
723
  /** Update the catch-all of a MailAddress. */
720
724
  updateMailAddressCatchAll: this.requestFunctionFactory(descriptors.mailUpdateMailAddressCatchAll),
725
+ /** Request a rate limit change for a MailAddress. */
726
+ requestMailAddressRateLimitChange: this.requestFunctionFactory(descriptors.mailRequestMailAddressRateLimitChange),
721
727
  };
722
728
  /** The notification API allows you to manage your notifications. */
723
729
  notification = {
@@ -968,6 +974,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
968
974
  getServer: this.requestFunctionFactory(descriptors.projectGetServer),
969
975
  /** List Memberships belonging to a Project. */
970
976
  listMembershipsForProject: this.requestFunctionFactory(descriptors.projectListMembershipsForProject),
977
+ /** Get the activities of a project. */
978
+ listProjectActivities: this.requestFunctionFactory(descriptors.projectListProjectActivities),
971
979
  /** List ProjectInvites belonging to the executing user. */
972
980
  listProjectInvites: this.requestFunctionFactory(descriptors.projectListProjectInvites),
973
981
  /** List ProjectMemberships belonging to the executing user. */
@@ -1990,6 +1990,12 @@ export const mailDisableMailArchive = {
1990
1990
  method: "DELETE",
1991
1991
  operationId: "mail-disable-mail-archive",
1992
1992
  };
1993
+ /** Get a Mail RateLimit. */
1994
+ export const mailGetMailRateLimit = {
1995
+ path: "/v2/mail-rate-limits/{mailRateLimitId}",
1996
+ method: "GET",
1997
+ operationId: "mail-get-mail-rate-limit",
1998
+ };
1993
1999
  /** List backups belonging to a MailAddress. */
1994
2000
  export const mailListBackupsForMailAddress = {
1995
2001
  path: "/v2/mail-addresses/{mailAddressId}/backups",
@@ -2002,6 +2008,12 @@ export const mailListMailAddressesForUser = {
2002
2008
  method: "GET",
2003
2009
  operationId: "mail-list-mail-addresses-for-user",
2004
2010
  };
2011
+ /** List Mail RateLimits. */
2012
+ export const mailListMailRateLimits = {
2013
+ path: "/v2/mail-rate-limits",
2014
+ method: "GET",
2015
+ operationId: "mail-list-mail-rate-limits",
2016
+ };
2005
2017
  /** List mail settings of a Project. */
2006
2018
  export const mailListProjectMailSettings = {
2007
2019
  path: "/v2/projects/{projectId}/mail-settings",
@@ -2344,6 +2356,12 @@ export const projectListMembershipsForProject = {
2344
2356
  method: "GET",
2345
2357
  operationId: "project-list-memberships-for-project",
2346
2358
  };
2359
+ /** Get the activities of a project. */
2360
+ export const projectListProjectActivities = {
2361
+ path: "/v2/projects/{projectId}/activities",
2362
+ method: "GET",
2363
+ operationId: "project-list-project-activities",
2364
+ };
2347
2365
  /** List ProjectInvites belonging to the executing user. */
2348
2366
  export const projectListProjectInvites = {
2349
2367
  path: "/v2/project-invites",
@@ -2872,3 +2890,9 @@ export const verificationVerifyCompany = {
2872
2890
  method: "POST",
2873
2891
  operationId: "verification-verify-company",
2874
2892
  };
2893
+ /** Request a rate limit change for a MailAddress. */
2894
+ export const mailRequestMailAddressRateLimitChange = {
2895
+ path: "/v2/mail-addresses/{mailAddressId}/request-rate-limit-change",
2896
+ method: "POST",
2897
+ operationId: "mail-request-mail-address-rate-limit-change",
2898
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.383.0';
1
+ export const MittwaldAPIClientVersion = '4.387.0';
@@ -615,6 +615,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
615
615
  };
616
616
  headers?: {
617
617
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
618
+ "Accept-Language"?: "de" | "en" | undefined;
618
619
  "x-access-token"?: string | undefined;
619
620
  } | undefined;
620
621
  }) => import("@mittwald/react-use-promise").AsyncResource<{
@@ -661,6 +662,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
661
662
  pendingState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
662
663
  projectId: string;
663
664
  requiresRecreate: boolean;
665
+ restartPolicy?: "no" | "always" | "on-failure" | "unless-stopped" | undefined;
664
666
  serviceName: string;
665
667
  shortId: string;
666
668
  stackId: string;
@@ -1783,6 +1785,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
1783
1785
  cronjobId: string;
1784
1786
  headers?: {
1785
1787
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1788
+ "Accept-Language"?: "de" | "en" | undefined;
1786
1789
  "x-access-token"?: string | undefined;
1787
1790
  } | undefined;
1788
1791
  }) => import("@mittwald/react-use-promise").AsyncResource<{
@@ -2335,6 +2338,7 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
2335
2338
  id: string;
2336
2339
  ips: {
2337
2340
  v4: string[];
2341
+ v6: string[];
2338
2342
  };
2339
2343
  isDefault: boolean;
2340
2344
  isDomain?: boolean | undefined;
@@ -2858,9 +2862,22 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
2858
2862
  };
2859
2863
  } | undefined;
2860
2864
  projectId: string;
2865
+ rateLimitChangeRequest?: {
2866
+ rateLimitId: string;
2867
+ } | undefined;
2861
2868
  receivingDisabled: boolean;
2862
2869
  updatedAt: string;
2863
2870
  }>;
2871
+ /** Get a Mail RateLimit. */
2872
+ getMailRateLimit: (conf: {
2873
+ mailRateLimitId: string;
2874
+ headers?: {
2875
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2876
+ } | undefined;
2877
+ }) => import("@mittwald/react-use-promise").AsyncResource<{
2878
+ id: string;
2879
+ rateLimit: number;
2880
+ }>;
2864
2881
  /** List backups belonging to a MailAddress. */
2865
2882
  listBackupsForMailAddress: (conf: {
2866
2883
  mailAddressId: string;
@@ -2890,6 +2907,12 @@ declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
2890
2907
  order?: ("asc" | "desc")[] | undefined;
2891
2908
  } | undefined;
2892
2909
  } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailMailAddress[]>;
2910
+ /** List Mail RateLimits. */
2911
+ listMailRateLimits: (conf?: {
2912
+ headers?: {
2913
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2914
+ } | undefined;
2915
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MailsystemRateLimit[]>;
2893
2916
  /** List mail settings of a Project. */
2894
2917
  listProjectMailSettings: (conf: {
2895
2918
  projectId: string;
@@ -3453,6 +3476,27 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
3453
3476
  searchTerm?: string | undefined;
3454
3477
  } | undefined;
3455
3478
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.MembershipProjectMembership[]>;
3479
+ /** Get the activities of a project. */
3480
+ listProjectActivities: (conf: {
3481
+ projectId: string;
3482
+ headers?: {
3483
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3484
+ } | undefined;
3485
+ queryParameters?: {
3486
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
3487
+ aggregateName?: string | undefined;
3488
+ aggregateDomain?: string | undefined;
3489
+ aggregateId?: string | undefined;
3490
+ startTime?: string | undefined;
3491
+ endTime?: string | undefined;
3492
+ fulltextSearch?: string | undefined;
3493
+ limit?: number | undefined;
3494
+ skip?: number | undefined;
3495
+ page?: number | undefined;
3496
+ sort?: "dateTime" | undefined;
3497
+ order?: "asc" | "desc" | undefined;
3498
+ } | undefined;
3499
+ }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[]>;
3456
3500
  /** List ProjectInvites belonging to the executing user. */
3457
3501
  listProjectInvites: (conf?: {
3458
3502
  headers?: {
@@ -4167,6 +4167,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4167
4167
  [x: string]: string;
4168
4168
  } | undefined;
4169
4169
  ports?: string[] | undefined;
4170
+ restartPolicy?: string | undefined;
4170
4171
  volumes?: string[] | undefined;
4171
4172
  };
4172
4173
  } | undefined;
@@ -4354,6 +4355,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4354
4355
  } | undefined;
4355
4356
  image?: string | undefined;
4356
4357
  ports?: string[] | undefined;
4358
+ restartPolicy?: string | undefined;
4357
4359
  volumes?: string[] | undefined;
4358
4360
  };
4359
4361
  } | undefined;
@@ -4817,6 +4819,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4817
4819
  };
4818
4820
  headers?: {
4819
4821
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4822
+ "Accept-Language"?: "de" | "en" | undefined;
4820
4823
  "x-access-token"?: string | undefined;
4821
4824
  } | undefined;
4822
4825
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
@@ -4834,6 +4837,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4834
4837
  }>;
4835
4838
  } & {
4836
4839
  headers: {
4840
+ "Accept-Language"?: "de" | "en" | undefined;
4837
4841
  "x-access-token"?: string | undefined;
4838
4842
  } & Partial<{
4839
4843
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -4878,6 +4882,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4878
4882
  }>;
4879
4883
  } & {
4880
4884
  headers: {
4885
+ "Accept-Language"?: "de" | "en" | undefined;
4881
4886
  "x-access-token"?: string | undefined;
4882
4887
  } & Partial<{
4883
4888
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -5015,6 +5020,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5015
5020
  pendingState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
5016
5021
  projectId: string;
5017
5022
  requiresRecreate: boolean;
5023
+ restartPolicy?: "no" | "always" | "on-failure" | "unless-stopped" | undefined;
5018
5024
  serviceName: string;
5019
5025
  shortId: string;
5020
5026
  stackId: string;
@@ -5056,6 +5062,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5056
5062
  pendingState: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceState;
5057
5063
  projectId: string;
5058
5064
  requiresRecreate: boolean;
5065
+ restartPolicy?: "no" | "always" | "on-failure" | "unless-stopped" | undefined;
5059
5066
  serviceName: string;
5060
5067
  shortId: string;
5061
5068
  stackId: string;
@@ -14208,6 +14215,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
14208
14215
  cronjobId: string;
14209
14216
  headers?: {
14210
14217
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
14218
+ "Accept-Language"?: "de" | "en" | undefined;
14211
14219
  "x-access-token"?: string | undefined;
14212
14220
  } | undefined;
14213
14221
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
@@ -14221,6 +14229,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
14221
14229
  };
14222
14230
  } & {
14223
14231
  headers: {
14232
+ "Accept-Language"?: "de" | "en" | undefined;
14224
14233
  "x-access-token"?: string | undefined;
14225
14234
  } & Partial<{
14226
14235
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -14250,6 +14259,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
14250
14259
  };
14251
14260
  } & {
14252
14261
  headers: {
14262
+ "Accept-Language"?: "de" | "en" | undefined;
14253
14263
  "x-access-token"?: string | undefined;
14254
14264
  } & Partial<{
14255
14265
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
@@ -19320,7 +19330,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
19320
19330
  } & Partial<{
19321
19331
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19322
19332
  }>;
19323
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
19333
+ }, import("@mittwald/api-client-commons").Response<{
19334
+ id: string;
19335
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
19324
19336
  [x: string]: unknown;
19325
19337
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
19326
19338
  [x: string]: unknown;
@@ -19343,7 +19355,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
19343
19355
  } & Partial<{
19344
19356
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
19345
19357
  }>;
19346
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
19358
+ }, import("@mittwald/api-client-commons").Response<{
19359
+ id: string;
19360
+ }, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
19347
19361
  [x: string]: unknown;
19348
19362
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
19349
19363
  [x: string]: unknown;
@@ -19851,6 +19865,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
19851
19865
  id: string;
19852
19866
  ips: {
19853
19867
  v4: string[];
19868
+ v6: string[];
19854
19869
  };
19855
19870
  isDefault: boolean;
19856
19871
  isDomain?: boolean | undefined;
@@ -19883,6 +19898,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
19883
19898
  id: string;
19884
19899
  ips: {
19885
19900
  v4: string[];
19901
+ v6: string[];
19886
19902
  };
19887
19903
  isDefault: boolean;
19888
19904
  isDomain?: boolean | undefined;
@@ -21869,6 +21885,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
21869
21885
  };
21870
21886
  } | undefined;
21871
21887
  projectId: string;
21888
+ rateLimitChangeRequest?: {
21889
+ rateLimitId: string;
21890
+ } | undefined;
21872
21891
  receivingDisabled: boolean;
21873
21892
  updatedAt: string;
21874
21893
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -21934,6 +21953,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
21934
21953
  };
21935
21954
  } | undefined;
21936
21955
  projectId: string;
21956
+ rateLimitChangeRequest?: {
21957
+ rateLimitId: string;
21958
+ } | undefined;
21937
21959
  receivingDisabled: boolean;
21938
21960
  updatedAt: string;
21939
21961
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -22069,6 +22091,43 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22069
22091
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
22070
22092
  [x: string]: unknown;
22071
22093
  }, 503, "application/json">>>;
22094
+ /** Get a Mail RateLimit. */
22095
+ getMailRateLimit: (request: {
22096
+ mailRateLimitId: string;
22097
+ headers?: {
22098
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22099
+ } | undefined;
22100
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22101
+ headers?: Partial<{
22102
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22103
+ }>;
22104
+ } & {
22105
+ pathParameters: {
22106
+ mailRateLimitId: string;
22107
+ };
22108
+ }, import("@mittwald/api-client-commons").Response<{
22109
+ id: string;
22110
+ rateLimit: number;
22111
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22112
+ [x: string]: unknown;
22113
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
22114
+ [x: string]: unknown;
22115
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22116
+ headers?: Partial<{
22117
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22118
+ }>;
22119
+ } & {
22120
+ pathParameters: {
22121
+ mailRateLimitId: string;
22122
+ };
22123
+ }, import("@mittwald/api-client-commons").Response<{
22124
+ id: string;
22125
+ rateLimit: number;
22126
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22127
+ [x: string]: unknown;
22128
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
22129
+ [x: string]: unknown;
22130
+ }, 429, "application/json">>>;
22072
22131
  /** List backups belonging to a MailAddress. */
22073
22132
  listBackupsForMailAddress: (request: {
22074
22133
  mailAddressId: string;
@@ -22222,6 +22281,24 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22222
22281
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
22223
22282
  [x: string]: unknown;
22224
22283
  }, 503, "application/json">>>;
22284
+ /** List Mail RateLimits. */
22285
+ listMailRateLimits: (request?: {
22286
+ headers?: {
22287
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22288
+ } | undefined;
22289
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22290
+ headers?: Partial<{
22291
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22292
+ }>;
22293
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailsystemRateLimit[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22294
+ [x: string]: unknown;
22295
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22296
+ headers?: Partial<{
22297
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22298
+ }>;
22299
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.MailsystemRateLimit[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
22300
+ [x: string]: unknown;
22301
+ }, 429, "application/json">>>;
22225
22302
  /** List mail settings of a Project. */
22226
22303
  listProjectMailSettings: (request: {
22227
22304
  projectId: string;
@@ -22856,6 +22933,77 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
22856
22933
  }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
22857
22934
  [x: string]: unknown;
22858
22935
  }, 503, "application/json">>>;
22936
+ /** Request a rate limit change for a MailAddress. */
22937
+ requestMailAddressRateLimitChange: (request: {
22938
+ data: {
22939
+ rateLimitId: string;
22940
+ };
22941
+ mailAddressId: string;
22942
+ headers?: {
22943
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
22944
+ "x-access-token"?: string | undefined;
22945
+ } | undefined;
22946
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
22947
+ data: {
22948
+ rateLimitId: string;
22949
+ };
22950
+ } & {
22951
+ pathParameters: {
22952
+ mailAddressId: string;
22953
+ };
22954
+ } & {
22955
+ headers?: Partial<{
22956
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22957
+ }>;
22958
+ } & {
22959
+ headers: {
22960
+ "x-access-token"?: string | undefined;
22961
+ } & Partial<{
22962
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22963
+ }>;
22964
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
22965
+ [x: string]: unknown;
22966
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
22967
+ [x: string]: unknown;
22968
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
22969
+ [x: string]: unknown;
22970
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
22971
+ [x: string]: unknown;
22972
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
22973
+ [x: string]: unknown;
22974
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
22975
+ [x: string]: unknown;
22976
+ }, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
22977
+ data: {
22978
+ rateLimitId: string;
22979
+ };
22980
+ } & {
22981
+ pathParameters: {
22982
+ mailAddressId: string;
22983
+ };
22984
+ } & {
22985
+ headers?: Partial<{
22986
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22987
+ }>;
22988
+ } & {
22989
+ headers: {
22990
+ "x-access-token"?: string | undefined;
22991
+ } & Partial<{
22992
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
22993
+ }>;
22994
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
22995
+ [x: string]: unknown;
22996
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
22997
+ [x: string]: unknown;
22998
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
22999
+ [x: string]: unknown;
23000
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
23001
+ [x: string]: unknown;
23002
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
23003
+ [x: string]: unknown;
23004
+ }, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
23005
+ [x: string]: unknown;
23006
+ }, 503, "application/json">>>;
22859
23007
  };
22860
23008
  /** The notification API allows you to manage your notifications. */
22861
23009
  readonly notification: {
@@ -25803,6 +25951,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25803
25951
  message?: string | undefined;
25804
25952
  validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
25805
25953
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
25954
+ message: string;
25955
+ type: string;
25956
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
25806
25957
  [x: string]: unknown;
25807
25958
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
25808
25959
  data: {
@@ -25818,6 +25969,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
25818
25969
  message?: string | undefined;
25819
25970
  validationErrors: import("./types.js").MittwaldAPIV2.Components.Schemas.CommonsValidationErrorSchema[];
25820
25971
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
25972
+ message: string;
25973
+ type: string;
25974
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
25821
25975
  [x: string]: unknown;
25822
25976
  }, 429, "application/json">>>;
25823
25977
  /** Request a support code. */
@@ -29538,6 +29692,91 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
29538
29692
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
29539
29693
  [x: string]: unknown;
29540
29694
  }, 429, "application/json">>>;
29695
+ /** Get the activities of a project. */
29696
+ listProjectActivities: (request: {
29697
+ projectId: string;
29698
+ headers?: {
29699
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
29700
+ } | undefined;
29701
+ queryParameters?: {
29702
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
29703
+ aggregateName?: string | undefined;
29704
+ aggregateDomain?: string | undefined;
29705
+ aggregateId?: string | undefined;
29706
+ startTime?: string | undefined;
29707
+ endTime?: string | undefined;
29708
+ fulltextSearch?: string | undefined;
29709
+ limit?: number | undefined;
29710
+ skip?: number | undefined;
29711
+ page?: number | undefined;
29712
+ sort?: "dateTime" | undefined;
29713
+ order?: "asc" | "desc" | undefined;
29714
+ } | undefined;
29715
+ }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
29716
+ headers?: Partial<{
29717
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29718
+ }>;
29719
+ } & {
29720
+ pathParameters: {
29721
+ projectId: string;
29722
+ };
29723
+ } & {
29724
+ queryParameters: {
29725
+ aggregateName?: string | undefined;
29726
+ aggregateDomain?: string | undefined;
29727
+ aggregateId?: string | undefined;
29728
+ startTime?: string | undefined;
29729
+ endTime?: string | undefined;
29730
+ fulltextSearch?: string | undefined;
29731
+ limit?: number | undefined;
29732
+ skip?: number | undefined;
29733
+ page?: number | undefined;
29734
+ sort?: "dateTime" | undefined;
29735
+ order?: "asc" | "desc" | undefined;
29736
+ } & Partial<{
29737
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29738
+ }>;
29739
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
29740
+ [x: string]: unknown;
29741
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
29742
+ [x: string]: unknown;
29743
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
29744
+ [x: string]: unknown;
29745
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
29746
+ [x: string]: unknown;
29747
+ }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
29748
+ headers?: Partial<{
29749
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29750
+ }>;
29751
+ } & {
29752
+ pathParameters: {
29753
+ projectId: string;
29754
+ };
29755
+ } & {
29756
+ queryParameters: {
29757
+ aggregateName?: string | undefined;
29758
+ aggregateDomain?: string | undefined;
29759
+ aggregateId?: string | undefined;
29760
+ startTime?: string | undefined;
29761
+ endTime?: string | undefined;
29762
+ fulltextSearch?: string | undefined;
29763
+ limit?: number | undefined;
29764
+ skip?: number | undefined;
29765
+ page?: number | undefined;
29766
+ sort?: "dateTime" | undefined;
29767
+ order?: "asc" | "desc" | undefined;
29768
+ } & Partial<{
29769
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
29770
+ }>;
29771
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
29772
+ [x: string]: unknown;
29773
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
29774
+ [x: string]: unknown;
29775
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
29776
+ [x: string]: unknown;
29777
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
29778
+ [x: string]: unknown;
29779
+ }, 429, "application/json">>>;
29541
29780
  /** List ProjectInvites belonging to the executing user. */
29542
29781
  listProjectInvites: (request?: {
29543
29782
  headers?: {
@@ -472,7 +472,7 @@ export declare const domainMigrationListMigrationsByPaccount: OpenAPIOperation<R
472
472
  /** List Domain-Migrations belonging to a Project. */
473
473
  export declare const domainMigrationListMigrationsByProjectId: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainMigrations.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainMigrations.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainMigrations.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainMigrations.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainMigrations.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainMigrations.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainMigrations.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
474
474
  /** Order a Domain-Migration from a pAccount into a Project. */
475
- export declare const domainMigrationOrderDomainMigration: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
475
+ export declare const domainMigrationOrderDomainMigration: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainMigrations.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
476
476
  /** Resends a Contact-Verification email. */
477
477
  export declare const domainResendContactVerificationEmail: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContactVerificationsContactVerificationIdActionsResendContactVerificationEmail.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
478
478
  /** Resend a Domain email. */
@@ -667,10 +667,14 @@ export declare const mailGetMailAddress: OpenAPIOperation<RequestType<Simplify<n
667
667
  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.$204.Content.Empty>, 204, "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.$429.Content.ApplicationJson>, 429, "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">>;
668
668
  /** Disable the mail-archive of a MailAddress. */
669
669
  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">>;
670
+ /** Get a Mail RateLimit. */
671
+ export declare const mailGetMailRateLimit: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailRateLimitsMailRateLimitId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailRateLimitsMailRateLimitId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailRateLimitsMailRateLimitId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailRateLimitsMailRateLimitId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailRateLimitsMailRateLimitId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailRateLimitsMailRateLimitId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailRateLimitsMailRateLimitId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
670
672
  /** List backups belonging to a MailAddress. */
671
673
  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">>;
672
674
  /** List MailAddresses. */
673
675
  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">>;
676
+ /** List Mail RateLimits. */
677
+ export declare const mailListMailRateLimits: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2MailRateLimits.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailRateLimits.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailRateLimits.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailRateLimits.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailRateLimits.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailRateLimits.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
674
678
  /** List mail settings of a Project. */
675
679
  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">>;
676
680
  /** Check if a Migration between two projects is possible. */
@@ -785,6 +789,8 @@ export declare const projectGetSelfMembershipForProject: OpenAPIOperation<Reques
785
789
  export declare const projectGetServer: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ServersServerId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
786
790
  /** List Memberships belonging to a Project. */
787
791
  export declare const projectListMembershipsForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMemberships.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
792
+ /** Get the activities of a project. */
793
+ export declare const projectListProjectActivities: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdActivities.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
788
794
  /** List ProjectInvites belonging to the executing user. */
789
795
  export declare const projectListProjectInvites: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvites.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
790
796
  /** List ProjectMemberships belonging to the executing user. */
@@ -946,7 +952,7 @@ export declare const userRequestAvatarUpload: OpenAPIOperation<RequestType<Simpl
946
952
  /** Remove Avatar. */
947
953
  export declare const userRemoveAvatar: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdAvatar.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
948
954
  /** Resend the Email-Address verification email. */
949
- export declare const userResendVerificationEmail: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
955
+ export declare const userResendVerificationEmail: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsEmailActionsResendEmail.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
950
956
  /** Request a support code. */
951
957
  export declare const userSupportCodeRequest: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsSupportCode.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsSupportCode.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsSupportCode.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsSupportCode.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsSupportCode.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersSelfCredentialsSupportCode.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
952
958
  /** Verify an added Email-Address. */
@@ -961,3 +967,5 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
961
967
  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.Default.Content.ApplicationJson>, "default", "application/json">>;
962
968
  /** Check if a company exists. */
963
969
  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.Default.Content.ApplicationJson>, "default", "application/json">>;
970
+ /** Request a rate limit change for a MailAddress. */
971
+ export declare const mailRequestMailAddressRateLimitChange: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdRequestRateLimitChange.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdRequestRateLimitChange.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdRequestRateLimitChange.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdRequestRateLimitChange.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdRequestRateLimitChange.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdRequestRateLimitChange.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdRequestRateLimitChange.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdRequestRateLimitChange.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdRequestRateLimitChange.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdRequestRateLimitChange.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdRequestRateLimitChange.Post.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdRequestRateLimitChange.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -1330,6 +1330,10 @@ export declare namespace MittwaldAPIV2 {
1330
1330
  type RequestData = InferredRequestData<typeof descriptors.mailDisableMailArchive>;
1331
1331
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailDisableMailArchive, TStatus>;
1332
1332
  }
1333
+ namespace MailGetMailRateLimit {
1334
+ type RequestData = InferredRequestData<typeof descriptors.mailGetMailRateLimit>;
1335
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailGetMailRateLimit, TStatus>;
1336
+ }
1333
1337
  namespace MailListBackupsForMailAddress {
1334
1338
  type RequestData = InferredRequestData<typeof descriptors.mailListBackupsForMailAddress>;
1335
1339
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListBackupsForMailAddress, TStatus>;
@@ -1338,6 +1342,10 @@ export declare namespace MittwaldAPIV2 {
1338
1342
  type RequestData = InferredRequestData<typeof descriptors.mailListMailAddressesForUser>;
1339
1343
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListMailAddressesForUser, TStatus>;
1340
1344
  }
1345
+ namespace MailListMailRateLimits {
1346
+ type RequestData = InferredRequestData<typeof descriptors.mailListMailRateLimits>;
1347
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListMailRateLimits, TStatus>;
1348
+ }
1341
1349
  namespace MailListProjectMailSettings {
1342
1350
  type RequestData = InferredRequestData<typeof descriptors.mailListProjectMailSettings>;
1343
1351
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailListProjectMailSettings, TStatus>;
@@ -1566,6 +1574,10 @@ export declare namespace MittwaldAPIV2 {
1566
1574
  type RequestData = InferredRequestData<typeof descriptors.projectListMembershipsForProject>;
1567
1575
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListMembershipsForProject, TStatus>;
1568
1576
  }
1577
+ namespace ProjectListProjectActivities {
1578
+ type RequestData = InferredRequestData<typeof descriptors.projectListProjectActivities>;
1579
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListProjectActivities, TStatus>;
1580
+ }
1569
1581
  namespace ProjectListProjectInvites {
1570
1582
  type RequestData = InferredRequestData<typeof descriptors.projectListProjectInvites>;
1571
1583
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.projectListProjectInvites, TStatus>;
@@ -1918,6 +1930,10 @@ export declare namespace MittwaldAPIV2 {
1918
1930
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1919
1931
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1920
1932
  }
1933
+ namespace MailRequestMailAddressRateLimitChange {
1934
+ type RequestData = InferredRequestData<typeof descriptors.mailRequestMailAddressRateLimitChange>;
1935
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.mailRequestMailAddressRateLimitChange, TStatus>;
1936
+ }
1921
1937
  }
1922
1938
  namespace Components {
1923
1939
  namespace Schemas {
@@ -2705,6 +2721,7 @@ export declare namespace MittwaldAPIV2 {
2705
2721
  *
2706
2722
  */
2707
2723
  ports?: string[];
2724
+ restartPolicy?: string;
2708
2725
  /**
2709
2726
  * Volume mounts for this container. These items always follow the format `<volume>:<mountpoint>`. The `<volume>` may either be a named volume, or a file path in the (always present) project file system (which is shared among containers and managed apps within a project).
2710
2727
  *
@@ -2766,6 +2783,7 @@ export declare namespace MittwaldAPIV2 {
2766
2783
  *
2767
2784
  */
2768
2785
  ports?: string[];
2786
+ restartPolicy?: string;
2769
2787
  /**
2770
2788
  * Volume mounts for this container. These items always follow the format `<volume>:<mountpoint>`. The `<volume>` may either be a named volume, or a file path in the (always present) project file system (which is shared among containers and managed apps within a project).
2771
2789
  *
@@ -2807,6 +2825,7 @@ export declare namespace MittwaldAPIV2 {
2807
2825
  pendingState: MittwaldAPIV2.Components.Schemas.ContainerServiceState;
2808
2826
  projectId: string;
2809
2827
  requiresRecreate: boolean;
2828
+ restartPolicy?: "no" | "always" | "on-failure" | "unless-stopped";
2810
2829
  serviceName: string;
2811
2830
  /**
2812
2831
  * A short ID of the container. This is a unique identifier for the container within the project, and can be used to reference it in other API calls, or for SSH connections.
@@ -4606,6 +4625,7 @@ export declare namespace MittwaldAPIV2 {
4606
4625
  id: string;
4607
4626
  ips: {
4608
4627
  v4: string[];
4628
+ v6: string[];
4609
4629
  };
4610
4630
  /**
4611
4631
  * Whether this ingress is the default ingress or not. A default ingress is automatically created, it cannot be deleted. There can be only one default ingress per project.
@@ -5111,6 +5131,12 @@ export declare namespace MittwaldAPIV2 {
5111
5131
  };
5112
5132
  };
5113
5133
  projectId: string;
5134
+ rateLimitChangeRequest?: {
5135
+ /**
5136
+ * id of the rate limit requested
5137
+ */
5138
+ rateLimitId: string;
5139
+ };
5114
5140
  receivingDisabled: boolean;
5115
5141
  updatedAt: string;
5116
5142
  }
@@ -5261,6 +5287,10 @@ export declare namespace MittwaldAPIV2 {
5261
5287
  keepDays: number;
5262
5288
  relocateSensitivity?: number;
5263
5289
  }
5290
+ interface MailsystemRateLimit {
5291
+ id: string;
5292
+ rateLimit: number;
5293
+ }
5264
5294
  interface MarketplaceContractPartner {
5265
5295
  contractPartner: {
5266
5296
  address: MittwaldAPIV2.Components.Schemas.CommonsAddress;
@@ -5739,19 +5769,49 @@ export declare namespace MittwaldAPIV2 {
5739
5769
  machineType: string;
5740
5770
  }
5741
5771
  interface ArticleArticleAddons {
5772
+ /**
5773
+ * Defines if the Addon should not be shown.
5774
+ */
5742
5775
  hidden?: boolean;
5776
+ /**
5777
+ * Unique key of the Addon.
5778
+ */
5743
5779
  key: string;
5780
+ /**
5781
+ * The type/category of the addon.
5782
+ */
5744
5783
  type?: string;
5784
+ /**
5785
+ * Value of the Addon, e.g. configuration details, status, or modifier properties.
5786
+ */
5745
5787
  value: string;
5788
+ /**
5789
+ * Used if Articles are ordered as a batch.
5790
+ */
5746
5791
  valueMergeType?: "add" | "set";
5747
5792
  }
5748
5793
  interface ArticleArticleAttributes {
5794
+ /**
5795
+ * Used if there are custom configurations needed for an Order like a Server name.
5796
+ */
5749
5797
  customerEditable?: boolean;
5750
5798
  key: string;
5799
+ /**
5800
+ * Used if Articles are ordered as a batch.
5801
+ */
5751
5802
  mergeType?: "add" | "set";
5803
+ /**
5804
+ * Used if not need for an Order.
5805
+ */
5752
5806
  readonly?: boolean;
5753
5807
  required?: boolean;
5808
+ /**
5809
+ * Used if Articles are ordered as a batch.
5810
+ */
5754
5811
  unit?: string;
5812
+ /**
5813
+ * Will be ignored if customerEditable is set.
5814
+ */
5755
5815
  value?: string;
5756
5816
  }
5757
5817
  interface ArticleReadableBookableArticleOptions {
@@ -5802,14 +5862,32 @@ export declare namespace MittwaldAPIV2 {
5802
5862
  addons?: MittwaldAPIV2.Components.Schemas.ArticleArticleAddons[];
5803
5863
  articleId: string;
5804
5864
  attributes?: MittwaldAPIV2.Components.Schemas.ArticleArticleAttributes[];
5865
+ /**
5866
+ * @deprecated
5867
+ */
5805
5868
  balanceAddonKey?: string;
5806
5869
  contractDurationInMonth: number;
5807
5870
  description?: string;
5871
+ /**
5872
+ * If set, the Article will always be invoiced for the given months.
5873
+ */
5808
5874
  forcedInvoicingPeriodInMonth?: number;
5875
+ /**
5876
+ * Article has a contract period which is not dependent on the Contract Base Item.
5877
+ */
5809
5878
  hasIndependentContractPeriod?: boolean;
5879
+ /**
5880
+ * Free Article that is not showing on Invoices.
5881
+ */
5810
5882
  hideOnInvoice?: boolean;
5883
+ /**
5884
+ * Resources for hosting Articles.
5885
+ */
5811
5886
  machineType?: {
5812
5887
  cpu: string;
5888
+ /**
5889
+ * Memory in GiB
5890
+ */
5813
5891
  memory: string;
5814
5892
  name: string;
5815
5893
  };
@@ -5820,6 +5898,9 @@ export declare namespace MittwaldAPIV2 {
5820
5898
  */
5821
5899
  orderable: "full" | "forbidden" | "internal" | "beta_testing" | "deprecated";
5822
5900
  possibleArticleChanges?: MittwaldAPIV2.Components.Schemas.ArticleReadableChangeArticleOptions[];
5901
+ /**
5902
+ * Monthly price in Eurocent
5903
+ */
5823
5904
  price?: number;
5824
5905
  tags?: MittwaldAPIV2.Components.Schemas.ArticleArticleTag[];
5825
5906
  template: MittwaldAPIV2.Components.Schemas.ArticleArticleTemplate;
@@ -10747,7 +10828,9 @@ export declare namespace MittwaldAPIV2 {
10747
10828
  namespace Get {
10748
10829
  namespace Parameters {
10749
10830
  type Path = {};
10750
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
10831
+ type Header = {
10832
+ "Accept-Language"?: "de" | "en";
10833
+ } & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
10751
10834
  type Query = {
10752
10835
  imageReference: string;
10753
10836
  useCredentialsForProjectId?: string;
@@ -14560,7 +14643,9 @@ export declare namespace MittwaldAPIV2 {
14560
14643
  executionId: string;
14561
14644
  cronjobId: string;
14562
14645
  };
14563
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14646
+ type Header = {
14647
+ "Accept-Language"?: "de" | "en";
14648
+ } & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14564
14649
  type Query = {};
14565
14650
  }
14566
14651
  namespace Responses {
@@ -19016,9 +19101,11 @@ export declare namespace MittwaldAPIV2 {
19016
19101
  type Query = {};
19017
19102
  }
19018
19103
  namespace Responses {
19019
- namespace $204 {
19104
+ namespace $201 {
19020
19105
  namespace Content {
19021
- type Empty = unknown;
19106
+ interface ApplicationJson {
19107
+ id: string;
19108
+ }
19022
19109
  }
19023
19110
  }
19024
19111
  namespace $400 {
@@ -24404,6 +24491,45 @@ export declare namespace MittwaldAPIV2 {
24404
24491
  }
24405
24492
  }
24406
24493
  }
24494
+ namespace V2MailRateLimitsMailRateLimitId {
24495
+ namespace Get {
24496
+ namespace Parameters {
24497
+ type Path = {
24498
+ mailRateLimitId: string;
24499
+ };
24500
+ type Header = {};
24501
+ type Query = {};
24502
+ }
24503
+ namespace Responses {
24504
+ namespace $200 {
24505
+ namespace Content {
24506
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailsystemRateLimit;
24507
+ }
24508
+ }
24509
+ namespace $404 {
24510
+ namespace Content {
24511
+ interface ApplicationJson {
24512
+ [k: string]: unknown;
24513
+ }
24514
+ }
24515
+ }
24516
+ namespace $429 {
24517
+ namespace Content {
24518
+ interface ApplicationJson {
24519
+ [k: string]: unknown;
24520
+ }
24521
+ }
24522
+ }
24523
+ namespace Default {
24524
+ namespace Content {
24525
+ interface ApplicationJson {
24526
+ [k: string]: unknown;
24527
+ }
24528
+ }
24529
+ }
24530
+ }
24531
+ }
24532
+ }
24407
24533
  namespace V2MailAddressesMailAddressIdBackups {
24408
24534
  namespace Get {
24409
24535
  namespace Parameters {
@@ -24541,6 +24667,36 @@ export declare namespace MittwaldAPIV2 {
24541
24667
  }
24542
24668
  }
24543
24669
  }
24670
+ namespace V2MailRateLimits {
24671
+ namespace Get {
24672
+ namespace Parameters {
24673
+ type Path = {};
24674
+ type Header = {};
24675
+ type Query = {};
24676
+ }
24677
+ namespace Responses {
24678
+ namespace $200 {
24679
+ namespace Content {
24680
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.MailsystemRateLimit[];
24681
+ }
24682
+ }
24683
+ namespace $429 {
24684
+ namespace Content {
24685
+ interface ApplicationJson {
24686
+ [k: string]: unknown;
24687
+ }
24688
+ }
24689
+ }
24690
+ namespace Default {
24691
+ namespace Content {
24692
+ interface ApplicationJson {
24693
+ [k: string]: unknown;
24694
+ }
24695
+ }
24696
+ }
24697
+ }
24698
+ }
24699
+ }
24544
24700
  namespace V2ProjectsProjectIdMailSettings {
24545
24701
  namespace Get {
24546
24702
  namespace Parameters {
@@ -27276,6 +27432,71 @@ export declare namespace MittwaldAPIV2 {
27276
27432
  }
27277
27433
  }
27278
27434
  }
27435
+ namespace V2ProjectsProjectIdActivities {
27436
+ namespace Get {
27437
+ namespace Parameters {
27438
+ type Path = {
27439
+ projectId: string;
27440
+ };
27441
+ type Header = {};
27442
+ type Query = {
27443
+ aggregateName?: string;
27444
+ aggregateDomain?: string;
27445
+ aggregateId?: string;
27446
+ startTime?: string;
27447
+ endTime?: string;
27448
+ fulltextSearch?: string;
27449
+ limit?: number;
27450
+ skip?: number;
27451
+ page?: number;
27452
+ sort?: "dateTime";
27453
+ order?: "asc" | "desc";
27454
+ };
27455
+ }
27456
+ namespace Responses {
27457
+ namespace $200 {
27458
+ namespace Content {
27459
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ActivitylogLogEntry[];
27460
+ }
27461
+ }
27462
+ namespace $400 {
27463
+ namespace Content {
27464
+ interface ApplicationJson {
27465
+ [k: string]: unknown;
27466
+ }
27467
+ }
27468
+ }
27469
+ namespace $403 {
27470
+ namespace Content {
27471
+ interface ApplicationJson {
27472
+ [k: string]: unknown;
27473
+ }
27474
+ }
27475
+ }
27476
+ namespace $404 {
27477
+ namespace Content {
27478
+ interface ApplicationJson {
27479
+ [k: string]: unknown;
27480
+ }
27481
+ }
27482
+ }
27483
+ namespace $429 {
27484
+ namespace Content {
27485
+ interface ApplicationJson {
27486
+ [k: string]: unknown;
27487
+ }
27488
+ }
27489
+ }
27490
+ namespace Default {
27491
+ namespace Content {
27492
+ interface ApplicationJson {
27493
+ [k: string]: unknown;
27494
+ }
27495
+ }
27496
+ }
27497
+ }
27498
+ }
27499
+ }
27279
27500
  namespace V2ProjectInvites {
27280
27501
  namespace Get {
27281
27502
  namespace Parameters {
@@ -31137,6 +31358,11 @@ export declare namespace MittwaldAPIV2 {
31137
31358
  type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsValidationErrors;
31138
31359
  }
31139
31360
  }
31361
+ namespace $412 {
31362
+ namespace Content {
31363
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.CommonsError;
31364
+ }
31365
+ }
31140
31366
  namespace $429 {
31141
31367
  namespace Content {
31142
31368
  interface ApplicationJson {
@@ -31485,5 +31711,75 @@ export declare namespace MittwaldAPIV2 {
31485
31711
  }
31486
31712
  }
31487
31713
  }
31714
+ namespace V2MailAddressesMailAddressIdRequestRateLimitChange {
31715
+ namespace Post {
31716
+ namespace Parameters {
31717
+ type Path = {
31718
+ mailAddressId: string;
31719
+ };
31720
+ interface RequestBody {
31721
+ rateLimitId: string;
31722
+ }
31723
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
31724
+ type Query = {};
31725
+ }
31726
+ namespace Responses {
31727
+ namespace $204 {
31728
+ namespace Content {
31729
+ type Empty = unknown;
31730
+ }
31731
+ }
31732
+ namespace $400 {
31733
+ namespace Content {
31734
+ interface ApplicationJson {
31735
+ [k: string]: unknown;
31736
+ }
31737
+ }
31738
+ }
31739
+ namespace $403 {
31740
+ namespace Content {
31741
+ interface ApplicationJson {
31742
+ [k: string]: unknown;
31743
+ }
31744
+ }
31745
+ }
31746
+ namespace $404 {
31747
+ namespace Content {
31748
+ interface ApplicationJson {
31749
+ [k: string]: unknown;
31750
+ }
31751
+ }
31752
+ }
31753
+ namespace $429 {
31754
+ namespace Content {
31755
+ interface ApplicationJson {
31756
+ [k: string]: unknown;
31757
+ }
31758
+ }
31759
+ }
31760
+ namespace $500 {
31761
+ namespace Content {
31762
+ interface ApplicationJson {
31763
+ [k: string]: unknown;
31764
+ }
31765
+ }
31766
+ }
31767
+ namespace $503 {
31768
+ namespace Content {
31769
+ interface ApplicationJson {
31770
+ [k: string]: unknown;
31771
+ }
31772
+ }
31773
+ }
31774
+ namespace Default {
31775
+ namespace Content {
31776
+ interface ApplicationJson {
31777
+ [k: string]: unknown;
31778
+ }
31779
+ }
31780
+ }
31781
+ }
31782
+ }
31783
+ }
31488
31784
  }
31489
31785
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.383.0';
1
+ export declare const MittwaldAPIClientVersion = '4.387.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "0.0.0-development-e8f2771-20260612",
3
+ "version": "0.0.0-development-9f66b59-20260619",
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": "^0.0.0-development-e8f2771-20260612",
49
+ "@mittwald/api-client-commons": "^0.0.0-development-9f66b59-20260619",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^0.0.0-development-e8f2771-20260612",
53
+ "@mittwald/api-code-generator": "^0.0.0-development-9f66b59-20260619",
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": "b2ac71deda4c89b542c258225a5527b0f1bc61ce"
83
+ "gitHead": "30ae0ed993f07d11d382c995137ae850d8739a9a"
84
84
  }