@mittwald/api-client 4.425.0 → 4.427.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 +1 -1
- package/dist/types/generated/v2/client-react.d.ts +1 -0
- package/dist/types/generated/v2/client.d.ts +14 -0
- package/dist/types/generated/v2/types.d.ts +13 -0
- package/dist/types/generated/v3-next/client-react.d.ts +1 -0
- package/dist/types/generated/v3-next/client.d.ts +14 -0
- package/dist/types/generated/v3-next/types.d.ts +13 -0
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.426.0';
|
|
@@ -722,6 +722,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
|
|
|
722
722
|
}[] | undefined;
|
|
723
723
|
supportLink?: string | undefined;
|
|
724
724
|
tagline: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
725
|
+
type: "component" | "standalone";
|
|
725
726
|
userInputs?: {
|
|
726
727
|
dataSource?: string;
|
|
727
728
|
defaultValue?: string;
|
|
@@ -4435,6 +4435,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4435
4435
|
volumes?: string[] | undefined;
|
|
4436
4436
|
};
|
|
4437
4437
|
} | undefined;
|
|
4438
|
+
updateSchedule?: {
|
|
4439
|
+
cron: string;
|
|
4440
|
+
timezone?: string | undefined;
|
|
4441
|
+
} | undefined;
|
|
4438
4442
|
volumes?: {
|
|
4439
4443
|
[x: string]: {
|
|
4440
4444
|
name?: string | undefined;
|
|
@@ -4455,6 +4459,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4455
4459
|
services?: {
|
|
4456
4460
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceRequest;
|
|
4457
4461
|
} | undefined;
|
|
4462
|
+
updateSchedule?: {
|
|
4463
|
+
cron: string;
|
|
4464
|
+
timezone?: string;
|
|
4465
|
+
} | undefined;
|
|
4458
4466
|
volumes?: {
|
|
4459
4467
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeRequest;
|
|
4460
4468
|
} | undefined;
|
|
@@ -4504,6 +4512,10 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
4504
4512
|
services?: {
|
|
4505
4513
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceRequest;
|
|
4506
4514
|
} | undefined;
|
|
4515
|
+
updateSchedule?: {
|
|
4516
|
+
cron: string;
|
|
4517
|
+
timezone?: string;
|
|
4518
|
+
} | undefined;
|
|
4507
4519
|
volumes?: {
|
|
4508
4520
|
[k: string]: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeRequest;
|
|
4509
4521
|
} | undefined;
|
|
@@ -5259,6 +5271,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5259
5271
|
}[] | undefined;
|
|
5260
5272
|
supportLink?: string | undefined;
|
|
5261
5273
|
tagline: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5274
|
+
type: "component" | "standalone";
|
|
5262
5275
|
userInputs?: {
|
|
5263
5276
|
dataSource?: string;
|
|
5264
5277
|
defaultValue?: string;
|
|
@@ -5324,6 +5337,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
|
|
|
5324
5337
|
}[] | undefined;
|
|
5325
5338
|
supportLink?: string | undefined;
|
|
5326
5339
|
tagline: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
5340
|
+
type: "component" | "standalone";
|
|
5327
5341
|
userInputs?: {
|
|
5328
5342
|
dataSource?: string;
|
|
5329
5343
|
defaultValue?: string;
|
|
@@ -2937,6 +2937,7 @@ export declare namespace MittwaldAPIV2 {
|
|
|
2937
2937
|
}[];
|
|
2938
2938
|
supportLink?: string;
|
|
2939
2939
|
tagline: MittwaldAPIV2.Components.Schemas.ContainerTemplateTranslatedString;
|
|
2940
|
+
type: "component" | "standalone";
|
|
2940
2941
|
userInputs?: {
|
|
2941
2942
|
dataSource?: string;
|
|
2942
2943
|
defaultValue?: string;
|
|
@@ -10728,6 +10729,18 @@ export declare namespace MittwaldAPIV2 {
|
|
|
10728
10729
|
services?: {
|
|
10729
10730
|
[k: string]: MittwaldAPIV2.Components.Schemas.ContainerServiceRequest;
|
|
10730
10731
|
};
|
|
10732
|
+
/**
|
|
10733
|
+
* Schedule for automatic image updates of this stack. Set to `null` to remove the
|
|
10734
|
+
* schedule; omit the property to leave it unchanged.
|
|
10735
|
+
*
|
|
10736
|
+
*/
|
|
10737
|
+
updateSchedule?: {
|
|
10738
|
+
cron: string;
|
|
10739
|
+
/**
|
|
10740
|
+
* Valid timezones can be retrieved via GET /v2/time-zones
|
|
10741
|
+
*/
|
|
10742
|
+
timezone?: string;
|
|
10743
|
+
};
|
|
10731
10744
|
/**
|
|
10732
10745
|
* A set of named volumes that should be created for this stack. Removing a volume
|
|
10733
10746
|
* from this set will not delete the volume (for safety), but only detach it from the
|
|
@@ -722,6 +722,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV3NextClient) => {
|
|
|
722
722
|
}[] | undefined;
|
|
723
723
|
supportLink?: string | undefined;
|
|
724
724
|
tagline: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerTemplateTranslatedString;
|
|
725
|
+
type: "component" | "standalone";
|
|
725
726
|
userInputs?: {
|
|
726
727
|
dataSource?: string;
|
|
727
728
|
defaultValue?: string;
|
|
@@ -4435,6 +4435,10 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
4435
4435
|
volumes?: string[] | undefined;
|
|
4436
4436
|
};
|
|
4437
4437
|
} | undefined;
|
|
4438
|
+
updateSchedule?: {
|
|
4439
|
+
cron: string;
|
|
4440
|
+
timezone?: string | undefined;
|
|
4441
|
+
} | undefined;
|
|
4438
4442
|
volumes?: {
|
|
4439
4443
|
[x: string]: {
|
|
4440
4444
|
name?: string | undefined;
|
|
@@ -4455,6 +4459,10 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
4455
4459
|
services?: {
|
|
4456
4460
|
[k: string]: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceRequest;
|
|
4457
4461
|
} | undefined;
|
|
4462
|
+
updateSchedule?: {
|
|
4463
|
+
cron: string;
|
|
4464
|
+
timezone?: string;
|
|
4465
|
+
} | undefined;
|
|
4458
4466
|
volumes?: {
|
|
4459
4467
|
[k: string]: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerVolumeRequest;
|
|
4460
4468
|
} | undefined;
|
|
@@ -4504,6 +4512,10 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
4504
4512
|
services?: {
|
|
4505
4513
|
[k: string]: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceRequest;
|
|
4506
4514
|
} | undefined;
|
|
4515
|
+
updateSchedule?: {
|
|
4516
|
+
cron: string;
|
|
4517
|
+
timezone?: string;
|
|
4518
|
+
} | undefined;
|
|
4507
4519
|
volumes?: {
|
|
4508
4520
|
[k: string]: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerVolumeRequest;
|
|
4509
4521
|
} | undefined;
|
|
@@ -5259,6 +5271,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
5259
5271
|
}[] | undefined;
|
|
5260
5272
|
supportLink?: string | undefined;
|
|
5261
5273
|
tagline: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerTemplateTranslatedString;
|
|
5274
|
+
type: "component" | "standalone";
|
|
5262
5275
|
userInputs?: {
|
|
5263
5276
|
dataSource?: string;
|
|
5264
5277
|
defaultValue?: string;
|
|
@@ -5324,6 +5337,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
|
|
|
5324
5337
|
}[] | undefined;
|
|
5325
5338
|
supportLink?: string | undefined;
|
|
5326
5339
|
tagline: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerTemplateTranslatedString;
|
|
5340
|
+
type: "component" | "standalone";
|
|
5327
5341
|
userInputs?: {
|
|
5328
5342
|
dataSource?: string;
|
|
5329
5343
|
defaultValue?: string;
|
|
@@ -2937,6 +2937,7 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
2937
2937
|
}[];
|
|
2938
2938
|
supportLink?: string;
|
|
2939
2939
|
tagline: MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerTemplateTranslatedString;
|
|
2940
|
+
type: "component" | "standalone";
|
|
2940
2941
|
userInputs?: {
|
|
2941
2942
|
dataSource?: string;
|
|
2942
2943
|
defaultValue?: string;
|
|
@@ -10720,6 +10721,18 @@ export declare namespace MittwaldAPIV3Next {
|
|
|
10720
10721
|
services?: {
|
|
10721
10722
|
[k: string]: MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceRequest;
|
|
10722
10723
|
};
|
|
10724
|
+
/**
|
|
10725
|
+
* Schedule for automatic image updates of this stack. Set to `null` to remove the
|
|
10726
|
+
* schedule; omit the property to leave it unchanged.
|
|
10727
|
+
*
|
|
10728
|
+
*/
|
|
10729
|
+
updateSchedule?: {
|
|
10730
|
+
cron: string;
|
|
10731
|
+
/**
|
|
10732
|
+
* Valid timezones can be retrieved via GET /v2/time-zones
|
|
10733
|
+
*/
|
|
10734
|
+
timezone?: string;
|
|
10735
|
+
};
|
|
10723
10736
|
/**
|
|
10724
10737
|
* A set of named volumes that should be created for this stack. Removing a volume
|
|
10725
10738
|
* from this set will not delete the volume (for safety), but only detach it from the
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export declare const MittwaldAPIClientVersion = '4.426.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mittwald/api-client",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.427.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.427.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.427.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": "83792c03a48d2fb0bb32774f3809ef73a2246907"
|
|
110
110
|
}
|