* feat(snjs): add revisions api v2 * fix(snjs): reference listing and getting revisions in specs * fix(snjs): revisions specs * fix(web): usage of revision metadata * fix(snjs): add specs for decryption revision * fix(snjs): issue with building mocked specs * fix(snjs): adjust revision creation delay
12 lines
242 B
TypeScript
12 lines
242 B
TypeScript
export interface Revision {
|
|
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
|
|
}
|