* 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
8 lines
142 B
TypeScript
8 lines
142 B
TypeScript
export interface RevisionMetadata {
|
|
uuid: string
|
|
content_type: string
|
|
created_at: string
|
|
updated_at: string
|
|
required_role: string
|
|
}
|