@mittwald/api-client 4.325.0 → 4.326.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.
@@ -84,6 +84,8 @@ const buildContainerApi = (baseClient) => ({
84
84
  getServiceLogs: new ApiCallAsyncResourceFactory(descriptors.containerGetServiceLogs, baseClient.container.getServiceLogs).getApiResource,
85
85
  /** Get a Service belonging to a Stack. */
86
86
  getService: new ApiCallAsyncResourceFactory(descriptors.containerGetService, baseClient.container.getService).getApiResource,
87
+ /** List Stacks belonging to the executing user. */
88
+ listSelfStacks: new ApiCallAsyncResourceFactory(descriptors.containerListSelfStacks, baseClient.container.listSelfStacks).getApiResource,
87
89
  /** List Services belonging to a Project. */
88
90
  listServices: new ApiCallAsyncResourceFactory(descriptors.containerListServices, baseClient.container.listServices).getApiResource,
89
91
  /** List Volumes belonging to a Stack. */
@@ -92,8 +94,6 @@ const buildContainerApi = (baseClient) => ({
92
94
  listStacks: new ApiCallAsyncResourceFactory(descriptors.containerListStacks, baseClient.container.listStacks).getApiResource,
93
95
  /** List Volumes belonging to a Project. */
94
96
  listVolumes: new ApiCallAsyncResourceFactory(descriptors.containerListVolumes, baseClient.container.listVolumes).getApiResource,
95
- /** List Stacks belonging to the executing user. */
96
- listSelfStacks: new ApiCallAsyncResourceFactory(descriptors.containerListSelfStacks, baseClient.container.listSelfStacks).getApiResource,
97
97
  });
98
98
  const buildContractApi = (baseClient) => ({
99
99
  /** Return the BaseItem of the Contract with the given ID. */
@@ -119,12 +119,12 @@ export class MittwaldAPIV2Client extends ApiClientBase {
119
119
  getProjectBackupDatabaseDumpsV2Experimental: this.requestFunctionFactory(descriptors.backupGetProjectBackupDatabaseDumpsV2Experimental),
120
120
  /** List paths for a ProjectBackup. */
121
121
  getProjectBackupDirectories: this.requestFunctionFactory(descriptors.backupGetProjectBackupDirectories),
122
+ /** Update a Backup's expiration time. */
123
+ replaceProjectBackupExpirationTime: this.requestFunctionFactory(descriptors.backupReplaceProjectBackupExpirationTime),
122
124
  /** Restore a ProjectBackup. */
123
125
  requestProjectBackupRestoreV2Experimental: this.requestFunctionFactory(descriptors.backupRequestProjectBackupRestoreV2Experimental),
124
126
  /** Change the description of a ProjectBackup. */
125
127
  updateProjectBackupDescription: this.requestFunctionFactory(descriptors.backupUpdateProjectBackupDescription),
126
- /** Update a Backup's expiration time. */
127
- replaceProjectBackupExpirationTime: this.requestFunctionFactory(descriptors.backupReplaceProjectBackupExpirationTime),
128
128
  };
129
129
  /** The container API allows you to manage your stacks, containers, volumes and registries. */
130
130
  container = {
@@ -154,6 +154,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
154
154
  getServiceLogs: this.requestFunctionFactory(descriptors.containerGetServiceLogs),
155
155
  /** Get a Service belonging to a Stack. */
156
156
  getService: this.requestFunctionFactory(descriptors.containerGetService),
157
+ /** List Stacks belonging to the executing user. */
158
+ listSelfStacks: this.requestFunctionFactory(descriptors.containerListSelfStacks),
157
159
  /** List Services belonging to a Project. */
158
160
  listServices: this.requestFunctionFactory(descriptors.containerListServices),
159
161
  /** List Volumes belonging to a Stack. */
@@ -168,6 +170,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
168
170
  recreateService: this.requestFunctionFactory(descriptors.containerRecreateService),
169
171
  /** Restart a started Service. */
170
172
  restartService: this.requestFunctionFactory(descriptors.containerRestartService),
173
+ /** Set an update schedule for a Stack. */
174
+ setStackUpdateSchedule: this.requestFunctionFactory(descriptors.containerSetStackUpdateSchedule),
171
175
  /** Start a stopped Service. */
172
176
  startService: this.requestFunctionFactory(descriptors.containerStartService),
173
177
  /** Stop a started Service. */
@@ -176,10 +180,6 @@ export class MittwaldAPIV2Client extends ApiClientBase {
176
180
  validateContainerRegistryUri: this.requestFunctionFactory(descriptors.containerValidateContainerRegistryUri),
177
181
  /** Validate a Registries' credentials. */
178
182
  validateRegistryCredentials: this.requestFunctionFactory(descriptors.containerValidateRegistryCredentials),
179
- /** Set an update schedule for a Stack. */
180
- setStackUpdateSchedule: this.requestFunctionFactory(descriptors.containerSetStackUpdateSchedule),
181
- /** List Stacks belonging to the executing user. */
182
- listSelfStacks: this.requestFunctionFactory(descriptors.containerListSelfStacks),
183
183
  };
184
184
  /** The contract API allows you to manage your contracts and orders */
185
185
  contract = {
@@ -310,6 +310,12 @@ export const backupGetProjectBackupDirectories = {
310
310
  method: "GET",
311
311
  operationId: "backup-get-project-backup-directories",
312
312
  };
313
+ /** Update a Backup's expiration time. */
314
+ export const backupReplaceProjectBackupExpirationTime = {
315
+ path: "/v2/project-backups/{projectBackupId}/expiration-time",
316
+ method: "PUT",
317
+ operationId: "backup-replace-project-backup-expiration-time",
318
+ };
313
319
  /** Restore a ProjectBackup. */
314
320
  export const backupRequestProjectBackupRestoreV2Experimental = {
315
321
  path: "/v2/project-backups/{projectBackupId}/restore",
@@ -400,6 +406,12 @@ export const containerGetService = {
400
406
  method: "GET",
401
407
  operationId: "container-get-service",
402
408
  };
409
+ /** List Stacks belonging to the executing user. */
410
+ export const containerListSelfStacks = {
411
+ path: "/v2/stacks",
412
+ method: "GET",
413
+ operationId: "container-list-self-stacks",
414
+ };
403
415
  /** List Services belonging to a Project. */
404
416
  export const containerListServices = {
405
417
  path: "/v2/projects/{projectId}/services",
@@ -442,6 +454,12 @@ export const containerRestartService = {
442
454
  method: "POST",
443
455
  operationId: "container-restart-service",
444
456
  };
457
+ /** Set an update schedule for a Stack. */
458
+ export const containerSetStackUpdateSchedule = {
459
+ path: "/v2/stacks/{stackId}/update-schedule",
460
+ method: "PUT",
461
+ operationId: "container-set-stack-update-schedule",
462
+ };
445
463
  /** Start a stopped Service. */
446
464
  export const containerStartService = {
447
465
  path: "/v2/stacks/{stackId}/services/{serviceId}/actions/start",
@@ -2722,21 +2740,3 @@ export const verificationVerifyCompany = {
2722
2740
  method: "POST",
2723
2741
  operationId: "verification-verify-company",
2724
2742
  };
2725
- /** Set an update schedule for a Stack. */
2726
- export const containerSetStackUpdateSchedule = {
2727
- path: "/v2/stacks/{stackId}/update-schedule",
2728
- method: "PUT",
2729
- operationId: "container-set-stack-update-schedule",
2730
- };
2731
- /** List Stacks belonging to the executing user. */
2732
- export const containerListSelfStacks = {
2733
- path: "/v2/stacks",
2734
- method: "GET",
2735
- operationId: "container-list-self-stacks",
2736
- };
2737
- /** Update a Backup's expiration time. */
2738
- export const backupReplaceProjectBackupExpirationTime = {
2739
- path: "/v2/project-backups/{projectBackupId}/expiration-time",
2740
- method: "PUT",
2741
- operationId: "backup-replace-project-backup-expiration-time",
2742
- };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.324.0';
1
+ export const MittwaldAPIClientVersion = '4.325.0';
@@ -609,6 +609,19 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
609
609
  status: import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerServiceStatus;
610
610
  statusSetAt: string;
611
611
  }>;
612
+ /** List Stacks belonging to the executing user. */
613
+ listSelfStacks: (conf?: {
614
+ headers?: {
615
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
616
+ "x-access-token"?: string | undefined;
617
+ } | undefined;
618
+ queryParameters?: {
619
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
620
+ limit?: number | undefined;
621
+ skip?: number | undefined;
622
+ page?: number | undefined;
623
+ } | undefined;
624
+ } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerStackResponse[]>;
612
625
  /** List Services belonging to a Project. */
613
626
  listServices: (conf: {
614
627
  projectId: string;
@@ -675,19 +688,6 @@ declare const buildContainerApi: (baseClient: MittwaldAPIV2Client) => {
675
688
  page?: number | undefined;
676
689
  } | undefined;
677
690
  }) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerVolumeResponse[]>;
678
- /** List Stacks belonging to the executing user. */
679
- listSelfStacks: (conf?: {
680
- headers?: {
681
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
682
- "x-access-token"?: string | undefined;
683
- } | undefined;
684
- queryParameters?: {
685
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
686
- limit?: number | undefined;
687
- skip?: number | undefined;
688
- page?: number | undefined;
689
- } | undefined;
690
- } | null | undefined) => import("@mittwald/react-use-promise").AsyncResource<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerStackResponse[]>;
691
691
  };
692
692
  declare const buildContractApi: (baseClient: MittwaldAPIV2Client) => {
693
693
  /** Return the BaseItem of the Contract with the given ID. */
@@ -3245,16 +3245,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3245
3245
  }, 502, "application/json"> | import("@mittwald/api-client-commons").Response<{
3246
3246
  [x: string]: unknown;
3247
3247
  }, 503, "application/json">>>;
3248
- /** Restore a ProjectBackup. */
3249
- requestProjectBackupRestoreV2Experimental: (request: {
3248
+ /** Update a Backup's expiration time. */
3249
+ replaceProjectBackupExpirationTime: (request: {
3250
3250
  projectBackupId: string;
3251
3251
  data?: {
3252
- databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
3253
- pathRestore?: {
3254
- sourcePaths: string[];
3255
- clearTargetPath?: boolean | undefined;
3256
- targetRestorePath?: string | undefined;
3257
- } | undefined;
3252
+ expirationTime?: string | undefined;
3258
3253
  } | undefined;
3259
3254
  headers?: {
3260
3255
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -3262,8 +3257,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3262
3257
  } | undefined;
3263
3258
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3264
3259
  data: {
3265
- databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
3266
- pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
3260
+ expirationTime?: string | undefined;
3267
3261
  };
3268
3262
  } & {
3269
3263
  pathParameters: {
@@ -3289,8 +3283,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3289
3283
  [x: string]: unknown;
3290
3284
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3291
3285
  data: {
3292
- databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
3293
- pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
3286
+ expirationTime?: string | undefined;
3294
3287
  };
3295
3288
  } & {
3296
3289
  pathParameters: {
@@ -3315,11 +3308,16 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3315
3308
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3316
3309
  [x: string]: unknown;
3317
3310
  }, 429, "application/json">>>;
3318
- /** Change the description of a ProjectBackup. */
3319
- updateProjectBackupDescription: (request: {
3311
+ /** Restore a ProjectBackup. */
3312
+ requestProjectBackupRestoreV2Experimental: (request: {
3320
3313
  projectBackupId: string;
3321
3314
  data?: {
3322
- description?: string | undefined;
3315
+ databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
3316
+ pathRestore?: {
3317
+ sourcePaths: string[];
3318
+ clearTargetPath?: boolean | undefined;
3319
+ targetRestorePath?: string | undefined;
3320
+ } | undefined;
3323
3321
  } | undefined;
3324
3322
  headers?: {
3325
3323
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -3327,7 +3325,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3327
3325
  } | undefined;
3328
3326
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3329
3327
  data: {
3330
- description?: string | undefined;
3328
+ databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
3329
+ pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
3331
3330
  };
3332
3331
  } & {
3333
3332
  pathParameters: {
@@ -3353,7 +3352,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3353
3352
  [x: string]: unknown;
3354
3353
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3355
3354
  data: {
3356
- description?: string | undefined;
3355
+ databaseRestores?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestoreDatabaseRequest[] | undefined;
3356
+ pathRestore?: import("./types.js").MittwaldAPIV2.Components.Schemas.BackupProjectBackupRestorePathRequest | undefined;
3357
3357
  };
3358
3358
  } & {
3359
3359
  pathParameters: {
@@ -3378,11 +3378,11 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3378
3378
  }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
3379
3379
  [x: string]: unknown;
3380
3380
  }, 429, "application/json">>>;
3381
- /** Update a Backup's expiration time. */
3382
- replaceProjectBackupExpirationTime: (request: {
3381
+ /** Change the description of a ProjectBackup. */
3382
+ updateProjectBackupDescription: (request: {
3383
3383
  projectBackupId: string;
3384
3384
  data?: {
3385
- expirationTime?: string | undefined;
3385
+ description?: string | undefined;
3386
3386
  } | undefined;
3387
3387
  headers?: {
3388
3388
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
@@ -3390,7 +3390,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3390
3390
  } | undefined;
3391
3391
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
3392
3392
  data: {
3393
- expirationTime?: string | undefined;
3393
+ description?: string | undefined;
3394
3394
  };
3395
3395
  } & {
3396
3396
  pathParameters: {
@@ -3416,7 +3416,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
3416
3416
  [x: string]: unknown;
3417
3417
  }, 429, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
3418
3418
  data: {
3419
- expirationTime?: string | undefined;
3419
+ description?: string | undefined;
3420
3420
  };
3421
3421
  } & {
3422
3422
  pathParameters: {
@@ -4565,6 +4565,71 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
4565
4565
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4566
4566
  [x: string]: unknown;
4567
4567
  }, 500, "application/json">>>;
4568
+ /** List Stacks belonging to the executing user. */
4569
+ listSelfStacks: (request?: {
4570
+ headers?: {
4571
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4572
+ "x-access-token"?: string | undefined;
4573
+ } | undefined;
4574
+ queryParameters?: {
4575
+ [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
4576
+ limit?: number | undefined;
4577
+ skip?: number | undefined;
4578
+ page?: number | undefined;
4579
+ } | undefined;
4580
+ } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
4581
+ headers?: Partial<{
4582
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4583
+ }>;
4584
+ } & {
4585
+ queryParameters: {
4586
+ limit?: number | undefined;
4587
+ skip?: number | undefined;
4588
+ page?: number | undefined;
4589
+ } & Partial<{
4590
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4591
+ }>;
4592
+ } & {
4593
+ headers: {
4594
+ "x-access-token"?: string | undefined;
4595
+ } & Partial<{
4596
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4597
+ }>;
4598
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerStackResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4599
+ [x: string]: unknown;
4600
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4601
+ [x: string]: unknown;
4602
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
4603
+ [x: string]: unknown;
4604
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4605
+ [x: string]: unknown;
4606
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
4607
+ headers?: Partial<{
4608
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4609
+ }>;
4610
+ } & {
4611
+ queryParameters: {
4612
+ limit?: number | undefined;
4613
+ skip?: number | undefined;
4614
+ page?: number | undefined;
4615
+ } & Partial<{
4616
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4617
+ }>;
4618
+ } & {
4619
+ headers: {
4620
+ "x-access-token"?: string | undefined;
4621
+ } & Partial<{
4622
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
4623
+ }>;
4624
+ }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerStackResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
4625
+ [x: string]: unknown;
4626
+ }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
4627
+ [x: string]: unknown;
4628
+ }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
4629
+ [x: string]: unknown;
4630
+ }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
4631
+ [x: string]: unknown;
4632
+ }, 500, "application/json">>>;
4568
4633
  /** List Services belonging to a Project. */
4569
4634
  listServices: (request: {
4570
4635
  projectId: string;
@@ -5100,23 +5165,34 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5100
5165
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5101
5166
  [x: string]: unknown;
5102
5167
  }, 500, "application/json">>>;
5103
- /** Start a stopped Service. */
5104
- startService: (request: {
5168
+ /** Set an update schedule for a Stack. */
5169
+ setStackUpdateSchedule: (request: {
5105
5170
  stackId: string;
5106
- serviceId: string;
5171
+ data?: {
5172
+ updateSchedule?: {
5173
+ cron: string;
5174
+ timezone?: string | undefined;
5175
+ } | undefined;
5176
+ } | undefined;
5107
5177
  headers?: {
5108
5178
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5109
5179
  "x-access-token"?: string | undefined;
5110
5180
  } | undefined;
5111
5181
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5112
- headers?: Partial<{
5113
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5114
- }>;
5182
+ data: {
5183
+ updateSchedule?: {
5184
+ cron: string;
5185
+ timezone?: string;
5186
+ } | undefined;
5187
+ };
5115
5188
  } & {
5116
5189
  pathParameters: {
5117
5190
  stackId: string;
5118
- serviceId: string;
5119
5191
  };
5192
+ } & {
5193
+ headers?: Partial<{
5194
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5195
+ }>;
5120
5196
  } & {
5121
5197
  headers: {
5122
5198
  "x-access-token"?: string | undefined;
@@ -5136,14 +5212,20 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5136
5212
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5137
5213
  [x: string]: unknown;
5138
5214
  }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5139
- headers?: Partial<{
5140
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5141
- }>;
5215
+ data: {
5216
+ updateSchedule?: {
5217
+ cron: string;
5218
+ timezone?: string;
5219
+ } | undefined;
5220
+ };
5142
5221
  } & {
5143
5222
  pathParameters: {
5144
5223
  stackId: string;
5145
- serviceId: string;
5146
5224
  };
5225
+ } & {
5226
+ headers?: Partial<{
5227
+ [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5228
+ }>;
5147
5229
  } & {
5148
5230
  headers: {
5149
5231
  "x-access-token"?: string | undefined;
@@ -5163,8 +5245,8 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5163
5245
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5164
5246
  [x: string]: unknown;
5165
5247
  }, 500, "application/json">>>;
5166
- /** Stop a started Service. */
5167
- stopService: (request: {
5248
+ /** Start a stopped Service. */
5249
+ startService: (request: {
5168
5250
  stackId: string;
5169
5251
  serviceId: string;
5170
5252
  headers?: {
@@ -5226,33 +5308,30 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5226
5308
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5227
5309
  [x: string]: unknown;
5228
5310
  }, 500, "application/json">>>;
5229
- /** Validate a Registries' URI. */
5230
- validateContainerRegistryUri: (request: {
5231
- data: {
5232
- registryUri: string;
5233
- };
5311
+ /** Stop a started Service. */
5312
+ stopService: (request: {
5313
+ stackId: string;
5314
+ serviceId: string;
5234
5315
  headers?: {
5235
5316
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5236
5317
  "x-access-token"?: string | undefined;
5237
5318
  } | undefined;
5238
5319
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5239
- data: {
5240
- registryUri: string;
5241
- };
5242
- } & {
5243
5320
  headers?: Partial<{
5244
5321
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5245
5322
  }>;
5323
+ } & {
5324
+ pathParameters: {
5325
+ stackId: string;
5326
+ serviceId: string;
5327
+ };
5246
5328
  } & {
5247
5329
  headers: {
5248
5330
  "x-access-token"?: string | undefined;
5249
5331
  } & Partial<{
5250
5332
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5251
5333
  }>;
5252
- }, import("@mittwald/api-client-commons").Response<{
5253
- reason?: string | undefined;
5254
- valid: boolean;
5255
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5334
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
5256
5335
  [x: string]: unknown;
5257
5336
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5258
5337
  [x: string]: unknown;
@@ -5265,23 +5344,21 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5265
5344
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5266
5345
  [x: string]: unknown;
5267
5346
  }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5268
- data: {
5269
- registryUri: string;
5270
- };
5271
- } & {
5272
5347
  headers?: Partial<{
5273
5348
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5274
5349
  }>;
5350
+ } & {
5351
+ pathParameters: {
5352
+ stackId: string;
5353
+ serviceId: string;
5354
+ };
5275
5355
  } & {
5276
5356
  headers: {
5277
5357
  "x-access-token"?: string | undefined;
5278
5358
  } & Partial<{
5279
5359
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5280
5360
  }>;
5281
- }, import("@mittwald/api-client-commons").Response<{
5282
- reason?: string | undefined;
5283
- valid: boolean;
5284
- }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5361
+ }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
5285
5362
  [x: string]: unknown;
5286
5363
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5287
5364
  [x: string]: unknown;
@@ -5294,21 +5371,23 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5294
5371
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5295
5372
  [x: string]: unknown;
5296
5373
  }, 500, "application/json">>>;
5297
- /** Validate a Registries' credentials. */
5298
- validateRegistryCredentials: (request: {
5299
- registryId: string;
5374
+ /** Validate a Registries' URI. */
5375
+ validateContainerRegistryUri: (request: {
5376
+ data: {
5377
+ registryUri: string;
5378
+ };
5300
5379
  headers?: {
5301
5380
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5302
5381
  "x-access-token"?: string | undefined;
5303
5382
  } | undefined;
5304
5383
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5384
+ data: {
5385
+ registryUri: string;
5386
+ };
5387
+ } & {
5305
5388
  headers?: Partial<{
5306
5389
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5307
5390
  }>;
5308
- } & {
5309
- pathParameters: {
5310
- registryId: string;
5311
- };
5312
5391
  } & {
5313
5392
  headers: {
5314
5393
  "x-access-token"?: string | undefined;
@@ -5316,6 +5395,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5316
5395
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5317
5396
  }>;
5318
5397
  }, import("@mittwald/api-client-commons").Response<{
5398
+ reason?: string | undefined;
5319
5399
  valid: boolean;
5320
5400
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5321
5401
  [x: string]: unknown;
@@ -5330,13 +5410,13 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5330
5410
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5331
5411
  [x: string]: unknown;
5332
5412
  }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5413
+ data: {
5414
+ registryUri: string;
5415
+ };
5416
+ } & {
5333
5417
  headers?: Partial<{
5334
5418
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5335
5419
  }>;
5336
- } & {
5337
- pathParameters: {
5338
- registryId: string;
5339
- };
5340
5420
  } & {
5341
5421
  headers: {
5342
5422
  "x-access-token"?: string | undefined;
@@ -5344,6 +5424,7 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5344
5424
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5345
5425
  }>;
5346
5426
  }, import("@mittwald/api-client-commons").Response<{
5427
+ reason?: string | undefined;
5347
5428
  valid: boolean;
5348
5429
  }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5349
5430
  [x: string]: unknown;
@@ -5358,74 +5439,30 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5358
5439
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5359
5440
  [x: string]: unknown;
5360
5441
  }, 500, "application/json">>>;
5361
- /** Set an update schedule for a Stack. */
5362
- setStackUpdateSchedule: (request: {
5363
- stackId: string;
5364
- data?: {
5365
- updateSchedule?: {
5366
- cron: string;
5367
- timezone?: string | undefined;
5368
- } | undefined;
5369
- } | undefined;
5442
+ /** Validate a Registries' credentials. */
5443
+ validateRegistryCredentials: (request: {
5444
+ registryId: string;
5370
5445
  headers?: {
5371
5446
  [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5372
5447
  "x-access-token"?: string | undefined;
5373
5448
  } | undefined;
5374
5449
  }, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5375
- data: {
5376
- updateSchedule?: {
5377
- cron: string;
5378
- timezone?: string;
5379
- } | undefined;
5380
- };
5381
- } & {
5382
- pathParameters: {
5383
- stackId: string;
5384
- };
5385
- } & {
5386
5450
  headers?: Partial<{
5387
5451
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5388
5452
  }>;
5389
- } & {
5390
- headers: {
5391
- "x-access-token"?: string | undefined;
5392
- } & Partial<{
5393
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5394
- }>;
5395
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
5396
- [x: string]: unknown;
5397
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5398
- [x: string]: unknown;
5399
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5400
- [x: string]: unknown;
5401
- }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5402
- [x: string]: unknown;
5403
- }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
5404
- [x: string]: unknown;
5405
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5406
- [x: string]: unknown;
5407
- }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5408
- data: {
5409
- updateSchedule?: {
5410
- cron: string;
5411
- timezone?: string;
5412
- } | undefined;
5413
- };
5414
5453
  } & {
5415
5454
  pathParameters: {
5416
- stackId: string;
5455
+ registryId: string;
5417
5456
  };
5418
- } & {
5419
- headers?: Partial<{
5420
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5421
- }>;
5422
5457
  } & {
5423
5458
  headers: {
5424
5459
  "x-access-token"?: string | undefined;
5425
5460
  } & Partial<{
5426
5461
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5427
5462
  }>;
5428
- }, import("@mittwald/api-client-commons").Response<{}, 204, "empty"> | import("@mittwald/api-client-commons").Response<{
5463
+ }, import("@mittwald/api-client-commons").Response<{
5464
+ valid: boolean;
5465
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5429
5466
  [x: string]: unknown;
5430
5467
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5431
5468
  [x: string]: unknown;
@@ -5437,68 +5474,31 @@ export declare class MittwaldAPIV2Client extends ApiClientBase {
5437
5474
  [x: string]: unknown;
5438
5475
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5439
5476
  [x: string]: unknown;
5440
- }, 500, "application/json">>>;
5441
- /** List Stacks belonging to the executing user. */
5442
- listSelfStacks: (request?: {
5443
- headers?: {
5444
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5445
- "x-access-token"?: string | undefined;
5446
- } | undefined;
5447
- queryParameters?: {
5448
- [x: string]: (string | number | boolean) | (string | number | boolean)[] | undefined;
5449
- limit?: number | undefined;
5450
- skip?: number | undefined;
5451
- page?: number | undefined;
5452
- } | undefined;
5453
- } | null | undefined, opts?: import("@mittwald/api-client-commons").RequestOptions<import("@mittwald/api-client-commons").OpenAPIOperation<{
5477
+ }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5454
5478
  headers?: Partial<{
5455
5479
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5456
5480
  }>;
5457
5481
  } & {
5458
- queryParameters: {
5459
- limit?: number | undefined;
5460
- skip?: number | undefined;
5461
- page?: number | undefined;
5462
- } & Partial<{
5463
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5464
- }>;
5482
+ pathParameters: {
5483
+ registryId: string;
5484
+ };
5465
5485
  } & {
5466
5486
  headers: {
5467
5487
  "x-access-token"?: string | undefined;
5468
5488
  } & Partial<{
5469
5489
  [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5470
5490
  }>;
5471
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerStackResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5491
+ }, import("@mittwald/api-client-commons").Response<{
5492
+ valid: boolean;
5493
+ }, 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5472
5494
  [x: string]: unknown;
5473
5495
  }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5474
5496
  [x: string]: unknown;
5475
5497
  }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5476
5498
  [x: string]: unknown;
5477
- }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5478
- [x: string]: unknown;
5479
- }, 500, "application/json">>> | undefined) => import("@mittwald/api-client-commons").ResponsePromise<import("@mittwald/api-client-commons").OpenAPIOperation<{
5480
- headers?: Partial<{
5481
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5482
- }>;
5483
- } & {
5484
- queryParameters: {
5485
- limit?: number | undefined;
5486
- skip?: number | undefined;
5487
- page?: number | undefined;
5488
- } & Partial<{
5489
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5490
- }>;
5491
- } & {
5492
- headers: {
5493
- "x-access-token"?: string | undefined;
5494
- } & Partial<{
5495
- [TKey: string]: (string | number | boolean) | (string | number | boolean)[];
5496
- }>;
5497
- }, import("@mittwald/api-client-commons").Response<import("./types.js").MittwaldAPIV2.Components.Schemas.ContainerStackResponse[], 200, "application/json"> | import("@mittwald/api-client-commons").Response<{
5498
- [x: string]: unknown;
5499
- }, 400, "application/json"> | import("@mittwald/api-client-commons").Response<{
5499
+ }, 404, "application/json"> | import("@mittwald/api-client-commons").Response<{
5500
5500
  [x: string]: unknown;
5501
- }, 403, "application/json"> | import("@mittwald/api-client-commons").Response<{
5501
+ }, 412, "application/json"> | import("@mittwald/api-client-commons").Response<{
5502
5502
  [x: string]: unknown;
5503
5503
  }, 429, "application/json"> | import("@mittwald/api-client-commons").Response<{
5504
5504
  [x: string]: unknown;
@@ -107,6 +107,8 @@ export declare const backupDeleteProjectBackup: OpenAPIOperation<RequestType<Sim
107
107
  export declare const backupGetProjectBackupDatabaseDumpsV2Experimental: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdDatabaseDumps.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
108
108
  /** List paths for a ProjectBackup. */
109
109
  export declare const backupGetProjectBackupDirectories: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$502.Content.ApplicationJson>, 502, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdPath.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
110
+ /** Update a Backup's expiration time. */
111
+ export declare const backupReplaceProjectBackupExpirationTime: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
110
112
  /** Restore a ProjectBackup. */
111
113
  export declare const backupRequestProjectBackupRestoreV2Experimental: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdRestore.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
112
114
  /** Change the description of a ProjectBackup. */
@@ -137,6 +139,8 @@ export declare const containerGetContainerImageConfig: OpenAPIOperation<RequestT
137
139
  export declare const containerGetServiceLogs: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$200.Content.TextPlain>, 200, "text/plain"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.$503.Content.ApplicationJson>, 503, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdLogs.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
138
140
  /** Get a Service belonging to a Stack. */
139
141
  export declare const containerGetService: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceId.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
142
+ /** List Stacks belonging to the executing user. */
143
+ export declare const containerListSelfStacks: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
140
144
  /** List Services belonging to a Project. */
141
145
  export declare const containerListServices: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectsProjectIdServices.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
142
146
  /** List Volumes belonging to a Stack. */
@@ -151,6 +155,8 @@ export declare const containerPullImageForService: OpenAPIOperation<RequestType<
151
155
  export declare const containerRecreateService: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRecreate.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
152
156
  /** Restart a started Service. */
153
157
  export declare const containerRestartService: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsRestart.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
158
+ /** Set an update schedule for a Stack. */
159
+ export declare const containerSetStackUpdateSchedule: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
154
160
  /** Start a stopped Service. */
155
161
  export declare const containerStartService: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdServicesServiceIdActionsStart.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
156
162
  /** Stop a started Service. */
@@ -911,9 +917,3 @@ export declare const verificationDetectPhishingEmail: OpenAPIOperation<RequestTy
911
917
  export declare const verificationVerifyAddress: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyAddress.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
912
918
  /** Check if a company exists. */
913
919
  export declare const verificationVerifyCompany: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$412.Content.Empty>, 412, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ActionsVerifyCompany.Post.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
914
- /** Set an update schedule for a Stack. */
915
- export declare const containerSetStackUpdateSchedule: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Responses.$412.Content.ApplicationJson>, 412, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2StacksStackIdUpdateSchedule.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
916
- /** List Stacks belonging to the executing user. */
917
- export declare const containerListSelfStacks: OpenAPIOperation<RequestType<Simplify<null>, Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.$200.Content.ApplicationJson>, 200, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.$500.Content.ApplicationJson>, 500, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2Stacks.Get.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
918
- /** Update a Backup's expiration time. */
919
- export declare const backupReplaceProjectBackupExpirationTime: OpenAPIOperation<RequestType<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Parameters.RequestBody>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Parameters.Path>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Parameters.Query>, Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Parameters.Header>>, Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.$204.Content.Empty>, 204, "empty"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.$400.Content.ApplicationJson>, 400, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.$403.Content.ApplicationJson>, 403, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.$404.Content.ApplicationJson>, 404, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.$429.Content.ApplicationJson>, 429, "application/json"> | Response<Simplify<MittwaldAPIV2.Paths.V2ProjectBackupsProjectBackupIdExpirationTime.Put.Responses.Default.Content.ApplicationJson>, "default", "application/json">>;
@@ -210,6 +210,10 @@ export declare namespace MittwaldAPIV2 {
210
210
  type RequestData = InferredRequestData<typeof descriptors.backupGetProjectBackupDirectories>;
211
211
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupGetProjectBackupDirectories, TStatus>;
212
212
  }
213
+ namespace BackupReplaceProjectBackupExpirationTime {
214
+ type RequestData = InferredRequestData<typeof descriptors.backupReplaceProjectBackupExpirationTime>;
215
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupReplaceProjectBackupExpirationTime, TStatus>;
216
+ }
213
217
  namespace BackupRequestProjectBackupRestoreV2Experimental {
214
218
  type RequestData = InferredRequestData<typeof descriptors.backupRequestProjectBackupRestoreV2Experimental>;
215
219
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupRequestProjectBackupRestoreV2Experimental, TStatus>;
@@ -270,6 +274,10 @@ export declare namespace MittwaldAPIV2 {
270
274
  type RequestData = InferredRequestData<typeof descriptors.containerGetService>;
271
275
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerGetService, TStatus>;
272
276
  }
277
+ namespace ContainerListSelfStacks {
278
+ type RequestData = InferredRequestData<typeof descriptors.containerListSelfStacks>;
279
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListSelfStacks, TStatus>;
280
+ }
273
281
  namespace ContainerListServices {
274
282
  type RequestData = InferredRequestData<typeof descriptors.containerListServices>;
275
283
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListServices, TStatus>;
@@ -298,6 +306,10 @@ export declare namespace MittwaldAPIV2 {
298
306
  type RequestData = InferredRequestData<typeof descriptors.containerRestartService>;
299
307
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerRestartService, TStatus>;
300
308
  }
309
+ namespace ContainerSetStackUpdateSchedule {
310
+ type RequestData = InferredRequestData<typeof descriptors.containerSetStackUpdateSchedule>;
311
+ type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerSetStackUpdateSchedule, TStatus>;
312
+ }
301
313
  namespace ContainerStartService {
302
314
  type RequestData = InferredRequestData<typeof descriptors.containerStartService>;
303
315
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerStartService, TStatus>;
@@ -1818,18 +1830,6 @@ export declare namespace MittwaldAPIV2 {
1818
1830
  type RequestData = InferredRequestData<typeof descriptors.verificationVerifyCompany>;
1819
1831
  type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.verificationVerifyCompany, TStatus>;
1820
1832
  }
1821
- namespace ContainerSetStackUpdateSchedule {
1822
- type RequestData = InferredRequestData<typeof descriptors.containerSetStackUpdateSchedule>;
1823
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerSetStackUpdateSchedule, TStatus>;
1824
- }
1825
- namespace ContainerListSelfStacks {
1826
- type RequestData = InferredRequestData<typeof descriptors.containerListSelfStacks>;
1827
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.containerListSelfStacks, TStatus>;
1828
- }
1829
- namespace BackupReplaceProjectBackupExpirationTime {
1830
- type RequestData = InferredRequestData<typeof descriptors.backupReplaceProjectBackupExpirationTime>;
1831
- type ResponseData<TStatus extends HttpStatus = 200> = InferredResponseData<typeof descriptors.backupReplaceProjectBackupExpirationTime, TStatus>;
1832
- }
1833
1833
  }
1834
1834
  namespace Components {
1835
1835
  namespace Schemas {
@@ -8736,6 +8736,65 @@ export declare namespace MittwaldAPIV2 {
8736
8736
  }
8737
8737
  }
8738
8738
  }
8739
+ namespace V2ProjectBackupsProjectBackupIdExpirationTime {
8740
+ namespace Put {
8741
+ namespace Parameters {
8742
+ type Path = {
8743
+ projectBackupId: string;
8744
+ };
8745
+ interface RequestBody {
8746
+ /**
8747
+ * Time when to expire the Backup.
8748
+ */
8749
+ expirationTime?: string;
8750
+ }
8751
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
8752
+ type Query = {};
8753
+ }
8754
+ namespace Responses {
8755
+ namespace $204 {
8756
+ namespace Content {
8757
+ type Empty = unknown;
8758
+ }
8759
+ }
8760
+ namespace $400 {
8761
+ namespace Content {
8762
+ interface ApplicationJson {
8763
+ [k: string]: unknown;
8764
+ }
8765
+ }
8766
+ }
8767
+ namespace $403 {
8768
+ namespace Content {
8769
+ interface ApplicationJson {
8770
+ [k: string]: unknown;
8771
+ }
8772
+ }
8773
+ }
8774
+ namespace $404 {
8775
+ namespace Content {
8776
+ interface ApplicationJson {
8777
+ [k: string]: unknown;
8778
+ }
8779
+ }
8780
+ }
8781
+ namespace $429 {
8782
+ namespace Content {
8783
+ interface ApplicationJson {
8784
+ [k: string]: unknown;
8785
+ }
8786
+ }
8787
+ }
8788
+ namespace Default {
8789
+ namespace Content {
8790
+ interface ApplicationJson {
8791
+ [k: string]: unknown;
8792
+ }
8793
+ }
8794
+ }
8795
+ }
8796
+ }
8797
+ }
8739
8798
  namespace V2ProjectBackupsProjectBackupIdRestorePath { }
8740
8799
  namespace V2ProjectBackupsProjectBackupIdRestore {
8741
8800
  namespace Post {
@@ -9692,6 +9751,61 @@ export declare namespace MittwaldAPIV2 {
9692
9751
  }
9693
9752
  }
9694
9753
  }
9754
+ namespace V2Stacks {
9755
+ namespace Get {
9756
+ namespace Parameters {
9757
+ type Path = {};
9758
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
9759
+ type Query = {
9760
+ limit?: number;
9761
+ skip?: number;
9762
+ page?: number;
9763
+ };
9764
+ }
9765
+ namespace Responses {
9766
+ namespace $200 {
9767
+ namespace Content {
9768
+ type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerStackResponse[];
9769
+ }
9770
+ }
9771
+ namespace $400 {
9772
+ namespace Content {
9773
+ interface ApplicationJson {
9774
+ [k: string]: unknown;
9775
+ }
9776
+ }
9777
+ }
9778
+ namespace $403 {
9779
+ namespace Content {
9780
+ interface ApplicationJson {
9781
+ [k: string]: unknown;
9782
+ }
9783
+ }
9784
+ }
9785
+ namespace $429 {
9786
+ namespace Content {
9787
+ interface ApplicationJson {
9788
+ [k: string]: unknown;
9789
+ }
9790
+ }
9791
+ }
9792
+ namespace $500 {
9793
+ namespace Content {
9794
+ interface ApplicationJson {
9795
+ [k: string]: unknown;
9796
+ }
9797
+ }
9798
+ }
9799
+ namespace Default {
9800
+ namespace Content {
9801
+ interface ApplicationJson {
9802
+ [k: string]: unknown;
9803
+ }
9804
+ }
9805
+ }
9806
+ }
9807
+ }
9808
+ }
9695
9809
  namespace V2ProjectsProjectIdServices {
9696
9810
  namespace Get {
9697
9811
  namespace Parameters {
@@ -10143,6 +10257,82 @@ export declare namespace MittwaldAPIV2 {
10143
10257
  }
10144
10258
  }
10145
10259
  }
10260
+ namespace V2StacksStackIdUpdateSchedule {
10261
+ namespace Put {
10262
+ namespace Parameters {
10263
+ type Path = {
10264
+ stackId: string;
10265
+ };
10266
+ interface RequestBody {
10267
+ updateSchedule?: {
10268
+ cron: string;
10269
+ /**
10270
+ * Valid timezones can be retrieved via GET /v2/time-zones
10271
+ */
10272
+ timezone?: string;
10273
+ };
10274
+ }
10275
+ type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
10276
+ type Query = {};
10277
+ }
10278
+ namespace Responses {
10279
+ namespace $204 {
10280
+ namespace Content {
10281
+ type Empty = unknown;
10282
+ }
10283
+ }
10284
+ namespace $400 {
10285
+ namespace Content {
10286
+ interface ApplicationJson {
10287
+ [k: string]: unknown;
10288
+ }
10289
+ }
10290
+ }
10291
+ namespace $403 {
10292
+ namespace Content {
10293
+ interface ApplicationJson {
10294
+ [k: string]: unknown;
10295
+ }
10296
+ }
10297
+ }
10298
+ namespace $404 {
10299
+ namespace Content {
10300
+ interface ApplicationJson {
10301
+ [k: string]: unknown;
10302
+ }
10303
+ }
10304
+ }
10305
+ namespace $412 {
10306
+ namespace Content {
10307
+ interface ApplicationJson {
10308
+ [k: string]: unknown;
10309
+ }
10310
+ }
10311
+ }
10312
+ namespace $429 {
10313
+ namespace Content {
10314
+ interface ApplicationJson {
10315
+ [k: string]: unknown;
10316
+ }
10317
+ }
10318
+ }
10319
+ namespace $500 {
10320
+ namespace Content {
10321
+ interface ApplicationJson {
10322
+ [k: string]: unknown;
10323
+ }
10324
+ }
10325
+ }
10326
+ namespace Default {
10327
+ namespace Content {
10328
+ interface ApplicationJson {
10329
+ [k: string]: unknown;
10330
+ }
10331
+ }
10332
+ }
10333
+ }
10334
+ }
10335
+ }
10146
10336
  namespace V2StacksStackIdServicesServiceIdActionsStart {
10147
10337
  namespace Post {
10148
10338
  namespace Parameters {
@@ -29462,195 +29652,5 @@ export declare namespace MittwaldAPIV2 {
29462
29652
  }
29463
29653
  }
29464
29654
  }
29465
- namespace V2StacksStackIdUpdateSchedule {
29466
- namespace Put {
29467
- namespace Parameters {
29468
- type Path = {
29469
- stackId: string;
29470
- };
29471
- interface RequestBody {
29472
- updateSchedule?: {
29473
- cron: string;
29474
- /**
29475
- * Valid timezones can be retrieved via GET /v2/time-zones
29476
- */
29477
- timezone?: string;
29478
- };
29479
- }
29480
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
29481
- type Query = {};
29482
- }
29483
- namespace Responses {
29484
- namespace $204 {
29485
- namespace Content {
29486
- type Empty = unknown;
29487
- }
29488
- }
29489
- namespace $400 {
29490
- namespace Content {
29491
- interface ApplicationJson {
29492
- [k: string]: unknown;
29493
- }
29494
- }
29495
- }
29496
- namespace $403 {
29497
- namespace Content {
29498
- interface ApplicationJson {
29499
- [k: string]: unknown;
29500
- }
29501
- }
29502
- }
29503
- namespace $404 {
29504
- namespace Content {
29505
- interface ApplicationJson {
29506
- [k: string]: unknown;
29507
- }
29508
- }
29509
- }
29510
- namespace $412 {
29511
- namespace Content {
29512
- interface ApplicationJson {
29513
- [k: string]: unknown;
29514
- }
29515
- }
29516
- }
29517
- namespace $429 {
29518
- namespace Content {
29519
- interface ApplicationJson {
29520
- [k: string]: unknown;
29521
- }
29522
- }
29523
- }
29524
- namespace $500 {
29525
- namespace Content {
29526
- interface ApplicationJson {
29527
- [k: string]: unknown;
29528
- }
29529
- }
29530
- }
29531
- namespace Default {
29532
- namespace Content {
29533
- interface ApplicationJson {
29534
- [k: string]: unknown;
29535
- }
29536
- }
29537
- }
29538
- }
29539
- }
29540
- }
29541
- namespace V2Stacks {
29542
- namespace Get {
29543
- namespace Parameters {
29544
- type Path = {};
29545
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
29546
- type Query = {
29547
- limit?: number;
29548
- skip?: number;
29549
- page?: number;
29550
- };
29551
- }
29552
- namespace Responses {
29553
- namespace $200 {
29554
- namespace Content {
29555
- type ApplicationJson = MittwaldAPIV2.Components.Schemas.ContainerStackResponse[];
29556
- }
29557
- }
29558
- namespace $400 {
29559
- namespace Content {
29560
- interface ApplicationJson {
29561
- [k: string]: unknown;
29562
- }
29563
- }
29564
- }
29565
- namespace $403 {
29566
- namespace Content {
29567
- interface ApplicationJson {
29568
- [k: string]: unknown;
29569
- }
29570
- }
29571
- }
29572
- namespace $429 {
29573
- namespace Content {
29574
- interface ApplicationJson {
29575
- [k: string]: unknown;
29576
- }
29577
- }
29578
- }
29579
- namespace $500 {
29580
- namespace Content {
29581
- interface ApplicationJson {
29582
- [k: string]: unknown;
29583
- }
29584
- }
29585
- }
29586
- namespace Default {
29587
- namespace Content {
29588
- interface ApplicationJson {
29589
- [k: string]: unknown;
29590
- }
29591
- }
29592
- }
29593
- }
29594
- }
29595
- }
29596
- namespace V2ProjectBackupsProjectBackupIdExpirationTime {
29597
- namespace Put {
29598
- namespace Parameters {
29599
- type Path = {
29600
- projectBackupId: string;
29601
- };
29602
- interface RequestBody {
29603
- /**
29604
- * Time when to expire the Backup.
29605
- */
29606
- expirationTime?: string;
29607
- }
29608
- type Header = {} & MittwaldAPIV2.Components.SecuritySchemes.CommonsAccessToken;
29609
- type Query = {};
29610
- }
29611
- namespace Responses {
29612
- namespace $204 {
29613
- namespace Content {
29614
- type Empty = unknown;
29615
- }
29616
- }
29617
- namespace $400 {
29618
- namespace Content {
29619
- interface ApplicationJson {
29620
- [k: string]: unknown;
29621
- }
29622
- }
29623
- }
29624
- namespace $403 {
29625
- namespace Content {
29626
- interface ApplicationJson {
29627
- [k: string]: unknown;
29628
- }
29629
- }
29630
- }
29631
- namespace $404 {
29632
- namespace Content {
29633
- interface ApplicationJson {
29634
- [k: string]: unknown;
29635
- }
29636
- }
29637
- }
29638
- namespace $429 {
29639
- namespace Content {
29640
- interface ApplicationJson {
29641
- [k: string]: unknown;
29642
- }
29643
- }
29644
- }
29645
- namespace Default {
29646
- namespace Content {
29647
- interface ApplicationJson {
29648
- [k: string]: unknown;
29649
- }
29650
- }
29651
- }
29652
- }
29653
- }
29654
- }
29655
29655
  }
29656
29656
  }
@@ -1 +1 @@
1
- export declare const MittwaldAPIClientVersion = '4.324.0';
1
+ export declare const MittwaldAPIClientVersion = '4.325.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mittwald/api-client",
3
- "version": "4.325.0",
3
+ "version": "4.326.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.325.0",
49
+ "@mittwald/api-client-commons": "^4.326.0",
50
50
  "browser-or-node": "^3.0.0"
51
51
  },
52
52
  "devDependencies": {
53
- "@mittwald/api-code-generator": "^4.325.0",
53
+ "@mittwald/api-code-generator": "^4.326.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": "df740bd46c80b5c53995dcf6952a955c1573faee"
83
+ "gitHead": "57d4e8722efe6dd1c77c58d1b1a534fa285d2d33"
84
84
  }