@mittwald/api-client 4.453.0 → 4.455.0
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/esm/generated/v2/client-react.js +4 -0
- package/dist/esm/generated/v2/client.js +6 -0
- package/dist/esm/generated/v2/descriptors.js +18 -0
- package/dist/esm/generated/v3-next/client-react.js +4 -0
- package/dist/esm/generated/v3-next/client.js +6 -0
- package/dist/esm/generated/v3-next/descriptors.js +18 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +39 -0
- package/dist/types/generated/v2/client.d.ts +241 -4
- package/dist/types/generated/v2/descriptors.d.ts +6 -0
- package/dist/types/generated/v2/types.d.ts +223 -8
- package/dist/types/generated/v3-next/client-react.d.ts +39 -0
- package/dist/types/generated/v3-next/client.d.ts +241 -4
- package/dist/types/generated/v3-next/descriptors.d.ts +6 -0
- package/dist/types/generated/v3-next/types.d.ts +218 -3
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -56,6 +56,8 @@ const buildAppApi = (baseClient) => ({
|
|
|
56
56
|
listUpdateCandidatesForAppversion: new ApiCallAsyncResourceFactory(descriptors.appListUpdateCandidatesForAppversion, baseClient.app.listUpdateCandidatesForAppversion).getApiResource,
|
|
57
57
|
/** Get runtime status belonging to an AppInstallation. */
|
|
58
58
|
retrieveStatus: new ApiCallAsyncResourceFactory(descriptors.appRetrieveStatus, baseClient.app.retrieveStatus).getApiResource,
|
|
59
|
+
/** Get an analysis of the error of an AppInstallation. */
|
|
60
|
+
getAppinstallationErrorAnalysis: new ApiCallAsyncResourceFactory(descriptors.appGetAppinstallationErrorAnalysis, baseClient.app.getAppinstallationErrorAnalysis).getApiResource,
|
|
59
61
|
});
|
|
60
62
|
const buildArticleApi = (baseClient) => ({
|
|
61
63
|
/** Get an Article. */
|
|
@@ -112,6 +114,8 @@ const buildContainerApi = (baseClient) => ({
|
|
|
112
114
|
listTemplates: new ApiCallAsyncResourceFactory(descriptors.containerListTemplates, baseClient.container.listTemplates).getApiResource,
|
|
113
115
|
/** List Volumes belonging to a Project. */
|
|
114
116
|
listVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListVolumes, baseClient.container.listVolumes).getApiResource,
|
|
117
|
+
/** Get an analysis of the logs belonging to a Service. */
|
|
118
|
+
getServiceLogsAnalysis: new ApiCallAsyncResourceFactory(descriptors.containerGetServiceLogsAnalysis, baseClient.container.getServiceLogsAnalysis).getApiResource,
|
|
115
119
|
});
|
|
116
120
|
const buildContractApi = (baseClient) => ({
|
|
117
121
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
@@ -97,6 +97,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
97
97
|
retrieveStatus: this.requestFunctionFactory(descriptors.appRetrieveStatus),
|
|
98
98
|
/** Remove linkage between an AppInstallation and a Database. */
|
|
99
99
|
unlinkDatabase: this.requestFunctionFactory(descriptors.appUnlinkDatabase),
|
|
100
|
+
/** Get an analysis of the error of an AppInstallation. */
|
|
101
|
+
getAppinstallationErrorAnalysis: this.requestFunctionFactory(descriptors.appGetAppinstallationErrorAnalysis),
|
|
100
102
|
};
|
|
101
103
|
/** The article API allows you to read article information. */
|
|
102
104
|
article = {
|
|
@@ -204,6 +206,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
204
206
|
startService: this.requestFunctionFactory(descriptors.containerStartService),
|
|
205
207
|
/** Stop a started Service. */
|
|
206
208
|
stopService: this.requestFunctionFactory(descriptors.containerStopService),
|
|
209
|
+
/** Get an analysis of the logs belonging to a Service. */
|
|
210
|
+
getServiceLogsAnalysis: this.requestFunctionFactory(descriptors.containerGetServiceLogsAnalysis),
|
|
207
211
|
};
|
|
208
212
|
/** The contract API allows you to manage your contracts and orders */
|
|
209
213
|
contract = {
|
|
@@ -505,6 +509,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
505
509
|
removeAvatar: this.requestFunctionFactory(descriptors.customerRemoveAvatar),
|
|
506
510
|
/** Resend the mail for a CustomerInvite. */
|
|
507
511
|
resendCustomerInviteMail: this.requestFunctionFactory(descriptors.customerResendCustomerInviteMail),
|
|
512
|
+
/** Set how the customer became aware of mittwald. */
|
|
513
|
+
setCustomerReferralSource: this.requestFunctionFactory(descriptors.customerSetCustomerReferralSource),
|
|
508
514
|
};
|
|
509
515
|
/** The database API allows you to manage your databases, like MySQL and Redis databases. */
|
|
510
516
|
database = {
|
|
@@ -2842,3 +2842,21 @@ export const aiHostingProjectGetPlans = {
|
|
|
2842
2842
|
method: "GET",
|
|
2843
2843
|
operationId: "ai-hosting-project-get-plans",
|
|
2844
2844
|
};
|
|
2845
|
+
/** Get an analysis of the logs belonging to a Service. */
|
|
2846
|
+
export const containerGetServiceLogsAnalysis = {
|
|
2847
|
+
path: "/v2/stacks/{stackId}/services/{serviceId}/log-analysis",
|
|
2848
|
+
method: "GET",
|
|
2849
|
+
operationId: "container-get-service-logs-analysis",
|
|
2850
|
+
};
|
|
2851
|
+
/** Get an analysis of the error of an AppInstallation. */
|
|
2852
|
+
export const appGetAppinstallationErrorAnalysis = {
|
|
2853
|
+
path: "/v2/app-installations/{appInstallationId}/error-analysis",
|
|
2854
|
+
method: "GET",
|
|
2855
|
+
operationId: "app-get-appinstallation-error-analysis",
|
|
2856
|
+
};
|
|
2857
|
+
/** Set how the customer became aware of mittwald. */
|
|
2858
|
+
export const customerSetCustomerReferralSource = {
|
|
2859
|
+
path: "/v2/customers/{customerId}/referral-source",
|
|
2860
|
+
method: "PUT",
|
|
2861
|
+
operationId: "customer-set-customer-referral-source",
|
|
2862
|
+
};
|
|
@@ -56,6 +56,8 @@ const buildAppApi = (baseClient) => ({
|
|
|
56
56
|
listUpdateCandidatesForAppversion: new ApiCallAsyncResourceFactory(descriptors.appListUpdateCandidatesForAppversion, baseClient.app.listUpdateCandidatesForAppversion).getApiResource,
|
|
57
57
|
/** Get runtime status belonging to an AppInstallation. */
|
|
58
58
|
retrieveStatus: new ApiCallAsyncResourceFactory(descriptors.appRetrieveStatus, baseClient.app.retrieveStatus).getApiResource,
|
|
59
|
+
/** Get an analysis of the error of an AppInstallation. */
|
|
60
|
+
getAppinstallationErrorAnalysis: new ApiCallAsyncResourceFactory(descriptors.appGetAppinstallationErrorAnalysis, baseClient.app.getAppinstallationErrorAnalysis).getApiResource,
|
|
59
61
|
});
|
|
60
62
|
const buildArticleApi = (baseClient) => ({
|
|
61
63
|
/** Get an Article. */
|
|
@@ -112,6 +114,8 @@ const buildContainerApi = (baseClient) => ({
|
|
|
112
114
|
listTemplates: new ApiCallAsyncResourceFactory(descriptors.containerListTemplates, baseClient.container.listTemplates).getApiResource,
|
|
113
115
|
/** List Volumes belonging to a Project. */
|
|
114
116
|
listVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListVolumes, baseClient.container.listVolumes).getApiResource,
|
|
117
|
+
/** Get an analysis of the logs belonging to a Service. */
|
|
118
|
+
getServiceLogsAnalysis: new ApiCallAsyncResourceFactory(descriptors.containerGetServiceLogsAnalysis, baseClient.container.getServiceLogsAnalysis).getApiResource,
|
|
115
119
|
});
|
|
116
120
|
const buildContractApi = (baseClient) => ({
|
|
117
121
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
@@ -97,6 +97,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
97
97
|
retrieveStatus: this.requestFunctionFactory(descriptors.appRetrieveStatus),
|
|
98
98
|
/** Remove linkage between an AppInstallation and a Database. */
|
|
99
99
|
unlinkDatabase: this.requestFunctionFactory(descriptors.appUnlinkDatabase),
|
|
100
|
+
/** Get an analysis of the error of an AppInstallation. */
|
|
101
|
+
getAppinstallationErrorAnalysis: this.requestFunctionFactory(descriptors.appGetAppinstallationErrorAnalysis),
|
|
100
102
|
};
|
|
101
103
|
/** The article API allows you to read article information. */
|
|
102
104
|
article = {
|
|
@@ -204,6 +206,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
204
206
|
startService: this.requestFunctionFactory(descriptors.containerStartService),
|
|
205
207
|
/** Stop a started Service. */
|
|
206
208
|
stopService: this.requestFunctionFactory(descriptors.containerStopService),
|
|
209
|
+
/** Get an analysis of the logs belonging to a Service. */
|
|
210
|
+
getServiceLogsAnalysis: this.requestFunctionFactory(descriptors.containerGetServiceLogsAnalysis),
|
|
207
211
|
};
|
|
208
212
|
/** The contract API allows you to manage your contracts and orders */
|
|
209
213
|
contract = {
|
|
@@ -505,6 +509,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
505
509
|
removeAvatar: this.requestFunctionFactory(descriptors.customerRemoveAvatar),
|
|
506
510
|
/** Resend the mail for a CustomerInvite. */
|
|
507
511
|
resendCustomerInviteMail: this.requestFunctionFactory(descriptors.customerResendCustomerInviteMail),
|
|
512
|
+
/** Set how the customer became aware of mittwald. */
|
|
513
|
+
setCustomerReferralSource: this.requestFunctionFactory(descriptors.customerSetCustomerReferralSource),
|
|
508
514
|
};
|
|
509
515
|
/** The database API allows you to manage your databases, like MySQL and Redis databases. */
|
|
510
516
|
database = {
|
|
@@ -2842,3 +2842,21 @@ export const aiHostingProjectGetPlans = {
|
|
|
2842
2842
|
method: "GET",
|
|
2843
2843
|
operationId: "ai-hosting-project-get-plans",
|
|
2844
2844
|
};
|
|
2845
|
+
/** Get an analysis of the logs belonging to a Service. */
|
|
2846
|
+
export const containerGetServiceLogsAnalysis = {
|
|
2847
|
+
path: "/v3-next/stacks/{stackId}/services/{serviceId}/log-analysis",
|
|
2848
|
+
method: "GET",
|
|
2849
|
+
operationId: "container-get-service-logs-analysis",
|
|
2850
|
+
};
|
|
2851
|
+
/** Get an analysis of the error of an AppInstallation. */
|
|
2852
|
+
export const appGetAppinstallationErrorAnalysis = {
|
|
2853
|
+
path: "/v3-next/app-installations/{appInstallationId}/error-analysis",
|
|
2854
|
+
method: "GET",
|
|
2855
|
+
operationId: "app-get-appinstallation-error-analysis",
|
|
2856
|
+
};
|
|
2857
|
+
/** Set how the customer became aware of mittwald. */
|
|
2858
|
+
export const customerSetCustomerReferralSource = {
|
|
2859
|
+
path: "/v3-next/customers/{customerId}/referral-source",
|
|
2860
|
+
method: "PUT",
|
|
2861
|
+
operationId: "customer-set-customer-referral-source",
|
|
2862
|
+
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.454.0';
|
|
@@ -10,6 +10,9 @@ declare const buildAiHostingApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
10
10
|
queryParameters?: {
|
|
11
11
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
12
12
|
planId?: string | undefined;
|
|
13
|
+
limit?: number | undefined;
|
|
14
|
+
skip?: number | undefined;
|
|
15
|
+
page?: number | undefined;
|
|
13
16
|
} | undefined;
|
|
14
17
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingKey[]>;
|
|
15
18
|
/** Get a key of a customer. */
|
|
@@ -55,6 +58,9 @@ declare const buildAiHostingApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
55
58
|
queryParameters?: {
|
|
56
59
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
57
60
|
planId?: string | undefined;
|
|
61
|
+
limit?: number | undefined;
|
|
62
|
+
skip?: number | undefined;
|
|
63
|
+
page?: number | undefined;
|
|
58
64
|
} | undefined;
|
|
59
65
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingKey[]>;
|
|
60
66
|
/** Get a key of a project. */
|
|
@@ -122,6 +128,9 @@ declare const buildAiHostingApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
122
128
|
queryParameters?: {
|
|
123
129
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
124
130
|
topUsageCount?: number | undefined;
|
|
131
|
+
limit?: number | undefined;
|
|
132
|
+
skip?: number | undefined;
|
|
133
|
+
page?: number | undefined;
|
|
125
134
|
} | undefined;
|
|
126
135
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
127
136
|
modelTermsApprovalRequired: boolean;
|
|
@@ -148,6 +157,12 @@ declare const buildAiHostingApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
148
157
|
headers?: {
|
|
149
158
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
150
159
|
} | undefined;
|
|
160
|
+
queryParameters?: {
|
|
161
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
162
|
+
limit?: number | undefined;
|
|
163
|
+
skip?: number | undefined;
|
|
164
|
+
page?: number | undefined;
|
|
165
|
+
} | undefined;
|
|
151
166
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
152
167
|
modelTermsApprovalRequired: boolean;
|
|
153
168
|
plans: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingProjectPlan[];
|
|
@@ -403,6 +418,17 @@ declare const buildAppApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
403
418
|
state: "running" | "stopped" | "exited";
|
|
404
419
|
uptimeSeconds?: number | undefined;
|
|
405
420
|
}>;
|
|
421
|
+
/** Get an analysis of the error of an AppInstallation. */
|
|
422
|
+
getAppinstallationErrorAnalysis: (conf: {
|
|
423
|
+
appInstallationId: string;
|
|
424
|
+
headers?: {
|
|
425
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
426
|
+
"x-access-token"?: string | undefined;
|
|
427
|
+
} | undefined;
|
|
428
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
429
|
+
recommendation?: string | undefined;
|
|
430
|
+
summary: string;
|
|
431
|
+
}>;
|
|
406
432
|
};
|
|
407
433
|
declare const buildArticleApi: (baseClient: MittwaldAPIV2Client) => {
|
|
408
434
|
/** Get an Article. */
|
|
@@ -884,6 +910,18 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
884
910
|
page?: number | undefined;
|
|
885
911
|
} | undefined;
|
|
886
912
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[]>;
|
|
913
|
+
/** Get an analysis of the logs belonging to a Service. */
|
|
914
|
+
getServiceLogsAnalysis: (conf: {
|
|
915
|
+
stackId: string;
|
|
916
|
+
serviceId: string;
|
|
917
|
+
headers?: {
|
|
918
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
919
|
+
"x-access-token"?: string | undefined;
|
|
920
|
+
} | undefined;
|
|
921
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
922
|
+
recommendation?: string | undefined;
|
|
923
|
+
summary: string;
|
|
924
|
+
}>;
|
|
887
925
|
};
|
|
888
926
|
declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
889
927
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
@@ -1911,6 +1949,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
1911
1949
|
}) => import("@mittwald/react-use-promise").AsyncResource<{
|
|
1912
1950
|
message: string;
|
|
1913
1951
|
recommendation?: string | undefined;
|
|
1952
|
+
summary: string;
|
|
1914
1953
|
}>;
|
|
1915
1954
|
/** Get a CronjobExecution. */
|
|
1916
1955
|
getExecution: (conf: {
|
|
@@ -50,6 +50,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
50
50
|
queryParameters?: {
|
|
51
51
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
52
52
|
planId?: string | undefined;
|
|
53
|
+
limit?: number | undefined;
|
|
54
|
+
skip?: number | undefined;
|
|
55
|
+
page?: number | undefined;
|
|
53
56
|
} | undefined;
|
|
54
57
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
55
58
|
headers?: Partial<{
|
|
@@ -62,6 +65,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
62
65
|
} & {
|
|
63
66
|
queryParameters: {
|
|
64
67
|
planId?: string | undefined;
|
|
68
|
+
limit?: number | undefined;
|
|
69
|
+
skip?: number | undefined;
|
|
70
|
+
page?: number | undefined;
|
|
65
71
|
} & Partial<{
|
|
66
72
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
67
73
|
}>;
|
|
@@ -84,6 +90,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
84
90
|
} & {
|
|
85
91
|
queryParameters: {
|
|
86
92
|
planId?: string | undefined;
|
|
93
|
+
limit?: number | undefined;
|
|
94
|
+
skip?: number | undefined;
|
|
95
|
+
page?: number | undefined;
|
|
87
96
|
} & Partial<{
|
|
88
97
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
89
98
|
}>;
|
|
@@ -478,6 +487,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
478
487
|
queryParameters?: {
|
|
479
488
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
480
489
|
planId?: string | undefined;
|
|
490
|
+
limit?: number | undefined;
|
|
491
|
+
skip?: number | undefined;
|
|
492
|
+
page?: number | undefined;
|
|
481
493
|
} | undefined;
|
|
482
494
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
483
495
|
headers?: Partial<{
|
|
@@ -490,6 +502,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
490
502
|
} & {
|
|
491
503
|
queryParameters: {
|
|
492
504
|
planId?: string | undefined;
|
|
505
|
+
limit?: number | undefined;
|
|
506
|
+
skip?: number | undefined;
|
|
507
|
+
page?: number | undefined;
|
|
493
508
|
} & Partial<{
|
|
494
509
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
495
510
|
}>;
|
|
@@ -512,6 +527,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
512
527
|
} & {
|
|
513
528
|
queryParameters: {
|
|
514
529
|
planId?: string | undefined;
|
|
530
|
+
limit?: number | undefined;
|
|
531
|
+
skip?: number | undefined;
|
|
532
|
+
page?: number | undefined;
|
|
515
533
|
} & Partial<{
|
|
516
534
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
517
535
|
}>;
|
|
@@ -1076,6 +1094,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1076
1094
|
queryParameters?: {
|
|
1077
1095
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1078
1096
|
topUsageCount?: number | undefined;
|
|
1097
|
+
limit?: number | undefined;
|
|
1098
|
+
skip?: number | undefined;
|
|
1099
|
+
page?: number | undefined;
|
|
1079
1100
|
} | undefined;
|
|
1080
1101
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
1081
1102
|
headers?: Partial<{
|
|
@@ -1088,6 +1109,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1088
1109
|
} & {
|
|
1089
1110
|
queryParameters: {
|
|
1090
1111
|
topUsageCount?: number | undefined;
|
|
1112
|
+
limit?: number | undefined;
|
|
1113
|
+
skip?: number | undefined;
|
|
1114
|
+
page?: number | undefined;
|
|
1091
1115
|
} & Partial<{
|
|
1092
1116
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1093
1117
|
}>;
|
|
@@ -1113,6 +1137,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1113
1137
|
} & {
|
|
1114
1138
|
queryParameters: {
|
|
1115
1139
|
topUsageCount?: number | undefined;
|
|
1140
|
+
limit?: number | undefined;
|
|
1141
|
+
skip?: number | undefined;
|
|
1142
|
+
page?: number | undefined;
|
|
1116
1143
|
} & Partial<{
|
|
1117
1144
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1118
1145
|
}>;
|
|
@@ -1229,6 +1256,12 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1229
1256
|
headers?: {
|
|
1230
1257
|
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1231
1258
|
} | undefined;
|
|
1259
|
+
queryParameters?: {
|
|
1260
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
1261
|
+
limit?: number | undefined;
|
|
1262
|
+
skip?: number | undefined;
|
|
1263
|
+
page?: number | undefined;
|
|
1264
|
+
} | undefined;
|
|
1232
1265
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
1233
1266
|
headers?: Partial<{
|
|
1234
1267
|
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
@@ -1237,6 +1270,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1237
1270
|
pathParameters: {
|
|
1238
1271
|
projectId: string;
|
|
1239
1272
|
};
|
|
1273
|
+
} & {
|
|
1274
|
+
queryParameters: {
|
|
1275
|
+
limit?: number | undefined;
|
|
1276
|
+
skip?: number | undefined;
|
|
1277
|
+
page?: number | undefined;
|
|
1278
|
+
} & Partial<{
|
|
1279
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1280
|
+
}>;
|
|
1240
1281
|
}, import("@mittwald/api-client-commons").Response<{
|
|
1241
1282
|
modelTermsApprovalRequired: boolean;
|
|
1242
1283
|
plans: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingProjectPlan[];
|
|
@@ -1256,6 +1297,14 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
1256
1297
|
pathParameters: {
|
|
1257
1298
|
projectId: string;
|
|
1258
1299
|
};
|
|
1300
|
+
} & {
|
|
1301
|
+
queryParameters: {
|
|
1302
|
+
limit?: number | undefined;
|
|
1303
|
+
skip?: number | undefined;
|
|
1304
|
+
page?: number | undefined;
|
|
1305
|
+
} & Partial<{
|
|
1306
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
1307
|
+
}>;
|
|
1259
1308
|
}, import("@mittwald/api-client-commons").Response<{
|
|
1260
1309
|
modelTermsApprovalRequired: boolean;
|
|
1261
1310
|
plans: import("./types.js").MittwaldAPIV2.Components.Schemas.AihostingProjectPlan[];
|
|
@@ -2651,6 +2700,60 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
2651
2700
|
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2652
2701
|
[x: string]: unknown;
|
|
2653
2702
|
}, 429, "application/json">>>;
|
|
2703
|
+
/** Get an analysis of the error of an AppInstallation. */
|
|
2704
|
+
getAppinstallationErrorAnalysis: (request: {
|
|
2705
|
+
appInstallationId: string;
|
|
2706
|
+
headers?: {
|
|
2707
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
2708
|
+
"x-access-token"?: string | undefined;
|
|
2709
|
+
} | undefined;
|
|
2710
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2711
|
+
headers?: Partial<{
|
|
2712
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2713
|
+
}>;
|
|
2714
|
+
} & {
|
|
2715
|
+
pathParameters: {
|
|
2716
|
+
appInstallationId: string;
|
|
2717
|
+
};
|
|
2718
|
+
} & {
|
|
2719
|
+
headers: {
|
|
2720
|
+
"x-access-token"?: string | undefined;
|
|
2721
|
+
} & Partial<{
|
|
2722
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2723
|
+
}>;
|
|
2724
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
2725
|
+
recommendation?: string | undefined;
|
|
2726
|
+
summary: string;
|
|
2727
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2728
|
+
[x: string]: unknown;
|
|
2729
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2730
|
+
[x: string]: unknown;
|
|
2731
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2732
|
+
[x: string]: unknown;
|
|
2733
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
2734
|
+
headers?: Partial<{
|
|
2735
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2736
|
+
}>;
|
|
2737
|
+
} & {
|
|
2738
|
+
pathParameters: {
|
|
2739
|
+
appInstallationId: string;
|
|
2740
|
+
};
|
|
2741
|
+
} & {
|
|
2742
|
+
headers: {
|
|
2743
|
+
"x-access-token"?: string | undefined;
|
|
2744
|
+
} & Partial<{
|
|
2745
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
2746
|
+
}>;
|
|
2747
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
2748
|
+
recommendation?: string | undefined;
|
|
2749
|
+
summary: string;
|
|
2750
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2751
|
+
[x: string]: unknown;
|
|
2752
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2753
|
+
[x: string]: unknown;
|
|
2754
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
2755
|
+
[x: string]: unknown;
|
|
2756
|
+
}, 429, "application/json">>>;
|
|
2654
2757
|
};
|
|
2655
2758
|
/** The article API allows you to read article information. */
|
|
2656
2759
|
readonly article: {
|
|
@@ -3735,9 +3838,9 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3735
3838
|
requestProjectBackupRestore: (request: {
|
|
3736
3839
|
projectBackupId: string;
|
|
3737
3840
|
data?: {
|
|
3738
|
-
databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
|
|
3841
|
+
databaseRestores?: [import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest, ...import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[]] | undefined;
|
|
3739
3842
|
pathRestore?: {
|
|
3740
|
-
sourcePaths: string[];
|
|
3843
|
+
sourcePaths: [string, ...string[]];
|
|
3741
3844
|
clearTargetPath?: boolean | undefined;
|
|
3742
3845
|
targetRestorePath?: string | undefined;
|
|
3743
3846
|
} | undefined;
|
|
@@ -3748,7 +3851,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3748
3851
|
} | undefined;
|
|
3749
3852
|
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3750
3853
|
data: {
|
|
3751
|
-
databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
|
|
3854
|
+
databaseRestores?: [import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest, ...import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[]] | undefined;
|
|
3752
3855
|
pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
|
|
3753
3856
|
};
|
|
3754
3857
|
} & {
|
|
@@ -3775,7 +3878,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3775
3878
|
[x: string]: unknown;
|
|
3776
3879
|
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
3777
3880
|
data: {
|
|
3778
|
-
databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
|
|
3881
|
+
databaseRestores?: [import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest, ...import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[]] | undefined;
|
|
3779
3882
|
pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
|
|
3780
3883
|
};
|
|
3781
3884
|
} & {
|
|
@@ -6427,6 +6530,71 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6427
6530
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6428
6531
|
[x: string]: unknown;
|
|
6429
6532
|
}, 500, "application/json">>>;
|
|
6533
|
+
/** Get an analysis of the logs belonging to a Service. */
|
|
6534
|
+
getServiceLogsAnalysis: (request: {
|
|
6535
|
+
stackId: string;
|
|
6536
|
+
serviceId: string;
|
|
6537
|
+
headers?: {
|
|
6538
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6539
|
+
"x-access-token"?: string | undefined;
|
|
6540
|
+
} | undefined;
|
|
6541
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6542
|
+
headers?: Partial<{
|
|
6543
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6544
|
+
}>;
|
|
6545
|
+
} & {
|
|
6546
|
+
pathParameters: {
|
|
6547
|
+
stackId: string;
|
|
6548
|
+
serviceId: string;
|
|
6549
|
+
};
|
|
6550
|
+
} & {
|
|
6551
|
+
headers: {
|
|
6552
|
+
"x-access-token"?: string | undefined;
|
|
6553
|
+
} & Partial<{
|
|
6554
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6555
|
+
}>;
|
|
6556
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
6557
|
+
recommendation?: string | undefined;
|
|
6558
|
+
summary: string;
|
|
6559
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6560
|
+
[x: string]: unknown;
|
|
6561
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6562
|
+
[x: string]: unknown;
|
|
6563
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6564
|
+
[x: string]: unknown;
|
|
6565
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6566
|
+
[x: string]: unknown;
|
|
6567
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6568
|
+
[x: string]: unknown;
|
|
6569
|
+
}, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6570
|
+
headers?: Partial<{
|
|
6571
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6572
|
+
}>;
|
|
6573
|
+
} & {
|
|
6574
|
+
pathParameters: {
|
|
6575
|
+
stackId: string;
|
|
6576
|
+
serviceId: string;
|
|
6577
|
+
};
|
|
6578
|
+
} & {
|
|
6579
|
+
headers: {
|
|
6580
|
+
"x-access-token"?: string | undefined;
|
|
6581
|
+
} & Partial<{
|
|
6582
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6583
|
+
}>;
|
|
6584
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
6585
|
+
recommendation?: string | undefined;
|
|
6586
|
+
summary: string;
|
|
6587
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6588
|
+
[x: string]: unknown;
|
|
6589
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6590
|
+
[x: string]: unknown;
|
|
6591
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6592
|
+
[x: string]: unknown;
|
|
6593
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6594
|
+
[x: string]: unknown;
|
|
6595
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6596
|
+
[x: string]: unknown;
|
|
6597
|
+
}, 500, "application/json">>>;
|
|
6430
6598
|
};
|
|
6431
6599
|
/** The contract API allows you to manage your contracts and orders */
|
|
6432
6600
|
readonly contract: {
|
|
@@ -14616,6 +14784,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14616
14784
|
}, import("@mittwald/api-client-commons").Response<{
|
|
14617
14785
|
message: string;
|
|
14618
14786
|
recommendation?: string | undefined;
|
|
14787
|
+
summary: string;
|
|
14619
14788
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
14620
14789
|
[x: string]: unknown;
|
|
14621
14790
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -14646,6 +14815,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
14646
14815
|
}, import("@mittwald/api-client-commons").Response<{
|
|
14647
14816
|
message: string;
|
|
14648
14817
|
recommendation?: string | undefined;
|
|
14818
|
+
summary: string;
|
|
14649
14819
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
14650
14820
|
[x: string]: unknown;
|
|
14651
14821
|
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -16346,6 +16516,73 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
16346
16516
|
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16347
16517
|
[x: string]: unknown;
|
|
16348
16518
|
}, 429, "application/json">>>;
|
|
16519
|
+
/** Set how the customer became aware of mittwald. */
|
|
16520
|
+
setCustomerReferralSource: (request: {
|
|
16521
|
+
data: {
|
|
16522
|
+
referralSource: string;
|
|
16523
|
+
};
|
|
16524
|
+
customerId: string;
|
|
16525
|
+
headers?: {
|
|
16526
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
16527
|
+
"x-access-token"?: string | undefined;
|
|
16528
|
+
} | undefined;
|
|
16529
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
16530
|
+
data: {
|
|
16531
|
+
referralSource: string;
|
|
16532
|
+
};
|
|
16533
|
+
} & {
|
|
16534
|
+
pathParameters: {
|
|
16535
|
+
customerId: string;
|
|
16536
|
+
};
|
|
16537
|
+
} & {
|
|
16538
|
+
headers?: Partial<{
|
|
16539
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16540
|
+
}>;
|
|
16541
|
+
} & {
|
|
16542
|
+
headers: {
|
|
16543
|
+
"x-access-token"?: string | undefined;
|
|
16544
|
+
} & Partial<{
|
|
16545
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16546
|
+
}>;
|
|
16547
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
16548
|
+
[x: string]: unknown;
|
|
16549
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16550
|
+
[x: string]: unknown;
|
|
16551
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16552
|
+
[x: string]: unknown;
|
|
16553
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16554
|
+
[x: string]: unknown;
|
|
16555
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16556
|
+
[x: string]: unknown;
|
|
16557
|
+
}, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
16558
|
+
data: {
|
|
16559
|
+
referralSource: string;
|
|
16560
|
+
};
|
|
16561
|
+
} & {
|
|
16562
|
+
pathParameters: {
|
|
16563
|
+
customerId: string;
|
|
16564
|
+
};
|
|
16565
|
+
} & {
|
|
16566
|
+
headers?: Partial<{
|
|
16567
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16568
|
+
}>;
|
|
16569
|
+
} & {
|
|
16570
|
+
headers: {
|
|
16571
|
+
"x-access-token"?: string | undefined;
|
|
16572
|
+
} & Partial<{
|
|
16573
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
16574
|
+
}>;
|
|
16575
|
+
}, import("@mittwald/api-client-commons").Response<{
|
|
16576
|
+
[x: string]: unknown;
|
|
16577
|
+
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16578
|
+
[x: string]: unknown;
|
|
16579
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16580
|
+
[x: string]: unknown;
|
|
16581
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16582
|
+
[x: string]: unknown;
|
|
16583
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
16584
|
+
[x: string]: unknown;
|
|
16585
|
+
}, 429, "application/json">>>;
|
|
16349
16586
|
};
|
|
16350
16587
|
/** The database API allows you to manage your databases, like MySQL and Redis databases. */
|
|
16351
16588
|
readonly database: {
|
|
@@ -951,3 +951,9 @@ export declare const aiHostingCustomerDeclareProfile: OpenAPIOperation<RequestTy
|
|
|
951
951
|
export declare const aiHostingProjectGetPlan: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingsPlanId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingsPlanId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingsPlanId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingsPlanId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingsPlanId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingsPlanId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingsPlanId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingsPlanId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostingsPlanId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
952
952
|
/** Get all ai hosting plans and usages of a project. */
|
|
953
953
|
export declare const aiHostingProjectGetPlans: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostings.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostings.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostings.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostings.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostings.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostings.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostings.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostings.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdAiHostings.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
954
|
+
/** Get an analysis of the logs belonging to a Service. */
|
|
955
|
+
export declare const containerGetServiceLogsAnalysis: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogAnalysis.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogAnalysis.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogAnalysis.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogAnalysis.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogAnalysis.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogAnalysis.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogAnalysis.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogAnalysis.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogAnalysis.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogAnalysis.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
956
|
+
/** Get an analysis of the error of an AppInstallation. */
|
|
957
|
+
export declare const appGetAppinstallationErrorAnalysis: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdErrorAnalysis.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdErrorAnalysis.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdErrorAnalysis.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdErrorAnalysis.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdErrorAnalysis.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdErrorAnalysis.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdErrorAnalysis.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2AppInstallationsAppInstallationIdErrorAnalysis.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
958
|
+
/** Set how the customer became aware of mittwald. */
|
|
959
|
+
export declare const customerSetCustomerReferralSource: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdReferralSource.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdReferralSource.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdReferralSource.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdReferralSource.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdReferralSource.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdReferralSource.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdReferralSource.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdReferralSource.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdReferralSource.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2CustomersCustomerIdReferralSource.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|