@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
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## 2026-06-10 - 7.17.0
4
+
5
+ ### Features
6
+
7
+ - add nfs backup replication target type (backup)
8
+ - Extend backup replication target types to include nfs.
9
+
3
10
  ## 2026-06-10 - 7.16.0
4
11
 
5
12
  ### Features
@@ -3,7 +3,7 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@serve.zone/interfaces',
6
- version: '7.16.0',
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=
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serve.zone/interfaces",
3
- "version": "7.16.0",
3
+ "version": "7.17.0",
4
4
  "private": false,
5
5
  "description": "Shared TypeScript interfaces and TypedRequest contracts for the serve.zone ecosystem.",
6
6
  "exports": {
@@ -3,6 +3,6 @@
3
3
  */
4
4
  export const commitinfo = {
5
5
  name: '@serve.zone/interfaces',
6
- version: '7.16.0',
6
+ version: '7.17.0',
7
7
  description: 'Shared TypeScript interfaces and TypedRequest contracts for the serve.zone ecosystem.'
8
8
  }
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;