@mittwald/api-client 4.426.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.
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.425.0';
1
+ export const MittwaldAPIClientVersion = '4.426.0';
@@ -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;
@@ -10729,6 +10729,18 @@ export declare namespace MittwaldAPIV2 {
10729
10729
  services?: {
10730
10730
  [k: string]: MittwaldAPIV2.Components.Schemas.ContainerServiceRequest;
10731
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
+ };
10732
10744
  /**
10733
10745
  * A set of named volumes that should be created for this stack. Removing a volume
10734
10746
  * from this set will not delete the volume (for safety), but only detach it from the
@@ -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;
@@ -10721,6 +10721,18 @@ export declare namespace MittwaldAPIV3Next {
10721
10721
  services?: {
10722
10722
  [k: string]: MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceRequest;
10723
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
+ };
10724
10736
  /**
10725
10737
  * A set of named volumes that should be created for this stack. Removing a volume
10726
10738
  * from this set will not delete the volume (for safety), but only detach it from the
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.425.0';
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.426.0",
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.426.0",
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.426.0",
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": "fbf825bb33b6868fff203e9c6024f584ea6071fd"
109
+ "gitHead": "83792c03a48d2fb0bb32774f3809ef73a2246907"
110
110
  }