@mittwald/api-client 0.0.0-development-7423599-20250729 → 0.0.0-development-3fcfbd1-20250806

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.
@@ -88,6 +88,8 @@ export class MittwaldAPIV2Client extends ApiClientBase {
88
88
  deleteProjectBackup: this.requestFunctionFactory(descriptors.backupDeleteProjectBackup),
89
89
  /** Change the description of a ProjectBackup. */
90
90
  updateProjectBackupDescription: this.requestFunctionFactory(descriptors.backupUpdateProjectBackupDescription),
91
+ /** Restore a ProjectBackup's path. */
92
+ requestProjectBackupRestorePath: this.requestFunctionFactory(descriptors.backupRequestProjectBackupRestorePath),
91
93
  };
92
94
  /** The container API allows you to manage your stacks, containers, volumes and registries. */
93
95
  container = {
@@ -123,7 +125,7 @@ export class MittwaldAPIV2Client extends ApiClientBase {
123
125
  listStacks: this.requestFunctionFactory(descriptors.containerListStacks),
124
126
  /** List Volumes belonging to a Project. */
125
127
  listVolumes: this.requestFunctionFactory(descriptors.containerListVolumes),
126
- /** Pulls the latest version of the Service's image and recreates the Service. */
128
+ /** Pulls the latest version of the Service's image and optionally recreates the Service. */
127
129
  pullImageForService: this.requestFunctionFactory(descriptors.containerPullImageForService),
128
130
  /** Recreate a Service. */
129
131
  recreateService: this.requestFunctionFactory(descriptors.containerRecreateService),
@@ -322,7 +322,7 @@ export const containerListVolumes = {
322
322
  method: "GET",
323
323
  operationId: "container-list-volumes",
324
324
  };
325
- /** Pulls the latest version of the Service's image and recreates the Service. */
325
+ /** Pulls the latest version of the Service's image and optionally recreates the Service. */
326
326
  export const containerPullImageForService = {
327
327
  path: "/v2/stacks/{stackId}/services/{serviceId}/actions/pull",
328
328
  method: "POST",
@@ -2518,3 +2518,9 @@ export const verificationVerifyCompany = {
2518
2518
  method: "POST",
2519
2519
  operationId: "verification-verify-company",
2520
2520
  };
2521
+ /** Restore a ProjectBackup's path. */
2522
+ export const backupRequestProjectBackupRestorePath = {
2523
+ path: "/v2/project-backups/{projectBackupId}/restore-path",
2524
+ method: "POST",
2525
+ operationId: "backup-request-project-backup-restore-path",
2526
+ };
@@ -1 +1 @@
1
- export const MittwaldAPIClientVersion = '4.190.0';
1
+ export const MittwaldAPIClientVersion = '4.195.0';