@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.
- package/dist/cjs/generated/v2/client-react.d.ts +21 -21
- package/dist/cjs/generated/v2/client-react.js +4 -4
- package/dist/cjs/generated/v2/client.d.ts +61 -61
- package/dist/cjs/generated/v2/client.js +4 -4
- package/dist/cjs/generated/v2/descriptors.d.ts +6 -6
- package/dist/cjs/generated/v2/descriptors.js +19 -19
- package/dist/cjs/generated/v2/types.d.ts +97 -94
- package/dist/esm/generated/v2/client-react.d.ts +21 -21
- package/dist/esm/generated/v2/client-react.js +4 -4
- package/dist/esm/generated/v2/client.d.ts +61 -61
- package/dist/esm/generated/v2/client.js +4 -4
- package/dist/esm/generated/v2/descriptors.d.ts +6 -6
- package/dist/esm/generated/v2/descriptors.js +14 -14
- package/dist/esm/generated/v2/types.d.ts +97 -94
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
|
@@ -222,10 +222,6 @@ export declare module MittwaldAPIV2 {
|
|
|
222
222
|
type RequestData = InferredRequestData<typeof descriptors.conversationUpdateConversation>;
|
|
223
223
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationUpdateConversation, TStatus>;
|
|
224
224
|
}
|
|
225
|
-
namespace ConversationGetFileAccessToken {
|
|
226
|
-
type RequestData = InferredRequestData<typeof descriptors.conversationGetFileAccessToken>;
|
|
227
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationGetFileAccessToken, TStatus>;
|
|
228
|
-
}
|
|
229
225
|
namespace ConversationListCategories {
|
|
230
226
|
type RequestData = InferredRequestData<typeof descriptors.conversationListCategories>;
|
|
231
227
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationListCategories, TStatus>;
|
|
@@ -550,10 +546,6 @@ export declare module MittwaldAPIV2 {
|
|
|
550
546
|
type RequestData = InferredRequestData<typeof descriptors.domainGetDomainOwnership>;
|
|
551
547
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetDomainOwnership, TStatus>;
|
|
552
548
|
}
|
|
553
|
-
namespace DomainGetScreenshotForDomain {
|
|
554
|
-
type RequestData = InferredRequestData<typeof descriptors.domainGetScreenshotForDomain>;
|
|
555
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainGetScreenshotForDomain, TStatus>;
|
|
556
|
-
}
|
|
557
549
|
namespace DomainListDomainOwnerships {
|
|
558
550
|
type RequestData = InferredRequestData<typeof descriptors.domainListDomainOwnerships>;
|
|
559
551
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.domainListDomainOwnerships, TStatus>;
|
|
@@ -1170,6 +1162,14 @@ export declare module MittwaldAPIV2 {
|
|
|
1170
1162
|
type RequestData = InferredRequestData<typeof descriptors.userVerifyRegistration>;
|
|
1171
1163
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.userVerifyRegistration, TStatus>;
|
|
1172
1164
|
}
|
|
1165
|
+
namespace ConversationGetFileAccessToken {
|
|
1166
|
+
type RequestData = InferredRequestData<typeof descriptors.conversationGetFileAccessToken>;
|
|
1167
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.conversationGetFileAccessToken, TStatus>;
|
|
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 {
|
|
@@ -5181,51 +5181,6 @@ export declare module MittwaldAPIV2 {
|
|
|
5181
5181
|
}
|
|
5182
5182
|
}
|
|
5183
5183
|
}
|
|
5184
|
-
namespace V2ConversationsConversationIdFilesFileIdAccessToken {
|
|
5185
|
-
namespace Get {
|
|
5186
|
-
namespace Parameters {
|
|
5187
|
-
type Path = {
|
|
5188
|
-
conversationId: string;
|
|
5189
|
-
fileId: string;
|
|
5190
|
-
};
|
|
5191
|
-
interface RequestBody {
|
|
5192
|
-
}
|
|
5193
|
-
type Header = {};
|
|
5194
|
-
type Query = {};
|
|
5195
|
-
}
|
|
5196
|
-
namespace Responses {
|
|
5197
|
-
namespace $200 {
|
|
5198
|
-
namespace Content {
|
|
5199
|
-
interface ApplicationJson {
|
|
5200
|
-
accessToken: string;
|
|
5201
|
-
expiresAt: string;
|
|
5202
|
-
}
|
|
5203
|
-
}
|
|
5204
|
-
}
|
|
5205
|
-
namespace $400 {
|
|
5206
|
-
namespace Content {
|
|
5207
|
-
interface ApplicationJson {
|
|
5208
|
-
[k: string]: unknown;
|
|
5209
|
-
}
|
|
5210
|
-
}
|
|
5211
|
-
}
|
|
5212
|
-
namespace $404 {
|
|
5213
|
-
namespace Content {
|
|
5214
|
-
interface ApplicationJson {
|
|
5215
|
-
[k: string]: unknown;
|
|
5216
|
-
}
|
|
5217
|
-
}
|
|
5218
|
-
}
|
|
5219
|
-
namespace Default {
|
|
5220
|
-
namespace Content {
|
|
5221
|
-
interface ApplicationJson {
|
|
5222
|
-
[k: string]: unknown;
|
|
5223
|
-
}
|
|
5224
|
-
}
|
|
5225
|
-
}
|
|
5226
|
-
}
|
|
5227
|
-
}
|
|
5228
|
-
}
|
|
5229
5184
|
namespace V2ConversationCategories {
|
|
5230
5185
|
namespace Get {
|
|
5231
5186
|
namespace Parameters {
|
|
@@ -8405,44 +8360,6 @@ export declare module MittwaldAPIV2 {
|
|
|
8405
8360
|
}
|
|
8406
8361
|
}
|
|
8407
8362
|
namespace V2DomainsHandleSchemaDomainName { }
|
|
8408
|
-
namespace V2DomainsDomainIdScreenshotsNewest {
|
|
8409
|
-
namespace Get {
|
|
8410
|
-
namespace Parameters {
|
|
8411
|
-
type Path = {
|
|
8412
|
-
domainId: string;
|
|
8413
|
-
};
|
|
8414
|
-
interface RequestBody {
|
|
8415
|
-
domainName: string;
|
|
8416
|
-
path: string;
|
|
8417
|
-
}
|
|
8418
|
-
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
8419
|
-
type Query = {};
|
|
8420
|
-
}
|
|
8421
|
-
namespace Responses {
|
|
8422
|
-
namespace $200 {
|
|
8423
|
-
namespace Content {
|
|
8424
|
-
interface ApplicationJson {
|
|
8425
|
-
references?: string[];
|
|
8426
|
-
}
|
|
8427
|
-
}
|
|
8428
|
-
}
|
|
8429
|
-
namespace $404 {
|
|
8430
|
-
namespace Content {
|
|
8431
|
-
interface ApplicationJson {
|
|
8432
|
-
[k: string]: unknown;
|
|
8433
|
-
}
|
|
8434
|
-
}
|
|
8435
|
-
}
|
|
8436
|
-
namespace Default {
|
|
8437
|
-
namespace Content {
|
|
8438
|
-
interface ApplicationJson {
|
|
8439
|
-
[k: string]: unknown;
|
|
8440
|
-
}
|
|
8441
|
-
}
|
|
8442
|
-
}
|
|
8443
|
-
}
|
|
8444
|
-
}
|
|
8445
|
-
}
|
|
8446
8363
|
namespace V2ProjectsProjectIdDomainOwnerships {
|
|
8447
8364
|
namespace Get {
|
|
8448
8365
|
namespace Parameters {
|
|
@@ -11010,7 +10927,8 @@ export declare module MittwaldAPIV2 {
|
|
|
11010
10927
|
}
|
|
11011
10928
|
}
|
|
11012
10929
|
}
|
|
11013
|
-
namespace V2Pageinsights {
|
|
10930
|
+
namespace V2Pageinsights { }
|
|
10931
|
+
namespace V2PageInsights {
|
|
11014
10932
|
namespace Get {
|
|
11015
10933
|
namespace Parameters {
|
|
11016
10934
|
type Path = {};
|
|
@@ -11067,11 +10985,12 @@ export declare module MittwaldAPIV2 {
|
|
|
11067
10985
|
}
|
|
11068
10986
|
}
|
|
11069
10987
|
}
|
|
11070
|
-
namespace
|
|
10988
|
+
namespace V2ProjectsProjectIdPageinsights { }
|
|
10989
|
+
namespace V2ProjectsProjectIdPageInsights {
|
|
11071
10990
|
namespace Get {
|
|
11072
10991
|
namespace Parameters {
|
|
11073
10992
|
type Path = {
|
|
11074
|
-
|
|
10993
|
+
projectId: string;
|
|
11075
10994
|
};
|
|
11076
10995
|
type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
|
|
11077
10996
|
type Query = {
|
|
@@ -14753,5 +14672,89 @@ export declare module MittwaldAPIV2 {
|
|
|
14753
14672
|
}
|
|
14754
14673
|
}
|
|
14755
14674
|
}
|
|
14675
|
+
namespace V2ConversationsConversationIdFilesFileIdAccessToken {
|
|
14676
|
+
namespace Get {
|
|
14677
|
+
namespace Parameters {
|
|
14678
|
+
type Path = {
|
|
14679
|
+
conversationId: string;
|
|
14680
|
+
fileId: string;
|
|
14681
|
+
};
|
|
14682
|
+
interface RequestBody {
|
|
14683
|
+
}
|
|
14684
|
+
type Header = {};
|
|
14685
|
+
type Query = {};
|
|
14686
|
+
}
|
|
14687
|
+
namespace Responses {
|
|
14688
|
+
namespace $200 {
|
|
14689
|
+
namespace Content {
|
|
14690
|
+
interface ApplicationJson {
|
|
14691
|
+
accessToken: string;
|
|
14692
|
+
expiresAt: string;
|
|
14693
|
+
}
|
|
14694
|
+
}
|
|
14695
|
+
}
|
|
14696
|
+
namespace $400 {
|
|
14697
|
+
namespace Content {
|
|
14698
|
+
interface ApplicationJson {
|
|
14699
|
+
[k: string]: unknown;
|
|
14700
|
+
}
|
|
14701
|
+
}
|
|
14702
|
+
}
|
|
14703
|
+
namespace $404 {
|
|
14704
|
+
namespace Content {
|
|
14705
|
+
interface ApplicationJson {
|
|
14706
|
+
[k: string]: unknown;
|
|
14707
|
+
}
|
|
14708
|
+
}
|
|
14709
|
+
}
|
|
14710
|
+
namespace Default {
|
|
14711
|
+
namespace Content {
|
|
14712
|
+
interface ApplicationJson {
|
|
14713
|
+
[k: string]: unknown;
|
|
14714
|
+
}
|
|
14715
|
+
}
|
|
14716
|
+
}
|
|
14717
|
+
}
|
|
14718
|
+
}
|
|
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
|
+
}
|
|
14756
14759
|
}
|
|
14757
14760
|
}
|
|
@@ -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
|
-
|
|
1400
|
+
projectId: string;
|
|
1401
1401
|
headers?: {
|
|
1402
1402
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1403
1403
|
"x-access-token"?: string | undefined;
|
|
@@ -84,10 +84,10 @@ const buildConversationApi = (baseClient) => ({
|
|
|
84
84
|
getCategory: new ApiCallAsyncResourceFactory(descriptors.conversationGetCategory, baseClient.conversation.getCategory).getApiResource,
|
|
85
85
|
/** Get a support conversation. */
|
|
86
86
|
getConversation: new ApiCallAsyncResourceFactory(descriptors.conversationGetConversation, baseClient.conversation.getConversation).getApiResource,
|
|
87
|
-
/** Request an access token for the File belonging to the Conversation. */
|
|
88
|
-
getFileAccessToken: new ApiCallAsyncResourceFactory(descriptors.conversationGetFileAccessToken, baseClient.conversation.getFileAccessToken).getApiResource,
|
|
89
87
|
/** Get all conversation categories. */
|
|
90
88
|
listCategories: new ApiCallAsyncResourceFactory(descriptors.conversationListCategories, baseClient.conversation.listCategories).getApiResource,
|
|
89
|
+
/** Request an access token for the File belonging to the Conversation. */
|
|
90
|
+
getFileAccessToken: new ApiCallAsyncResourceFactory(descriptors.conversationGetFileAccessToken, baseClient.conversation.getFileAccessToken).getApiResource,
|
|
91
91
|
});
|
|
92
92
|
const buildCronjobApi = (baseClient) => ({
|
|
93
93
|
/** List Cronjobs belonging to a Project. */
|
|
@@ -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. */
|
|
@@ -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
|
-
|
|
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
|
-
|
|
6910
|
+
projectId: string;
|
|
6911
6911
|
};
|
|
6912
6912
|
} & {
|
|
6913
6913
|
queryParameters: {
|
|
@@ -150,8 +150,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
150
150
|
getConversation: this.requestFunctionFactory(descriptors.conversationGetConversation),
|
|
151
151
|
/** Update the basic properties of the conversation. */
|
|
152
152
|
updateConversation: this.requestFunctionFactory(descriptors.conversationUpdateConversation),
|
|
153
|
-
/** Request an access token for the File belonging to the Conversation. */
|
|
154
|
-
getFileAccessToken: this.requestFunctionFactory(descriptors.conversationGetFileAccessToken),
|
|
155
153
|
/** Get all conversation categories. */
|
|
156
154
|
listCategories: this.requestFunctionFactory(descriptors.conversationListCategories),
|
|
157
155
|
/** Request a file upload token for the conversation. */
|
|
@@ -160,6 +158,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
160
158
|
setConversationStatus: this.requestFunctionFactory(descriptors.conversationSetConversationStatus),
|
|
161
159
|
/** Update the content of the message */
|
|
162
160
|
updateMessage: this.requestFunctionFactory(descriptors.conversationUpdateMessage),
|
|
161
|
+
/** Request an access token for the File belonging to the Conversation. */
|
|
162
|
+
getFileAccessToken: this.requestFunctionFactory(descriptors.conversationGetFileAccessToken),
|
|
163
163
|
};
|
|
164
164
|
/** The cronjob API allows you to manage cronjobs within a project. */
|
|
165
165
|
cronjob = {
|
|
@@ -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 = {
|
|
@@ -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.
|
|
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.
|
|
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">>;
|