@mittwald/api-client 4.426.0 → 4.428.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.427.0';
@@ -668,6 +668,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
668
668
  stackId: string;
669
669
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
670
670
  statusSetAt: string;
671
+ templateId?: string | undefined;
671
672
  }>;
672
673
  /** Get a Container Template asset. */
673
674
  getTemplateAsset: (conf: {
@@ -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;
@@ -5101,6 +5113,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5101
5113
  stackId: string;
5102
5114
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
5103
5115
  statusSetAt: string;
5116
+ templateId?: string | undefined;
5104
5117
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5105
5118
  [x: string]: unknown;
5106
5119
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -5143,6 +5156,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5143
5156
  stackId: string;
5144
5157
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
5145
5158
  statusSetAt: string;
5159
+ templateId?: string | undefined;
5146
5160
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5147
5161
  [x: string]: unknown;
5148
5162
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -2818,6 +2818,10 @@ export declare namespace MittwaldAPIV2 {
2818
2818
  stackId: string;
2819
2819
  status: MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
2820
2820
  statusSetAt: string;
2821
+ /**
2822
+ * ID of the template used to create this service, if one was used.
2823
+ */
2824
+ templateId?: string;
2821
2825
  }
2822
2826
  interface ContainerServiceState {
2823
2827
  /**
@@ -10729,6 +10733,18 @@ export declare namespace MittwaldAPIV2 {
10729
10733
  services?: {
10730
10734
  [k: string]: MittwaldAPIV2.Components.Schemas.ContainerServiceRequest;
10731
10735
  };
10736
+ /**
10737
+ * Schedule for automatic image updates of this stack. Set to `null` to remove the
10738
+ * schedule; omit the property to leave it unchanged.
10739
+ *
10740
+ */
10741
+ updateSchedule?: {
10742
+ cron: string;
10743
+ /**
10744
+ * Valid timezones can be retrieved via GET /v2/time-zones
10745
+ */
10746
+ timezone?: string;
10747
+ };
10732
10748
  /**
10733
10749
  * A set of named volumes that should be created for this stack. Removing a volume
10734
10750
  * from this set will not delete the volume (for safety), but only detach it from the
@@ -668,6 +668,7 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV3NextClient) => {
668
668
  stackId: string;
669
669
  status: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceStatus;
670
670
  statusSetAt: string;
671
+ templateId?: string | undefined;
671
672
  }>;
672
673
  /** Get a Container Template asset. */
673
674
  getTemplateAsset: (conf: {
@@ -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;
@@ -5101,6 +5113,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
5101
5113
  stackId: string;
5102
5114
  status: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceStatus;
5103
5115
  statusSetAt: string;
5116
+ templateId?: string | undefined;
5104
5117
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5105
5118
  [x: string]: unknown;
5106
5119
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -5143,6 +5156,7 @@ export declare class MittwaldAPIV3NextClient extends ApiClientBase {
5143
5156
  stackId: string;
5144
5157
  status: import("./types.js").MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceStatus;
5145
5158
  statusSetAt: string;
5159
+ templateId?: string | undefined;
5146
5160
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5147
5161
  [x: string]: unknown;
5148
5162
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
@@ -2818,6 +2818,10 @@ export declare namespace MittwaldAPIV3Next {
2818
2818
  stackId: string;
2819
2819
  status: MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceStatus;
2820
2820
  statusSetAt: string;
2821
+ /**
2822
+ * ID of the template used to create this service, if one was used.
2823
+ */
2824
+ templateId?: string;
2821
2825
  }
2822
2826
  interface DeMittwaldContainerServiceState {
2823
2827
  /**
@@ -10721,6 +10725,18 @@ export declare namespace MittwaldAPIV3Next {
10721
10725
  services?: {
10722
10726
  [k: string]: MittwaldAPIV3Next.Components.Schemas.DeMittwaldContainerServiceRequest;
10723
10727
  };
10728
+ /**
10729
+ * Schedule for automatic image updates of this stack. Set to `null` to remove the
10730
+ * schedule; omit the property to leave it unchanged.
10731
+ *
10732
+ */
10733
+ updateSchedule?: {
10734
+ cron: string;
10735
+ /**
10736
+ * Valid timezones can be retrieved via GET /v2/time-zones
10737
+ */
10738
+ timezone?: string;
10739
+ };
10724
10740
  /**
10725
10741
  * A set of named volumes that should be created for this stack. Removing a volume
10726
10742
  * 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.427.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.428.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.428.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.428.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": "5a4399cff718d58c9148fd278f5401c525f42914"
110
110
  }