@mittwald/api-client 3.1.8 → 3.1.9

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,12 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
620
620
  status: "open" | "answered" | "closed";
621
621
  title: string;
622
622
  }>;
623
+ /** Get all conversation categories. */
624
+ listCategories: (conf?: {
625
+ headers?: {
626
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
627
+ } | undefined;
628
+ } | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationCategory[]>;
623
629
  /** Request an access token for the File belonging to the Conversation. */
624
630
  getFileAccessToken: (conf: {
625
631
  conversationId: string;
@@ -631,12 +637,6 @@ declare const buildConversationApi: (baseClient: MittwaldAPIV2Client) => {
631
637
  accessToken: string;
632
638
  expiresAt: string;
633
639
  }>;
634
- /** Get all conversation categories. */
635
- listCategories: (conf?: {
636
- headers?: {
637
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
638
- } | undefined;
639
- } | null | undefined) => import("@mittwald/react-use-promise/types").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ConversationCategory[]>;
640
640
  };
641
641
  declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
642
642
  /** List Cronjobs belonging to a Project. */
@@ -1090,20 +1090,6 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1090
1090
  projectId: string;
1091
1091
  txtRecord: string;
1092
1092
  }>;
1093
- /** Get File Service Reference for a Screenshot of a domain. */
1094
- getScreenshotForDomain: (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
- references?: string[] | undefined;
1106
- }>;
1107
1093
  /** List the DomainOwnerships of a project. */
1108
1094
  listDomainOwnerships: (conf: {
1109
1095
  projectId: string;
@@ -1173,6 +1159,20 @@ declare const buildDomainApi: (baseClient: MittwaldAPIV2Client) => {
1173
1159
  projectId: string;
1174
1160
  tls: import("./types.js").MittwaldAPIV2.Components.Schemas.IngressTlsAcme | import("./types.js").MittwaldAPIV2.Components.Schemas.IngressTlsCertificate;
1175
1161
  }>;
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. */
@@ -1397,7 +1397,7 @@ declare const buildPageInsightsApi: (baseClient: MittwaldAPIV2Client) => {
1397
1397
  }>;
1398
1398
  /** List websites (specified as domain and path) from a project where performance data is available. */
1399
1399
  pageinsightsListPerformanceDataForProject: (conf: {
1400
- id: string;
1400
+ projectId: string;
1401
1401
  headers?: {
1402
1402
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1403
1403
  "x-access-token"?: string | undefined;
@@ -113,10 +113,10 @@ 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,
118
116
  /** Get all conversation categories. */
119
117
  listCategories: new react_1.ApiCallAsyncResourceFactory(descriptors.conversationListCategories, baseClient.conversation.listCategories).getApiResource,
118
+ /** Request an access token for the File belonging to the Conversation. */
119
+ getFileAccessToken: new react_1.ApiCallAsyncResourceFactory(descriptors.conversationGetFileAccessToken, baseClient.conversation.getFileAccessToken).getApiResource,
120
120
  });
121
121
  const buildCronjobApi = (baseClient) => ({
122
122
  /** List Cronjobs belonging to a Project. */
@@ -185,8 +185,6 @@ 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 File Service Reference for a Screenshot of a domain. */
189
- getScreenshotForDomain: new react_1.ApiCallAsyncResourceFactory(descriptors.domainGetScreenshotForDomain, baseClient.domain.getScreenshotForDomain).getApiResource,
190
188
  /** List the DomainOwnerships of a project. */
191
189
  listDomainOwnerships: new react_1.ApiCallAsyncResourceFactory(descriptors.domainListDomainOwnerships, baseClient.domain.listDomainOwnerships).getApiResource,
192
190
  /** List Domains belonging to a Project. */
@@ -199,6 +197,8 @@ const buildDomainApi = (baseClient) => ({
199
197
  ingressListIngresses: new react_1.ApiCallAsyncResourceFactory(descriptors.ingressListIngresses, baseClient.domain.ingressListIngresses).getApiResource,
200
198
  /** Get an Ingress. */
201
199
  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. */
@@ -2342,30 +2342,6 @@ 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">>>;
2369
2345
  /** Get all conversation categories. */
2370
2346
  listCategories: (request?: {
2371
2347
  headers?: {
@@ -2474,6 +2450,30 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
2474
2450
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
2475
2451
  [x: string]: unknown;
2476
2452
  }, 404, "application/json">>>;
2453
+ /** Request an access token for the File belonging to the Conversation. */
2454
+ getFileAccessToken: (request: {
2455
+ conversationId: string;
2456
+ fileId: string;
2457
+ headers?: {
2458
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
2459
+ } | undefined;
2460
+ }) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
2461
+ headers?: Partial<{
2462
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
2463
+ }> | undefined;
2464
+ } & {
2465
+ pathParameters: {
2466
+ conversationId: string;
2467
+ fileId: string;
2468
+ };
2469
+ }, import("@mittwald/api-client-commons").Response<{
2470
+ accessToken: string;
2471
+ expiresAt: string;
2472
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
2473
+ [x: string]: unknown;
2474
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
2475
+ [x: string]: unknown;
2476
+ }, 404, "application/json">>>;
2477
2477
  };
2478
2478
  /** The cronjob API allows you to manage cronjobs within a project. */
2479
2479
  readonly cronjob: {
@@ -5356,41 +5356,6 @@ 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 File Service Reference for a Screenshot of a domain. */
5360
- getScreenshotForDomain: (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
- references?: string[] | undefined;
5391
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5392
- [x: string]: unknown;
5393
- }, 404, "application/json">>>;
5394
5359
  /** List the DomainOwnerships of a project. */
5395
5360
  listDomainOwnerships: (request: {
5396
5361
  projectId: string;
@@ -5870,6 +5835,41 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5870
5835
  }, import("@mittwald/api-client-commons").Response<{}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5871
5836
  [x: string]: unknown;
5872
5837
  }, 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: {
@@ -6892,7 +6892,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6892
6892
  }, 403, "application/json">>>;
6893
6893
  /** List websites (specified as domain and path) from a project where performance data is available. */
6894
6894
  pageinsightsListPerformanceDataForProject: (request: {
6895
- id: string;
6895
+ projectId: string;
6896
6896
  headers?: {
6897
6897
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
6898
6898
  "x-access-token"?: string | undefined;
@@ -6907,7 +6907,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
6907
6907
  }> | undefined;
6908
6908
  } & {
6909
6909
  pathParameters: {
6910
- id: string;
6910
+ projectId: string;
6911
6911
  };
6912
6912
  } & {
6913
6913
  queryParameters: {
@@ -178,8 +178,6 @@ 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),
183
181
  /** Get all conversation categories. */
184
182
  listCategories: this.requestFunctionFactory(descriptors.conversationListCategories),
185
183
  /** Request a file upload token for the conversation. */
@@ -188,6 +186,8 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
188
186
  setConversationStatus: this.requestFunctionFactory(descriptors.conversationSetConversationStatus),
189
187
  /** Update the content of the message */
190
188
  updateMessage: this.requestFunctionFactory(descriptors.conversationUpdateMessage),
189
+ /** Request an access token for the File belonging to the Conversation. */
190
+ getFileAccessToken: this.requestFunctionFactory(descriptors.conversationGetFileAccessToken),
191
191
  };
192
192
  /** The cronjob API allows you to manage cronjobs within a project. */
193
193
  this.cronjob = {
@@ -369,8 +369,6 @@ 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 File Service Reference for a Screenshot of a domain. */
373
- getScreenshotForDomain: this.requestFunctionFactory(descriptors.domainGetScreenshotForDomain),
374
372
  /** List the DomainOwnerships of a project. */
375
373
  listDomainOwnerships: this.requestFunctionFactory(descriptors.domainListDomainOwnerships),
376
374
  /** List Domains belonging to a Project. */
@@ -403,6 +401,8 @@ class MittwaldAPIV2Client extends api_client_commons_1.ApiClientBase {
403
401
  ingressRequestIngressAcmeCertificateIssuance: this.requestFunctionFactory(descriptors.ingressRequestIngressAcmeCertificateIssuance),
404
402
  /** Update the tls settings of an Ingress. */
405
403
  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 = {
@@ -113,8 +113,6 @@ 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">>;
118
116
  /** Get all conversation categories. */
119
117
  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">>;
120
118
  /** Request a file upload token for the conversation. */
@@ -277,8 +275,6 @@ export declare const domainGetDomain: OpenAPIOperation<RequestType<Simplify<null
277
275
  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
276
  /** Get a DomainOwnership. */
279
277
  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 File Service Reference for a Screenshot of a domain. */
281
- export declare const domainGetScreenshotForDomain: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScreenshotsNewest.Get.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScreenshotsNewest.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScreenshotsNewest.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScreenshotsNewest.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScreenshotsNewest.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScreenshotsNewest.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2DomainsDomainIdScreenshotsNewest.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
282
278
  /** List the DomainOwnerships of a project. */
283
279
  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">>;
284
280
  /** List Domains belonging to a Project. */
@@ -394,9 +390,9 @@ export declare const orderPreviewOrder: OpenAPIOperation<RequestType<Simplify<Mi
394
390
  /** Preview TariffChange. */
395
391
  export declare const orderPreviewTariffChange: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2TariffChangePreviews.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2TariffChangePreviews.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2TariffChangePreviews.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2TariffChangePreviews.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2TariffChangePreviews.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2TariffChangePreviews.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2TariffChangePreviews.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
396
392
  /** Get detailed performance data for a given domain and path. */
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">>;
393
+ 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
394
  /** List websites (specified as domain and path) from a project where performance data is available. */
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">>;
395
+ export declare const pageinsightsListPerformanceDataForProject: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdPageInsights.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdPageInsights.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdPageInsights.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdPageInsights.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdPageInsights.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdPageInsights.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdPageInsights.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
400
396
  /** Get a PasswordPolicy. */
401
397
  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
398
  /** Accept a ProjectInvite. */
@@ -587,3 +583,7 @@ export declare const userVerifyEmail: OpenAPIOperation<RequestType<Simplify<Mitt
587
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">>;
588
584
  /** Verify your registration. */
589
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">>;
586
+ /** Request an access token for the File belonging to the Conversation. */
587
+ 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">>;
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">>;
@@ -1,11 +1,11 @@
1
1
  "use strict";
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
- 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.fileGetFileTokenRules = exports.fileGetFileMeta = exports.fileCreateFile = exports.domainVerifyDomainOwnership = exports.domainUpdateDomainProjectId = exports.domainUpdateDomainContact = exports.domainUpdateDomainAuthCode = exports.domainResendDomainEmail = exports.domainListTlds = exports.domainListTldContactSchemas = exports.domainListDomains = exports.domainListDomainOwnerships = exports.domainGetScreenshotForDomain = 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.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 = exports.fileGetFileTypeRules = void 0;
7
- 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 = exports.projectCreateProject = void 0;
8
- 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 = exports.userChangePassword = void 0;
4
+ exports.databaseListMysqlUsers = 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.conversationUpdateConversation = exports.conversationGetConversation = exports.conversationGetCategory = exports.conversationCreateMessage = exports.conversationListMessagesByConversation = void 0;
5
+ exports.fileGetFile = 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 = 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.domainGetLatestScreenshot = exports.conversationGetFileAccessToken = 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/appinstallations/{appInstallationId}/actions/{action}",
@@ -336,12 +336,6 @@ exports.conversationUpdateConversation = {
336
336
  method: "PUT",
337
337
  operationId: "conversation-update-conversation",
338
338
  };
339
- /** Request an access token for the File belonging to the Conversation. */
340
- exports.conversationGetFileAccessToken = {
341
- path: "/v2/conversations/{conversationId}/files/{fileId}/access-token",
342
- method: "GET",
343
- operationId: "conversation-get-file-access-token",
344
- };
345
339
  /** Get all conversation categories. */
346
340
  exports.conversationListCategories = {
347
341
  path: "/v2/conversation-categories",
@@ -828,12 +822,6 @@ exports.domainGetDomainOwnership = {
828
822
  method: "GET",
829
823
  operationId: "domain-get-domain-ownership",
830
824
  };
831
- /** Get File Service Reference for a Screenshot of a domain. */
832
- exports.domainGetScreenshotForDomain = {
833
- path: "/v2/domains/{domainId}/screenshots/newest",
834
- method: "GET",
835
- operationId: "domain-get-screenshot-for-domain",
836
- };
837
825
  /** List the DomainOwnerships of a project. */
838
826
  exports.domainListDomainOwnerships = {
839
827
  path: "/v2/projects/{projectId}/domain-ownerships",
@@ -1178,13 +1166,13 @@ exports.orderPreviewTariffChange = {
1178
1166
  };
1179
1167
  /** Get detailed performance data for a given domain and path. */
1180
1168
  exports.pageinsightsGetPerformanceData = {
1181
- path: "/v2/pageinsights",
1169
+ path: "/v2/page-insights",
1182
1170
  method: "GET",
1183
1171
  operationId: "pageinsights-get-performance-data",
1184
1172
  };
1185
1173
  /** List websites (specified as domain and path) from a project where performance data is available. */
1186
1174
  exports.pageinsightsListPerformanceDataForProject = {
1187
- path: "/v2/projects/{id}/pageinsights",
1175
+ path: "/v2/projects/{projectId}/page-insights",
1188
1176
  method: "GET",
1189
1177
  operationId: "pageinsights-list-performance-data-for-project",
1190
1178
  };
@@ -1758,3 +1746,15 @@ exports.userVerifyRegistration = {
1758
1746
  method: "POST",
1759
1747
  operationId: "user-verify-registration",
1760
1748
  };
1749
+ /** Request an access token for the File belonging to the Conversation. */
1750
+ exports.conversationGetFileAccessToken = {
1751
+ path: "/v2/conversations/{conversationId}/files/{fileId}/access-token",
1752
+ method: "GET",
1753
+ operationId: "conversation-get-file-access-token",
1754
+ };
1755
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
1756
+ exports.domainGetLatestScreenshot = {
1757
+ path: "/v2/domains/{domainId}/latest-screenshot",
1758
+ method: "GET",
1759
+ operationId: "domain-get-latest-screenshot",
1760
+ };