@mittwald/api-client 4.438.0 → 4.439.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/generated/v3-next/client-react.js +2 -0
- package/dist/esm/generated/v3-next/client.js +2 -0
- package/dist/esm/generated/v3-next/descriptors.js +6 -0
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +9 -0
- package/dist/types/generated/v2/client.d.ts +54 -0
- package/dist/types/generated/v2/descriptors.d.ts +2 -0
- package/dist/types/generated/v2/types.d.ts +100 -24
- package/dist/types/generated/v3-next/client-react.d.ts +9 -0
- package/dist/types/generated/v3-next/client.d.ts +54 -0
- package/dist/types/generated/v3-next/descriptors.d.ts +2 -0
- package/dist/types/generated/v3-next/types.d.ts +100 -24
- 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 asset. */
|
|
96
|
+
getTemplateAsset: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplateAsset, baseClient.container.getTemplateAsset).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. */
|
|
@@ -162,6 +162,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
162
162
|
getServiceLogs: this.requestFunctionFactory(descriptors.containerGetServiceLogs),
|
|
163
163
|
/** Get a Service belonging to a Stack. */
|
|
164
164
|
getService: this.requestFunctionFactory(descriptors.containerGetService),
|
|
165
|
+
/** Get a Container Template asset. */
|
|
166
|
+
getTemplateAsset: this.requestFunctionFactory(descriptors.containerGetTemplateAsset),
|
|
165
167
|
/** Get a Container Template by ID. */
|
|
166
168
|
getTemplate: this.requestFunctionFactory(descriptors.containerGetTemplate),
|
|
167
169
|
/** List Stacks belonging to the executing user. */
|
|
@@ -430,6 +430,12 @@ export const containerGetService = {
|
|
|
430
430
|
method: "GET",
|
|
431
431
|
operationId: "container-get-service",
|
|
432
432
|
};
|
|
433
|
+
/** Get a Container Template asset. */
|
|
434
|
+
export const containerGetTemplateAsset = {
|
|
435
|
+
path: "/v2/container-templates/{templateId}/assets/{assetPath}",
|
|
436
|
+
method: "GET",
|
|
437
|
+
operationId: "container-get-template-asset",
|
|
438
|
+
};
|
|
433
439
|
/** Get a Container Template by ID. */
|
|
434
440
|
export const containerGetTemplate = {
|
|
435
441
|
path: "/v2/container-templates/{templateId}",
|
|
@@ -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 asset. */
|
|
96
|
+
getTemplateAsset: new ApiCallAsyncResourceFactory(descriptors.containerGetTemplateAsset, baseClient.container.getTemplateAsset).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. */
|
|
@@ -162,6 +162,8 @@ export class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
162
162
|
getServiceLogs: this.requestFunctionFactory(descriptors.containerGetServiceLogs),
|
|
163
163
|
/** Get a Service belonging to a Stack. */
|
|
164
164
|
getService: this.requestFunctionFactory(descriptors.containerGetService),
|
|
165
|
+
/** Get a Container Template asset. */
|
|
166
|
+
getTemplateAsset: this.requestFunctionFactory(descriptors.containerGetTemplateAsset),
|
|
165
167
|
/** Get a Container Template by ID. */
|
|
166
168
|
getTemplate: this.requestFunctionFactory(descriptors.containerGetTemplate),
|
|
167
169
|
/** List Stacks belonging to the executing user. */
|
|
@@ -430,6 +430,12 @@ export const containerGetService = {
|
|
|
430
430
|
method: "GET",
|
|
431
431
|
operationId: "container-get-service",
|
|
432
432
|
};
|
|
433
|
+
/** Get a Container Template asset. */
|
|
434
|
+
export const containerGetTemplateAsset = {
|
|
435
|
+
path: "/v3-next/container-templates/{templateId}/assets/{assetPath}",
|
|
436
|
+
method: "GET",
|
|
437
|
+
operationId: "container-get-template-asset",
|
|
438
|
+
};
|
|
433
439
|
/** Get a Container Template by ID. */
|
|
434
440
|
export const containerGetTemplate = {
|
|
435
441
|
path: "/v3-next/container-templates/{templateId}",
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.438.0';
|
|
@@ -670,6 +670,14 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
670
670
|
statusSetAt: string;
|
|
671
671
|
templateId?: string | undefined;
|
|
672
672
|
}>;
|
|
673
|
+
/** Get a Container Template asset. */
|
|
674
|
+
getTemplateAsset: (conf: {
|
|
675
|
+
templateId: string;
|
|
676
|
+
assetPath: string;
|
|
677
|
+
headers?: {
|
|
678
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
679
|
+
} | undefined;
|
|
680
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<string>;
|
|
673
681
|
/** Get a Container Template by ID. */
|
|
674
682
|
getTemplate: (conf: {
|
|
675
683
|
templateId: string;
|
|
@@ -2470,6 +2478,7 @@ declare const buildFileApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
2470
2478
|
id: string;
|
|
2471
2479
|
mimeType: string;
|
|
2472
2480
|
name: string;
|
|
2481
|
+
shortId: string;
|
|
2473
2482
|
sizeInBytes: number;
|
|
2474
2483
|
type: string;
|
|
2475
2484
|
}>;
|
|
@@ -4950,6 +4950,56 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4950
4950
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4951
4951
|
[x: string]: unknown;
|
|
4952
4952
|
}, 500, "application/json">>>;
|
|
4953
|
+
/** Get a Container Template asset. */
|
|
4954
|
+
getTemplateAsset: (request: {
|
|
4955
|
+
templateId: string;
|
|
4956
|
+
assetPath: string;
|
|
4957
|
+
headers?: {
|
|
4958
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4959
|
+
} | undefined;
|
|
4960
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4961
|
+
headers?: Partial<{
|
|
4962
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4963
|
+
}>;
|
|
4964
|
+
} & {
|
|
4965
|
+
pathParameters: {
|
|
4966
|
+
templateId: string;
|
|
4967
|
+
assetPath: string;
|
|
4968
|
+
};
|
|
4969
|
+
}, 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<string, 200, "image/webp"> | import("@mittwald/api-client-commons").Response<{
|
|
4970
|
+
[x: string]: unknown;
|
|
4971
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4972
|
+
[x: string]: unknown;
|
|
4973
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4974
|
+
[x: string]: unknown;
|
|
4975
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4976
|
+
[x: string]: unknown;
|
|
4977
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4978
|
+
[x: string]: unknown;
|
|
4979
|
+
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4980
|
+
[x: string]: unknown;
|
|
4981
|
+
}, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4982
|
+
headers?: Partial<{
|
|
4983
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4984
|
+
}>;
|
|
4985
|
+
} & {
|
|
4986
|
+
pathParameters: {
|
|
4987
|
+
templateId: string;
|
|
4988
|
+
assetPath: string;
|
|
4989
|
+
};
|
|
4990
|
+
}, 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<string, 200, "image/webp"> | import("@mittwald/api-client-commons").Response<{
|
|
4991
|
+
[x: string]: unknown;
|
|
4992
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4993
|
+
[x: string]: unknown;
|
|
4994
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4995
|
+
[x: string]: unknown;
|
|
4996
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4997
|
+
[x: string]: unknown;
|
|
4998
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4999
|
+
[x: string]: unknown;
|
|
5000
|
+
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5001
|
+
[x: string]: unknown;
|
|
5002
|
+
}, 503, "application/json">>>;
|
|
4953
5003
|
/** Get a Container Template by ID. */
|
|
4954
5004
|
getTemplate: (request: {
|
|
4955
5005
|
templateId: string;
|
|
@@ -25248,6 +25298,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25248
25298
|
id: string;
|
|
25249
25299
|
mimeType: string;
|
|
25250
25300
|
name: string;
|
|
25301
|
+
shortId: string;
|
|
25251
25302
|
sizeInBytes: number;
|
|
25252
25303
|
type: string;
|
|
25253
25304
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -25284,6 +25335,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25284
25335
|
id: string;
|
|
25285
25336
|
mimeType: string;
|
|
25286
25337
|
name: string;
|
|
25338
|
+
shortId: string;
|
|
25287
25339
|
sizeInBytes: number;
|
|
25288
25340
|
type: string;
|
|
25289
25341
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -25338,6 +25390,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25338
25390
|
id: string;
|
|
25339
25391
|
mimeType: string;
|
|
25340
25392
|
name: string;
|
|
25393
|
+
shortId: string;
|
|
25341
25394
|
sizeInBytes: number;
|
|
25342
25395
|
type: string;
|
|
25343
25396
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -25380,6 +25433,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
25380
25433
|
id: string;
|
|
25381
25434
|
mimeType: string;
|
|
25382
25435
|
name: string;
|
|
25436
|
+
shortId: string;
|
|
25383
25437
|
sizeInBytes: number;
|
|
25384
25438
|
type: string;
|
|
25385
25439
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -147,6 +147,8 @@ export declare const containerGetContainerImageConfig: OpenAPIOperation<RequestT
|
|
|
147
147
|
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">>;
|
|
148
148
|
/** Get a Service belonging to a Stack. */
|
|
149
149
|
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">>;
|
|
150
|
+
/** Get a Container Template asset. */
|
|
151
|
+
export declare const containerGetTemplateAsset: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$200.Content.ImageJpeg>, 200, "image/jpeg"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$200.Content.ImagePng>, 200, "image/png"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$200.Content.ImageSvgXml>, 200, "image/svg+xml"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$200.Content.ImageWebp>, 200, "image/webp"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
150
152
|
/** Get a Container Template by ID. */
|
|
151
153
|
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">>;
|
|
152
154
|
/** List Stacks belonging to the executing user. */
|
|
@@ -290,6 +290,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
290
290
|
type RequestData = InferredRequestData<typeof descriptors.containerGetService>;
|
|
291
291
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetService, TStatus>;
|
|
292
292
|
}
|
|
293
|
+
namespace ContainerGetTemplateAsset {
|
|
294
|
+
type RequestData = InferredRequestData<typeof descriptors.containerGetTemplateAsset>;
|
|
295
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplateAsset, TStatus>;
|
|
296
|
+
}
|
|
293
297
|
namespace ContainerGetTemplate {
|
|
294
298
|
type RequestData = InferredRequestData<typeof descriptors.containerGetTemplate>;
|
|
295
299
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplate, TStatus>;
|
|
@@ -4637,6 +4641,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
4637
4641
|
id: string;
|
|
4638
4642
|
mimeType: string;
|
|
4639
4643
|
name: string;
|
|
4644
|
+
shortId: string;
|
|
4640
4645
|
sizeInBytes: number;
|
|
4641
4646
|
/**
|
|
4642
4647
|
* @deprecated
|
|
@@ -6025,6 +6030,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6025
6030
|
appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6026
6031
|
};
|
|
6027
6032
|
}
|
|
6033
|
+
interface ActivitylogAppInstallationFailed {
|
|
6034
|
+
changes: {};
|
|
6035
|
+
name: "app.failed";
|
|
6036
|
+
parameters: {
|
|
6037
|
+
appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
6038
|
+
error?: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6039
|
+
};
|
|
6040
|
+
}
|
|
6028
6041
|
interface ActivitylogAppInstallationCopyRequested {
|
|
6029
6042
|
name: "app.copy-requested";
|
|
6030
6043
|
parameters: {
|
|
@@ -6194,6 +6207,22 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6194
6207
|
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6195
6208
|
};
|
|
6196
6209
|
}
|
|
6210
|
+
interface ActivitylogDatabaseVersionSet {
|
|
6211
|
+
changes: {
|
|
6212
|
+
after?: {
|
|
6213
|
+
version: string;
|
|
6214
|
+
};
|
|
6215
|
+
before?: {
|
|
6216
|
+
version: string | null;
|
|
6217
|
+
};
|
|
6218
|
+
};
|
|
6219
|
+
name: "database.mysql-version-set";
|
|
6220
|
+
parameters: {
|
|
6221
|
+
description: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6222
|
+
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6223
|
+
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6224
|
+
};
|
|
6225
|
+
}
|
|
6197
6226
|
interface ActivitylogDnsARecordSetManaged {
|
|
6198
6227
|
changes: {
|
|
6199
6228
|
after?: {
|
|
@@ -7048,30 +7077,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
7048
7077
|
}
|
|
7049
7078
|
type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
7050
7079
|
type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
7051
|
-
interface ActivitylogAppInstallationFailed {
|
|
7052
|
-
changes: {};
|
|
7053
|
-
name: "app.failed";
|
|
7054
|
-
parameters: {
|
|
7055
|
-
appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogLinkedParameterProperty;
|
|
7056
|
-
error?: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
7057
|
-
};
|
|
7058
|
-
}
|
|
7059
|
-
interface ActivitylogDatabaseVersionSet {
|
|
7060
|
-
changes: {
|
|
7061
|
-
after?: {
|
|
7062
|
-
version: string;
|
|
7063
|
-
};
|
|
7064
|
-
before?: {
|
|
7065
|
-
version: string | null;
|
|
7066
|
-
};
|
|
7067
|
-
};
|
|
7068
|
-
name: "database.mysql-version-set";
|
|
7069
|
-
parameters: {
|
|
7070
|
-
description: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
7071
|
-
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
7072
|
-
version: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
7073
|
-
};
|
|
7074
|
-
}
|
|
7075
7080
|
interface CommonsAddress {
|
|
7076
7081
|
street: string;
|
|
7077
7082
|
houseNumber: string;
|
|
@@ -11160,6 +11165,77 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11160
11165
|
}
|
|
11161
11166
|
}
|
|
11162
11167
|
}
|
|
11168
|
+
namespace V2ContainerTemplatesTemplateIdAssetsAssetPath {
|
|
11169
|
+
namespace Get {
|
|
11170
|
+
namespace Parameters {
|
|
11171
|
+
type Path = {
|
|
11172
|
+
templateId: string;
|
|
11173
|
+
assetPath: string;
|
|
11174
|
+
};
|
|
11175
|
+
type Header = {};
|
|
11176
|
+
type Query = {};
|
|
11177
|
+
}
|
|
11178
|
+
namespace Responses {
|
|
11179
|
+
namespace $200 {
|
|
11180
|
+
namespace Content {
|
|
11181
|
+
type ImageJpeg = string;
|
|
11182
|
+
type ImagePng = string;
|
|
11183
|
+
type ImageSvgXml = string;
|
|
11184
|
+
type ImageWebp = string;
|
|
11185
|
+
}
|
|
11186
|
+
}
|
|
11187
|
+
namespace $400 {
|
|
11188
|
+
namespace Content {
|
|
11189
|
+
interface ApplicationJson {
|
|
11190
|
+
[k: string]: unknown;
|
|
11191
|
+
}
|
|
11192
|
+
}
|
|
11193
|
+
}
|
|
11194
|
+
namespace $403 {
|
|
11195
|
+
namespace Content {
|
|
11196
|
+
interface ApplicationJson {
|
|
11197
|
+
[k: string]: unknown;
|
|
11198
|
+
}
|
|
11199
|
+
}
|
|
11200
|
+
}
|
|
11201
|
+
namespace $404 {
|
|
11202
|
+
namespace Content {
|
|
11203
|
+
interface ApplicationJson {
|
|
11204
|
+
[k: string]: unknown;
|
|
11205
|
+
}
|
|
11206
|
+
}
|
|
11207
|
+
}
|
|
11208
|
+
namespace $429 {
|
|
11209
|
+
namespace Content {
|
|
11210
|
+
interface ApplicationJson {
|
|
11211
|
+
[k: string]: unknown;
|
|
11212
|
+
}
|
|
11213
|
+
}
|
|
11214
|
+
}
|
|
11215
|
+
namespace $500 {
|
|
11216
|
+
namespace Content {
|
|
11217
|
+
interface ApplicationJson {
|
|
11218
|
+
[k: string]: unknown;
|
|
11219
|
+
}
|
|
11220
|
+
}
|
|
11221
|
+
}
|
|
11222
|
+
namespace $503 {
|
|
11223
|
+
namespace Content {
|
|
11224
|
+
interface ApplicationJson {
|
|
11225
|
+
[k: string]: unknown;
|
|
11226
|
+
}
|
|
11227
|
+
}
|
|
11228
|
+
}
|
|
11229
|
+
namespace Default {
|
|
11230
|
+
namespace Content {
|
|
11231
|
+
interface ApplicationJson {
|
|
11232
|
+
[k: string]: unknown;
|
|
11233
|
+
}
|
|
11234
|
+
}
|
|
11235
|
+
}
|
|
11236
|
+
}
|
|
11237
|
+
}
|
|
11238
|
+
}
|
|
11163
11239
|
namespace V2ContainerTemplatesTemplateId {
|
|
11164
11240
|
namespace Get {
|
|
11165
11241
|
namespace Parameters {
|
|
@@ -670,6 +670,14 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
670
670
|
statusSetAt: string;
|
|
671
671
|
templateId?: string | undefined;
|
|
672
672
|
}>;
|
|
673
|
+
/** Get a Container Template asset. */
|
|
674
|
+
getTemplateAsset: (conf: {
|
|
675
|
+
templateId: string;
|
|
676
|
+
assetPath: string;
|
|
677
|
+
headers?: {
|
|
678
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
679
|
+
} | undefined;
|
|
680
|
+
}) => import("@mittwald/react-use-promise").AsyncResource<string>;
|
|
673
681
|
/** Get a Container Template by ID. */
|
|
674
682
|
getTemplate: (conf: {
|
|
675
683
|
templateId: string;
|
|
@@ -2470,6 +2478,7 @@ declare const buildFileApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
2470
2478
|
id: string;
|
|
2471
2479
|
mimeType: string;
|
|
2472
2480
|
name: string;
|
|
2481
|
+
shortId: string;
|
|
2473
2482
|
sizeInBytes: number;
|
|
2474
2483
|
type: string;
|
|
2475
2484
|
}>;
|
|
@@ -4950,6 +4950,56 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
4950
4950
|
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4951
4951
|
[x: string]: unknown;
|
|
4952
4952
|
}, 500, "application/json">>>;
|
|
4953
|
+
/** Get a Container Template asset. */
|
|
4954
|
+
getTemplateAsset: (request: {
|
|
4955
|
+
templateId: string;
|
|
4956
|
+
assetPath: string;
|
|
4957
|
+
headers?: {
|
|
4958
|
+
[x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
|
|
4959
|
+
} | undefined;
|
|
4960
|
+
}, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4961
|
+
headers?: Partial<{
|
|
4962
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4963
|
+
}>;
|
|
4964
|
+
} & {
|
|
4965
|
+
pathParameters: {
|
|
4966
|
+
templateId: string;
|
|
4967
|
+
assetPath: string;
|
|
4968
|
+
};
|
|
4969
|
+
}, 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<string, 200, "image/webp"> | import("@mittwald/api-client-commons").Response<{
|
|
4970
|
+
[x: string]: unknown;
|
|
4971
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4972
|
+
[x: string]: unknown;
|
|
4973
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4974
|
+
[x: string]: unknown;
|
|
4975
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4976
|
+
[x: string]: unknown;
|
|
4977
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4978
|
+
[x: string]: unknown;
|
|
4979
|
+
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4980
|
+
[x: string]: unknown;
|
|
4981
|
+
}, 503, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
|
|
4982
|
+
headers?: Partial<{
|
|
4983
|
+
[TKey: string]: (string | number | boolean) | (string | number | boolean)[];
|
|
4984
|
+
}>;
|
|
4985
|
+
} & {
|
|
4986
|
+
pathParameters: {
|
|
4987
|
+
templateId: string;
|
|
4988
|
+
assetPath: string;
|
|
4989
|
+
};
|
|
4990
|
+
}, 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<string, 200, "image/webp"> | import("@mittwald/api-client-commons").Response<{
|
|
4991
|
+
[x: string]: unknown;
|
|
4992
|
+
}, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4993
|
+
[x: string]: unknown;
|
|
4994
|
+
}, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4995
|
+
[x: string]: unknown;
|
|
4996
|
+
}, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4997
|
+
[x: string]: unknown;
|
|
4998
|
+
}, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
4999
|
+
[x: string]: unknown;
|
|
5000
|
+
}, 500, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
5001
|
+
[x: string]: unknown;
|
|
5002
|
+
}, 503, "application/json">>>;
|
|
4953
5003
|
/** Get a Container Template by ID. */
|
|
4954
5004
|
getTemplate: (request: {
|
|
4955
5005
|
templateId: string;
|
|
@@ -25248,6 +25298,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
25248
25298
|
id: string;
|
|
25249
25299
|
mimeType: string;
|
|
25250
25300
|
name: string;
|
|
25301
|
+
shortId: string;
|
|
25251
25302
|
sizeInBytes: number;
|
|
25252
25303
|
type: string;
|
|
25253
25304
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -25284,6 +25335,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
25284
25335
|
id: string;
|
|
25285
25336
|
mimeType: string;
|
|
25286
25337
|
name: string;
|
|
25338
|
+
shortId: string;
|
|
25287
25339
|
sizeInBytes: number;
|
|
25288
25340
|
type: string;
|
|
25289
25341
|
}, 201, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -25338,6 +25390,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
25338
25390
|
id: string;
|
|
25339
25391
|
mimeType: string;
|
|
25340
25392
|
name: string;
|
|
25393
|
+
shortId: string;
|
|
25341
25394
|
sizeInBytes: number;
|
|
25342
25395
|
type: string;
|
|
25343
25396
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -25380,6 +25433,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
25380
25433
|
id: string;
|
|
25381
25434
|
mimeType: string;
|
|
25382
25435
|
name: string;
|
|
25436
|
+
shortId: string;
|
|
25383
25437
|
sizeInBytes: number;
|
|
25384
25438
|
type: string;
|
|
25385
25439
|
}, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
|
|
@@ -147,6 +147,8 @@ export declare const containerGetContainerImageConfig: OpenAPIOperation<RequestT
|
|
|
147
147
|
export declare const containerGetServiceLogs: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Responses.$200.Content.TextPlain>, 200, "text/plain"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceIdLogs.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
148
148
|
/** Get a Service belonging to a Stack. */
|
|
149
149
|
export declare const containerGetService: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextStacksStackIdServicesServiceId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
150
|
+
/** Get a Container Template asset. */
|
|
151
|
+
export declare const containerGetTemplateAsset: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$200.Content.ImageJpeg>, 200, "image/jpeg"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$200.Content.ImagePng>, 200, "image/png"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$200.Content.ImageSvgXml>, 200, "image/svg+xml"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$200.Content.ImageWebp>, 200, "image/webp"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateIdAssetsAssetPath.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
150
152
|
/** Get a Container Template by ID. */
|
|
151
153
|
export declare const containerGetTemplate: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Parameters.Path>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Parameters.Query>, Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV3Next.Paths.V3NextContainerTemplatesTemplateId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
|
|
152
154
|
/** List Stacks belonging to the executing user. */
|
|
@@ -290,6 +290,10 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
290
290
|
type RequestData = InferredRequestData<typeof descriptors.containerGetService>;
|
|
291
291
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetService, TStatus>;
|
|
292
292
|
}
|
|
293
|
+
namespace ContainerGetTemplateAsset {
|
|
294
|
+
type RequestData = InferredRequestData<typeof descriptors.containerGetTemplateAsset>;
|
|
295
|
+
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplateAsset, TStatus>;
|
|
296
|
+
}
|
|
293
297
|
namespace ContainerGetTemplate {
|
|
294
298
|
type RequestData = InferredRequestData<typeof descriptors.containerGetTemplate>;
|
|
295
299
|
type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetTemplate, TStatus>;
|
|
@@ -4641,6 +4645,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
4641
4645
|
id: string;
|
|
4642
4646
|
mimeType: string;
|
|
4643
4647
|
name: string;
|
|
4648
|
+
shortId: string;
|
|
4644
4649
|
sizeInBytes: number;
|
|
4645
4650
|
/**
|
|
4646
4651
|
* @deprecated
|
|
@@ -6029,6 +6034,14 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6029
6034
|
appInstallation: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6030
6035
|
};
|
|
6031
6036
|
}
|
|
6037
|
+
interface DeMittwaldActivitylogAppInstallationFailed {
|
|
6038
|
+
changes: {};
|
|
6039
|
+
name: "app.failed";
|
|
6040
|
+
parameters: {
|
|
6041
|
+
appInstallation: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogLinkedParameterProperty;
|
|
6042
|
+
error?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6043
|
+
};
|
|
6044
|
+
}
|
|
6032
6045
|
interface DeMittwaldActivitylogAppInstallationCopyRequested {
|
|
6033
6046
|
name: "app.copy-requested";
|
|
6034
6047
|
parameters: {
|
|
@@ -6198,6 +6211,22 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6198
6211
|
name: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6199
6212
|
};
|
|
6200
6213
|
}
|
|
6214
|
+
interface DeMittwaldActivitylogDatabaseVersionSet {
|
|
6215
|
+
changes: {
|
|
6216
|
+
after?: {
|
|
6217
|
+
version: string;
|
|
6218
|
+
};
|
|
6219
|
+
before?: {
|
|
6220
|
+
version: string | null;
|
|
6221
|
+
};
|
|
6222
|
+
};
|
|
6223
|
+
name: "database.mysql-version-set";
|
|
6224
|
+
parameters: {
|
|
6225
|
+
description: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6226
|
+
name: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6227
|
+
version: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6228
|
+
};
|
|
6229
|
+
}
|
|
6201
6230
|
interface DeMittwaldActivitylogDnsARecordSetManaged {
|
|
6202
6231
|
changes: {
|
|
6203
6232
|
after?: {
|
|
@@ -7052,30 +7081,6 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
7052
7081
|
}
|
|
7053
7082
|
type DeMittwaldVerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
|
|
7054
7083
|
type DeMittwaldContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
|
|
7055
|
-
interface DeMittwaldActivitylogAppInstallationFailed {
|
|
7056
|
-
changes: {};
|
|
7057
|
-
name: "app.failed";
|
|
7058
|
-
parameters: {
|
|
7059
|
-
appInstallation: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogLinkedParameterProperty;
|
|
7060
|
-
error?: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
7061
|
-
};
|
|
7062
|
-
}
|
|
7063
|
-
interface DeMittwaldActivitylogDatabaseVersionSet {
|
|
7064
|
-
changes: {
|
|
7065
|
-
after?: {
|
|
7066
|
-
version: string;
|
|
7067
|
-
};
|
|
7068
|
-
before?: {
|
|
7069
|
-
version: string | null;
|
|
7070
|
-
};
|
|
7071
|
-
};
|
|
7072
|
-
name: "database.mysql-version-set";
|
|
7073
|
-
parameters: {
|
|
7074
|
-
description: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
7075
|
-
name: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
7076
|
-
version: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
7077
|
-
};
|
|
7078
|
-
}
|
|
7079
7084
|
interface DeMittwaldCommonsAddress {
|
|
7080
7085
|
street: string;
|
|
7081
7086
|
houseNumber: string;
|
|
@@ -11152,6 +11157,77 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
11152
11157
|
}
|
|
11153
11158
|
}
|
|
11154
11159
|
}
|
|
11160
|
+
namespace V3NextContainerTemplatesTemplateIdAssetsAssetPath {
|
|
11161
|
+
namespace Get {
|
|
11162
|
+
namespace Parameters {
|
|
11163
|
+
type Path = {
|
|
11164
|
+
templateId: string;
|
|
11165
|
+
assetPath: string;
|
|
11166
|
+
};
|
|
11167
|
+
type Header = {};
|
|
11168
|
+
type Query = {};
|
|
11169
|
+
}
|
|
11170
|
+
namespace Responses {
|
|
11171
|
+
namespace $200 {
|
|
11172
|
+
namespace Content {
|
|
11173
|
+
type ImageJpeg = string;
|
|
11174
|
+
type ImagePng = string;
|
|
11175
|
+
type ImageSvgXml = string;
|
|
11176
|
+
type ImageWebp = string;
|
|
11177
|
+
}
|
|
11178
|
+
}
|
|
11179
|
+
namespace $400 {
|
|
11180
|
+
namespace Content {
|
|
11181
|
+
interface ApplicationJson {
|
|
11182
|
+
[k: string]: unknown;
|
|
11183
|
+
}
|
|
11184
|
+
}
|
|
11185
|
+
}
|
|
11186
|
+
namespace $403 {
|
|
11187
|
+
namespace Content {
|
|
11188
|
+
interface ApplicationJson {
|
|
11189
|
+
[k: string]: unknown;
|
|
11190
|
+
}
|
|
11191
|
+
}
|
|
11192
|
+
}
|
|
11193
|
+
namespace $404 {
|
|
11194
|
+
namespace Content {
|
|
11195
|
+
interface ApplicationJson {
|
|
11196
|
+
[k: string]: unknown;
|
|
11197
|
+
}
|
|
11198
|
+
}
|
|
11199
|
+
}
|
|
11200
|
+
namespace $429 {
|
|
11201
|
+
namespace Content {
|
|
11202
|
+
interface ApplicationJson {
|
|
11203
|
+
[k: string]: unknown;
|
|
11204
|
+
}
|
|
11205
|
+
}
|
|
11206
|
+
}
|
|
11207
|
+
namespace $500 {
|
|
11208
|
+
namespace Content {
|
|
11209
|
+
interface ApplicationJson {
|
|
11210
|
+
[k: string]: unknown;
|
|
11211
|
+
}
|
|
11212
|
+
}
|
|
11213
|
+
}
|
|
11214
|
+
namespace $503 {
|
|
11215
|
+
namespace Content {
|
|
11216
|
+
interface ApplicationJson {
|
|
11217
|
+
[k: string]: unknown;
|
|
11218
|
+
}
|
|
11219
|
+
}
|
|
11220
|
+
}
|
|
11221
|
+
namespace Default {
|
|
11222
|
+
namespace Content {
|
|
11223
|
+
interface ApplicationJson {
|
|
11224
|
+
[k: string]: unknown;
|
|
11225
|
+
}
|
|
11226
|
+
}
|
|
11227
|
+
}
|
|
11228
|
+
}
|
|
11229
|
+
}
|
|
11230
|
+
}
|
|
11155
11231
|
namespace V3NextContainerTemplatesTemplateId {
|
|
11156
11232
|
namespace Get {
|
|
11157
11233
|
namespace Parameters {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.438.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.439.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",
|
|
@@ -72,11 +72,11 @@
|
|
|
72
72
|
"test:compile": "run tsc --noEmit"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@mittwald/api-client-commons": "^4.
|
|
75
|
+
"@mittwald/api-client-commons": "^4.439.0",
|
|
76
76
|
"browser-or-node": "^3.0.0"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@mittwald/api-code-generator": "^4.
|
|
79
|
+
"@mittwald/api-code-generator": "^4.439.0",
|
|
80
80
|
"@mittwald/react-use-promise": "^2.6.2",
|
|
81
81
|
"@types/node": "^22.18.11",
|
|
82
82
|
"@types/react": "^18.3.26",
|
|
@@ -106,5 +106,5 @@
|
|
|
106
106
|
"optional": true
|
|
107
107
|
}
|
|
108
108
|
},
|
|
109
|
-
"gitHead": "
|
|
109
|
+
"gitHead": "bd98b678fd5f58ef2284dcd31d8b1c2086c43ac0"
|
|
110
110
|
}
|