interface VersionV1 {
    _expandable?: {
        collaborators?: string;
        content?: string;
    } & {
        [key: string]: unknown;
    };
    _links?: GenericLinks;
    by?: null | UserV1;
    collaborators?: null | UsersUserKeys;
    confRev?: null | string;
    content?: null | Content;
    contentTypeModified?: boolean;
    friendlyWhen?: null | string;
    message?: null | string;
    minorEdit: boolean;
    number: number;
    syncRev?: null | string;
    syncRevSource?: null | string;
    when: null | string;
}

Hierarchy

  • Record<string, unknown>
    • VersionV1

Properties

_expandable?: {
    collaborators?: string;
    content?: string;
} & {
    [key: string]: unknown;
}
_links?: GenericLinks
by?: null | UserV1
collaborators?: null | UsersUserKeys
confRev?: null | string

The revision id provided by confluence to be used as a revision in Synchrony

content?: null | Content

Base object for all content types.

contentTypeModified?: boolean

True if content type is modifed in this version (e.g. page to blog)

friendlyWhen?: null | string
message?: null | string
minorEdit: boolean

If minorEdit is set to 'true', no notification email or activity stream will be generated for the change.

number: number

Set this to the current version number incremented by one

syncRev?: null | string

The revision id provided by Synchrony

syncRevSource?: null | string

Source of the synchrony revision

when: null | string