@budibase/pro 3.39.32 → 3.40.1
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/db/backups.d.ts
CHANGED
|
@@ -7,11 +7,15 @@ export declare function fetchWorkspaceBackups(workspaceId: string, opts?: Backup
|
|
|
7
7
|
nextPage?: string;
|
|
8
8
|
totalRows: number;
|
|
9
9
|
}>;
|
|
10
|
+
export declare function fetchExpiredWorkspaceBackups(expiredEnd: string, page?: string): Promise<{
|
|
11
|
+
backups: WorkspaceBackup[];
|
|
12
|
+
nextPage: string | undefined;
|
|
13
|
+
}>;
|
|
10
14
|
export declare function storeWorkspaceBackupMetadata(metadata: WorkspaceBackupMetadata, opts?: {
|
|
11
15
|
filename?: string;
|
|
12
16
|
docId?: string;
|
|
13
17
|
docRev?: string;
|
|
14
18
|
}): Promise<PutResponse>;
|
|
15
19
|
export declare function updateWorkspaceBackupMetadata(backupId: string, name: string): Promise<PutResponse>;
|
|
16
|
-
export declare function deleteWorkspaceBackupMetadata(
|
|
20
|
+
export declare function deleteWorkspaceBackupMetadata(backup: WorkspaceBackup): Promise<void>;
|
|
17
21
|
export declare function getWorkspaceBackupMetadata(backupId: string): Promise<WorkspaceBackup>;
|
package/dist/db/utils/views.d.ts
CHANGED