@mittwald/api-client 4.401.0 → 4.403.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 -0
- package/dist/esm/generated/v2/client.js +2 -0
- package/dist/esm/generated/v2/descriptors.js +6 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +22 -1
- package/dist/types/generated/v2/client.d.ts +81 -2
- package/dist/types/generated/v2/descriptors.d.ts +3 -1
- package/dist/types/generated/v2/types.d.ts +100 -2
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -104,6 +104,8 @@ const buildContainerApi = (baseClient) => ({
|
|
|
104
104
|
listTemplates: new ApiCallAsyncResourceFactory(descriptors.containerListTemplates, baseClient.container.listTemplates).getApiResource,
|
|
105
105
|
/** List Volumes belonging to a Project. */
|
|
106
106
|
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,
|
|
107
109
|
});
|
|
108
110
|
const buildContractApi = (baseClient) => ({
|
|
109
111
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
@@ -194,6 +194,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
194
194
|
startService: this.requestFunctionFactory(descriptors.containerStartService),
|
|
195
195
|
/** Stop a started Service. */
|
|
196
196
|
stopService: this.requestFunctionFactory(descriptors.containerStopService),
|
|
197
|
+
/** Get a Container Template icon. */
|
|
198
|
+
getTemplateIcon: this.requestFunctionFactory(descriptors.containerGetTemplateIcon),
|
|
197
199
|
};
|
|
198
200
|
/** The contract API allows you to manage your contracts and orders */
|
|
199
201
|
contract = {
|
|
@@ -2830,3 +2830,9 @@ export const verificationVerifyCompany = {
|
|
|
2830
2830
|
method: "POST",
|
|
2831
2831
|
operationId: "verification-verify-company",
|
|
2832
2832
|
};
|
|
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.402.0';
|
|
@@ -680,10 +680,24 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
680
680
|
developer: string;
|
|
681
681
|
domains?: {
|
|
682
682
|
port: string;
|
|
683
|
+
purpose?: string;
|
|
683
684
|
service: string;
|
|
684
685
|
userInput: string;
|
|
685
686
|
}[] | undefined;
|
|
686
|
-
|
|
687
|
+
help?: {
|
|
688
|
+
alerts?: {
|
|
689
|
+
content: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
690
|
+
heading: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
691
|
+
link?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
692
|
+
linkText?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
693
|
+
status: string;
|
|
694
|
+
}[];
|
|
695
|
+
technicalDetails?: {
|
|
696
|
+
key: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
697
|
+
value: string;
|
|
698
|
+
}[];
|
|
699
|
+
} | undefined;
|
|
700
|
+
iconUrl: string;
|
|
687
701
|
id: string;
|
|
688
702
|
license?: {
|
|
689
703
|
link?: string;
|
|
@@ -785,6 +799,13 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
785
799
|
page?: number | undefined;
|
|
786
800
|
} | undefined;
|
|
787
801
|
}) => 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>;
|
|
788
809
|
};
|
|
789
810
|
declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
|
|
790
811
|
/** Return the BaseItem of the Contract with the given ID. */
|
|
@@ -5107,10 +5107,24 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5107
5107
|
developer: string;
|
|
5108
5108
|
domains?: {
|
|
5109
5109
|
port: string;
|
|
5110
|
+
purpose?: string;
|
|
5110
5111
|
service: string;
|
|
5111
5112
|
userInput: string;
|
|
5112
5113
|
}[] | undefined;
|
|
5113
|
-
|
|
5114
|
+
help?: {
|
|
5115
|
+
alerts?: {
|
|
5116
|
+
content: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5117
|
+
heading: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5118
|
+
link?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5119
|
+
linkText?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5120
|
+
status: string;
|
|
5121
|
+
}[];
|
|
5122
|
+
technicalDetails?: {
|
|
5123
|
+
key: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5124
|
+
value: string;
|
|
5125
|
+
}[];
|
|
5126
|
+
} | undefined;
|
|
5127
|
+
iconUrl: string;
|
|
5114
5128
|
id: string;
|
|
5115
5129
|
license?: {
|
|
5116
5130
|
link?: string;
|
|
@@ -5152,10 +5166,24 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5152
5166
|
developer: string;
|
|
5153
5167
|
domains?: {
|
|
5154
5168
|
port: string;
|
|
5169
|
+
purpose?: string;
|
|
5155
5170
|
service: string;
|
|
5156
5171
|
userInput: string;
|
|
5157
5172
|
}[] | undefined;
|
|
5158
|
-
|
|
5173
|
+
help?: {
|
|
5174
|
+
alerts?: {
|
|
5175
|
+
content: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5176
|
+
heading: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5177
|
+
link?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5178
|
+
linkText?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5179
|
+
status: string;
|
|
5180
|
+
}[];
|
|
5181
|
+
technicalDetails?: {
|
|
5182
|
+
key: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5183
|
+
value: string;
|
|
5184
|
+
}[];
|
|
5185
|
+
} | undefined;
|
|
5186
|
+
iconUrl: string;
|
|
5159
5187
|
id: string;
|
|
5160
5188
|
license?: {
|
|
5161
5189
|
link?: string;
|
|
@@ -6045,6 +6073,53 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
6045
6073
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
6046
6074
|
[x: string]: unknown;
|
|
6047
6075
|
}, 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">>>;
|
|
6048
6123
|
};
|
|
6049
6124
|
/** The contract API allows you to manage your contracts and orders */
|
|
6050
6125
|
readonly contract: {
|
|
@@ -25581,6 +25656,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25581
25656
|
[x: string]: unknown;
|
|
25582
25657
|
}, 406, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25583
25658
|
[x: string]: unknown;
|
|
25659
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25660
|
+
[x: string]: unknown;
|
|
25584
25661
|
}, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25585
25662
|
[x: string]: unknown;
|
|
25586
25663
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -25615,6 +25692,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25615
25692
|
[x: string]: unknown;
|
|
25616
25693
|
}, 406, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25617
25694
|
[x: string]: unknown;
|
|
25695
|
+
}, 409, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25696
|
+
[x: string]: unknown;
|
|
25618
25697
|
}, 422, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
25619
25698
|
[x: string]: unknown;
|
|
25620
25699
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -570,7 +570,7 @@ export declare const extensionSetExtensionPublishedState: OpenAPIOperation<Reque
|
|
|
570
570
|
/** Creates or Updates Pricing for an Extension. */
|
|
571
571
|
export declare const extensionUpdateExtensionPricing: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContributorsContributorIdExtensionsExtensionIdPricing.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
572
572
|
/** Create a File. */
|
|
573
|
-
export declare const fileCreateFile: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$406.Content.ApplicationJson>, 406, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$422.Content.ApplicationJson>, 422, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
573
|
+
export declare const fileCreateFile: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Files.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$201.Content.ApplicationJson>, 201, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$406.Content.ApplicationJson>, 406, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$409.Content.ApplicationJson>, 409, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$422.Content.ApplicationJson>, 422, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Files.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
574
574
|
/** Get a File's meta. */
|
|
575
575
|
export declare const fileGetFileMeta: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$401.Content.ApplicationJson>, 401, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$422.Content.ApplicationJson>, 422, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2FilesFileIdMeta.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
576
576
|
/** Get a FileUploadToken's rules. */
|
|
@@ -947,3 +947,5 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
|
|
|
947
947
|
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
948
|
/** Check if a company exists. */
|
|
949
949
|
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">>;
|
|
@@ -1890,6 +1890,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
1890
1890
|
type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
|
|
1891
1891
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
|
|
1892
1892
|
}
|
|
1893
|
+
namespace ContainerGetTemplateIcon {
|
|
1894
|
+
type RequestData = InferredRequestData<typeof descriptors.containerGetTemplateIcon>;
|
|
1895
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplateIcon, TStatus>;
|
|
1896
|
+
}
|
|
1893
1897
|
}
|
|
1894
1898
|
namespace Components {
|
|
1895
1899
|
namespace Schemas {
|
|
@@ -2874,10 +2878,24 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2874
2878
|
developer: string;
|
|
2875
2879
|
domains?: {
|
|
2876
2880
|
port: string;
|
|
2881
|
+
purpose?: string;
|
|
2877
2882
|
service: string;
|
|
2878
2883
|
userInput: string;
|
|
2879
2884
|
}[];
|
|
2880
|
-
|
|
2885
|
+
help?: {
|
|
2886
|
+
alerts?: {
|
|
2887
|
+
content: MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
2888
|
+
heading: MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
2889
|
+
link?: MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
2890
|
+
linkText?: MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
2891
|
+
status: string;
|
|
2892
|
+
}[];
|
|
2893
|
+
technicalDetails?: {
|
|
2894
|
+
key: MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
2895
|
+
value: string;
|
|
2896
|
+
}[];
|
|
2897
|
+
};
|
|
2898
|
+
iconUrl: string;
|
|
2881
2899
|
id: string;
|
|
2882
2900
|
license?: {
|
|
2883
2901
|
link?: string;
|
|
@@ -5984,6 +6002,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5984
6002
|
};
|
|
5985
6003
|
name: "database.mysql-user-created";
|
|
5986
6004
|
parameters: {
|
|
6005
|
+
databaseDescription: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5987
6006
|
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
5988
6007
|
description: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5989
6008
|
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
@@ -5993,6 +6012,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5993
6012
|
changes: {};
|
|
5994
6013
|
name: "database.mysql-user-deleted";
|
|
5995
6014
|
parameters: {
|
|
6015
|
+
databaseDescription: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5996
6016
|
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
5997
6017
|
description: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
5998
6018
|
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
@@ -6015,6 +6035,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6015
6035
|
};
|
|
6016
6036
|
name: "database.mysql-user-updated";
|
|
6017
6037
|
parameters: {
|
|
6038
|
+
databaseDescription: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6018
6039
|
databaseName: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6019
6040
|
description: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6020
6041
|
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
@@ -6879,7 +6900,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6879
6900
|
};
|
|
6880
6901
|
}
|
|
6881
6902
|
interface ActivitylogAppInstallationRequested {
|
|
6882
|
-
name: "app.requested";
|
|
6903
|
+
name: "app.installation-requested";
|
|
6883
6904
|
parameters: {
|
|
6884
6905
|
appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6885
6906
|
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
@@ -21673,6 +21694,13 @@ export declare namespace MittwaldAPIV2 {
|
|
|
21673
21694
|
}
|
|
21674
21695
|
}
|
|
21675
21696
|
}
|
|
21697
|
+
namespace $409 {
|
|
21698
|
+
namespace Content {
|
|
21699
|
+
interface ApplicationJson {
|
|
21700
|
+
[k: string]: unknown;
|
|
21701
|
+
}
|
|
21702
|
+
}
|
|
21703
|
+
}
|
|
21676
21704
|
namespace $422 {
|
|
21677
21705
|
namespace Content {
|
|
21678
21706
|
interface ApplicationJson {
|
|
@@ -31363,5 +31391,75 @@ export declare namespace MittwaldAPIV2 {
|
|
|
31363
31391
|
}
|
|
31364
31392
|
}
|
|
31365
31393
|
}
|
|
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
|
+
}
|
|
31366
31464
|
}
|
|
31367
31465
|
}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.402.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.403.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.403.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.403.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": "3955acf2402dfb1d79193c174cd99b94a6b5a723"
|
|
84
84
|
}
|