@mittwald/api-client 3.1.12 → 3.1.14

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.
@@ -1090,6 +1090,20 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1090
1090
  projectId: string;
1091
1091
  txtRecord: string;
1092
1092
  }>;
1093
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
1094
+ getLatestScreenshot: (conf: {
1095
+ data: {
1096
+ domainName: string;
1097
+ path: string;
1098
+ };
1099
+ domainId: string;
1100
+ headers?: {
1101
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1102
+ "x-access-token"?: string | undefined;
1103
+ } | undefined;
1104
+ }) => import("@mittwald/react-use-promise/types").AsyncResource<{
1105
+ reference?: string | undefined;
1106
+ }>;
1093
1107
  /** List the DomainOwnerships of a project. */
1094
1108
  listDomainOwnerships: (conf: {
1095
1109
  projectId: string;
@@ -1159,20 +1173,6 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1159
1173
  projectId: string;
1160
1174
  tls: import("./types.js").MittwaldAPIV2.Components.Schemas.IngressTlsAcme | import("./types.js").MittwaldAPIV2.Components.Schemas.IngressTlsCertificate;
1161
1175
  }>;
1162
- /** Get the latest screenshot's FileReference belonging to a Domain. */
1163
- getLatestScreenshot: (conf: {
1164
- data: {
1165
- domainName: string;
1166
- path: string;
1167
- };
1168
- domainId: string;
1169
- headers?: {
1170
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1171
- "x-access-token"?: string | undefined;
1172
- } | undefined;
1173
- }) => import("@mittwald/react-use-promise/types").AsyncResource<{
1174
- reference?: string | undefined;
1175
- }>;
1176
1176
  };
1177
1177
  declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1178
1178
  /** Get a File's meta. */
@@ -1188,9 +1188,19 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1188
1188
  sizeInBytes: number;
1189
1189
  type: string;
1190
1190
  }>;
