mirror of
https://github.com/standardnotes/server
synced 2026-07-14 00:01:54 -04:00
* feat: add designating a survivor in shared vault * add designated survivor property to http representation * fix: specs * fix: more specs * fix: another spec fix * fix: yet another spec fix
10 lines
235 B
TypeScript
10 lines
235 B
TypeScript
export interface SharedVaultUserHttpRepresentation {
|
|
uuid: string
|
|
shared_vault_uuid: string
|
|
user_uuid: string
|
|
permission: string
|
|
is_designated_survivor: boolean
|
|
created_at_timestamp: number
|
|
updated_at_timestamp: number
|
|
}
|