@serve.zone/interfaces 7.16.0 → 7.17.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.
package/changelog.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@serve.zone/interfaces',
|
|
6
|
-
version: '7.
|
|
6
|
+
version: '7.17.0',
|
|
7
7
|
description: 'Shared TypeScript interfaces and TypedRequest contracts for the serve.zone ecosystem.'
|
|
8
8
|
};
|
|
9
9
|
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiMDBfY29tbWl0aW5mb19kYXRhLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vdHMvMDBfY29tbWl0aW5mb19kYXRhLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztHQUVHO0FBQ0gsTUFBTSxDQUFDLE1BQU0sVUFBVSxHQUFHO0lBQ3hCLElBQUksRUFBRSx3QkFBd0I7SUFDOUIsT0FBTyxFQUFFLFFBQVE7SUFDakIsV0FBVyxFQUFFLHVGQUF1RjtDQUNyRyxDQUFBIn0=
|
package/dist_ts/data/backup.d.ts
CHANGED
|
@@ -26,7 +26,7 @@ export interface IBackupObjectStorageSnapshot extends IBackupSnapshotBase {
|
|
|
26
26
|
bucketName: string;
|
|
27
27
|
}
|
|
28
28
|
export type TBackupSnapshot = IBackupVolumeSnapshot | IBackupDatabaseSnapshot | IBackupObjectStorageSnapshot;
|
|
29
|
-
export type TBackupReplicationTargetType = 's3' | 'smb';
|
|
29
|
+
export type TBackupReplicationTargetType = 's3' | 'smb' | 'nfs';
|
|
30
30
|
export interface IBackupArchiveObject {
|
|
31
31
|
path: string;
|
|
32
32
|
size: number;
|
package/package.json
CHANGED
package/ts/00_commitinfo_data.ts
CHANGED
package/ts/data/backup.ts
CHANGED
|
@@ -45,7 +45,7 @@ export type TBackupSnapshot =
|
|
|
45
45
|
| IBackupDatabaseSnapshot
|
|
46
46
|
| IBackupObjectStorageSnapshot;
|
|
47
47
|
|
|
48
|
-
export type TBackupReplicationTargetType = 's3' | 'smb';
|
|
48
|
+
export type TBackupReplicationTargetType = 's3' | 'smb' | 'nfs';
|
|
49
49
|
|
|
50
50
|
export interface IBackupArchiveObject {
|
|
51
51
|
path: string;
|