1
0
Fork 0
mirror of synced 2024-06-02 10:34:40 +12:00

Work for backup download endpoint.

This commit is contained in:
mike12345567 2022-10-17 18:50:52 +01:00
parent 0cfb1a9f74
commit 38df528e2d
2 changed files with 3 additions and 0 deletions

View file

@ -10,6 +10,7 @@ export interface AppBackup extends Document {
trigger: AppBackupTrigger
name: string
createdAt: string
createdBy?: string
filename: string
appId: string
userId?: string
@ -31,6 +32,7 @@ export type AppBackupFetchOpts = {
export interface AppBackupQueueData {
trigger: AppBackupTrigger
createdBy?: string
name?: string
appId: string
}

View file

@ -15,4 +15,5 @@ export interface BBContext {
params: any
body?: any
redirect?: any
attachment: any
}