1 import type { ShareURL } from './sharing';
3 export interface CreateDriveVolume {
9 SharePassphrase: string;
11 FolderPassphrase: string;
13 FolderHashKey: string;
16 export interface DriveVolume {
24 export interface CreatedDriveVolumeResult {
28 export interface RestoreDriveVolume {
30 SignatureAddress: string;
32 NodePassphrase: string;
33 NodePassphraseSignature: string;
34 TargetVolumeID: string;
36 LockedShareID: string;
37 ShareKeyPacket: string;
38 PassphraseSignature: string;
41 LockedShareID: string;
42 ShareKeyPacket: string;
43 PassphraseSignature: string;
48 export interface ListDriveVolumeTrashPayload {
56 export interface ListDriveVolumeSharedLinksPayload {
58 ContextShareID: string;
59 ShareURLs: ShareURL[];