@mittwald/api-client 3.1.7 → 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.
@@ -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;
@@ -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. */
@@ -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: {
@@ -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 = {
@@ -275,8 +275,6 @@ export declare const domainGetDomain: OpenAPIOperation<RequestType<Simplify<null
275
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">>;
276
276
  /** Get a DomainOwnership. */
277
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">>;
278
- /** Get File Service Reference for a Screenshot of a domain. */
279
- 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">>;
280
278
  /** List the DomainOwnerships of a project. */
281
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">>;
282
280
  /** List Domains belonging to a Project. */
@@ -392,9 +390,9 @@ export declare const orderPreviewOrder: OpenAPIOperation<RequestType<Simplify<Mi
392
390
  /** Preview TariffChange. */
393
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">>;
394
392
  /** Get detailed performance data for a given domain and path. */
395
- 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">>;
396
394
  /** List websites (specified as domain and path) from a project where performance data is available. */
397
- 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">>;
398
396
  /** Get a PasswordPolicy. */
399
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">>;
400
398
  /** Accept a ProjectInvite. */
@@ -488,7 +486,7 @@ export declare const sshUserGetSshUser: OpenAPIOperation<RequestType<Simplify<nu
488
486
  /** Delete an SSHUser. */
489
487
  export declare const sshUserDeleteSshUser: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
490
488
  /** Update an SSHUser. */
491
- export declare const sshUserUpdateSshUser: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
489
+ export declare const sshUserUpdateSshUser: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
492
490
  /** Add phone number and start verification process. */
493
491
  export declare const userAddPhoneNumber: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
494
492
  /** Remove phone number. */
@@ -587,3 +585,5 @@ export declare const userVerifyPhoneNumber: OpenAPIOperation<RequestType<Simplif
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
586
  /** Request an access token for the File belonging to the Conversation. */
589
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">>;
@@ -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.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.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.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 = 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.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 = exports.userCheckToken = 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}",
@@ -822,12 +822,6 @@ exports.domainGetDomainOwnership = {
822
822
  method: "GET",
823
823
  operationId: "domain-get-domain-ownership",
824
824
  };
825
- /** Get File Service Reference for a Screenshot of a domain. */
826
- exports.domainGetScreenshotForDomain = {
827
- path: "/v2/domains/{domainId}/screenshots/newest",
828
- method: "GET",
829
- operationId: "domain-get-screenshot-for-domain",
830
- };
831
825
  /** List the DomainOwnerships of a project. */
832
826
  exports.domainListDomainOwnerships = {
833
827
  path: "/v2/projects/{projectId}/domain-ownerships",
@@ -1172,13 +1166,13 @@ exports.orderPreviewTariffChange = {
1172
1166
  };
1173
1167
  /** Get detailed performance data for a given domain and path. */
1174
1168
  exports.pageinsightsGetPerformanceData = {
1175
- path: "/v2/pageinsights",
1169
+ path: "/v2/page-insights",
1176
1170
  method: "GET",
1177
1171
  operationId: "pageinsights-get-performance-data",
1178
1172
  };
1179
1173
  /** List websites (specified as domain and path) from a project where performance data is available. */
1180
1174
  exports.pageinsightsListPerformanceDataForProject = {
1181
- path: "/v2/projects/{id}/pageinsights",
1175
+ path: "/v2/projects/{projectId}/page-insights",
1182
1176
  method: "GET",
1183
1177
  operationId: "pageinsights-list-performance-data-for-project",
1184
1178
  };
@@ -1460,7 +1454,7 @@ exports.sshUserDeleteSshUser = {
1460
1454
  };
1461
1455
  /** Update an SSHUser. */
1462
1456
  exports.sshUserUpdateSshUser = {
1463
- path: "/v2/sshusers/{sshUserId}",
1457
+ path: "/v2/ssh-users/{sshUserId}",
1464
1458
  method: "PATCH",
1465
1459
  operationId: "ssh-user-update-ssh-user",
1466
1460
  };
@@ -1758,3 +1752,9 @@ exports.conversationGetFileAccessToken = {
1758
1752
  method: "GET",
1759
1753
  operationId: "conversation-get-file-access-token",
1760
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
+ };
@@ -546,10 +546,6 @@ export declare module MittwaldAPIV2 {
546
546
  type RequestData = InferredRequestData<typeof descriptors.domainGetDomainOwnership>;
547
547
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetDomainOwnership, TStatus>;
548
548
  }
549
- namespace DomainGetScreenshotForDomain {
550
- type RequestData = InferredRequestData<typeof descriptors.domainGetScreenshotForDomain>;
551
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetScreenshotForDomain, TStatus>;
552
- }
553
549
  namespace DomainListDomainOwnerships {
554
550
  type RequestData = InferredRequestData<typeof descriptors.domainListDomainOwnerships>;
555
551
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainListDomainOwnerships, TStatus>;
@@ -1170,6 +1166,10 @@ export declare module MittwaldAPIV2 {
1170
1166
  type RequestData = InferredRequestData<typeof descriptors.conversationGetFileAccessToken>;
1171
1167
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationGetFileAccessToken, TStatus>;
1172
1168
  }
1169
+ namespace DomainGetLatestScreenshot {
1170
+ type RequestData = InferredRequestData<typeof descriptors.domainGetLatestScreenshot>;
1171
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetLatestScreenshot, TStatus>;
1172
+ }
1173
1173
  }
1174
1174
  namespace Components {
1175
1175
  namespace Schemas {
@@ -8360,44 +8360,6 @@ export declare module MittwaldAPIV2 {
8360
8360
  }
8361
8361
  }
8362
8362
  namespace V2DomainsHandleSchemaDomainName { }
8363
- namespace V2DomainsDomainIdScreenshotsNewest {
8364
- namespace Get {
8365
- namespace Parameters {
8366
- type Path = {
8367
- domainId: string;
8368
- };
8369
- interface RequestBody {
8370
- domainName: string;
8371
- path: string;
8372
- }
8373
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
8374
- type Query = {};
8375
- }
8376
- namespace Responses {
8377
- namespace $200 {
8378
- namespace Content {
8379
- interface ApplicationJson {
8380
- references?: string[];
8381
- }
8382
- }
8383
- }
8384
- namespace $404 {
8385
- namespace Content {
8386
- interface ApplicationJson {
8387
- [k: string]: unknown;
8388
- }
8389
- }
8390
- }
8391
- namespace Default {
8392
- namespace Content {
8393
- interface ApplicationJson {
8394
- [k: string]: unknown;
8395
- }
8396
- }
8397
- }
8398
- }
8399
- }
8400
- }
8401
8363
  namespace V2ProjectsProjectIdDomainOwnerships {
8402
8364
  namespace Get {
8403
8365
  namespace Parameters {
@@ -10965,7 +10927,8 @@ export declare module MittwaldAPIV2 {
10965
10927
  }
10966
10928
  }
10967
10929
  }
10968
- namespace V2Pageinsights {
10930
+ namespace V2Pageinsights { }
10931
+ namespace V2PageInsights {
10969
10932
  namespace Get {
10970
10933
  namespace Parameters {
10971
10934
  type Path = {};
@@ -11022,11 +10985,12 @@ export declare module MittwaldAPIV2 {
11022
10985
  }
11023
10986
  }
11024
10987
  }
11025
- namespace V2ProjectsIdPageinsights {
10988
+ namespace V2ProjectsProjectIdPageinsights { }
10989
+ namespace V2ProjectsProjectIdPageInsights {
11026
10990
  namespace Get {
11027
10991
  namespace Parameters {
11028
10992
  type Path = {
11029
- id: string;
10993
+ projectId: string;
11030
10994
  };
11031
10995
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
11032
10996
  type Query = {
@@ -12858,8 +12822,6 @@ export declare module MittwaldAPIV2 {
12858
12822
  }
12859
12823
  }
12860
12824
  }
12861
- }
12862
- namespace V2SshusersSshUserId {
12863
12825
  namespace Patch {
12864
12826
  namespace Parameters {
12865
12827
  type Path = {
@@ -12898,6 +12860,7 @@ export declare module MittwaldAPIV2 {
12898
12860
  }
12899
12861
  }
12900
12862
  }
12863
+ namespace V2SshusersSshUserId { }
12901
12864
  namespace V2UsersUserIdPhone {
12902
12865
  namespace Post {
12903
12866
  namespace Parameters {
@@ -14754,5 +14717,44 @@ export declare module MittwaldAPIV2 {
14754
14717
  }
14755
14718
  }
14756
14719
  }
14720
+ namespace V2DomainsDomainIdScreenshotsNewest { }
14721
+ namespace V2DomainsDomainIdLatestScreenshot {
14722
+ namespace Get {
14723
+ namespace Parameters {
14724
+ type Path = {
14725
+ domainId: string;
14726
+ };
14727
+ interface RequestBody {
14728
+ domainName: string;
14729
+ path: string;
14730
+ }
14731
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14732
+ type Query = {};
14733
+ }
14734
+ namespace Responses {
14735
+ namespace $200 {
14736
+ namespace Content {
14737
+ interface ApplicationJson {
14738
+ reference?: string;
14739
+ }
14740
+ }
14741
+ }
14742
+ namespace $404 {
14743
+ namespace Content {
14744
+ interface ApplicationJson {
14745
+ [k: string]: unknown;
14746
+ }
14747
+ }
14748
+ }
14749
+ namespace Default {
14750
+ namespace Content {
14751
+ interface ApplicationJson {
14752
+ [k: string]: unknown;
14753
+ }
14754
+ }
14755
+ }
14756
+ }
14757
+ }
14758
+ }
14757
14759
  }
14758
14760
  }
@@ -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;
@@ -156,8 +156,6 @@ const buildDomainApi = (baseClient) => ({
156
156
  getDomain: new ApiCallAsyncResourceFactory(descriptors.domainGetDomain, baseClient.domain.getDomain).getApiResource,
157
157
  /** Get a DomainOwnership. */
158
158
  getDomainOwnership: new ApiCallAsyncResourceFactory(descriptors.domainGetDomainOwnership, baseClient.domain.getDomainOwnership).getApiResource,
159
- /** Get File Service Reference for a Screenshot of a domain. */
160
- getScreenshotForDomain: new ApiCallAsyncResourceFactory(descriptors.domainGetScreenshotForDomain, baseClient.domain.getScreenshotForDomain).getApiResource,
161
159
  /** List the DomainOwnerships of a project. */
162
160
  listDomainOwnerships: new ApiCallAsyncResourceFactory(descriptors.domainListDomainOwnerships, baseClient.domain.listDomainOwnerships).getApiResource,
163
161
  /** List Domains belonging to a Project. */
@@ -170,6 +168,8 @@ const buildDomainApi = (baseClient) => ({
170
168
  ingressListIngresses: new ApiCallAsyncResourceFactory(descriptors.ingressListIngresses, baseClient.domain.ingressListIngresses).getApiResource,
171
169
  /** Get an Ingress. */
172
170
  ingressGetIngress: new ApiCallAsyncResourceFactory(descriptors.ingressGetIngress, baseClient.domain.ingressGetIngress).getApiResource,
171
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
172
+ getLatestScreenshot: new ApiCallAsyncResourceFactory(descriptors.domainGetLatestScreenshot, baseClient.domain.getLatestScreenshot).getApiResource,
173
173
  });
174
174
  const buildFileApi = (baseClient) => ({
175
175
  /** Get a File's meta. */
@@ -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: {
@@ -341,8 +341,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
341
341
  deleteDomain: this.requestFunctionFactory(descriptors.domainDeleteDomain),
342
342
  /** Get a DomainOwnership. */
343
343
  getDomainOwnership: this.requestFunctionFactory(descriptors.domainGetDomainOwnership),
344
- /** Get File Service Reference for a Screenshot of a domain. */
345
- getScreenshotForDomain: this.requestFunctionFactory(descriptors.domainGetScreenshotForDomain),
346
344
  /** List the DomainOwnerships of a project. */
347
345
  listDomainOwnerships: this.requestFunctionFactory(descriptors.domainListDomainOwnerships),
348
346
  /** List Domains belonging to a Project. */
@@ -375,6 +373,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
375
373
  ingressRequestIngressAcmeCertificateIssuance: this.requestFunctionFactory(descriptors.ingressRequestIngressAcmeCertificateIssuance),
376
374
  /** Update the tls settings of an Ingress. */
377
375
  ingressUpdateIngressTls: this.requestFunctionFactory(descriptors.ingressUpdateIngressTls),
376
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
377
+ getLatestScreenshot: this.requestFunctionFactory(descriptors.domainGetLatestScreenshot),
378
378
  };
379
379
  /** The file API allows you to manage your files, for example for conversations attachments and avatar uploads. */
380
380
  file = {
@@ -275,8 +275,6 @@ export declare const domainGetDomain: OpenAPIOperation<RequestType<Simplify<null
275
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">>;
276
276
  /** Get a DomainOwnership. */
277
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">>;
278
- /** Get File Service Reference for a Screenshot of a domain. */
279
- 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">>;
280
278
  /** List the DomainOwnerships of a project. */
281
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">>;
282
280
  /** List Domains belonging to a Project. */
@@ -392,9 +390,9 @@ export declare const orderPreviewOrder: OpenAPIOperation<RequestType<Simplify<Mi
392
390
  /** Preview TariffChange. */
393
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">>;
394
392
  /** Get detailed performance data for a given domain and path. */
395
- 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">>;
396
394
  /** List websites (specified as domain and path) from a project where performance data is available. */
397
- 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">>;
398
396
  /** Get a PasswordPolicy. */
399
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">>;
400
398
  /** Accept a ProjectInvite. */
@@ -488,7 +486,7 @@ export declare const sshUserGetSshUser: OpenAPIOperation<RequestType<Simplify<nu
488
486
  /** Delete an SSHUser. */
489
487
  export declare const sshUserDeleteSshUser: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Delete.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
490
488
  /** Update an SSHUser. */
491
- export declare const sshUserUpdateSshUser: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshusersSshUserId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
489
+ export declare const sshUserUpdateSshUser: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2SshUsersSshUserId.Patch.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
492
490
  /** Add phone number and start verification process. */
493
491
  export declare const userAddPhoneNumber: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2UsersUserIdPhone.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
494
492
  /** Remove phone number. */
@@ -587,3 +585,5 @@ export declare const userVerifyPhoneNumber: OpenAPIOperation<RequestType<Simplif
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
586
  /** Request an access token for the File belonging to the Conversation. */
589
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">>;
@@ -814,12 +814,6 @@ export const domainGetDomainOwnership = {
814
814
  method: "GET",
815
815
  operationId: "domain-get-domain-ownership",
816
816
  };
817
- /** Get File Service Reference for a Screenshot of a domain. */
818
- export const domainGetScreenshotForDomain = {
819
- path: "/v2/domains/{domainId}/screenshots/newest",
820
- method: "GET",
821
- operationId: "domain-get-screenshot-for-domain",
822
- };
823
817
  /** List the DomainOwnerships of a project. */
824
818
  export const domainListDomainOwnerships = {
825
819
  path: "/v2/projects/{projectId}/domain-ownerships",
@@ -1164,13 +1158,13 @@ export const orderPreviewTariffChange = {
1164
1158
  };
1165
1159
  /** Get detailed performance data for a given domain and path. */
1166
1160
  export const pageinsightsGetPerformanceData = {
1167
- path: "/v2/pageinsights",
1161
+ path: "/v2/page-insights",
1168
1162
  method: "GET",
1169
1163
  operationId: "pageinsights-get-performance-data",
1170
1164
  };
1171
1165
  /** List websites (specified as domain and path) from a project where performance data is available. */
1172
1166
  export const pageinsightsListPerformanceDataForProject = {
1173
- path: "/v2/projects/{id}/pageinsights",
1167
+ path: "/v2/projects/{projectId}/page-insights",
1174
1168
  method: "GET",
1175
1169
  operationId: "pageinsights-list-performance-data-for-project",
1176
1170
  };
@@ -1452,7 +1446,7 @@ export const sshUserDeleteSshUser = {
1452
1446
  };
1453
1447
  /** Update an SSHUser. */
1454
1448
  export const sshUserUpdateSshUser = {
1455
- path: "/v2/sshusers/{sshUserId}",
1449
+ path: "/v2/ssh-users/{sshUserId}",
1456
1450
  method: "PATCH",
1457
1451
  operationId: "ssh-user-update-ssh-user",
1458
1452
  };
@@ -1750,3 +1744,9 @@ export const conversationGetFileAccessToken = {
1750
1744
  method: "GET",
1751
1745
  operationId: "conversation-get-file-access-token",
1752
1746
  };
1747
+ /** Get the latest screenshot's FileReference belonging to a Domain. */
1748
+ export const domainGetLatestScreenshot = {
1749
+ path: "/v2/domains/{domainId}/latest-screenshot",
1750
+ method: "GET",
1751
+ operationId: "domain-get-latest-screenshot",
1752
+ };
@@ -546,10 +546,6 @@ export declare module MittwaldAPIV2 {
546
546
  type RequestData = InferredRequestData<typeof descriptors.domainGetDomainOwnership>;
547
547
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetDomainOwnership, TStatus>;
548
548
  }
549
- namespace DomainGetScreenshotForDomain {
550
- type RequestData = InferredRequestData<typeof descriptors.domainGetScreenshotForDomain>;
551
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetScreenshotForDomain, TStatus>;
552
- }
553
549
  namespace DomainListDomainOwnerships {
554
550
  type RequestData = InferredRequestData<typeof descriptors.domainListDomainOwnerships>;
555
551
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainListDomainOwnerships, TStatus>;
@@ -1170,6 +1166,10 @@ export declare module MittwaldAPIV2 {
1170
1166
  type RequestData = InferredRequestData<typeof descriptors.conversationGetFileAccessToken>;
1171
1167
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationGetFileAccessToken, TStatus>;
1172
1168
  }
1169
+ namespace DomainGetLatestScreenshot {
1170
+ type RequestData = InferredRequestData<typeof descriptors.domainGetLatestScreenshot>;
1171
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetLatestScreenshot, TStatus>;
1172
+ }
1173
1173
  }
1174
1174
  namespace Components {
1175
1175
  namespace Schemas {
@@ -8360,44 +8360,6 @@ export declare module MittwaldAPIV2 {
8360
8360
  }
8361
8361
  }
8362
8362
  namespace V2DomainsHandleSchemaDomainName { }
8363
- namespace V2DomainsDomainIdScreenshotsNewest {
8364
- namespace Get {
8365
- namespace Parameters {
8366
- type Path = {
8367
- domainId: string;
8368
- };
8369
- interface RequestBody {
8370
- domainName: string;
8371
- path: string;
8372
- }
8373
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
8374
- type Query = {};
8375
- }
8376
- namespace Responses {
8377
- namespace $200 {
8378
- namespace Content {
8379
- interface ApplicationJson {
8380
- references?: string[];
8381
- }
8382
- }
8383
- }
8384
- namespace $404 {
8385
- namespace Content {
8386
- interface ApplicationJson {
8387
- [k: string]: unknown;
8388
- }
8389
- }
8390
- }
8391
- namespace Default {
8392
- namespace Content {
8393
- interface ApplicationJson {
8394
- [k: string]: unknown;
8395
- }
8396
- }
8397
- }
8398
- }
8399
- }
8400
- }
8401
8363
  namespace V2ProjectsProjectIdDomainOwnerships {
8402
8364
  namespace Get {
8403
8365
  namespace Parameters {
@@ -10965,7 +10927,8 @@ export declare module MittwaldAPIV2 {
10965
10927
  }
10966
10928
  }
10967
10929
  }
10968
- namespace V2Pageinsights {
10930
+ namespace V2Pageinsights { }
10931
+ namespace V2PageInsights {
10969
10932
  namespace Get {
10970
10933
  namespace Parameters {
10971
10934
  type Path = {};
@@ -11022,11 +10985,12 @@ export declare module MittwaldAPIV2 {
11022
10985
  }
11023
10986
  }
11024
10987
  }
11025
- namespace V2ProjectsIdPageinsights {
10988
+ namespace V2ProjectsProjectIdPageinsights { }
10989
+ namespace V2ProjectsProjectIdPageInsights {
11026
10990
  namespace Get {
11027
10991
  namespace Parameters {
11028
10992
  type Path = {
11029
- id: string;
10993
+ projectId: string;
11030
10994
  };
11031
10995
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
11032
10996
  type Query = {
@@ -12858,8 +12822,6 @@ export declare module MittwaldAPIV2 {
12858
12822
  }
12859
12823
  }
12860
12824
  }
12861
- }
12862
- namespace V2SshusersSshUserId {
12863
12825
  namespace Patch {
12864
12826
  namespace Parameters {
12865
12827
  type Path = {
@@ -12898,6 +12860,7 @@ export declare module MittwaldAPIV2 {
12898
12860
  }
12899
12861
  }
12900
12862
  }
12863
+ namespace V2SshusersSshUserId { }
12901
12864
  namespace V2UsersUserIdPhone {
12902
12865
  namespace Post {
12903
12866
  namespace Parameters {
@@ -14754,5 +14717,44 @@ export declare module MittwaldAPIV2 {
14754
14717
  }
14755
14718
  }
14756
14719
  }
14720
+ namespace V2DomainsDomainIdScreenshotsNewest { }
14721
+ namespace V2DomainsDomainIdLatestScreenshot {
14722
+ namespace Get {
14723
+ namespace Parameters {
14724
+ type Path = {
14725
+ domainId: string;
14726
+ };
14727
+ interface RequestBody {
14728
+ domainName: string;
14729
+ path: string;
14730
+ }
14731
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
14732
+ type Query = {};
14733
+ }
14734
+ namespace Responses {
14735
+ namespace $200 {
14736
+ namespace Content {
14737
+ interface ApplicationJson {
14738
+ reference?: string;
14739
+ }
14740
+ }
14741
+ }
14742
+ namespace $404 {
14743
+ namespace Content {
14744
+ interface ApplicationJson {
14745
+ [k: string]: unknown;
14746
+ }
14747
+ }
14748
+ }
14749
+ namespace Default {
14750
+ namespace Content {
14751
+ interface ApplicationJson {
14752
+ [k: string]: unknown;
14753
+ }
14754
+ }
14755
+ }
14756
+ }
14757
+ }
14758
+ }
14757
14759
  }
14758
14760
  }
package/dist/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '3.1.7';
1
+ export declare const MittwaldAPIClientVersion = '3.1.9';
package/dist/version.js CHANGED
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '3.1.7';
1
+ export const MittwaldAPIClientVersion = '3.1.9';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "3.1.7",
3
+ "version": "3.1.9",
4
4
  "description": "Auto-generated client for the mittwald API",
5
5
  "license": "MIT",
6
6
  "repository": "github:mittwald/api-client-js",