@mittwald/api-client 4.436.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 +129 -10
- 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 +129 -10
- 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
|
|
@@ -5973,10 +5978,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5973
5978
|
interface ActivitylogAppInstallationDatabaseLinked {
|
|
5974
5979
|
changes: {
|
|
5975
5980
|
after: {
|
|
5976
|
-
|
|
5981
|
+
name: string;
|
|
5982
|
+
purpose: "unspecified" | "primary" | "cache" | "custom";
|
|
5977
5983
|
};
|
|
5978
5984
|
before: {
|
|
5979
|
-
|
|
5985
|
+
name: string | null;
|
|
5986
|
+
purpose: string | null;
|
|
5980
5987
|
};
|
|
5981
5988
|
};
|
|
5982
5989
|
name: "app.database-linked";
|
|
@@ -5988,10 +5995,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
5988
5995
|
interface ActivitylogAppInstallationDatabaseUnlinked {
|
|
5989
5996
|
changes: {
|
|
5990
5997
|
after: {
|
|
5991
|
-
|
|
5998
|
+
name: string | null;
|
|
5999
|
+
purpose: string | null;
|
|
5992
6000
|
};
|
|
5993
6001
|
before: {
|
|
5994
|
-
|
|
6002
|
+
name: string;
|
|
6003
|
+
purpose: "unspecified" | "primary" | "cache" | "custom";
|
|
5995
6004
|
};
|
|
5996
6005
|
};
|
|
5997
6006
|
name: "app.database-unlinked";
|
|
@@ -6021,6 +6030,14 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6021
6030
|
appInstallation: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6022
6031
|
};
|
|
6023
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
|
+
}
|
|
6024
6041
|
interface ActivitylogAppInstallationCopyRequested {
|
|
6025
6042
|
name: "app.copy-requested";
|
|
6026
6043
|
parameters: {
|
|
@@ -6190,12 +6207,30 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6190
6207
|
name: MittwaldAPIV2.Components.Schemas.ActivitylogParameterProperty;
|
|
6191
6208
|
};
|
|
6192
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
|
+
}
|
|
6193
6226
|
interface ActivitylogDnsARecordSetManaged {
|
|
6194
6227
|
changes: {
|
|
6195
6228
|
after?: {
|
|
6196
|
-
aRecords:
|
|
6229
|
+
aRecords: "managed";
|
|
6230
|
+
};
|
|
6231
|
+
before?: {
|
|
6232
|
+
aRecords: string[] | null;
|
|
6197
6233
|
};
|
|
6198
|
-
before?: {};
|
|
6199
6234
|
};
|
|
6200
6235
|
name: "dns.a-record-set-managed";
|
|
6201
6236
|
parameters: {
|
|
@@ -6207,10 +6242,12 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6207
6242
|
after?: {
|
|
6208
6243
|
aRecords?: string[];
|
|
6209
6244
|
aaaaRecords?: string[];
|
|
6245
|
+
ttl?: (number | "auto") | null;
|
|
6210
6246
|
};
|
|
6211
6247
|
before?: {
|
|
6212
6248
|
aRecords?: string[];
|
|
6213
6249
|
aaaaRecords?: string[];
|
|
6250
|
+
ttl?: (number | "auto") | null;
|
|
6214
6251
|
};
|
|
6215
6252
|
};
|
|
6216
6253
|
name: "dns.a-record-set";
|
|
@@ -6222,9 +6259,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6222
6259
|
changes: {
|
|
6223
6260
|
after?: {
|
|
6224
6261
|
caa: {}[];
|
|
6262
|
+
ttl?: (number | "auto") | null;
|
|
6225
6263
|
};
|
|
6226
6264
|
before?: {
|
|
6227
6265
|
caa: {}[];
|
|
6266
|
+
ttl?: (number | "auto") | null;
|
|
6228
6267
|
};
|
|
6229
6268
|
};
|
|
6230
6269
|
name: "dns.caa-record-set";
|
|
@@ -6236,9 +6275,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6236
6275
|
changes: {
|
|
6237
6276
|
after?: {
|
|
6238
6277
|
cname: string;
|
|
6278
|
+
ttl?: (number | "auto") | null;
|
|
6239
6279
|
};
|
|
6240
6280
|
before?: {
|
|
6241
6281
|
cname: string;
|
|
6282
|
+
ttl?: (number | "auto") | null;
|
|
6242
6283
|
};
|
|
6243
6284
|
};
|
|
6244
6285
|
name: "dns.cname-record-set";
|
|
@@ -6263,9 +6304,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6263
6304
|
interface ActivitylogDnsMxRecordSetManaged {
|
|
6264
6305
|
changes: {
|
|
6265
6306
|
after?: {
|
|
6266
|
-
mx:
|
|
6307
|
+
mx: "managed";
|
|
6308
|
+
};
|
|
6309
|
+
before?: {
|
|
6310
|
+
mx: {}[] | null;
|
|
6267
6311
|
};
|
|
6268
|
-
before?: {};
|
|
6269
6312
|
};
|
|
6270
6313
|
name: "dns.mx-record-set-managed";
|
|
6271
6314
|
parameters: {
|
|
@@ -6276,9 +6319,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6276
6319
|
changes: {
|
|
6277
6320
|
after?: {
|
|
6278
6321
|
mx: {}[];
|
|
6322
|
+
ttl?: (number | "auto") | null;
|
|
6279
6323
|
};
|
|
6280
6324
|
before?: {
|
|
6281
6325
|
mx: {}[];
|
|
6326
|
+
ttl?: (number | "auto") | null;
|
|
6282
6327
|
};
|
|
6283
6328
|
};
|
|
6284
6329
|
name: "dns.mx-record-set";
|
|
@@ -6290,9 +6335,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6290
6335
|
changes: {
|
|
6291
6336
|
after?: {
|
|
6292
6337
|
srv: {}[];
|
|
6338
|
+
ttl?: (number | "auto") | null;
|
|
6293
6339
|
};
|
|
6294
6340
|
before?: {
|
|
6295
6341
|
srv: {}[];
|
|
6342
|
+
ttl?: (number | "auto") | null;
|
|
6296
6343
|
};
|
|
6297
6344
|
};
|
|
6298
6345
|
name: "dns.srv-record-set";
|
|
@@ -6303,9 +6350,11 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6303
6350
|
interface ActivitylogDnsTxtRecordSet {
|
|
6304
6351
|
changes: {
|
|
6305
6352
|
after?: {
|
|
6353
|
+
ttl?: (number | "auto") | null;
|
|
6306
6354
|
txt: string[];
|
|
6307
6355
|
};
|
|
6308
6356
|
before?: {
|
|
6357
|
+
ttl?: (number | "auto") | null;
|
|
6309
6358
|
txt: string[];
|
|
6310
6359
|
};
|
|
6311
6360
|
};
|
|
@@ -6410,7 +6459,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
6410
6459
|
name: string;
|
|
6411
6460
|
}
|
|
6412
6461
|
interface ActivitylogLogEntry {
|
|
6413
|
-
action: MittwaldAPIV2.Components.Schemas.ActivitylogDnsDomainDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsIngressDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCnameRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsSrvRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCaaRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsTxtRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsARecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsARecordSetManaged | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSetManaged | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserPasswordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationCopyRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDatabaseLinked | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDatabaseUnlinked | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationAppVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogGenericAction;
|
|
6462
|
+
action: MittwaldAPIV2.Components.Schemas.ActivitylogDnsDomainDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsIngressDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDnsZoneDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCnameRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsSrvRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsCaaRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsTxtRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsARecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsARecordSetManaged | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDnsMxRecordSetManaged | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserCreated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserPasswordSet | MittwaldAPIV2.Components.Schemas.ActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationCopyRequested | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDescriptionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationFailed | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDatabaseLinked | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDatabaseUnlinked | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationAppVersionSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV2.Components.Schemas.ActivitylogAppInstallationDesiredSystemSoftwareDeleted | MittwaldAPIV2.Components.Schemas.ActivitylogGenericAction;
|
|
6414
6463
|
aggregate: MittwaldAPIV2.Components.Schemas.ActivitylogAggregateReference;
|
|
6415
6464
|
dateTime: string;
|
|
6416
6465
|
/**
|
|
@@ -11116,6 +11165,77 @@ export declare namespace MittwaldAPIV2 {
|
|
|
11116
11165
|
}
|
|
11117
11166
|
}
|
|
11118
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
|
+
}
|
|
11119
11239
|
namespace V2ContainerTemplatesTemplateId {
|
|
11120
11240
|
namespace Get {
|
|
11121
11241
|
namespace Parameters {
|
|
@@ -16971,7 +17091,6 @@ export declare namespace MittwaldAPIV2 {
|
|
|
16971
17091
|
namespace V2AppInstallationsAppInstallationIdDatabaseReplace { }
|
|
16972
17092
|
namespace V2ProjectBackupsProjectBackupIdExpirationTime { }
|
|
16973
17093
|
namespace V2ProjectBackupsProjectBackupIdDescription { }
|
|
16974
|
-
namespace V2ContainerTemplatesTemplateIdAssetsAssetPath { }
|
|
16975
17094
|
namespace V2ContainerTemplatesTemplateIdIcon { }
|
|
16976
17095
|
namespace V2StacksStackIdUpdateSchedule { }
|
|
16977
17096
|
namespace V2ActionsValidateContainerRegistryUri { }
|
|
@@ -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
|
|
@@ -5977,10 +5982,12 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
5977
5982
|
interface DeMittwaldActivitylogAppInstallationDatabaseLinked {
|
|
5978
5983
|
changes: {
|
|
5979
5984
|
after: {
|
|
5980
|
-
|
|
5985
|
+
name: string;
|
|
5986
|
+
purpose: "unspecified" | "primary" | "cache" | "custom";
|
|
5981
5987
|
};
|
|
5982
5988
|
before: {
|
|
5983
|
-
|
|
5989
|
+
name: string | null;
|
|
5990
|
+
purpose: string | null;
|
|
5984
5991
|
};
|
|
5985
5992
|
};
|
|
5986
5993
|
name: "app.database-linked";
|
|
@@ -5992,10 +5999,12 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
5992
5999
|
interface DeMittwaldActivitylogAppInstallationDatabaseUnlinked {
|
|
5993
6000
|
changes: {
|
|
5994
6001
|
after: {
|
|
5995
|
-
|
|
6002
|
+
name: string | null;
|
|
6003
|
+
purpose: string | null;
|
|
5996
6004
|
};
|
|
5997
6005
|
before: {
|
|
5998
|
-
|
|
6006
|
+
name: string;
|
|
6007
|
+
purpose: "unspecified" | "primary" | "cache" | "custom";
|
|
5999
6008
|
};
|
|
6000
6009
|
};
|
|
6001
6010
|
name: "app.database-unlinked";
|
|
@@ -6025,6 +6034,14 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6025
6034
|
appInstallation: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6026
6035
|
};
|
|
6027
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
|
+
}
|
|
6028
6045
|
interface DeMittwaldActivitylogAppInstallationCopyRequested {
|
|
6029
6046
|
name: "app.copy-requested";
|
|
6030
6047
|
parameters: {
|
|
@@ -6194,12 +6211,30 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6194
6211
|
name: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogParameterProperty;
|
|
6195
6212
|
};
|
|
6196
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
|
+
}
|
|
6197
6230
|
interface DeMittwaldActivitylogDnsARecordSetManaged {
|
|
6198
6231
|
changes: {
|
|
6199
6232
|
after?: {
|
|
6200
|
-
aRecords:
|
|
6233
|
+
aRecords: "managed";
|
|
6234
|
+
};
|
|
6235
|
+
before?: {
|
|
6236
|
+
aRecords: string[] | null;
|
|
6201
6237
|
};
|
|
6202
|
-
before?: {};
|
|
6203
6238
|
};
|
|
6204
6239
|
name: "dns.a-record-set-managed";
|
|
6205
6240
|
parameters: {
|
|
@@ -6211,10 +6246,12 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6211
6246
|
after?: {
|
|
6212
6247
|
aRecords?: string[];
|
|
6213
6248
|
aaaaRecords?: string[];
|
|
6249
|
+
ttl?: (number | "auto") | null;
|
|
6214
6250
|
};
|
|
6215
6251
|
before?: {
|
|
6216
6252
|
aRecords?: string[];
|
|
6217
6253
|
aaaaRecords?: string[];
|
|
6254
|
+
ttl?: (number | "auto") | null;
|
|
6218
6255
|
};
|
|
6219
6256
|
};
|
|
6220
6257
|
name: "dns.a-record-set";
|
|
@@ -6226,9 +6263,11 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6226
6263
|
changes: {
|
|
6227
6264
|
after?: {
|
|
6228
6265
|
caa: {}[];
|
|
6266
|
+
ttl?: (number | "auto") | null;
|
|
6229
6267
|
};
|
|
6230
6268
|
before?: {
|
|
6231
6269
|
caa: {}[];
|
|
6270
|
+
ttl?: (number | "auto") | null;
|
|
6232
6271
|
};
|
|
6233
6272
|
};
|
|
6234
6273
|
name: "dns.caa-record-set";
|
|
@@ -6240,9 +6279,11 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6240
6279
|
changes: {
|
|
6241
6280
|
after?: {
|
|
6242
6281
|
cname: string;
|
|
6282
|
+
ttl?: (number | "auto") | null;
|
|
6243
6283
|
};
|
|
6244
6284
|
before?: {
|
|
6245
6285
|
cname: string;
|
|
6286
|
+
ttl?: (number | "auto") | null;
|
|
6246
6287
|
};
|
|
6247
6288
|
};
|
|
6248
6289
|
name: "dns.cname-record-set";
|
|
@@ -6267,9 +6308,11 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6267
6308
|
interface DeMittwaldActivitylogDnsMxRecordSetManaged {
|
|
6268
6309
|
changes: {
|
|
6269
6310
|
after?: {
|
|
6270
|
-
mx:
|
|
6311
|
+
mx: "managed";
|
|
6312
|
+
};
|
|
6313
|
+
before?: {
|
|
6314
|
+
mx: {}[] | null;
|
|
6271
6315
|
};
|
|
6272
|
-
before?: {};
|
|
6273
6316
|
};
|
|
6274
6317
|
name: "dns.mx-record-set-managed";
|
|
6275
6318
|
parameters: {
|
|
@@ -6280,9 +6323,11 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6280
6323
|
changes: {
|
|
6281
6324
|
after?: {
|
|
6282
6325
|
mx: {}[];
|
|
6326
|
+
ttl?: (number | "auto") | null;
|
|
6283
6327
|
};
|
|
6284
6328
|
before?: {
|
|
6285
6329
|
mx: {}[];
|
|
6330
|
+
ttl?: (number | "auto") | null;
|
|
6286
6331
|
};
|
|
6287
6332
|
};
|
|
6288
6333
|
name: "dns.mx-record-set";
|
|
@@ -6294,9 +6339,11 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6294
6339
|
changes: {
|
|
6295
6340
|
after?: {
|
|
6296
6341
|
srv: {}[];
|
|
6342
|
+
ttl?: (number | "auto") | null;
|
|
6297
6343
|
};
|
|
6298
6344
|
before?: {
|
|
6299
6345
|
srv: {}[];
|
|
6346
|
+
ttl?: (number | "auto") | null;
|
|
6300
6347
|
};
|
|
6301
6348
|
};
|
|
6302
6349
|
name: "dns.srv-record-set";
|
|
@@ -6307,9 +6354,11 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6307
6354
|
interface DeMittwaldActivitylogDnsTxtRecordSet {
|
|
6308
6355
|
changes: {
|
|
6309
6356
|
after?: {
|
|
6357
|
+
ttl?: (number | "auto") | null;
|
|
6310
6358
|
txt: string[];
|
|
6311
6359
|
};
|
|
6312
6360
|
before?: {
|
|
6361
|
+
ttl?: (number | "auto") | null;
|
|
6313
6362
|
txt: string[];
|
|
6314
6363
|
};
|
|
6315
6364
|
};
|
|
@@ -6414,7 +6463,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
6414
6463
|
name: string;
|
|
6415
6464
|
}
|
|
6416
6465
|
interface DeMittwaldActivitylogLogEntry {
|
|
6417
|
-
action: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsDomainDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsIngressDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsZoneCreated | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsZoneDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsCnameRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsSrvRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsCaaRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsTxtRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsARecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsARecordSetManaged | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsMxRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsMxRecordSetManaged | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseCreated | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseDescriptionSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseMysqlUserCreated | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseMysqlUserPasswordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationRequested | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationCopyRequested | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDescriptionSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDatabaseLinked | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDatabaseUnlinked | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationAppVersionSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDesiredSystemSoftwareDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogGenericAction;
|
|
6466
|
+
action: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsDomainDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsIngressDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsZoneCreated | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsZoneDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsCnameRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsSrvRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsCaaRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsTxtRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsARecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsARecordSetManaged | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsMxRecordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDnsMxRecordSetManaged | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseCreated | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseDescriptionSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseVersionSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseMysqlUserCreated | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseMysqlUserUpdated | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseMysqlUserPasswordSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogDatabaseMysqlUserDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationRequested | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationCopyRequested | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDescriptionSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationFailed | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDatabaseLinked | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDatabaseUnlinked | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationAppVersionSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDesiredSystemSoftwareSet | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAppInstallationDesiredSystemSoftwareDeleted | MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogGenericAction;
|
|
6418
6467
|
aggregate: MittwaldAPIV3Next.Components.Schemas.DeMittwaldActivitylogAggregateReference;
|
|
6419
6468
|
dateTime: string;
|
|
6420
6469
|
/**
|
|
@@ -11108,6 +11157,77 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
11108
11157
|
}
|
|
11109
11158
|
}
|
|
11110
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
|
+
}
|
|
11111
11231
|
namespace V3NextContainerTemplatesTemplateId {
|
|
11112
11232
|
namespace Get {
|
|
11113
11233
|
namespace Parameters {
|
|
@@ -16961,7 +17081,6 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
16961
17081
|
namespace V3NextAppInstallationsAppInstallationIdDatabaseReplace { }
|
|
16962
17082
|
namespace V3NextProjectBackupsProjectBackupIdExpirationTime { }
|
|
16963
17083
|
namespace V3NextProjectBackupsProjectBackupIdDescription { }
|
|
16964
|
-
namespace V3NextContainerTemplatesTemplateIdAssetsAssetPath { }
|
|
16965
17084
|
namespace V3NextContainerTemplatesTemplateIdIcon { }
|
|
16966
17085
|
namespace V3NextStacksStackIdUpdateSchedule { }
|
|
16967
17086
|
namespace V3NextActionsValidateContainerRegistryUri { }
|
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
|
}
|