mirror of
https://github.com/standardnotes/server
synced 2026-07-14 00:01:54 -04:00
* feat: add handling file moving and updating storage quota * fix: getting file metada when moving files * fix: missing event handler binding
15 lines
291 B
TypeScript
15 lines
291 B
TypeScript
import { SharedVaultMoveType } from '@standardnotes/security'
|
|
|
|
export interface MoveFileDTO {
|
|
moveType: SharedVaultMoveType
|
|
from: {
|
|
sharedVaultUuid?: string
|
|
ownerUuid: string
|
|
}
|
|
to: {
|
|
sharedVaultUuid?: string
|
|
ownerUuid: string
|
|
}
|
|
resourceRemoteIdentifier: string
|
|
}
|