@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.
- package/dist/esm/generated/v2/client.js +2 -2
- package/dist/esm/generated/v2/descriptors.js +6 -6
- package/dist/esm/version.js +1 -1
- package/dist/types/generated/v2/client-react.d.ts +154 -152
- package/dist/types/generated/v2/client.d.ts +214 -201
- package/dist/types/generated/v2/descriptors.d.ts +4 -4
- package/dist/types/generated/v2/types.d.ts +106 -92
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
|
@@ -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
|
+
};
|
package/dist/esm/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const MittwaldAPIClientVersion = '4.
|
|
1
|
+
export const MittwaldAPIClientVersion = '4.195.0';
|