@mittwald/api-client 4.339.0 → 4.341.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.338.1';
1
+ export const MittwaldAPIClientVersion = '4.340.0';
@@ -1627,6 +1627,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
1627
1627
  } | undefined;
1628
1628
  queryParameters?: {
1629
1629
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
1630
+ includeServiceCronjobs?: boolean | undefined;
1630
1631
  limit?: number | undefined;
1631
1632
  skip?: number | undefined;
1632
1633
  page?: number | undefined;
@@ -1665,7 +1666,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
1665
1666
  concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
1666
1667
  createdAt: string;
1667
1668
  description: string;
1668
- destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
1669
+ destination?: (import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand) | undefined;
1669
1670
  email?: string | undefined;
1670
1671
  failedExecutionAlertThreshold: number;
1671
1672
  id: string;
@@ -1674,6 +1675,7 @@ declare const buildCronjobApi: (baseClient: MittwaldAPIV2Client) => {
1674
1675
  nextExecutionTime?: string | undefined;
1675
1676
  projectId?: string | undefined;
1676
1677
  shortId: string;
1678
+ target?: (import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobAppInstallationTarget | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobServiceTargetResponse) | undefined;
1677
1679
  timeZone?: string | undefined;
1678
1680
  timeout: number;
1679
1681
  updatedAt: string;
@@ -3175,6 +3177,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
3175
3177
  isReady: boolean;
3176
3178
  projectHostingId?: string | undefined;
3177
3179
  readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
3180
+ serverGroupId: string;
3178
3181
  serverId?: string | undefined;
3179
3182
  serverShortId?: string | undefined;
3180
3183
  shortId: string;
@@ -3239,6 +3242,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
3239
3242
  customerId: string;
3240
3243
  description: string;
3241
3244
  disabledReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServerDisableReason | undefined;
3245
+ groupId: string;
3242
3246
  id: string;
3243
3247
  imageRefId?: string | undefined;
3244
3248
  isReady: boolean;
@@ -3330,6 +3334,7 @@ declare const buildProjectApi: (baseClient: MittwaldAPIV2Client) => {
3330
3334
  isReady: boolean;
3331
3335
  projectHostingId?: string;
3332
3336
  readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
3337
+ serverGroupId: string;
3333
3338
  serverId?: string;
3334
3339
  shortId: string;
3335
3340
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
@@ -13174,6 +13174,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13174
13174
  } | undefined;
13175
13175
  queryParameters?: {
13176
13176
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
13177
+ includeServiceCronjobs?: boolean | undefined;
13177
13178
  limit?: number | undefined;
13178
13179
  skip?: number | undefined;
13179
13180
  page?: number | undefined;
@@ -13188,6 +13189,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13188
13189
  };
13189
13190
  } & {
13190
13191
  queryParameters: {
13192
+ includeServiceCronjobs?: boolean | undefined;
13191
13193
  limit?: number | undefined;
13192
13194
  skip?: number | undefined;
13193
13195
  page?: number | undefined;
@@ -13212,6 +13214,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13212
13214
  };
13213
13215
  } & {
13214
13216
  queryParameters: {
13217
+ includeServiceCronjobs?: boolean | undefined;
13215
13218
  limit?: number | undefined;
13216
13219
  skip?: number | undefined;
13217
13220
  page?: number | undefined;
@@ -13231,21 +13234,35 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13231
13234
  createCronjob: (request: {
13232
13235
  data: {
13233
13236
  active: boolean;
13234
- appId: string;
13235
13237
  description: string;
13236
- destination: {
13238
+ interval: string;
13239
+ timeout: number;
13240
+ appId?: string | undefined;
13241
+ appInstallationId?: string | undefined;
13242
+ concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
13243
+ destination?: {
13237
13244
  interpreter: string;
13238
13245
  path: string;
13239
13246
  parameters?: string | undefined;
13240
13247
  } | {
13241
13248
  url: string;
13242
- };
13243
- interval: string;
13244
- timeout: number;
13245
- appInstallationId?: string | undefined;
13246
- concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
13249
+ } | undefined;
13247
13250
  email?: string | undefined;
13248
13251
  failedExecutionAlertThreshold?: number | undefined;
13252
+ target?: {
13253
+ appInstallationId: string;
13254
+ destination: {
13255
+ interpreter: string;
13256
+ path: string;
13257
+ parameters?: string | undefined;
13258
+ } | {
13259
+ url: string;
13260
+ };
13261
+ } | {
13262
+ command: string;
13263
+ serviceIdentifier: string;
13264
+ stackId: string;
13265
+ } | undefined;
13249
13266
  timeZone?: string | undefined;
13250
13267
  };
13251
13268
  projectId: string;
@@ -13256,14 +13273,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13256
13273
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
13257
13274
  data: {
13258
13275
  active: boolean;
13259
- appId: string;
13276
+ appId?: string | undefined;
13260
13277
  appInstallationId?: string | undefined;
13261
13278
  concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
13262
13279
  description: string;
13263
- destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
13280
+ destination?: (import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand) | undefined;
13264
13281
  email?: string | undefined;
13265
13282
  failedExecutionAlertThreshold?: number | undefined;
13266
13283
  interval: string;
13284
+ target?: (import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobAppInstallationTarget | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobServiceTarget) | undefined;
13267
13285
  timeZone?: string | undefined;
13268
13286
  timeout: number;
13269
13287
  };
@@ -13292,14 +13310,15 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13292
13310
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
13293
13311
  data: {
13294
13312
  active: boolean;
13295
- appId: string;
13313
+ appId?: string | undefined;
13296
13314
  appInstallationId?: string | undefined;
13297
13315
  concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
13298
13316
  description: string;
13299
- destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
13317
+ destination?: (import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand) | undefined;
13300
13318
  email?: string | undefined;
13301
13319
  failedExecutionAlertThreshold?: number | undefined;
13302
13320
  interval: string;
13321
+ target?: (import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobAppInstallationTarget | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobServiceTarget) | undefined;
13303
13322
  timeZone?: string | undefined;
13304
13323
  timeout: number;
13305
13324
  };
@@ -13483,7 +13502,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13483
13502
  concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
13484
13503
  createdAt: string;
13485
13504
  description: string;
13486
- destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
13505
+ destination?: (import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand) | undefined;
13487
13506
  email?: string | undefined;
13488
13507
  failedExecutionAlertThreshold: number;
13489
13508
  id: string;
@@ -13492,6 +13511,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13492
13511
  nextExecutionTime?: string | undefined;
13493
13512
  projectId?: string | undefined;
13494
13513
  shortId: string;
13514
+ target?: (import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobAppInstallationTarget | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobServiceTargetResponse) | undefined;
13495
13515
  timeZone?: string | undefined;
13496
13516
  timeout: number;
13497
13517
  updatedAt: string;
@@ -13520,7 +13540,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13520
13540
  concurrencyPolicy?: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy | undefined;
13521
13541
  createdAt: string;
13522
13542
  description: string;
13523
- destination: import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
13543
+ destination?: (import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand) | undefined;
13524
13544
  email?: string | undefined;
13525
13545
  failedExecutionAlertThreshold: number;
13526
13546
  id: string;
@@ -13529,6 +13549,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13529
13549
  nextExecutionTime?: string | undefined;
13530
13550
  projectId?: string | undefined;
13531
13551
  shortId: string;
13552
+ target?: (import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobAppInstallationTarget | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobServiceTargetResponse) | undefined;
13532
13553
  timeZone?: string | undefined;
13533
13554
  timeout: number;
13534
13555
  updatedAt: string;
@@ -13602,6 +13623,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13602
13623
  email?: string | undefined;
13603
13624
  failedExecutionAlertThreshold?: number | undefined;
13604
13625
  interval?: string | undefined;
13626
+ target?: {
13627
+ appInstallationId: string;
13628
+ destination: {
13629
+ interpreter: string;
13630
+ path: string;
13631
+ parameters?: string | undefined;
13632
+ } | {
13633
+ url: string;
13634
+ };
13635
+ } | {
13636
+ command: string;
13637
+ serviceIdentifier: string;
13638
+ stackId: string;
13639
+ } | undefined;
13605
13640
  timeZone?: string | undefined;
13606
13641
  timeout?: number | undefined;
13607
13642
  } | undefined;
@@ -13618,6 +13653,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13618
13653
  email?: string | undefined;
13619
13654
  failedExecutionAlertThreshold?: number | undefined;
13620
13655
  interval?: string | undefined;
13656
+ target?: (import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobAppInstallationTarget | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobServiceTarget) | undefined;
13621
13657
  timeZone?: string | undefined;
13622
13658
  timeout?: number | undefined;
13623
13659
  };
@@ -13652,6 +13688,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
13652
13688
  email?: string | undefined;
13653
13689
  failedExecutionAlertThreshold?: number | undefined;
13654
13690
  interval?: string | undefined;
13691
+ target?: (import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobAppInstallationTarget | import("./types.js").MittwaldAPIV2.Components.Schemas.CronjobServiceTarget) | undefined;
13655
13692
  timeZone?: string | undefined;
13656
13693
  timeout?: number | undefined;
13657
13694
  };
@@ -27734,6 +27771,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
27734
27771
  isReady: boolean;
27735
27772
  projectHostingId?: string | undefined;
27736
27773
  readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
27774
+ serverGroupId: string;
27737
27775
  serverId?: string | undefined;
27738
27776
  serverShortId?: string | undefined;
27739
27777
  shortId: string;
@@ -27784,6 +27822,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
27784
27822
  isReady: boolean;
27785
27823
  projectHostingId?: string | undefined;
27786
27824
  readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
27825
+ serverGroupId: string;
27787
27826
  serverId?: string | undefined;
27788
27827
  serverShortId?: string | undefined;
27789
27828
  shortId: string;
@@ -28118,6 +28157,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
28118
28157
  customerId: string;
28119
28158
  description: string;
28120
28159
  disabledReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServerDisableReason | undefined;
28160
+ groupId: string;
28121
28161
  id: string;
28122
28162
  imageRefId?: string | undefined;
28123
28163
  isReady: boolean;
@@ -28153,6 +28193,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
28153
28193
  customerId: string;
28154
28194
  description: string;
28155
28195
  disabledReason?: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectServerDisableReason | undefined;
28196
+ groupId: string;
28156
28197
  id: string;
28157
28198
  imageRefId?: string | undefined;
28158
28199
  isReady: boolean;
@@ -28433,6 +28474,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
28433
28474
  isReady: boolean;
28434
28475
  projectHostingId?: string;
28435
28476
  readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
28477
+ serverGroupId: string;
28436
28478
  serverId?: string;
28437
28479
  shortId: string;
28438
28480
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
@@ -28487,6 +28529,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
28487
28529
  isReady: boolean;
28488
28530
  projectHostingId?: string;
28489
28531
  readiness: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
28532
+ serverGroupId: string;
28490
28533
  serverId?: string;
28491
28534
  shortId: string;
28492
28535
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
@@ -3165,11 +3165,17 @@ export declare namespace MittwaldAPIV2 {
3165
3165
  * DEPRECATED: Use 'appInstallationId' instead. This field will be removed in a future version.
3166
3166
  */
3167
3167
  appId: string;
3168
+ /**
3169
+ * DEPRECATED: Use 'target.appCronjob' instead. This field will be removed in a future version.
3170
+ */
3168
3171
  appInstallationId?: string;
3169
3172
  concurrencyPolicy?: MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy;
3170
3173
  createdAt: string;
3171
3174
  description: string;
3172
- destination: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
3175
+ /**
3176
+ * DEPRECATED: Use 'target.' instead. This field will be removed in a future version.
3177
+ */
3178
+ destination?: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
3173
3179
  email?: string;
3174
3180
  failedExecutionAlertThreshold: number;
3175
3181
  id: string;
@@ -3178,6 +3184,7 @@ export declare namespace MittwaldAPIV2 {
3178
3184
  nextExecutionTime?: string;
3179
3185
  projectId?: string;
3180
3186
  shortId: string;
3187
+ target?: MittwaldAPIV2.Components.Schemas.CronjobAppInstallationTarget | MittwaldAPIV2.Components.Schemas.CronjobServiceTargetResponse;
3181
3188
  timeZone?: string;
3182
3189
  timeout: number;
3183
3190
  updatedAt: string;
@@ -3215,16 +3222,23 @@ export declare namespace MittwaldAPIV2 {
3215
3222
  active: boolean;
3216
3223
  /**
3217
3224
  * @deprecated
3218
- * DEPRECATED: Use 'appInstallationId' instead. This field will be removed in a future version.
3225
+ * DEPRECATED: Use 'target.AppInstallationTarget' instead. This field will be removed in a future version.
3226
+ */
3227
+ appId?: string;
3228
+ /**
3229
+ * DEPRECATED: Use 'target.AppInstallationTarget' instead. This field will be removed in a future version.
3219
3230
  */
3220
- appId: string;
3221
3231
  appInstallationId?: string;
3222
3232
  concurrencyPolicy?: MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy;
3223
3233
  description: string;
3224
- destination: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
3234
+ /**
3235
+ * DEPRECATED: Use 'target.AppInstallationTarget' instead. This field will be removed in a future version.
3236
+ */
3237
+ destination?: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
3225
3238
  email?: string;
3226
3239
  failedExecutionAlertThreshold?: number;
3227
3240
  interval: string;
3241
+ target?: MittwaldAPIV2.Components.Schemas.CronjobAppInstallationTarget | MittwaldAPIV2.Components.Schemas.CronjobServiceTarget;
3228
3242
  timeZone?: string;
3229
3243
  timeout: number;
3230
3244
  }
@@ -5536,6 +5550,7 @@ export declare namespace MittwaldAPIV2 {
5536
5550
  isReady: boolean;
5537
5551
  projectHostingId?: string;
5538
5552
  readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
5553
+ serverGroupId: string;
5539
5554
  serverId?: string;
5540
5555
  serverShortId?: string;
5541
5556
  shortId: string;
@@ -5555,6 +5570,7 @@ export declare namespace MittwaldAPIV2 {
5555
5570
  customerId: string;
5556
5571
  description: string;
5557
5572
  disabledReason?: MittwaldAPIV2.Components.Schemas.ProjectServerDisableReason;
5573
+ groupId: string;
5558
5574
  id: string;
5559
5575
  imageRefId?: string;
5560
5576
  /**
@@ -6045,7 +6061,6 @@ export declare namespace MittwaldAPIV2 {
6045
6061
  }
6046
6062
  type VerificationEmailOrigin = "IS_MITTWALD" | "IS_NOT_MITTWALD" | "COULD_BE_MITTWALD";
6047
6063
  type ContainerVolumeSortOrder = "nameAsc" | "nameDesc" | "storageAsc" | "storageDesc";
6048
- type AihostingDetailedModelStatus = "active" | "needApproval" | "deprecated";
6049
6064
  interface AihostingCustomerDetailedModel {
6050
6065
  activeAt: string;
6051
6066
  displayName: string;
@@ -6056,6 +6071,7 @@ export declare namespace MittwaldAPIV2 {
6056
6071
  status: MittwaldAPIV2.Components.Schemas.AihostingDetailedModelStatus;
6057
6072
  termsOfServiceLink: string;
6058
6073
  }
6074
+ type AihostingDetailedModelStatus = "active" | "needApproval" | "deprecated";
6059
6075
  interface AihostingProjectDetailedModel {
6060
6076
  activeAt: string;
6061
6077
  displayName: string;
@@ -6066,6 +6082,40 @@ export declare namespace MittwaldAPIV2 {
6066
6082
  status: MittwaldAPIV2.Components.Schemas.AihostingDetailedModelStatus;
6067
6083
  termsOfServiceLink: string;
6068
6084
  }
6085
+ interface CronjobAppInstallationTarget {
6086
+ appInstallationId: string;
6087
+ destination: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
6088
+ }
6089
+ interface CronjobAppInstallationPatchTarget {
6090
+ appInstallationId?: string;
6091
+ destination?: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
6092
+ }
6093
+ interface CronjobServicePatchTarget {
6094
+ command?: string;
6095
+ serviceIdentifier?: string;
6096
+ stackId?: string;
6097
+ }
6098
+ interface CronjobServiceCronjobRequest {
6099
+ active: boolean;
6100
+ concurrencyPolicy?: MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy;
6101
+ description: string;
6102
+ email?: string;
6103
+ failedExecutionAlertThreshold?: number;
6104
+ interval: string;
6105
+ target?: MittwaldAPIV2.Components.Schemas.CronjobServiceTarget;
6106
+ timeZone?: string;
6107
+ timeout: number;
6108
+ }
6109
+ interface CronjobServiceTarget {
6110
+ command: string;
6111
+ serviceIdentifier: string;
6112
+ stackId: string;
6113
+ }
6114
+ interface CronjobServiceTargetResponse {
6115
+ command: string;
6116
+ serviceShortId: string;
6117
+ stackId: string;
6118
+ }
6069
6119
  interface CommonsAddress {
6070
6120
  street: string;
6071
6121
  houseNumber: string;
@@ -13165,6 +13215,7 @@ export declare namespace MittwaldAPIV2 {
13165
13215
  };
13166
13216
  type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
13167
13217
  type Query = {
13218
+ includeServiceCronjobs?: boolean;
13168
13219
  limit?: number;
13169
13220
  skip?: number;
13170
13221
  page?: number;
@@ -13421,10 +13472,14 @@ export declare namespace MittwaldAPIV2 {
13421
13472
  active?: boolean;
13422
13473
  concurrencyPolicy?: MittwaldAPIV2.Components.Schemas.CronjobConcurrencyPolicy;
13423
13474
  description?: string;
13475
+ /**
13476
+ * deprecated, use target instead
13477
+ */
13424
13478
  destination?: MittwaldAPIV2.Components.Schemas.CronjobCronjobUrl | MittwaldAPIV2.Components.Schemas.CronjobCronjobCommand;
13425
13479
  email?: string;
13426
13480
  failedExecutionAlertThreshold?: number;
13427
13481
  interval?: string;
13482
+ target?: MittwaldAPIV2.Components.Schemas.CronjobAppInstallationTarget | MittwaldAPIV2.Components.Schemas.CronjobServiceTarget;
13428
13483
  timeZone?: string;
13429
13484
  timeout?: number;
13430
13485
  }
@@ -25766,6 +25821,7 @@ export declare namespace MittwaldAPIV2 {
25766
25821
  isReady: boolean;
25767
25822
  projectHostingId?: string;
25768
25823
  readiness: MittwaldAPIV2.Components.Schemas.ProjectDeprecatedProjectReadinessStatus;
25824
+ serverGroupId: string;
25769
25825
  serverId?: string;
25770
25826
  shortId: string;
25771
25827
  status: MittwaldAPIV2.Components.Schemas.ProjectProjectStatus;
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.338.1';
1
+ export declare const MittwaldAPIClientVersion = '4.340.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.339.0",
3
+ "version": "4.341.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.339.0",
49
+ "@mittwald/api-client-commons": "^4.341.0",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^4.339.0",
53
+ "@mittwald/api-code-generator": "^4.341.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": "091f821f4494a21d0ae45d752da8a708b27488af"
83
+ "gitHead": "a392741b6905f428bc2b2d5dcda32fb412093531"
84
84
  }