mirror of
https://github.com/standardnotes/server
synced 2026-08-04 00:15:57 -04:00
* feat(revisions): fetching single revision in shared vault * fix(revisions): mapping to http representation
16 lines
398 B
TypeScript
16 lines
398 B
TypeScript
export interface RevisionHttpRepresentation {
|
|
uuid: string
|
|
item_uuid: string
|
|
content: string | null
|
|
content_type: string
|
|
items_key_id: string | null
|
|
enc_item_key: string | null
|
|
auth_hash: string | null
|
|
created_at: string
|
|
updated_at: string
|
|
key_system_identifier: string | null
|
|
shared_vault_uuid: string | null
|
|
user_uuid: string | null
|
|
last_edited_by_uuid: string | null
|
|
}
|