mirror of
https://github.com/standardnotes/server
synced 2026-07-14 18:01:42 -04:00
* feat(syncing-server): add shared vaults, invites, messages and notifications to sync response * fix(syncing-server): migration timestamps * fix: issue with migrations for notifications
11 lines
253 B
TypeScript
11 lines
253 B
TypeScript
export interface SharedVaultInviteHttpRepresentation {
|
|
uuid: string
|
|
shared_vault_uuid: string
|
|
user_uuid: string
|
|
sender_uuid: string
|
|
encrypted_message: string
|
|
permission: string
|
|
created_at_timestamp: number
|
|
updated_at_timestamp: number
|
|
}
|