interface DetailedVersion {
    authorId?: string;
    collaborators?: string[];
    contentTypeModified?: boolean;
    createdAt?: string;
    message?: string;
    minorEdit?: boolean;
    nextVersion?: number;
    number?: number;
    prevVersion?: number;
}

Hierarchy

  • Record<string, unknown>
    • DetailedVersion

Properties

authorId?: string

The account ID of the user who created this version.

collaborators?: string[]

The account IDs of users that collaborated on this version.

contentTypeModified?: boolean

Describes if the content type is modified in this version (e.g. page to blog)

createdAt?: string

Date and time when the version was created. In format "YYYY-MM-DDTHH:mm:ss.sssZ".

message?: string

Message associated with the current version.

minorEdit?: boolean

Describes if this version is a minor version. Email notifications and activity stream updates are not created for minor versions.

nextVersion?: number

The version number of the version after this current content update.

number?: number

The current version number.

prevVersion?: number

The version number of the version prior to this current content update.