@shortcut/client
    Preparing search index...

    Interface StoryHistoryChange

    A single history change entry.

    interface StoryHistoryChange {
        action?: string;
        actor?: any;
        adds: any[];
        attribute: string;
        entity: any;
        removes: any[];
        timestamp: string;
        tx_id: string;
    }
    Index

    Properties

    action?: string

    The type of action: create, update, or delete.

    actor?: any

    The actor who made this change (slim representation): a member:slim, or a vcs-identity:slim for changes driven by an external VCS identity. Null when no actor can be resolved.

    adds: any[]

    Values that were added.

    attribute: string

    The attribute that was changed.

    entity: any

    The story that was changed (slim representation).

    removes: any[]

    Values that were removed.

    timestamp: string

    When this change occurred.

    date-time

    tx_id: string

    The unique identifier for the transaction.

    uuid