@mittwald/api-client 4.403.0 → 4.405.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 +2 -2
- package/dist/esm/generated/v2/client.js +2 -2
- package/dist/esm/generated/v2/descriptors.js +6 -6
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +8 -7
- package/dist/types/generated/v2/client.d.ts +49 -47
- package/dist/types/generated/v2/descriptors.d.ts +2 -2
- package/dist/types/generated/v2/types.d.ts +128 -127
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -92,6 +92,8 @@ const buildContainerApi = (baseClient) => ({
|
|
|
92
92
|
getServiceLogs: new ApiCallAsyncResourceFactory(descriptors.containerGetServiceLogs, baseClient.container.getServiceLogs).getApiResource,
|
|
93
93
|
/** Get a Service belonging to a Stack. */
|
|
94
94
|
getService: new ApiCallAsyncResourceFactory(descriptors.containerGetService, baseClient.container.getService).getApiResource,
|
|
95
|
+
/** Get a Container Template icon. */
|
|
96
|
+
getTemplateIcon: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplateIcon, baseClient.container.getTemplateIcon).getApiResource,
|
|
95
97
|
/** Get a Container Template by ID. */
|
|
96
98
|
getTemplate: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplate, baseClient.container.getTemplate).getApiResource,
|
|
97
99
|
/** List Stacks belonging to the executing user. */
|
|
@@ -104,8 +106,6 @@ const buildContainerApi = (baseClient) => ({
|
|
|
104
106
|
listTemplates: new ApiCallAsyncResourceFactory(descriptors.containerListTemplates, baseClient.container.listTemplates).getApiResource,
|
|
105
107
|
/** List Volumes belonging to a Project. */
|
|
106
108
|
listVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListVolumes, baseClient.container.listVolumes).getApiResource,
|
|
107
|
-
/** Get a Container Template icon. */
|
|
108
|
-
getTemplateIcon: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplateIcon, baseClient.container.getTemplateIcon).getApiResource,
|
|
109
109
|
});
|
|
110
110
|
const buildContractApi = (baseClient) => ({
|
|
111
111
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
@@ -168,6 +168,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
168
168
|
getServiceLogs: this.requestFunctionFactory(descriptors.containerGetServiceLogs),
|
|
169
169
|
/** Get a Service belonging to a Stack. */
|
|
170
170
|
getService: this.requestFunctionFactory(descriptors.containerGetService),
|
|
171
|
+
/** Get a Container Template icon. */
|
|
172
|
+
getTemplateIcon: this.requestFunctionFactory(descriptors.containerGetTemplateIcon),
|
|
171
173
|
/** Get a Container Template by ID. */
|
|
172
174
|
getTemplate: this.requestFunctionFactory(descriptors.containerGetTemplate),
|
|
173
175
|
/** List Stacks belonging to the executing user. */
|
|
@@ -194,8 +196,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
194
196
|
startService: this.requestFunctionFactory(descriptors.containerStartService),
|
|
195
197
|
/** Stop a started Service. */
|
|
196
198
|
stopService: this.requestFunctionFactory(descriptors.containerStopService),
|
|
197
|
-
/** Get a Container Template icon. */
|
|
198
|
-
getTemplateIcon: this.requestFunctionFactory(descriptors.containerGetTemplateIcon),
|
|
199
199
|
};
|
|
200
200
|
/** The contract API allows you to manage your contracts and orders */
|
|
201
201
|
contract = {
|
|
@@ -448,6 +448,12 @@ export const containerGetService = {
|
|
|
448
448
|
method: "GET",
|
|
449
449
|
operationId: "container-get-service",
|
|
450
450
|
};
|
|
451
|
+
/** Get a Container Template icon. */
|
|
452
|
+
export const containerGetTemplateIcon = {
|
|
453
|
+
path: "/v2/container-templates/{templateId}/icon",
|
|
454
|
+
method: "GET",
|
|
455
|
+
operationId: "container-get-template-icon",
|
|
456
|
+
};
|
|
451
457
|
/** Get a Container Template by ID. */
|
|
452
458
|
export const containerGetTemplate = {
|
|
453
459
|
path: "/v2/container-templates/{templateId}",
|
|
@@ -2830,9 +2836,3 @@ export const verificationVerifyCompany = {
|
|
|
2830
2836
|
method: "POST",
|
|
2831
2837
|
operationId: "verification-verify-company",
|
|
2832
2838
|
};
|
|
2833
|
-
/** Get a Container Template icon. */
|
|
2834
|
-
export const containerGetTemplateIcon = {
|
|
2835
|
-
path: "/v2/container-templates/{templateId}/icon",
|
|
2836
|
-
method: "GET",
|
|
2837
|
-
operationId: "container-get-template-icon",
|
|
2838
|
-
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.404.0';
|
|
@@ -668,6 +668,13 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
668
668
|
status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
|
|
669
669
|
statusSetAt: string;
|
|
670
670
|
}>;
|
|
671
|
+
/** Get a Container Template icon. */
|
|
672
|
+
getTemplateIcon: (conf: {
|
|
673
|
+
templateId: string;
|
|
674
|
+
headers?: {
|
|
675
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
676
|
+
} | undefined;
|
|
677
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<string>;
|
|
671
678
|
/** Get a Container Template by ID. */
|
|
672
679
|
getTemplate: (conf: {
|
|
673
680
|
templateId: string;
|
|
@@ -711,6 +718,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
711
718
|
userInputs?: {
|
|
712
719
|
dataSource?: string;
|
|
713
720
|
defaultValue?: string;
|
|
721
|
+
label?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
714
722
|
name: string;
|
|
715
723
|
required: boolean;
|
|
716
724
|
validationSchema?: string;
|
|
@@ -799,13 +807,6 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
799
807
|
page?: number | undefined;
|
|
800
808
|
} | undefined;
|
|
801
809
|
}) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[]>;
|
|
802
|
-
/** Get a Container Template icon. */
|
|
803
|
-
getTemplateIcon: (conf: {
|
|
804
|
-
templateId: string;
|
|
805
|
-
headers?: {
|
|
806
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
807
|
-
} | undefined;
|
|
808
|
-
}) => import("@mittwald/react-use-promise").AsyncResource<string>;
|
|
809
810
|
};
|
|
810
811
|
declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
811
812
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
@@ -5087,6 +5087,53 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5087
5087
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5088
5088
|
[x: string]: unknown;
|
|
5089
5089
|
}, 500, "application/json">>>;
|
|
5090
|
+
/** Get a Container Template icon. */
|
|
5091
|
+
getTemplateIcon: (request: {
|
|
5092
|
+
templateId: string;
|
|
5093
|
+
headers?: {
|
|
5094
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
5095
|
+
} | undefined;
|
|
5096
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5097
|
+
headers?: Partial<{
|
|
5098
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5099
|
+
}>;
|
|
5100
|
+
} & {
|
|
5101
|
+
pathParameters: {
|
|
5102
|
+
templateId: string;
|
|
5103
|
+
};
|
|
5104
|
+
}, import("@mittwald/api-client-commons").Response<string, 200, "application/octet-stream"> | import("@mittwald/api-client-commons").Response<string, 200, "image/jpeg"> | import("@mittwald/api-client-commons").Response<string, 200, "image/png"> | import("@mittwald/api-client-commons").Response<string, 200, "image/svg+xml"> | import("@mittwald/api-client-commons").Response<{
|
|
5105
|
+
[x: string]: unknown;
|
|
5106
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5107
|
+
[x: string]: unknown;
|
|
5108
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5109
|
+
[x: string]: unknown;
|
|
5110
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5111
|
+
[x: string]: unknown;
|
|
5112
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5113
|
+
[x: string]: unknown;
|
|
5114
|
+
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5115
|
+
[x: string]: unknown;
|
|
5116
|
+
}, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
5117
|
+
headers?: Partial<{
|
|
5118
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
5119
|
+
}>;
|
|
5120
|
+
} & {
|
|
5121
|
+
pathParameters: {
|
|
5122
|
+
templateId: string;
|
|
5123
|
+
};
|
|
5124
|
+
}, import("@mittwald/api-client-commons").Response<string, 200, "application/octet-stream"> | import("@mittwald/api-client-commons").Response<string, 200, "image/jpeg"> | import("@mittwald/api-client-commons").Response<string, 200, "image/png"> | import("@mittwald/api-client-commons").Response<string, 200, "image/svg+xml"> | import("@mittwald/api-client-commons").Response<{
|
|
5125
|
+
[x: string]: unknown;
|
|
5126
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5127
|
+
[x: string]: unknown;
|
|
5128
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5129
|
+
[x: string]: unknown;
|
|
5130
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5131
|
+
[x: string]: unknown;
|
|
5132
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5133
|
+
[x: string]: unknown;
|
|
5134
|
+
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5135
|
+
[x: string]: unknown;
|
|
5136
|
+
}, 503, "application/json">>>;
|
|
5090
5137
|
/** Get a Container Template by ID. */
|
|
5091
5138
|
getTemplate: (request: {
|
|
5092
5139
|
templateId: string;
|
|
@@ -5138,6 +5185,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5138
5185
|
userInputs?: {
|
|
5139
5186
|
dataSource?: string;
|
|
5140
5187
|
defaultValue?: string;
|
|
5188
|
+
label?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5141
5189
|
name: string;
|
|
5142
5190
|
required: boolean;
|
|
5143
5191
|
validationSchema?: string;
|
|
@@ -5197,6 +5245,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5197
5245
|
userInputs?: {
|
|
5198
5246
|
dataSource?: string;
|
|
5199
5247
|
defaultValue?: string;
|
|
5248
|
+
label?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5200
5249
|
name: string;
|
|
5201
5250
|
required: boolean;
|
|
5202
5251
|
validationSchema?: string;
|
|
@@ -6073,53 +6122,6 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6073
6122
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6074
6123
|
[x: string]: unknown;
|
|
6075
6124
|
}, 500, "application/json">>>;
|
|
6076
|
-
/** Get a Container Template icon. */
|
|
6077
|
-
getTemplateIcon: (request: {
|
|
6078
|
-
templateId: string;
|
|
6079
|
-
headers?: {
|
|
6080
|
-
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
6081
|
-
} | undefined;
|
|
6082
|
-
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6083
|
-
headers?: Partial<{
|
|
6084
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6085
|
-
}>;
|
|
6086
|
-
} & {
|
|
6087
|
-
pathParameters: {
|
|
6088
|
-
templateId: string;
|
|
6089
|
-
};
|
|
6090
|
-
}, import("@mittwald/api-client-commons").Response<string, 200, "application/octet-stream"> | import("@mittwald/api-client-commons").Response<string, 200, "image/jpeg"> | import("@mittwald/api-client-commons").Response<string, 200, "image/png"> | import("@mittwald/api-client-commons").Response<string, 200, "image/svg+xml"> | import("@mittwald/api-client-commons").Response<{
|
|
6091
|
-
[x: string]: unknown;
|
|
6092
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6093
|
-
[x: string]: unknown;
|
|
6094
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6095
|
-
[x: string]: unknown;
|
|
6096
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6097
|
-
[x: string]: unknown;
|
|
6098
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6099
|
-
[x: string]: unknown;
|
|
6100
|
-
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6101
|
-
[x: string]: unknown;
|
|
6102
|
-
}, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
6103
|
-
headers?: Partial<{
|
|
6104
|
-
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
6105
|
-
}>;
|
|
6106
|
-
} & {
|
|
6107
|
-
pathParameters: {
|
|
6108
|
-
templateId: string;
|
|
6109
|
-
};
|
|
6110
|
-
}, import("@mittwald/api-client-commons").Response<string, 200, "application/octet-stream"> | import("@mittwald/api-client-commons").Response<string, 200, "image/jpeg"> | import("@mittwald/api-client-commons").Response<string, 200, "image/png"> | import("@mittwald/api-client-commons").Response<string, 200, "image/svg+xml"> | import("@mittwald/api-client-commons").Response<{
|
|
6111
|
-
[x: string]: unknown;
|
|
6112
|
-
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6113
|
-
[x: string]: unknown;
|
|
6114
|
-
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6115
|
-
[x: string]: unknown;
|
|
6116
|
-
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6117
|
-
[x: string]: unknown;
|
|
6118
|
-
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6119
|
-
[x: string]: unknown;
|
|
6120
|
-
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6121
|
-
[x: string]: unknown;
|
|
6122
|
-
}, 503, "application/json">>>;
|
|
6123
6125
|
};
|
|
6124
6126
|
/** The contract API allows you to manage your contracts and orders */
|
|
6125
6127
|
readonly contract: {
|
|
@@ -153,6 +153,8 @@ export declare const containerGetContainerImageConfig: OpenAPIOperation<RequestT
|
|
|
153
153
|
export declare const containerGetServiceLogs: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$200.Content.TextPlain>, 200, "text/plain"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
154
154
|
/** Get a Service belonging to a Stack. */
|
|
155
155
|
export declare const containerGetService: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
156
|
+
/** Get a Container Template icon. */
|
|
157
|
+
export declare const containerGetTemplateIcon: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$200.Content.ApplicationOctetStream>, 200, "application/octet-stream"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$200.Content.ImageJpeg>, 200, "image/jpeg"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$200.Content.ImagePng>, 200, "image/png"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$200.Content.ImageSvgXml>, 200, "image/svg+xml"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
156
158
|
/** Get a Container Template by ID. */
|
|
157
159
|
export declare const containerGetTemplate: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
158
160
|
/** List Stacks belonging to the executing user. */
|
|
@@ -947,5 +949,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
947
949
|
export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
948
950
|
/** Check if a company exists. */
|
|
949
951
|
export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
950
|
-
/** Get a Container Template icon. */
|
|
951
|
-
export declare const containerGetTemplateIcon: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$200.Content.ApplicationOctetStream>, 200, "application/octet-stream"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$200.Content.ImageJpeg>, 200, "image/jpeg"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$200.Content.ImagePng>, 200, "image/png"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$200.Content.ImageSvgXml>, 200, "image/svg+xml"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdIcon.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
@@ -302,6 +302,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
302
302
|
type RequestData = InferredRequestData<typeof descriptors.containerGetService>;
|
|
303
303
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetService, TStatus>;
|
|
304
304
|
}
|
|
305
|
+
namespace ContainerGetTemplateIcon {
|
|
306
|
+
type RequestData = InferredRequestData<typeof descriptors.containerGetTemplateIcon>;
|
|
307
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplateIcon, TStatus>;
|
|
308
|
+
}
|
|
305
309
|
namespace ContainerGetTemplate {
|
|
306
310
|
type RequestData = InferredRequestData<typeof descriptors.containerGetTemplate>;
|
|
307
311
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplate, TStatus>;
|
|
@@ -1890,10 +1894,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1890
1894
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1891
1895
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1892
1896
|
}
|
|
1893
|
-
namespace ContainerGetTemplateIcon {
|
|
1894
|
-
type RequestData = InferredRequestData<typeof descriptors.containerGetTemplateIcon>;
|
|
1895
|
-
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplateIcon, TStatus>;
|
|
1896
|
-
}
|
|
1897
1897
|
}
|
|
1898
1898
|
namespace Components {
|
|
1899
1899
|
namespace Schemas {
|
|
@@ -2170,6 +2170,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2170
2170
|
timeout: number;
|
|
2171
2171
|
urlTemplate?: string;
|
|
2172
2172
|
}
|
|
2173
|
+
/**
|
|
2174
|
+
* DesiredSystemSoftware describes the desired SystemSoftwareVersion and update policy to apply for a SystemSoftware of an AppInstallation.
|
|
2175
|
+
*/
|
|
2176
|
+
interface AppDesiredSystemSoftware {
|
|
2177
|
+
systemSoftwareVersion?: string;
|
|
2178
|
+
updatePolicy?: MittwaldAPIV2.Components.Schemas.AppSystemSoftwareUpdatePolicy;
|
|
2179
|
+
}
|
|
2173
2180
|
interface AppError {
|
|
2174
2181
|
message: string;
|
|
2175
2182
|
type: string;
|
|
@@ -2912,6 +2919,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2912
2919
|
userInputs?: {
|
|
2913
2920
|
dataSource?: string;
|
|
2914
2921
|
defaultValue?: string;
|
|
2922
|
+
label?: MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
2915
2923
|
name: string;
|
|
2916
2924
|
required: boolean;
|
|
2917
2925
|
validationSchema?: string;
|
|
@@ -2922,6 +2930,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2922
2930
|
version: string;
|
|
2923
2931
|
website?: string;
|
|
2924
2932
|
}
|
|
2933
|
+
interface ContainerTemplateTranslatedString {
|
|
2934
|
+
de: string;
|
|
2935
|
+
en: string;
|
|
2936
|
+
}
|
|
2925
2937
|
interface ContainerUpdateRegistry {
|
|
2926
2938
|
credentials?: MittwaldAPIV2.Components.Schemas.ContainerSetRegistryCredentials | null;
|
|
2927
2939
|
description?: string;
|
|
@@ -3933,6 +3945,25 @@ export declare namespace MittwaldAPIV2 {
|
|
|
3933
3945
|
value: string;
|
|
3934
3946
|
}
|
|
3935
3947
|
type DomainmigrationDNSRecordType = "A" | "AAAA" | "TXT" | "MX" | "CNAME" | "SRV" | "CAA" | "NS";
|
|
3948
|
+
/**
|
|
3949
|
+
* A non-blocking finding on an otherwise migratable domain: the domain migrates, but the named subject is skipped.
|
|
3950
|
+
*/
|
|
3951
|
+
interface DomainmigrationDomainMigrationWarning {
|
|
3952
|
+
reason: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainMigrationWarningReason;
|
|
3953
|
+
/**
|
|
3954
|
+
* The affected COAB entity, e.g. the skipped wildcard subdomain hostname.
|
|
3955
|
+
*/
|
|
3956
|
+
subject: string;
|
|
3957
|
+
}
|
|
3958
|
+
/**
|
|
3959
|
+
* Typed non-blocking migration warning: the domain migrates, but the named subject (`warnings[].subject`) needs attention during migration.
|
|
3960
|
+
*
|
|
3961
|
+
* * `subdomainInvalidIngressHostname`: a non-CNAME subdomain (provisioned as an ingress) does not match the `idn-hostname` format (e.g. a wildcard `*.example.de`); it is skipped and the rest of the domain migrates.
|
|
3962
|
+
* * `subdomainInvalidDnsName`: a CNAME subdomain (provisioned as a DNS subzone) does not match the `idn-dnsname` format; it is skipped and the rest of the domain migrates.
|
|
3963
|
+
* * `subdomainNsRecordsOverridden`: a subdomain carries its own NS records that differ from the domain's nameservers; per-subdomain delegation is not supported, so those NS records are dropped and the subdomain is served from the domain's nameservers (the rest of the subdomain still migrates).
|
|
3964
|
+
* * `registrantPhoneNeedsEpp`: the registry owner (registrant) phone is not EPP-conformant; a reformat-to-EPP heal will be attempted during migration. Non-blocking — the read path cannot tell whether the heal will ultimately succeed, so it only warns; the create path is the actual gate.
|
|
3965
|
+
*/
|
|
3966
|
+
type DomainmigrationDomainMigrationWarningReason = "subdomainInvalidIngressHostname" | "subdomainInvalidDnsName" | "subdomainNsRecordsOverridden" | "registrantPhoneNeedsEpp";
|
|
3936
3967
|
/**
|
|
3937
3968
|
* Typed reason a domain cannot be migrated:
|
|
3938
3969
|
*
|
|
@@ -4273,6 +4304,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4273
4304
|
nextScheduledExecution?: string;
|
|
4274
4305
|
state: MittwaldAPIV2.Components.Schemas.MarketplaceExtensionInstanceWebhookExecutionState;
|
|
4275
4306
|
}
|
|
4307
|
+
type MarketplaceExtensionInstanceWebhookExecutionState = "running" | "queued" | "halted" | "failed" | "successful";
|
|
4276
4308
|
interface MarketplaceExtensionSecret {
|
|
4277
4309
|
secretId: string;
|
|
4278
4310
|
usableUntil?: string;
|
|
@@ -5896,6 +5928,21 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5896
5928
|
sourceAppInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
5897
5929
|
};
|
|
5898
5930
|
}
|
|
5931
|
+
interface ActivitylogAppInstallationDesiredSystemSoftwareDeleted {
|
|
5932
|
+
changes: {
|
|
5933
|
+
after?: {
|
|
5934
|
+
softwareVersion?: string;
|
|
5935
|
+
} | null;
|
|
5936
|
+
before?: {
|
|
5937
|
+
softwareVersion?: string;
|
|
5938
|
+
} | null;
|
|
5939
|
+
};
|
|
5940
|
+
name: "app.systemsoftware-deleted";
|
|
5941
|
+
parameters: {
|
|
5942
|
+
software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5943
|
+
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5944
|
+
};
|
|
5945
|
+
}
|
|
5899
5946
|
interface ActivitylogAppInstallationDesiredSystemSoftwareSet {
|
|
5900
5947
|
changes: {
|
|
5901
5948
|
after?: {
|
|
@@ -5911,6 +5958,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5911
5958
|
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5912
5959
|
};
|
|
5913
5960
|
}
|
|
5961
|
+
interface ActivitylogAppInstallationRequested {
|
|
5962
|
+
name: "app.installation-requested";
|
|
5963
|
+
parameters: {
|
|
5964
|
+
appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
5965
|
+
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5966
|
+
};
|
|
5967
|
+
}
|
|
5914
5968
|
interface ActivitylogAppInstallationAppVersionSet {
|
|
5915
5969
|
changes: {
|
|
5916
5970
|
after?: {
|
|
@@ -6864,59 +6918,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6864
6918
|
}
|
|
6865
6919
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
6866
6920
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
6867
|
-
type MarketplaceExtensionInstanceWebhookExecutionState = "running" | "queued" | "halted" | "failed" | "successful";
|
|
6868
|
-
/**
|
|
6869
|
-
* A non-blocking finding on an otherwise migratable domain: the domain migrates, but the named subject is skipped.
|
|
6870
|
-
*/
|
|
6871
|
-
interface DomainmigrationDomainMigrationWarning {
|
|
6872
|
-
reason: MittwaldAPIV2.Components.Schemas.DomainmigrationDomainMigrationWarningReason;
|
|
6873
|
-
/**
|
|
6874
|
-
* The affected COAB entity, e.g. the skipped wildcard subdomain hostname.
|
|
6875
|
-
*/
|
|
6876
|
-
subject: string;
|
|
6877
|
-
}
|
|
6878
|
-
/**
|
|
6879
|
-
* Typed non-blocking migration warning: the domain migrates, but the named subject (`warnings[].subject`) needs attention during migration.
|
|
6880
|
-
*
|
|
6881
|
-
* * `subdomainInvalidIngressHostname`: a non-CNAME subdomain (provisioned as an ingress) does not match the `idn-hostname` format (e.g. a wildcard `*.example.de`); it is skipped and the rest of the domain migrates.
|
|
6882
|
-
* * `subdomainInvalidDnsName`: a CNAME subdomain (provisioned as a DNS subzone) does not match the `idn-dnsname` format; it is skipped and the rest of the domain migrates.
|
|
6883
|
-
* * `subdomainNsRecordsOverridden`: a subdomain carries its own NS records that differ from the domain's nameservers; per-subdomain delegation is not supported, so those NS records are dropped and the subdomain is served from the domain's nameservers (the rest of the subdomain still migrates).
|
|
6884
|
-
* * `registrantPhoneNeedsEpp`: the registry owner (registrant) phone is not EPP-conformant; a reformat-to-EPP heal will be attempted during migration. Non-blocking — the read path cannot tell whether the heal will ultimately succeed, so it only warns; the create path is the actual gate.
|
|
6885
|
-
*/
|
|
6886
|
-
type DomainmigrationDomainMigrationWarningReason = "subdomainInvalidIngressHostname" | "subdomainInvalidDnsName" | "subdomainNsRecordsOverridden" | "registrantPhoneNeedsEpp";
|
|
6887
|
-
interface ActivitylogAppInstallationDesiredSystemSoftwareDeleted {
|
|
6888
|
-
changes: {
|
|
6889
|
-
after?: {
|
|
6890
|
-
softwareVersion?: string;
|
|
6891
|
-
} | null;
|
|
6892
|
-
before?: {
|
|
6893
|
-
softwareVersion?: string;
|
|
6894
|
-
} | null;
|
|
6895
|
-
};
|
|
6896
|
-
name: "app.systemsoftware-deleted";
|
|
6897
|
-
parameters: {
|
|
6898
|
-
software: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6899
|
-
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6900
|
-
};
|
|
6901
|
-
}
|
|
6902
|
-
interface ActivitylogAppInstallationRequested {
|
|
6903
|
-
name: "app.installation-requested";
|
|
6904
|
-
parameters: {
|
|
6905
|
-
appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6906
|
-
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6907
|
-
};
|
|
6908
|
-
}
|
|
6909
|
-
/**
|
|
6910
|
-
* DesiredSystemSoftware describes the desired SystemSoftwareVersion and update policy to apply for a SystemSoftware of an AppInstallation.
|
|
6911
|
-
*/
|
|
6912
|
-
interface AppDesiredSystemSoftware {
|
|
6913
|
-
systemSoftwareVersion?: string;
|
|
6914
|
-
updatePolicy?: MittwaldAPIV2.Components.Schemas.AppSystemSoftwareUpdatePolicy;
|
|
6915
|
-
}
|
|
6916
|
-
interface ContainerTemplateTranslatedString {
|
|
6917
|
-
de: string;
|
|
6918
|
-
en: string;
|
|
6919
|
-
}
|
|
6920
6921
|
interface CommonsAddress {
|
|
6921
6922
|
street: string;
|
|
6922
6923
|
houseNumber: string;
|
|
@@ -11117,6 +11118,76 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11117
11118
|
}
|
|
11118
11119
|
}
|
|
11119
11120
|
}
|
|
11121
|
+
namespace V2ContainerTemplatesTemplateIdIcon {
|
|
11122
|
+
namespace Get {
|
|
11123
|
+
namespace Parameters {
|
|
11124
|
+
type Path = {
|
|
11125
|
+
templateId: string;
|
|
11126
|
+
};
|
|
11127
|
+
type Header = {};
|
|
11128
|
+
type Query = {};
|
|
11129
|
+
}
|
|
11130
|
+
namespace Responses {
|
|
11131
|
+
namespace $200 {
|
|
11132
|
+
namespace Content {
|
|
11133
|
+
type ApplicationOctetStream = string;
|
|
11134
|
+
type ImageJpeg = string;
|
|
11135
|
+
type ImagePng = string;
|
|
11136
|
+
type ImageSvgXml = string;
|
|
11137
|
+
}
|
|
11138
|
+
}
|
|
11139
|
+
namespace $400 {
|
|
11140
|
+
namespace Content {
|
|
11141
|
+
interface ApplicationJson {
|
|
11142
|
+
[k: string]: unknown;
|
|
11143
|
+
}
|
|
11144
|
+
}
|
|
11145
|
+
}
|
|
11146
|
+
namespace $403 {
|
|
11147
|
+
namespace Content {
|
|
11148
|
+
interface ApplicationJson {
|
|
11149
|
+
[k: string]: unknown;
|
|
11150
|
+
}
|
|
11151
|
+
}
|
|
11152
|
+
}
|
|
11153
|
+
namespace $404 {
|
|
11154
|
+
namespace Content {
|
|
11155
|
+
interface ApplicationJson {
|
|
11156
|
+
[k: string]: unknown;
|
|
11157
|
+
}
|
|
11158
|
+
}
|
|
11159
|
+
}
|
|
11160
|
+
namespace $429 {
|
|
11161
|
+
namespace Content {
|
|
11162
|
+
interface ApplicationJson {
|
|
11163
|
+
[k: string]: unknown;
|
|
11164
|
+
}
|
|
11165
|
+
}
|
|
11166
|
+
}
|
|
11167
|
+
namespace $500 {
|
|
11168
|
+
namespace Content {
|
|
11169
|
+
interface ApplicationJson {
|
|
11170
|
+
[k: string]: unknown;
|
|
11171
|
+
}
|
|
11172
|
+
}
|
|
11173
|
+
}
|
|
11174
|
+
namespace $503 {
|
|
11175
|
+
namespace Content {
|
|
11176
|
+
interface ApplicationJson {
|
|
11177
|
+
[k: string]: unknown;
|
|
11178
|
+
}
|
|
11179
|
+
}
|
|
11180
|
+
}
|
|
11181
|
+
namespace Default {
|
|
11182
|
+
namespace Content {
|
|
11183
|
+
interface ApplicationJson {
|
|
11184
|
+
[k: string]: unknown;
|
|
11185
|
+
}
|
|
11186
|
+
}
|
|
11187
|
+
}
|
|
11188
|
+
}
|
|
11189
|
+
}
|
|
11190
|
+
}
|
|
11120
11191
|
namespace V2ContainerTemplatesTemplateId {
|
|
11121
11192
|
namespace Get {
|
|
11122
11193
|
namespace Parameters {
|
|
@@ -31391,75 +31462,5 @@ export declare namespace MittwaldAPIV2 {
|
|
|
31391
31462
|
}
|
|
31392
31463
|
}
|
|
31393
31464
|
}
|
|
31394
|
-
namespace V2ContainerTemplatesTemplateIdIcon {
|
|
31395
|
-
namespace Get {
|
|
31396
|
-
namespace Parameters {
|
|
31397
|
-
type Path = {
|
|
31398
|
-
templateId: string;
|
|
31399
|
-
};
|
|
31400
|
-
type Header = {};
|
|
31401
|
-
type Query = {};
|
|
31402
|
-
}
|
|
31403
|
-
namespace Responses {
|
|
31404
|
-
namespace $200 {
|
|
31405
|
-
namespace Content {
|
|
31406
|
-
type ApplicationOctetStream = string;
|
|
31407
|
-
type ImageJpeg = string;
|
|
31408
|
-
type ImagePng = string;
|
|
31409
|
-
type ImageSvgXml = string;
|
|
31410
|
-
}
|
|
31411
|
-
}
|
|
31412
|
-
namespace $400 {
|
|
31413
|
-
namespace Content {
|
|
31414
|
-
interface ApplicationJson {
|
|
31415
|
-
[k: string]: unknown;
|
|
31416
|
-
}
|
|
31417
|
-
}
|
|
31418
|
-
}
|
|
31419
|
-
namespace $403 {
|
|
31420
|
-
namespace Content {
|
|
31421
|
-
interface ApplicationJson {
|
|
31422
|
-
[k: string]: unknown;
|
|
31423
|
-
}
|
|
31424
|
-
}
|
|
31425
|
-
}
|
|
31426
|
-
namespace $404 {
|
|
31427
|
-
namespace Content {
|
|
31428
|
-
interface ApplicationJson {
|
|
31429
|
-
[k: string]: unknown;
|
|
31430
|
-
}
|
|
31431
|
-
}
|
|
31432
|
-
}
|
|
31433
|
-
namespace $429 {
|
|
31434
|
-
namespace Content {
|
|
31435
|
-
interface ApplicationJson {
|
|
31436
|
-
[k: string]: unknown;
|
|
31437
|
-
}
|
|
31438
|
-
}
|
|
31439
|
-
}
|
|
31440
|
-
namespace $500 {
|
|
31441
|
-
namespace Content {
|
|
31442
|
-
interface ApplicationJson {
|
|
31443
|
-
[k: string]: unknown;
|
|
31444
|
-
}
|
|
31445
|
-
}
|
|
31446
|
-
}
|
|
31447
|
-
namespace $503 {
|
|
31448
|
-
namespace Content {
|
|
31449
|
-
interface ApplicationJson {
|
|
31450
|
-
[k: string]: unknown;
|
|
31451
|
-
}
|
|
31452
|
-
}
|
|
31453
|
-
}
|
|
31454
|
-
namespace Default {
|
|
31455
|
-
namespace Content {
|
|
31456
|
-
interface ApplicationJson {
|
|
31457
|
-
[k: string]: unknown;
|
|
31458
|
-
}
|
|
31459
|
-
}
|
|
31460
|
-
}
|
|
31461
|
-
}
|
|
31462
|
-
}
|
|
31463
|
-
}
|
|
31464
31465
|
}
|
|
31465
31466
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.404.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.405.0",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"test:compile": "run tsc --noEmit"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@mittwald/api-client-commons": "^4.
|
|
49
|
+
"@mittwald/api-client-commons": "^4.405.0",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^4.
|
|
53
|
+
"@mittwald/api-code-generator": "^4.405.0",
|
|
54
54
|
"@mittwald/react-use-promise": "^2.6.2",
|
|
55
55
|
"@types/node": "^22.18.11",
|
|
56
56
|
"@types/react": "^18.3.26",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "4f38f126d01f5c06152c5f56b28110203466d165"
|
|
84
84
|
}
|