@mittwald/api-client 0.0.0-development-076c388-20250804 → 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.
@@ -86,10 +86,10 @@ export class MittwaldAPIV2Client extends ApiClientBase {
86
86
  getProjectBackup: this.requestFunctionFactory(descriptors.backupGetProjectBackup),
87
87
  /** Delete a ProjectBackup. */
88
88
  deleteProjectBackup: this.requestFunctionFactory(descriptors.backupDeleteProjectBackup),
89
- /** Restore a ProjectBackup's paths. */
90
- requestProjectBackupRestorePaths: this.requestFunctionFactory(descriptors.backupRequestProjectBackupRestorePaths),
91
89
  /** Change the description of a ProjectBackup. */
92
90
  updateProjectBackupDescription: this.requestFunctionFactory(descriptors.backupUpdateProjectBackupDescription),
91
+ /** Restore a ProjectBackup's path. */
92
+ requestProjectBackupRestorePath: this.requestFunctionFactory(descriptors.backupRequestProjectBackupRestorePath),
93
93
  };
94
94
  /** The container API allows you to manage your stacks, containers, volumes and registries. */
95
95
  container = {
@@ -220,12 +220,6 @@ export const backupDeleteProjectBackup = {
220
220
  method: "DELETE",
221
221
  operationId: "backup-delete-project-backup",
222
222
  };
223
- /** Restore a ProjectBackup's paths. */
224
- export const backupRequestProjectBackupRestorePaths = {
225
- path: "/v2/project-backups/{projectBackupId}/restore-paths",
226
- method: "POST",
227
- operationId: "backup-request-project-backup-restore-paths",
228
- };
229
223
  /** Change the description of a ProjectBackup. */
230
224
  export const backupUpdateProjectBackupDescription = {
231
225
  path: "/v2/project-backups/{projectBackupId}/description",
@@ -2524,3 +2518,9 @@ export const verificationVerifyCompany = {
2524
2518
  method: "POST",
2525
2519
  operationId: "verification-verify-company",
2526
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.192.0';
1
+ export const MittwaldAPIClientVersion = '4.195.0';