@mittwald/api-client 4.354.0 → 4.355.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/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.354.0';
|
|
@@ -544,6 +544,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
544
544
|
prefix: string;
|
|
545
545
|
projectId: string;
|
|
546
546
|
services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
|
|
547
|
+
templateId?: string | undefined;
|
|
547
548
|
updateSchedule?: {
|
|
548
549
|
cron: string;
|
|
549
550
|
timezone?: string;
|
|
@@ -3811,6 +3811,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3811
3811
|
prefix: string;
|
|
3812
3812
|
projectId: string;
|
|
3813
3813
|
services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
|
|
3814
|
+
templateId?: string | undefined;
|
|
3814
3815
|
updateSchedule?: {
|
|
3815
3816
|
cron: string;
|
|
3816
3817
|
timezone?: string;
|
|
@@ -3845,6 +3846,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3845
3846
|
prefix: string;
|
|
3846
3847
|
projectId: string;
|
|
3847
3848
|
services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
|
|
3849
|
+
templateId?: string | undefined;
|
|
3848
3850
|
updateSchedule?: {
|
|
3849
3851
|
cron: string;
|
|
3850
3852
|
timezone?: string;
|
|
@@ -3927,6 +3929,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3927
3929
|
prefix: string;
|
|
3928
3930
|
projectId: string;
|
|
3929
3931
|
services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
|
|
3932
|
+
templateId?: string | undefined;
|
|
3930
3933
|
updateSchedule?: {
|
|
3931
3934
|
cron: string;
|
|
3932
3935
|
timezone?: string;
|
|
@@ -3972,6 +3975,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
3972
3975
|
prefix: string;
|
|
3973
3976
|
projectId: string;
|
|
3974
3977
|
services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
|
|
3978
|
+
templateId?: string | undefined;
|
|
3975
3979
|
updateSchedule?: {
|
|
3976
3980
|
cron: string;
|
|
3977
3981
|
timezone?: string;
|
|
@@ -4062,6 +4066,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4062
4066
|
prefix: string;
|
|
4063
4067
|
projectId: string;
|
|
4064
4068
|
services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
|
|
4069
|
+
templateId?: string | undefined;
|
|
4065
4070
|
updateSchedule?: {
|
|
4066
4071
|
cron: string;
|
|
4067
4072
|
timezone?: string;
|
|
@@ -4109,6 +4114,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4109
4114
|
prefix: string;
|
|
4110
4115
|
projectId: string;
|
|
4111
4116
|
services?: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[] | undefined;
|
|
4117
|
+
templateId?: string | undefined;
|
|
4112
4118
|
updateSchedule?: {
|
|
4113
4119
|
cron: string;
|
|
4114
4120
|
timezone?: string;
|
|
@@ -2418,7 +2418,16 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2418
2418
|
}
|
|
2419
2419
|
interface ContainerCreateStack {
|
|
2420
2420
|
description: string;
|
|
2421
|
-
|
|
2421
|
+
templateConfig?: {
|
|
2422
|
+
templateId: string;
|
|
2423
|
+
/**
|
|
2424
|
+
* Values for template user inputs. Missing optional values are filled from template defaults.
|
|
2425
|
+
*/
|
|
2426
|
+
userInputs?: {
|
|
2427
|
+
name: string;
|
|
2428
|
+
value: string;
|
|
2429
|
+
}[];
|
|
2430
|
+
};
|
|
2422
2431
|
}
|
|
2423
2432
|
interface ContainerContainerImageConfig {
|
|
2424
2433
|
/**
|
|
@@ -2758,6 +2767,10 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2758
2767
|
prefix: string;
|
|
2759
2768
|
projectId: string;
|
|
2760
2769
|
services?: MittwaldAPIV2.Components.Schemas.ContainerServiceResponse[];
|
|
2770
|
+
/**
|
|
2771
|
+
* Id of the Template used to create this stack, if one was used.
|
|
2772
|
+
*/
|
|
2773
|
+
templateId?: string;
|
|
2761
2774
|
updateSchedule?: {
|
|
2762
2775
|
cron: string;
|
|
2763
2776
|
timezone?: string;
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.354.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.355.0",
|
|
4
4
|
"author": "Mittwald CM Service GmbH & Co. KG <opensource@mittwald.de>",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Auto-generated client for the mittwald API",
|
|
@@ -46,11 +46,11 @@
|
|
|
46
46
|
"test:compile": "run tsc --noEmit"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@mittwald/api-client-commons": "^4.
|
|
49
|
+
"@mittwald/api-client-commons": "^4.355.0",
|
|
50
50
|
"browser-or-node": "^3.0.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@mittwald/api-code-generator": "^4.
|
|
53
|
+
"@mittwald/api-code-generator": "^4.355.0",
|
|
54
54
|
"@mittwald/react-use-promise": "^2.6.2",
|
|
55
55
|
"@types/node": "^22.18.11",
|
|
56
56
|
"@types/react": "^18.3.26",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"optional": true
|
|
81
81
|
}
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "56b3904abf7e636311cf697860006a53f1fecbb5"
|
|
84
84
|
}
|