@shortcut/client
    Preparing search index...

    Interface History

    A history item is a group of actions that represent a transactional change to a Story.

    interface History {
        actions: (
            | HistoryActionBranchCreate
            | HistoryActionBranchMerge
            | HistoryActionBranchPush
            | HistoryActionLabelCreate
            | HistoryActionLabelUpdate
            | HistoryActionLabelDelete
            | HistoryActionProjectUpdate
            | HistoryActionPullRequest
            | HistoryActionStoryCreate
            | HistoryActionStoryUpdate
            | HistoryActionStoryDelete
            | HistoryActionStoryCommentCreate
            | HistoryActionStoryLinkCreate
            | HistoryActionStoryLinkUpdate
            | HistoryActionStoryLinkDelete
            | HistoryActionTaskCreate
            | HistoryActionTaskUpdate
            | HistoryActionTaskDelete
            | HistoryActionWorkspace2BulkUpdate
        )[];
        actor_name?: string;
        automation_id?: string;
        changed_at: string;
        external_id?: string;
        id: string;
        member_id?: string;
        primary_id?: string
        | number;
        references?: (
            | HistoryReferenceBranch
            | HistoryReferenceCommit
            | HistoryReferenceEpic
            | HistoryReferenceGroup
            | HistoryReferenceIteration
            | HistoryReferenceLabel
            | HistoryReferenceProject
            | HistoryReferenceStory
            | HistoryReferenceStoryTask
            | HistoryReferenceCustomFieldEnumValue
            | HistoryReferenceWorkflowState
            | HistoryReferenceGeneral
        )[];
        version: "v1";
        webhook_id?: null
        | string;
    }
    Index

    Properties

    An array of actions that were performed for the change.

    actor_name?: string

    The name of the actor that performed the action, if it can be determined.

    automation_id?: string

    The ID of the automation that performed the change.

    uuid

    changed_at: string

    The date when the change occurred.

    external_id?: string

    The ID of the webhook that handled the change.

    id: string

    The ID representing the change for the story.

    uuid

    member_id?: string

    The ID of the member who performed the change.

    uuid

    primary_id?: string | number

    The ID of the primary entity that has changed, if applicable.

    An array of objects affected by the change. Reference objects provide basic information for the entities reference in the history actions. Some have specific fields, but they always contain an id, entity_type, and a name.

    version: "v1"

    The version of the change format.

    webhook_id?: null | string

    The ID of the webhook that handled the change.