1191
- /** Get a Token's upload rules. */
1192
- getFileTokenRules: (conf: {
1193
- token: string;
1191
+ /** Get a File. */
1192
+ getFile: (conf: {
1193
+ fileId: string;
1194
+ headers?: {
1195
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1196
+ Accept?: "binary" | "base64" | "ocr" | undefined;
1197
+ Download?: boolean | undefined;
1198
+ Token?: string | undefined;
1199
+ } | undefined;
1200
+ }) => import("@mittwald/react-use-promise/types").AsyncResource<string>;
1201
+ /** Get a FileUploadToken's rules. */
1202
+ getFileUploadTokenRules: (conf: {
1203
+ fileUploadToken: string;
1194
1204
  headers?: {
1195
1205
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1196
1206
  } | undefined;
@@ -1210,9 +1220,9 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1210
1220
  } | undefined;
1211
1221
  } | undefined;
1212
1222
  }>;
1213
- /** Get a Type's upload rules. */
1214
- getFileTypeRules: (conf: {
1215
- name: "avatar" | "conversation";
1223
+ /** Get a FileUploadType's rules. */
1224
+ getFileUploadTypeRules: (conf: {
1225
+ fileUploadType: "avatar" | "conversation";
1216
1226
  headers?: {
1217
1227
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1218
1228
  } | undefined;
@@ -1232,16 +1242,6 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
1232
1242
  } | undefined;
1233
1243
  } | undefined;
1234
1244
  }>;
1235
- /** Get a File. */
1236
- getFile: (conf: {
1237
- fileId: string;
1238
- headers?: {
1239
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1240
- Accept?: "binary" | "base64" | "ocr" | undefined;
1241
- Download?: boolean | undefined;
1242
- Token?: string | undefined;
1243
- } | undefined;
1244
- }) => import("@mittwald/react-use-promise/types").AsyncResource<string>;
1245
1245
  };
1246
1246
  declare const buildMailApi: (baseClient: MittwaldAPIV2Client) => {
1247
1247
  /** List DeliveryBoxes belonging to a Project. */
@@ -185,6 +185,8 @@ const buildDomainApi = (baseClient) => ({
185
185
  getDomain: new react_1.ApiCallAsyncResourceFactory(descriptors.domainGetDomain, baseClient.domain.getDomain).getApiResource,
186
186
  /** Get a DomainOwnership. */
187
187
  getDomainOwnership: new react_1.ApiCallAsyncResourceFactory(descriptors.domainGetDomainOwnership, baseClient.domain.getDomainOwnership).getApiResource,
188
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
189
+ getLatestScreenshot: new react_1.ApiCallAsyncResourceFactory(descriptors.domainGetLatestScreenshot, baseClient.domain.getLatestScreenshot).getApiResource,
188
190
  /** List the DomainOwnerships of a project. */
189
191
  listDomainOwnerships: new react_1.ApiCallAsyncResourceFactory(descriptors.domainListDomainOwnerships, baseClient.domain.listDomainOwnerships).getApiResource,
190
192
  /** List Domains belonging to a Project. */
@@ -197,18 +199,16 @@ const buildDomainApi = (baseClient) => ({
197
199
  ingressListIngresses: new react_1.ApiCallAsyncResourceFactory(descriptors.ingressListIngresses, baseClient.domain.ingressListIngresses).getApiResource,
198
200
  /** Get an Ingress. */
199
201
  ingressGetIngress: new react_1.ApiCallAsyncResourceFactory(descriptors.ingressGetIngress, baseClient.domain.ingressGetIngress).getApiResource,
200
- /** Get the latest screenshot's FileReference belonging to a Domain. */
201
- getLatestScreenshot: new react_1.ApiCallAsyncResourceFactory(descriptors.domainGetLatestScreenshot, baseClient.domain.getLatestScreenshot).getApiResource,
202
202
  });
203
203
  const buildFileApi = (baseClient) => ({
204
204
  /** Get a File's meta. */
205
205
  getFileMeta: new react_1.ApiCallAsyncResourceFactory(descriptors.fileGetFileMeta, baseClient.file.getFileMeta).getApiResource,
206
- /** Get a Token's upload rules. */
207
- getFileTokenRules: new react_1.ApiCallAsyncResourceFactory(descriptors.fileGetFileTokenRules, baseClient.file.getFileTokenRules).getApiResource,
208
- /** Get a Type's upload rules. */
209
- getFileTypeRules: new react_1.ApiCallAsyncResourceFactory(descriptors.fileGetFileTypeRules, baseClient.file.getFileTypeRules).getApiResource,
210
206
  /** Get a File. */
211
207
  getFile: new react_1.ApiCallAsyncResourceFactory(descriptors.fileGetFile, baseClient.file.getFile).getApiResource,
208
+ /** Get a FileUploadToken's rules. */
209
+ getFileUploadTokenRules: new react_1.ApiCallAsyncResourceFactory(descriptors.fileGetFileUploadTokenRules, baseClient.file.getFileUploadTokenRules).getApiResource,
210
+ /** Get a FileUploadType's rules. */
211
+ getFileUploadTypeRules: new react_1.ApiCallAsyncResourceFactory(descriptors.fileGetFileUploadTypeRules, baseClient.file.getFileUploadTypeRules).getApiResource,
212
212
  });
213
213
  const buildMailApi = (baseClient) => ({
214
214
  /** List DeliveryBoxes belonging to a Project. */
@@ -5356,6 +5356,41 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5356
5356
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5357
5357
  [x: string]: unknown;
5358
5358
  }, 404, "application/json">>>;
5359
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
5360
+ getLatestScreenshot: (request: {
5361
+ data: {
5362
+ domainName: string;
5363
+ path: string;
5364
+ };
5365
+ domainId: string;
5366
+ headers?: {
5367
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5368
+ "x-access-token"?: string | undefined;
5369
+ } | undefined;
5370
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5371
+ data: {
5372
+ domainName: string;
5373
+ path: string;
5374
+ };
5375
+ } & {
5376
+ pathParameters: {
5377
+ domainId: string;
5378
+ };
5379
+ } & {
5380
+ headers?: Partial<{
5381
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5382
+ }> | undefined;
5383
+ } & {
5384
+ headers: {
5385
+ "x-access-token"?: string | undefined;
5386
+ } & Partial<{
5387
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5388
+ }>;
5389
+ }, import("@mittwald/api-client-commons").Response<{
5390
+ reference?: string | undefined;
5391
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5392
+ [x: string]: unknown;
5393
+ }, 404, "application/json">>>;
5359
5394
  /** List the DomainOwnerships of a project. */
5360
5395
  listDomainOwnerships: (request: {
5361
5396
  projectId: string;
@@ -5835,41 +5870,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5835
5870
  }, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5836
5871
  [x: string]: unknown;
5837
5872
  }, 404, "application/json">>>;
5838
- /** Get the latest screenshot's FileReference belonging to a Domain. */
5839
- getLatestScreenshot: (request: {
5840
- data: {
5841
- domainName: string;
5842
- path: string;
5843
- };
5844
- domainId: string;
5845
- headers?: {
5846
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5847
- "x-access-token"?: string | undefined;
5848
- } | undefined;
5849
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5850
- data: {
5851
- domainName: string;
5852
- path: string;
5853
- };
5854
- } & {
5855
- pathParameters: {
5856
- domainId: string;
5857
- };
5858
- } & {
5859
- headers?: Partial<{
5860
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5861
- }> | undefined;
5862
- } & {
5863
- headers: {
5864
- "x-access-token"?: string | undefined;
5865
- } & Partial<{
5866
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5867
- }>;
5868
- }, import("@mittwald/api-client-commons").Response<{
5869
- reference?: string | undefined;
5870
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5871
- [x: string]: unknown;
5872
- }, 404, "application/json">>>;
5873
5873
  };
5874
5874
  /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
5875
5875
  readonly file: {
@@ -5929,11 +5929,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5929
5929
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5930
5930
  [x: string]: unknown;
5931
5931
  }, 404, "application/json">>>;
5932
- /** Get a Token's upload rules. */
5933
- getFileTokenRules: (request: {
5934
- token: string;
5932
+ /** Get a File. */
5933
+ getFile: (request: {
5934
+ fileId: string;
5935
5935
  headers?: {
5936
5936
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5937
+ Accept?: "binary" | "base64" | "ocr" | undefined;
5938
+ Download?: boolean | undefined;
5939
+ Token?: string | undefined;
5937
5940
  } | undefined;
5938
5941
  }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5939
5942
  headers?: Partial<{
@@ -5941,7 +5944,36 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5941
5944
  }> | undefined;
5942
5945
  } & {
5943
5946
  pathParameters: {
5944
- token: string;
5947
+ fileId: string;
5948
+ };
5949
+ } & {
5950
+ headers: {
5951
+ Accept?: "binary" | "base64" | "ocr" | undefined;
5952
+ Download?: boolean | undefined;
5953
+ Token?: string | undefined;
5954
+ } & Partial<{
5955
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5956
+ }>;
5957
+ }, import("@mittwald/api-client-commons").Response<string, 200, "application/octet-stream"> | import("@mittwald/api-client-commons").Response<string, 200, "base64"> | import("@mittwald/api-client-commons").Response<string, 200, "ocr"> | import("@mittwald/api-client-commons").Response<{
5958
+ [x: string]: unknown;
5959
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5960
+ [x: string]: unknown;
5961
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5962
+ [x: string]: unknown;
5963
+ }, 500, "application/json">>>;
5964
+ /** Get a FileUploadToken's rules. */
5965
+ getFileUploadTokenRules: (request: {
5966
+ fileUploadToken: string;
5967
+ headers?: {
5968
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5969
+ } | undefined;
5970
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5971
+ headers?: Partial<{
5972
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5973
+ }> | undefined;
5974
+ } & {
5975
+ pathParameters: {
5976
+ fileUploadToken: string;
5945
5977
  };
5946
5978
  }, import("@mittwald/api-client-commons").Response<{
5947
5979
  maxSizeInKB: number;
@@ -5963,9 +5995,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5963
5995
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5964
5996
  [x: string]: unknown;
5965
5997
  }, 500, "application/json">>>;
5966
- /** Get a Type's upload rules. */
5967
- getFileTypeRules: (request: {
5968
- name: "avatar" | "conversation";
5998
+ /** Get a FileUploadType's rules. */
5999
+ getFileUploadTypeRules: (request: {
6000
+ fileUploadType: "avatar" | "conversation";
5969
6001
  headers?: {
5970
6002
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5971
6003
  } | undefined;
@@ -5975,7 +6007,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5975
6007
  }> | undefined;
5976
6008
  } & {
5977
6009
  pathParameters: {
5978
- name: "avatar" | "conversation";
6010
+ fileUploadType: "avatar" | "conversation";
5979
6011
  };
5980
6012
  }, import("@mittwald/api-client-commons").Response<{
5981
6013
  maxSizeInKB: number;
@@ -5997,38 +6029,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5997
6029
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5998
6030
  [x: string]: unknown;
5999
6031
  }, 500, "application/json">>>;
6000
- /** Get a File. */
6001
- getFile: (request: {
6002
- fileId: string;
6003
- headers?: {
6004
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6005
- Accept?: "binary" | "base64" | "ocr" | undefined;
6006
- Download?: boolean | undefined;
6007
- Token?: string | undefined;
6008
- } | undefined;
6009
- }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
6010
- headers?: Partial<{
6011
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6012
- }> | undefined;
6013
- } & {
6014
- pathParameters: {
6015
- fileId: string;
6016
- };
6017
- } & {
6018
- headers: {
6019
- Accept?: "binary" | "base64" | "ocr" | undefined;
6020
- Download?: boolean | undefined;
6021
- Token?: string | undefined;
6022
- } & Partial<{
6023
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
6024
- }>;
6025
- }, import("@mittwald/api-client-commons").Response<string, 200, "application/octet-stream"> | import("@mittwald/api-client-commons").Response<string, 200, "base64"> | import("@mittwald/api-client-commons").Response<string, 200, "ocr"> | import("@mittwald/api-client-commons").Response<{
6026
- [x: string]: unknown;
6027
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
6028
- [x: string]: unknown;
6029
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
6030
- [x: string]: unknown;
6031
- }, 500, "application/json">>>;
6032
6032
  };
6033
6033
  /** The mail API allows you to manage your mail accounts. */
6034
6034
  readonly mail: {
@@ -6789,7 +6789,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6789
6789
  blacklist: string[];
6790
6790
  };
6791
6791
  projectId: string;
6792
- setting: "blacklist" | "whitelist";
6792
+ mailSetting: "blacklist" | "whitelist";
6793
6793
  headers?: {
6794
6794
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6795
6795
  "x-access-token"?: string | undefined;
@@ -6799,7 +6799,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6799
6799
  whitelist: string[];
6800
6800
  };
6801
6801
  projectId: string;
6802
- setting: "blacklist" | "whitelist";
6802
+ mailSetting: "blacklist" | "whitelist";
6803
6803
  headers?: {
6804
6804
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6805
6805
  "x-access-token"?: string | undefined;
@@ -6815,7 +6815,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6815
6815
  }) & {
6816
6816
  pathParameters: {
6817
6817
  projectId: string;
6818
- setting: "blacklist" | "whitelist";
6818
+ mailSetting: "blacklist" | "whitelist";
6819
6819
  };
6820
6820
  } & {
6821
6821
  headers?: Partial<{
@@ -369,6 +369,8 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
369
369
  deleteDomain: this.requestFunctionFactory(descriptors.domainDeleteDomain),
370
370
  /** Get a DomainOwnership. */
371
371
  getDomainOwnership: this.requestFunctionFactory(descriptors.domainGetDomainOwnership),
372
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
373
+ getLatestScreenshot: this.requestFunctionFactory(descriptors.domainGetLatestScreenshot),
372
374
  /** List the DomainOwnerships of a project. */
373
375
  listDomainOwnerships: this.requestFunctionFactory(descriptors.domainListDomainOwnerships),
374
376
  /** List Domains belonging to a Project. */
@@ -401,8 +403,6 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
401
403
  ingressRequestIngressAcmeCertificateIssuance: this.requestFunctionFactory(descriptors.ingressRequestIngressAcmeCertificateIssuance),
402
404
  /** Update the tls settings of an Ingress. */
403
405
  ingressUpdateIngressTls: this.requestFunctionFactory(descriptors.ingressUpdateIngressTls),
404
- /** Get the latest screenshot's FileReference belonging to a Domain. */
405
- getLatestScreenshot: this.requestFunctionFactory(descriptors.domainGetLatestScreenshot),
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 = {
@@ -410,12 +410,12 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
410
410
  createFile: this.requestFunctionFactory(descriptors.fileCreateFile),
411
411
  /** Get a File's meta. */
412
412
  getFileMeta: this.requestFunctionFactory(descriptors.fileGetFileMeta),
413
- /** Get a Token's upload rules. */
414
- getFileTokenRules: this.requestFunctionFactory(descriptors.fileGetFileTokenRules),
415
- /** Get a Type's upload rules. */
416
- getFileTypeRules: this.requestFunctionFactory(descriptors.fileGetFileTypeRules),
417
413
  /** Get a File. */
418
414
  getFile: this.requestFunctionFactory(descriptors.fileGetFile),
415
+ /** Get a FileUploadToken's rules. */
416
+ getFileUploadTokenRules: this.requestFunctionFactory(descriptors.fileGetFileUploadTokenRules),
417
+ /** Get a FileUploadType's rules. */
418
+ getFileUploadTypeRules: this.requestFunctionFactory(descriptors.fileGetFileUploadTypeRules),
419
419
  };
420
420
  /** The mail API allows you to manage your mail accounts. */
421
421
  this.mail = {
@@ -277,6 +277,8 @@ export declare const domainGetDomain: OpenAPIOperation<RequestType<Simplify<null
277
277
  export declare const domainDeleteDomain: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
278
278
  /** Get a DomainOwnership. */
279
279
  export declare const domainGetDomainOwnership: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainOwnershipsDomainOwnershipId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
280
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
281
+ export declare const domainGetLatestScreenshot: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
280
282
  /** List the DomainOwnerships of a project. */
281
283
  export declare const domainListDomainOwnerships: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdDomainOwnerships.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
282
284
  /** List Domains belonging to a Project. */
@@ -299,10 +301,6 @@ export declare const domainVerifyDomainOwnership: OpenAPIOperation<RequestType<S
299
301
  export declare const fileCreateFile: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
300
302
  /** Get a File's meta. */
301
303
  export declare const fileGetFileMeta: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
302
- /** Get a Token's upload rules. */
303
- export declare const fileGetFileTokenRules: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2FileTokenRulesToken.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2FileTokenRulesToken.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2FileTokenRulesToken.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2FileTokenRulesToken.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileTokenRulesToken.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileTokenRulesToken.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileTokenRulesToken.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
304
- /** Get a Type's upload rules. */
305
- 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
304
  /** Get a File. */
307
305
  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">>;
308
306
  /** List Ingresses. */
@@ -364,7 +362,7 @@ export declare const mailUpdateMailAddressQuota: OpenAPIOperation<RequestType<Si
364
362
  /** Update the spam protection of a MailAddress. */
365
363
  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">>;
366
364
  /** Update a mail setting of a Project. */
367
- 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">>;
365
+ export declare const mailUpdateProjectMailSetting: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdMailSettingsMailSetting.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
368
366
  /** Getting the subscription status of the subscription. */
369
367
  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">>;
370
368
  /** Unsubscribe a user from the mStudio newsletter. */
@@ -585,5 +583,7 @@ export declare const userVerifyEmail: OpenAPIOperation<RequestType<Simplify<Mitt
585
583
  export declare const userVerifyPhoneNumber: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhoneVerify.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
586
584
  /** Verify your registration. */
587
585
  export declare const userVerifyRegistration: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$200.Content.Empty>, 200, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2VerifyRegistration.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
588
- /** Get the latest screenshot's FileReference belonging to a Domain. */
589
- export declare const domainGetLatestScreenshot: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdLatestScreenshot.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
586
+ /** Get a FileUploadToken's rules. */
587
+ export declare const fileGetFileUploadTokenRules: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileUploadTokensFileUploadTokenRules.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
588
+ /** Get a FileUploadType's rules. */
589
+ export declare const fileGetFileUploadTypeRules: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2FileUploadTypesFileUploadTypeRules.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2FileUploadTypesFileUploadTypeRules.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2FileUploadTypesFileUploadTypeRules.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2FileUploadTypesFileUploadTypeRules.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileUploadTypesFileUploadTypeRules.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileUploadTypesFileUploadTypeRules.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FileUploadTypesFileUploadTypeRules.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -2,10 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.conversationCreateConversation = exports.conversationListConversations = exports.contractListContracts = exports.contractGetNextTerminationDateForItem = exports.contractGetDetailOfContract = exports.contractGetDetailOfContractItem = exports.contractGetDetailOfContractByServer = exports.contractGetDetailOfContractByProject = exports.contractGetDetailOfContractByDomain = exports.contractGetBaseItemOfContract = exports.contractCancelContractTermination = exports.contractTerminateContract = exports.contractCancelContractTariffChange = exports.contractCancelContractItemTermination = exports.contractTerminateContractItem = exports.backupUpdateProjectBackupDescription = exports.backupDeleteProjectBackup = exports.backupGetProjectBackup = exports.backupUpdateProjectBackupSchedule = exports.backupDeleteProjectBackupSchedule = exports.backupGetProjectBackupSchedule = exports.backupCreateProjectBackup = exports.backupListProjectBackups = exports.backupCreateProjectBackupSchedule = exports.backupListProjectBackupSchedules = exports.backupDeleteProjectBackupExport = exports.backupCreateProjectBackupExport = exports.articleListArticles = exports.articleGetArticle = exports.appUnlinkDatabase = exports.appSetDatabaseUsers = exports.appRetrieveStatus = exports.appRequestAppinstallationCopy = exports.appListUpdateCandidatesForAppversion = exports.appListSystemsoftwareversions = exports.appListSystemsoftwares = exports.appListAppversions = exports.appListApps = exports.appRequestAppinstallation = exports.appListAppinstallations = exports.appLinkDatabase = exports.appGetSystemsoftwareversion = exports.appGetSystemsoftware = exports.appGetMissingDependenciesForAppinstallation = exports.appGetAppversion = exports.appPatchAppinstallation = exports.appUninstallAppinstallation = exports.appGetAppinstallation = exports.appGetApp = exports.appExecuteAction = void 0;
4
4
  exports.databaseCreateMysqlDatabase = exports.databaseListMysqlDatabases = exports.customerResendCustomerInviteMail = exports.customerRemoveAvatar = exports.customerRequestAvatarUpload = exports.customerListMembershipsForCustomer = exports.customerListInvitesForCustomer = exports.customerListCustomerMemberships = exports.customerListCustomerInvites = exports.customerLeaveCustomer = exports.customerIsCustomerLegallyCompetent = exports.customerGetCustomerTokenInvite = exports.customerDeleteCustomer = exports.customerUpdateCustomer = exports.customerGetCustomer = exports.customerUpdateCustomerMembership = exports.customerDeleteCustomerMembership = exports.customerGetCustomerMembership = exports.customerDeleteCustomerInvite = exports.customerGetCustomerInvite = exports.customerDeleteCategory = exports.customerUpdateCategory = exports.customerGetCustomerCategory = exports.customerDeclineCustomerInvite = exports.customerCreateCustomer = exports.customerListCustomers = exports.customerCreateCustomerInvite = exports.customerCreateCategory = exports.customerListOfCustomerCategories = exports.customerAcceptCustomerInvite = exports.cronjobUpdateCronjobAppId = exports.cronjobGetExecution = exports.cronjobUpdateCronjob = exports.cronjobDeleteCronjob = exports.cronjobGetCronjob = exports.cronjobCreateExecution = exports.cronjobListExecutions = exports.cronjobCreateCronjob = exports.cronjobListCronjobs = exports.cronjobAbortExecution = exports.conversationUpdateMessage = exports.conversationSetConversationStatus = exports.conversationRequestFileUpload = exports.conversationListCategories = exports.conversationGetFileAccessToken = exports.conversationUpdateConversation = exports.conversationGetConversation = exports.conversationGetCategory = exports.conversationCreateMessage = exports.conversationListMessagesByConversation = void 0;
5
- exports.fileGetFileTypeRules = exports.fileGetFileTokenRules = exports.fileGetFileMeta = exports.fileCreateFile = exports.domainVerifyDomainOwnership = exports.domainUpdateDomainProjectId = exports.domainUpdateDomainContact = exports.domainUpdateDomainAuthCode = exports.domainResendDomainEmail = exports.domainListTlds = exports.domainListTldContactSchemas = exports.domainListDomains = exports.domainListDomainOwnerships = exports.domainGetDomainOwnership = exports.domainDeleteDomain = exports.domainGetDomain = exports.domainUpdateDomainNameservers = exports.domainCreateDomainAuthCode = exports.domainCreateDomainAuthCode2 = exports.domainCheckDomainRegistrability = exports.domainAbortDomainDeclaration = exports.dnsUpdateRecordSet = exports.dnsSetRecordSetManaged = exports.dnsListDnsZones = exports.dnsDeleteDnsZone = exports.dnsGetDnsZone = exports.dnsCreateDnsZone = exports.newsletterSubscribeUser = exports.databaseUpdateRedisDatabaseDescription = exports.databaseUpdateRedisDatabaseConfiguration = exports.databaseUpdateMysqlUserPassword = exports.databaseUpdateMysqlDatabaseDescription = exports.databaseUpdateMysqlDatabaseDefaultCharset = exports.databaseListRedisVersions = exports.databaseListMysqlVersions = exports.databaseListMysqlCharsets = exports.databaseGetMysqlUserPhpMyAdminUrl = exports.databaseEnableMysqlUser = exports.databaseDisableMysqlUser = exports.databaseDeleteRedisDatabase = exports.databaseGetRedisDatabase = exports.databaseDeleteMysqlUser = exports.databaseUpdateMysqlUser = exports.databaseGetMysqlUser = exports.databaseDeleteMysqlDatabase = exports.databaseGetMysqlDatabase = exports.databaseCreateRedisDatabase = exports.databaseListRedisDatabases = exports.databaseCreateMysqlUser = exports.databaseListMysqlUsers = void 0;
6
- exports.projectCreateProject = exports.projectCreateProjectInvite = exports.projectAcceptProjectInvite = exports.passwordValidationGetPasswordPolicy = exports.pageinsightsListPerformanceDataForProject = exports.pageinsightsGetPerformanceData = exports.orderPreviewTariffChange = exports.orderPreviewOrder = exports.orderListProjectOrders = exports.orderListCustomerOrders = exports.orderGetOrder = exports.orderCreateTariffChange = exports.orderCreateOrder = exports.notificationsReadNotification = exports.notificationsReadAllNotifications = exports.notificationsListNotifications = exports.notificationsCountUnreadNotifications = exports.newsletterUnsubscribeUser = exports.newsletterGetInfo = exports.mailUpdateProjectMailSetting = exports.mailUpdateMailAddressSpamProtection = exports.mailUpdateMailAddressQuota = exports.mailUpdateMailAddressPassword = exports.mailUpdateMailAddressForwardAddresses = exports.mailUpdateMailAddressCatchAll = exports.mailUpdateMailAddressAutoresponder = exports.mailUpdateMailAddressAddress = exports.mailUpdateDeliveryBoxPassword = exports.mailUpdateDeliveryBoxDescription = exports.mailListProjectMailSettings = exports.mailDeleteMailAddress = exports.mailGetMailAddress = exports.mailDeleteDeliveryBox = exports.mailGetDeliveryBox = exports.mailCreateMailAddress = exports.mailListMailAddresses = exports.mailCreateDeliverybox = exports.mailListDeliveryBoxes = exports.invoiceListCustomerInvoices = exports.invoiceUpdateInvoiceSettings = exports.invoiceGetDetailOfInvoiceSettings = exports.invoiceDetailOfInvoice = exports.ingressUpdateIngressTls = exports.ingressRequestIngressAcmeCertificateIssuance = exports.ingressUpdateIngressPaths = exports.ingressDeleteIngress = exports.ingressGetIngress = exports.ingressCreateIngress = exports.ingressListIngresses = exports.fileGetFile = void 0;
7
- exports.userChangePassword = exports.userChangeEmail = exports.userGetOwnEmail = exports.userAuthenticate = exports.userAuthenticateMfa = exports.userRemovePhoneNumber = exports.userAddPhoneNumber = exports.sshUserUpdateSshUser = exports.sshUserDeleteSshUser = exports.sshUserGetSshUser = exports.sshUserCreateSshUser = exports.sshUserListSshUsers = exports.sftpUserUpdateSftpUser = exports.sftpUserDeleteSftpUser = exports.sftpUserGetSftpUser = exports.sftpUserCreateSftpUser = exports.sftpUserListSftpUsers = exports.servicetokenAuthenticateService = exports.relocationCreateRelocation = exports.relocationCreateLegacyTariffChange = exports.projectUpdateServerDescription = exports.projectUpdateProjectDescription = exports.projectResendProjectInviteMail = exports.projectListServers = exports.projectListProjects = exports.projectListProjectMemberships = exports.projectListProjectInvites = exports.projectListMembershipsForProject = exports.projectListInvitesForProject = exports.projectLeaveProject = exports.projectGetServer = exports.projectGetSelfMembershipForProject = exports.projectGetProjectTokenInvite = exports.projectFileSystemListFiles = exports.projectFileSystemGetJwt = exports.projectFileSystemGetFileContent = exports.projectFileSystemGetDiskUsage = exports.projectFileSystemGetDirectories = exports.projectDeleteServerAvatar = exports.projectRequestServerAvatarUpload = exports.projectDeleteProject = exports.projectGetProject = exports.projectUpdateProjectMembership = exports.projectDeleteProjectMembership = exports.projectGetProjectMembership = exports.projectDeleteProjectInvite = exports.projectGetProjectInvite = exports.projectDeleteProjectAvatar = exports.projectRequestProjectAvatarUpload = exports.projectDeclineProjectInvite = void 0;
8
- exports.domainGetLatestScreenshot = exports.userVerifyRegistration = exports.userVerifyPhoneNumber = exports.userVerifyEmail = exports.userSupportCodeRequest = exports.userResendVerificationEmail = exports.userRemoveAvatar = exports.userRequestAvatarUpload = exports.userRegister = exports.userLogout = exports.userTerminateAllSessions = exports.userListSessions = exports.userListFeedback = exports.userInitPasswordReset = exports.userInitMfa = exports.userUpdatePersonalInformation = exports.userGetUser = exports.userTerminateSession = exports.userGetSession = exports.userUpdatePersonalizedSettings = exports.userGetPersonalizedSettings = exports.userGetPasswordUpdatedAt = exports.userUpdateAccount = exports.userGetOwnAccount = exports.userDeleteUser = exports.userDeleteSshKey = exports.userEditSshKey = exports.userGetSshKey = exports.userDeleteApiToken = exports.userEditApiToken = exports.userGetApiToken = exports.userCreateSshKey = exports.userListSshKeys = exports.userCreateFeedback = exports.userCreateApiToken = exports.userListApiTokens = exports.userConfirmPasswordReset = exports.userDisableMfa = exports.userConfirmMfa = exports.userResetRecoverycodes = exports.userGetMfaStatus = exports.userCheckToken = void 0;
5
+ exports.fileGetFile = exports.fileGetFileMeta = exports.fileCreateFile = exports.domainVerifyDomainOwnership = exports.domainUpdateDomainProjectId = exports.domainUpdateDomainContact = exports.domainUpdateDomainAuthCode = exports.domainResendDomainEmail = exports.domainListTlds = exports.domainListTldContactSchemas = exports.domainListDomains = exports.domainListDomainOwnerships = exports.domainGetLatestScreenshot = exports.domainGetDomainOwnership = exports.domainDeleteDomain = exports.domainGetDomain = exports.domainUpdateDomainNameservers = exports.domainCreateDomainAuthCode = exports.domainCreateDomainAuthCode2 = exports.domainCheckDomainRegistrability = exports.domainAbortDomainDeclaration = exports.dnsUpdateRecordSet = exports.dnsSetRecordSetManaged = exports.dnsListDnsZones = exports.dnsDeleteDnsZone = exports.dnsGetDnsZone = exports.dnsCreateDnsZone = exports.newsletterSubscribeUser = exports.databaseUpdateRedisDatabaseDescription = exports.databaseUpdateRedisDatabaseConfiguration = exports.databaseUpdateMysqlUserPassword = exports.databaseUpdateMysqlDatabaseDescription = exports.databaseUpdateMysqlDatabaseDefaultCharset = exports.databaseListRedisVersions = exports.databaseListMysqlVersions = exports.databaseListMysqlCharsets = exports.databaseGetMysqlUserPhpMyAdminUrl = exports.databaseEnableMysqlUser = exports.databaseDisableMysqlUser = exports.databaseDeleteRedisDatabase = exports.databaseGetRedisDatabase = exports.databaseDeleteMysqlUser = exports.databaseUpdateMysqlUser = exports.databaseGetMysqlUser = exports.databaseDeleteMysqlDatabase = exports.databaseGetMysqlDatabase = exports.databaseCreateRedisDatabase = exports.databaseListRedisDatabases = exports.databaseCreateMysqlUser = exports.databaseListMysqlUsers = void 0;
6
+ exports.projectDeclineProjectInvite = exports.projectCreateProject = exports.projectCreateProjectInvite = exports.projectAcceptProjectInvite = exports.passwordValidationGetPasswordPolicy = exports.pageinsightsListPerformanceDataForProject = exports.pageinsightsGetPerformanceData = exports.orderPreviewTariffChange = exports.orderPreviewOrder = exports.orderListProjectOrders = exports.orderListCustomerOrders = exports.orderGetOrder = exports.orderCreateTariffChange = exports.orderCreateOrder = exports.notificationsReadNotification = exports.notificationsReadAllNotifications = exports.notificationsListNotifications = exports.notificationsCountUnreadNotifications = exports.newsletterUnsubscribeUser = exports.newsletterGetInfo = exports.mailUpdateProjectMailSetting = exports.mailUpdateMailAddressSpamProtection = exports.mailUpdateMailAddressQuota = exports.mailUpdateMailAddressPassword = exports.mailUpdateMailAddressForwardAddresses = exports.mailUpdateMailAddressCatchAll = exports.mailUpdateMailAddressAutoresponder = exports.mailUpdateMailAddressAddress = exports.mailUpdateDeliveryBoxPassword = exports.mailUpdateDeliveryBoxDescription = exports.mailListProjectMailSettings = exports.mailDeleteMailAddress = exports.mailGetMailAddress = exports.mailDeleteDeliveryBox = exports.mailGetDeliveryBox = exports.mailCreateMailAddress = exports.mailListMailAddresses = exports.mailCreateDeliverybox = exports.mailListDeliveryBoxes = exports.invoiceListCustomerInvoices = exports.invoiceUpdateInvoiceSettings = exports.invoiceGetDetailOfInvoiceSettings = exports.invoiceDetailOfInvoice = exports.ingressUpdateIngressTls = exports.ingressRequestIngressAcmeCertificateIssuance = exports.ingressUpdateIngressPaths = exports.ingressDeleteIngress = exports.ingressGetIngress = exports.ingressCreateIngress = exports.ingressListIngresses = void 0;
7
+ exports.userCheckToken = exports.userChangePassword = exports.userChangeEmail = exports.userGetOwnEmail = exports.userAuthenticate = exports.userAuthenticateMfa = exports.userRemovePhoneNumber = exports.userAddPhoneNumber = exports.sshUserUpdateSshUser = exports.sshUserDeleteSshUser = exports.sshUserGetSshUser = exports.sshUserCreateSshUser = exports.sshUserListSshUsers = exports.sftpUserUpdateSftpUser = exports.sftpUserDeleteSftpUser = exports.sftpUserGetSftpUser = exports.sftpUserCreateSftpUser = exports.sftpUserListSftpUsers = exports.servicetokenAuthenticateService = exports.relocationCreateRelocation = exports.relocationCreateLegacyTariffChange = exports.projectUpdateServerDescription = exports.projectUpdateProjectDescription = exports.projectResendProjectInviteMail = exports.projectListServers = exports.projectListProjects = exports.projectListProjectMemberships = exports.projectListProjectInvites = exports.projectListMembershipsForProject = exports.projectListInvitesForProject = exports.projectLeaveProject = exports.projectGetServer = exports.projectGetSelfMembershipForProject = exports.projectGetProjectTokenInvite = exports.projectFileSystemListFiles = exports.projectFileSystemGetJwt = exports.projectFileSystemGetFileContent = exports.projectFileSystemGetDiskUsage = exports.projectFileSystemGetDirectories = exports.projectDeleteServerAvatar = exports.projectRequestServerAvatarUpload = exports.projectDeleteProject = exports.projectGetProject = exports.projectUpdateProjectMembership = exports.projectDeleteProjectMembership = exports.projectGetProjectMembership = exports.projectDeleteProjectInvite = exports.projectGetProjectInvite = exports.projectDeleteProjectAvatar = exports.projectRequestProjectAvatarUpload = void 0;
8
+ exports.fileGetFileUploadTypeRules = exports.fileGetFileUploadTokenRules = exports.userVerifyRegistration = exports.userVerifyPhoneNumber = exports.userVerifyEmail = exports.userSupportCodeRequest = exports.userResendVerificationEmail = exports.userRemoveAvatar = exports.userRequestAvatarUpload = exports.userRegister = exports.userLogout = exports.userTerminateAllSessions = exports.userListSessions = exports.userListFeedback = exports.userInitPasswordReset = exports.userInitMfa = exports.userUpdatePersonalInformation = exports.userGetUser = exports.userTerminateSession = exports.userGetSession = exports.userUpdatePersonalizedSettings = exports.userGetPersonalizedSettings = exports.userGetPasswordUpdatedAt = exports.userUpdateAccount = exports.userGetOwnAccount = exports.userDeleteUser = exports.userDeleteSshKey = exports.userEditSshKey = exports.userGetSshKey = exports.userDeleteApiToken = exports.userEditApiToken = exports.userGetApiToken = exports.userCreateSshKey = exports.userListSshKeys = exports.userCreateFeedback = exports.userCreateApiToken = exports.userListApiTokens = exports.userConfirmPasswordReset = exports.userDisableMfa = exports.userConfirmMfa = exports.userResetRecoverycodes = exports.userGetMfaStatus = void 0;
9
9
  /** Execute a runtime concerning action on a specific `AppInstallation`. */
10
10
  exports.appExecuteAction = {
11
11
  path: "/v2/app-installations/{appInstallationId}/actions/{action}",
@@ -828,6 +828,12 @@ exports.domainGetDomainOwnership = {
828
828
  method: "GET",
829
829
  operationId: "domain-get-domain-ownership",
830
830
  };
831
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
832
+ exports.domainGetLatestScreenshot = {
833
+ path: "/v2/domains/{domainId}/latest-screenshot",
834
+ method: "GET",
835
+ operationId: "domain-get-latest-screenshot",
836
+ };
831
837
  /** List the DomainOwnerships of a project. */
832
838
  exports.domainListDomainOwnerships = {
833
839
  path: "/v2/projects/{projectId}/domain-ownerships",
@@ -894,18 +900,6 @@ exports.fileGetFileMeta = {
894
900
  method: "GET",
895
901
  operationId: "file-get-file-meta",
896
902
  };
897
- /** Get a Token's upload rules. */
898
- exports.fileGetFileTokenRules = {
899
- path: "/v2/file-token-rules/{token}",
900
- method: "GET",
901
- operationId: "file-get-file-token-rules",
902
- };
903
- /** Get a Type's upload rules. */
904
- exports.fileGetFileTypeRules = {
905
- path: "/v2/file-type-rules/{name}",
906
- method: "GET",
907
- operationId: "file-get-file-type-rules",
908
- };
909
903
  /** Get a File. */
910
904
  exports.fileGetFile = {
911
905
  path: "/v2/files/{fileId}",
@@ -1088,7 +1082,7 @@ exports.mailUpdateMailAddressSpamProtection = {
1088
1082
  };
1089
1083
  /** Update a mail setting of a Project. */
1090
1084
  exports.mailUpdateProjectMailSetting = {
1091
- path: "/v2/projects/{projectId}/mail-settings/{setting}",
1085
+ path: "/v2/projects/{projectId}/mail-settings/{mailSetting}",
1092
1086
  method: "PATCH",
1093
1087
  operationId: "mail-update-project-mail-setting",
1094
1088
  };
@@ -1752,9 +1746,15 @@ exports.userVerifyRegistration = {
1752
1746
  method: "POST",
1753
1747
  operationId: "user-verify-registration",
1754
1748
  };
1755
- /** Get the latest screenshot's FileReference belonging to a Domain. */
1756
- exports.domainGetLatestScreenshot = {
1757
- path: "/v2/domains/{domainId}/latest-screenshot",
1749
+ /** Get a FileUploadToken's rules. */
1750
+ exports.fileGetFileUploadTokenRules = {
1751
+ path: "/v2/file-upload-tokens/{fileUploadToken}/rules",
1758
1752
  method: "GET",
1759
- operationId: "domain-get-latest-screenshot",
1753
+ operationId: "file-get-file-upload-token-rules",
1754
+ };
1755
+ /** Get a FileUploadType's rules. */
1756
+ exports.fileGetFileUploadTypeRules = {
1757
+ path: "/v2/file-upload-types/{fileUploadType}/rules",
1758
+ method: "GET",
1759
+ operationId: "file-get-file-upload-type-rules",
1760
1760
  };