@mittwald/api-client 3.1.6 → 3.1.8

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.
@@ -620,6 +620,17 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
620
620
  status: "open" | "answered" | "closed";
621
621
  title: string;
622
622
  }>;
623
+ /** Request an access token for the File belonging to the Conversation. */
624
+ getFileAccessToken: (conf: {
625
+ conversationId: string;
626
+ fileId: string;
627
+ headers?: {
628
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
629
+ } | undefined;
630
+ }) => import("@mittwald/react-use-promise/types").AsyncResource<{
631
+ accessToken: string;
632
+ expiresAt: string;
633
+ }>;
623
634
  /** Get all conversation categories. */
624
635
  listCategories: (conf?: {
625
636
  headers?: {
@@ -1131,8 +1142,19 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1131
1142
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1132
1143
  } | undefined;
1133
1144
  } | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.DomainTopLevel[]>;
1145
+ /** List Ingresses. */
1146
+ ingressListIngresses: (conf?: {
1147
+ headers?: {
1148
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1149
+ "x-access-token"?: string | undefined;
1150
+ } | undefined;
1151
+ queryParameters?: {
1152
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1153
+ projectId?: string | undefined;
1154
+ } | undefined;
1155
+ } | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.IngressIngress[]>;
1134
1156
  /** Get an Ingress. */
1135
- ingressGetSpecific: (conf: {
1157
+ ingressGetIngress: (conf: {
1136
1158
  ingressId: string;
1137
1159
  headers?: {
1138
1160
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -1151,21 +1173,6 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1151
1173
  projectId: string;
1152
1174
  tls: import("./types.js").MittwaldAPIV2.Components.Schemas.IngressTlsAcme | import("./types.js").MittwaldAPIV2.Components.Schemas.IngressTlsCertificate;
1153
1175
  }>;
1154
- /** List Ingresses the user has access to. */
1155
- ingressListAccessible: (conf?: {
1156
- headers?: {
1157
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1158
- "x-access-token"?: string | undefined;
1159
- } | undefined;
1160
- } | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.IngressIngress[]>;
1161
- /** List Ingresses belonging to a project. */
1162
- ingressListForProject: (conf: {
1163
- projectId: string;
1164
- headers?: {
1165
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1166
- "x-access-token"?: string | undefined;
1167
- } | undefined;
1168
- }) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.IngressIngress[]>;
1169
1176
  };
1170
1177
  declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1171
1178
  /** Get a File's meta. */
@@ -1410,9 +1417,9 @@ declare const buildPageInsightsApi: (baseClient: MittwaldAPIV2Client) => {
1410
1417
  }[]>;
1411
1418
  };
1412
1419
  declare const buildUserApi: (baseClient: MittwaldAPIV2Client) => {
1413
- /** Get a password policy. */
1420
+ /** Get a PasswordPolicy. */
1414
1421
  passwordValidationGetPasswordPolicy: (conf: {
1415
- path: string;
1422
+ passwordPolicy: string;
1416
1423
  headers?: {
1417
1424
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1418
1425
  } | undefined;
@@ -113,6 +113,8 @@ const buildConversationApi = (baseClient) => ({
113
113
  getCategory: new react_1.ApiCallAsyncResourceFactory(descriptors.conversationGetCategory, baseClient.conversation.getCategory).getApiResource,
114
114
  /** Get a support conversation. */
115
115
  getConversation: new react_1.ApiCallAsyncResourceFactory(descriptors.conversationGetConversation, baseClient.conversation.getConversation).getApiResource,
116
+ /** Request an access token for the File belonging to the Conversation. */
117
+ getFileAccessToken: new react_1.ApiCallAsyncResourceFactory(descriptors.conversationGetFileAccessToken, baseClient.conversation.getFileAccessToken).getApiResource,
116
118
  /** Get all conversation categories. */
117
119
  listCategories: new react_1.ApiCallAsyncResourceFactory(descriptors.conversationListCategories, baseClient.conversation.listCategories).getApiResource,
118
120
  });
@@ -193,12 +195,10 @@ const buildDomainApi = (baseClient) => ({
193
195
  listTldContactSchemas: new react_1.ApiCallAsyncResourceFactory(descriptors.domainListTldContactSchemas, baseClient.domain.listTldContactSchemas).getApiResource,
194
196
  /** List TLDs. */
195
197
  listTlds: new react_1.ApiCallAsyncResourceFactory(descriptors.domainListTlds, baseClient.domain.listTlds).getApiResource,
198
+ /** List Ingresses. */
199
+ ingressListIngresses: new react_1.ApiCallAsyncResourceFactory(descriptors.ingressListIngresses, baseClient.domain.ingressListIngresses).getApiResource,
196
200
  /** Get an Ingress. */
197
- ingressGetSpecific: new react_1.ApiCallAsyncResourceFactory(descriptors.ingressGetSpecific, baseClient.domain.ingressGetSpecific).getApiResource,
198
- /** List Ingresses the user has access to. */
199
- ingressListAccessible: new react_1.ApiCallAsyncResourceFactory(descriptors.ingressListAccessible, baseClient.domain.ingressListAccessible).getApiResource,
200
- /** List Ingresses belonging to a project. */
201
- ingressListForProject: new react_1.ApiCallAsyncResourceFactory(descriptors.ingressListForProject, baseClient.domain.ingressListForProject).getApiResource,
201
+ ingressGetIngress: new react_1.ApiCallAsyncResourceFactory(descriptors.ingressGetIngress, baseClient.domain.ingressGetIngress).getApiResource,
202
202
  });
203
203
  const buildFileApi = (baseClient) => ({
204
204
  /** Get a File's meta. */
@@ -237,7 +237,7 @@ const buildPageInsightsApi = (baseClient) => ({
237
237
  pageinsightsListPerformanceDataForProject: new react_1.ApiCallAsyncResourceFactory(descriptors.pageinsightsListPerformanceDataForProject, baseClient.pageInsights.pageinsightsListPerformanceDataForProject).getApiResource,
238
238
  });
239
239
  const buildUserApi = (baseClient) => ({
240
- /** Get a password policy. */
240
+ /** Get a PasswordPolicy. */
241
241
  passwordValidationGetPasswordPolicy: new react_1.ApiCallAsyncResourceFactory(descriptors.passwordValidationGetPasswordPolicy, baseClient.user.passwordValidationGetPasswordPolicy).getApiResource,
242
242
  /** Get your verified Email-Address. */
243
243
  getOwnEmail: new react_1.ApiCallAsyncResourceFactory(descriptors.userGetOwnEmail, baseClient.user.getOwnEmail).getApiResource,
@@ -2342,6 +2342,30 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2342
2342
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2343
2343
  [x: string]: unknown;
2344
2344
  }, 404, "application/json">>>;
2345
+ /** Request an access token for the File belonging to the Conversation. */
2346
+ getFileAccessToken: (request: {
2347
+ conversationId: string;
2348
+ fileId: string;
2349
+ headers?: {
2350
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2351
+ } | undefined;
2352
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2353
+ headers?: Partial<{
2354
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2355
+ }> | undefined;
2356
+ } & {
2357
+ pathParameters: {
2358
+ conversationId: string;
2359
+ fileId: string;
2360
+ };
2361
+ }, import("@mittwald/api-client-commons").Response<{
2362
+ accessToken: string;
2363
+ expiresAt: string;
2364
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2365
+ [x: string]: unknown;
2366
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2367
+ [x: string]: unknown;
2368
+ }, 404, "application/json">>>;
2345
2369
  /** Get all conversation categories. */
2346
2370
  listCategories: (request?: {
2347
2371
  headers?: {
@@ -5628,8 +5652,37 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5628
5652
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5629
5653
  [x: string]: unknown;
5630
5654
  }, 404, "application/json">>>;
5655
+ /** List Ingresses. */
5656
+ ingressListIngresses: (request?: {
5657
+ headers?: {
5658
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5659
+ "x-access-token"?: string | undefined;
5660
+ } | undefined;
5661
+ queryParameters?: {
5662
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5663
+ projectId?: string | undefined;
5664
+ } | undefined;
5665
+ } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5666
+ headers?: Partial<{
5667
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5668
+ }> | undefined;
5669
+ } & {
5670
+ queryParameters: {
5671
+ projectId?: string | undefined;
5672
+ } & Partial<{
5673
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5674
+ }>;
5675
+ } & {
5676
+ headers: {
5677
+ "x-access-token"?: string | undefined;
5678
+ } & Partial<{
5679
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5680
+ }>;
5681
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.IngressIngress[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5682
+ [x: string]: unknown;
5683
+ }, 404, "application/json">>>;
5631
5684
  /** Create an Ingress. */
5632
- ingressCreate: (request: {
5685
+ ingressCreateIngress: (request: {
5633
5686
  data: {
5634
5687
  hostname: string;
5635
5688
  paths: import("./types.js").MittwaldAPIV2.Components.Schemas.IngressPath[];
@@ -5661,7 +5714,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5661
5714
  [x: string]: unknown;
5662
5715
  }, 404, "application/json">>>;
5663
5716
  /** Get an Ingress. */
5664
- ingressGetSpecific: (request: {
5717
+ ingressGetIngress: (request: {
5665
5718
  ingressId: string;
5666
5719
  headers?: {
5667
5720
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -5697,7 +5750,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5697
5750
  [x: string]: unknown;
5698
5751
  }, 404, "application/json">>>;
5699
5752
  /** Delete an Ingress. */
5700
- ingressDelete: (request: {
5753
+ ingressDeleteIngress: (request: {
5701
5754
  ingressId: string;
5702
5755
  headers?: {
5703
5756
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -5720,51 +5773,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5720
5773
  }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
5721
5774
  [x: string]: unknown;
5722
5775
  }, 404, "application/json">>>;
5723
- /** List Ingresses the user has access to. */
5724
- ingressListAccessible: (request?: {
5725
- headers?: {
5726
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5727
- "x-access-token"?: string | undefined;
5728
- } | undefined;
5729
- } | null | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5730
- headers?: Partial<{
5731
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5732
- }> | undefined;
5733
- } & {
5734
- headers: {
5735
- "x-access-token"?: string | undefined;
5736
- } & Partial<{
5737
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5738
- }>;
5739
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.IngressIngress[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5740
- [x: string]: unknown;
5741
- }, 404, "application/json">>>;
5742
- /** List Ingresses belonging to a project. */
5743
- ingressListForProject: (request: {
5744
- projectId: string;
5745
- headers?: {
5746
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5747
- "x-access-token"?: string | undefined;
5748
- } | undefined;
5749
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5750
- headers?: Partial<{
5751
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5752
- }> | undefined;
5753
- } & {
5754
- pathParameters: {
5755
- projectId: string;
5756
- };
5757
- } & {
5758
- headers: {
5759
- "x-access-token"?: string | undefined;
5760
- } & Partial<{
5761
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5762
- }>;
5763
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.IngressIngress[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5764
- [x: string]: unknown;
5765
- }, 404, "application/json">>>;
5766
- /** Update an Ingresses paths. */
5767
- ingressPaths: (request: {
5776
+ /** Update the paths of an Ingress. */
5777
+ ingressUpdateIngressPaths: (request: {
5768
5778
  data: import("./types.js").MittwaldAPIV2.Components.Schemas.IngressPath[];
5769
5779
  ingressId: string;
5770
5780
  headers?: {
@@ -5790,8 +5800,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5790
5800
  }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
5791
5801
  [x: string]: unknown;
5792
5802
  }, 404, "application/json">>>;
5793
- /** Request ACME certificate issuance */
5794
- ingressRequestAcmeCertificateIssuance: (request: {
5803
+ /** Request the ACME certificate issuance of an Ingress. */
5804
+ ingressRequestIngressAcmeCertificateIssuance: (request: {
5795
5805
  ingressId: string;
5796
5806
  headers?: {
5797
5807
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -5816,8 +5826,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5816
5826
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5817
5827
  [x: string]: unknown;
5818
5828
  }, 404, "application/json">>>;
5819
- /** Update an Ingresses tls settings. */
5820
- ingressTls: (request: {
5829
+ /** Update the tls settings of an Ingress. */
5830
+ ingressUpdateIngressTls: (request: {
5821
5831
  data: {
5822
5832
  acme: boolean;
5823
5833
  };
@@ -6569,7 +6579,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6569
6579
  [x: string]: unknown;
6570
6580
  }, 503, "application/json">>>;
6571
6581
  /** Update the catchall of a MailAddress. */
6572
- updateMailAddressCatchall: (request: {
6582
+ updateMailAddressCatchAll: (request: {
6573
6583
  data: {
6574
6584
  active: boolean;
6575
6585
  };
@@ -6927,9 +6937,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6927
6937
  };
6928
6938
  /** The user API allows you to manage your own user and access information of other users that might be visible to you. */
6929
6939
  readonly user: {
6930
- /** Get a password policy. */
6940
+ /** Get a PasswordPolicy. */
6931
6941
  passwordValidationGetPasswordPolicy: (request: {
6932
- path: string;
6942
+ passwordPolicy: string;
6933
6943
  headers?: {
6934
6944
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6935
6945
  } | undefined;
@@ -6939,7 +6949,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6939
6949
  }> | undefined;
6940
6950
  } & {
6941
6951
  pathParameters: {
6942
- path: string;
6952
+ passwordPolicy: string;
6943
6953
  };
6944
6954
  }, import("@mittwald/api-client-commons").Response<string, 200, "application/json">>>;
6945
6955
  /** Add phone number and start verification process. */
@@ -178,6 +178,8 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
178
178
  getConversation: this.requestFunctionFactory(descriptors.conversationGetConversation),
179
179
  /** Update the basic properties of the conversation. */
180
180
  updateConversation: this.requestFunctionFactory(descriptors.conversationUpdateConversation),
181
+ /** Request an access token for the File belonging to the Conversation. */
182
+ getFileAccessToken: this.requestFunctionFactory(descriptors.conversationGetFileAccessToken),
181
183
  /** Get all conversation categories. */
182
184
  listCategories: this.requestFunctionFactory(descriptors.conversationListCategories),
183
185
  /** Request a file upload token for the conversation. */
@@ -387,22 +389,20 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
387
389
  updateDomainProjectId: this.requestFunctionFactory(descriptors.domainUpdateDomainProjectId),
388
390
  /** Verify a DomainOwnership. */
389
391
  verifyDomainOwnership: this.requestFunctionFactory(descriptors.domainVerifyDomainOwnership),
392
+ /** List Ingresses. */
393
+ ingressListIngresses: this.requestFunctionFactory(descriptors.ingressListIngresses),
390
394
  /** Create an Ingress. */
391
- ingressCreate: this.requestFunctionFactory(descriptors.ingressCreate),
395
+ ingressCreateIngress: this.requestFunctionFactory(descriptors.ingressCreateIngress),
392
396
  /** Get an Ingress. */
393
- ingressGetSpecific: this.requestFunctionFactory(descriptors.ingressGetSpecific),
397
+ ingressGetIngress: this.requestFunctionFactory(descriptors.ingressGetIngress),
394
398
  /** Delete an Ingress. */
395
- ingressDelete: this.requestFunctionFactory(descriptors.ingressDelete),
396
- /** List Ingresses the user has access to. */
397
- ingressListAccessible: this.requestFunctionFactory(descriptors.ingressListAccessible),
398
- /** List Ingresses belonging to a project. */
399
- ingressListForProject: this.requestFunctionFactory(descriptors.ingressListForProject),
400
- /** Update an Ingresses paths. */
401
- ingressPaths: this.requestFunctionFactory(descriptors.ingressPaths),
402
- /** Request ACME certificate issuance */
403
- ingressRequestAcmeCertificateIssuance: this.requestFunctionFactory(descriptors.ingressRequestAcmeCertificateIssuance),
404
- /** Update an Ingresses tls settings. */
405
- ingressTls: this.requestFunctionFactory(descriptors.ingressTls),
399
+ ingressDeleteIngress: this.requestFunctionFactory(descriptors.ingressDeleteIngress),
400
+ /** Update the paths of an Ingress. */
401
+ ingressUpdateIngressPaths: this.requestFunctionFactory(descriptors.ingressUpdateIngressPaths),
402
+ /** Request the ACME certificate issuance of an Ingress. */
403
+ ingressRequestIngressAcmeCertificateIssuance: this.requestFunctionFactory(descriptors.ingressRequestIngressAcmeCertificateIssuance),
404
+ /** Update the tls settings of an Ingress. */
405
+ ingressUpdateIngressTls: this.requestFunctionFactory(descriptors.ingressUpdateIngressTls),
406
406
  };
407
407
  /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
408
408
  this.file = {
@@ -446,7 +446,7 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
446
446
  /** Update the autoresponder of a MailAddress. */
447
447
  updateMailAddressAutoresponder: this.requestFunctionFactory(descriptors.mailUpdateMailAddressAutoresponder),
448
448
  /** Update the catchall of a MailAddress. */
449
- updateMailAddressCatchall: this.requestFunctionFactory(descriptors.mailUpdateMailAddressCatchall),
449
+ updateMailAddressCatchAll: this.requestFunctionFactory(descriptors.mailUpdateMailAddressCatchAll),
450
450
  /** Update the forward addresses of a MailAddresses. */
451
451
  updateMailAddressForwardAddresses: this.requestFunctionFactory(descriptors.mailUpdateMailAddressForwardAddresses),
452
452
  /** Update the password for a MailAddress. */
@@ -467,7 +467,7 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
467
467
  };
468
468
  /** The user API allows you to manage your own user and access information of other users that might be visible to you. */
469
469
  this.user = {
470
- /** Get a password policy. */
470
+ /** Get a PasswordPolicy. */
471
471
  passwordValidationGetPasswordPolicy: this.requestFunctionFactory(descriptors.passwordValidationGetPasswordPolicy),
472
472
  /** Add phone number and start verification process. */
473
473
  addPhoneNumber: this.requestFunctionFactory(descriptors.userAddPhoneNumber),
@@ -113,6 +113,8 @@ export declare const conversationGetCategory: OpenAPIOperation<RequestType<Simpl
113
113
  export declare const conversationGetConversation: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
114
114
  /** Update the basic properties of the conversation. */
115
115
  export declare const conversationUpdateConversation: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationId.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
116
+ /** Request an access token for the File belonging to the Conversation. */
117
+ export declare const conversationGetFileAccessToken: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFilesFileIdAccessToken.Get.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFilesFileIdAccessToken.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFilesFileIdAccessToken.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFilesFileIdAccessToken.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFilesFileIdAccessToken.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFilesFileIdAccessToken.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFilesFileIdAccessToken.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationsConversationIdFilesFileIdAccessToken.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
116
118
  /** Get all conversation categories. */
117
119
  export declare const conversationListCategories: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ConversationCategories.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ConversationCategories.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ConversationCategories.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ConversationCategories.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ConversationCategories.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
118
120
  /** Request a file upload token for the conversation. */
@@ -305,22 +307,20 @@ export declare const fileGetFileTokenRules: OpenAPIOperation<RequestType<Simplif
305
307
  export declare const fileGetFileTypeRules: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileTypeRulesName.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
306
308
  /** Get a File. */
307
309
  export declare const fileGetFile: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Responses.$200.Content.ApplicationOctetStream>, 200, "application/octet-stream"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Responses.$200.Content.Base64>, 200, "base64"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Responses.$200.Content.Ocr>, 200, "ocr"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
310
+ /** List Ingresses. */
311
+ export declare const ingressListIngresses: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
308
312
  /** Create an Ingress. */
309
- export declare const ingressCreate: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
313
+ export declare const ingressCreateIngress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
310
314
  /** Get an Ingress. */
311
- export declare const ingressGetSpecific: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
315
+ export declare const ingressGetIngress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
312
316
  /** Delete an Ingress. */
313
- export declare const ingressDelete: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
314
- /** List Ingresses the user has access to. */
315
- export declare const ingressListAccessible: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Ingresses.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
316
- /** List Ingresses belonging to a project. */
317
- export declare const ingressListForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdIngresses.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdIngresses.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdIngresses.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdIngresses.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdIngresses.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdIngresses.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
318
- /** Update an Ingresses paths. */
319
- export declare const ingressPaths: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
320
- /** Request ACME certificate issuance */
321
- export declare const ingressRequestAcmeCertificateIssuance: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
322
- /** Update an Ingresses tls settings. */
323
- export declare const ingressTls: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
317
+ export declare const ingressDeleteIngress: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
318
+ /** Update the paths of an Ingress. */
319
+ export declare const ingressUpdateIngressPaths: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdPaths.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
320
+ /** Request the ACME certificate issuance of an Ingress. */
321
+ export declare const ingressRequestIngressAcmeCertificateIssuance: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdActionsRequestAcmeCertificateIssuance.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
322
+ /** Update the tls settings of an Ingress. */
323
+ export declare const ingressUpdateIngressTls: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Patch.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2IngressesIngressIdTls.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
324
324
  /** Get details of an Invoice. */
325
325
  export declare const invoiceDetailOfInvoice: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdInvoicesInvoiceId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
326
326
  /** Get InvoiceSettings of a Customer. */
@@ -354,19 +354,19 @@ export declare const mailUpdateDeliveryBoxPassword: OpenAPIOperation<RequestType
354
354
  /** Update a MailAddress. */
355
355
  export declare const mailUpdateMailAddressAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAddress.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
356
356
  /** Update the autoresponder of a MailAddress. */
357
- export declare const mailUpdateMailAddressAutoresponder: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Put.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Put.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Put.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
357
+ export declare const mailUpdateMailAddressAutoresponder: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdAutoresponder.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
358
358
  /** Update the catchall of a MailAddress. */
359
- export declare const mailUpdateMailAddressCatchall: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchall.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchall.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchall.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchall.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchall.Put.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchall.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchall.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchall.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchall.Put.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchall.Put.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchall.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
359
+ export declare const mailUpdateMailAddressCatchAll: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdCatchAll.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
360
360
  /** Update the forward addresses of a MailAddresses. */
361
- export declare const mailUpdateMailAddressForwardAddresses: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Put.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Put.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Put.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
361
+ export declare const mailUpdateMailAddressForwardAddresses: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdForwardAddresses.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
362
362
  /** Update the password for a MailAddress. */
363
- export declare const mailUpdateMailAddressPassword: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Put.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Put.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Put.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
363
+ export declare const mailUpdateMailAddressPassword: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdPassword.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
364
364
  /** Update the quota of a MailAddress. */
365
- export declare const mailUpdateMailAddressQuota: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Put.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Put.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Put.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
365
+ export declare const mailUpdateMailAddressQuota: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdQuota.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
366
366
  /** Update the spam protection of a MailAddress. */
367
- export declare const mailUpdateMailAddressSpamProtection: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Put.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Put.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Put.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
367
+ export declare const mailUpdateMailAddressSpamProtection: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2MailAddressesMailAddressIdSpamProtection.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
368
368
  /** Update a mail setting of a Project. */
369
- export declare const mailUpdateProjectMailSetting: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Put.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Put.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Put.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
369
+ export declare const mailUpdateProjectMailSetting: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsSetting.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
370
370
  /** Getting the subscription status of the subscription. */
371
371
  export declare const newsletterGetInfo: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2NewsletterSubscriptionsSelf.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
372
372
  /** Unsubscribe a user from the mStudio newsletter. */
@@ -397,8 +397,8 @@ export declare const orderPreviewTariffChange: OpenAPIOperation<RequestType<Simp
397
397
  export declare const pageinsightsGetPerformanceData: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Pageinsights.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Pageinsights.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Pageinsights.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Pageinsights.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Pageinsights.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Pageinsights.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Pageinsights.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
398
398
  /** List websites (specified as domain and path) from a project where performance data is available. */
399
399
  export declare const pageinsightsListPerformanceDataForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsIdPageinsights.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsIdPageinsights.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsIdPageinsights.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsIdPageinsights.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsIdPageinsights.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsIdPageinsights.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsIdPageinsights.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
400
- /** Get a password policy. */
401
- export declare const passwordValidationGetPasswordPolicy: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPath.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPath.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPath.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPath.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPath.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
400
+ /** Get a PasswordPolicy. */
401
+ export declare const passwordValidationGetPasswordPolicy: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPasswordPolicy.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPasswordPolicy.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPasswordPolicy.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPasswordPolicy.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2PasswordPoliciesPasswordPolicy.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
402
402
  /** Accept a ProjectInvite. */
403
403
  export declare const projectAcceptProjectInvite: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectInvitesInviteIdActionsAccept.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
404
404
  /** Create a ProjectInvite. */
@@ -490,7 +490,7 @@ export declare const sshUserGetSshUser: OpenAPIOperation<RequestType<Simplify<nu
490
490
  /** Delete an SSHUser. */
491
491
  export declare const sshUserDeleteSshUser: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
492
492
  /** Update an SSHUser. */
493
- export declare const sshUserUpdateSshUser: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
493
+ export declare const sshUserUpdateSshUser: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
494
494
  /** Add phone number and start verification process. */
495
495
  export declare const userAddPhoneNumber: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
496
496
  /** Remove phone number. */