@shortcut/client
    Preparing search index...

    Interface HistoryActionStoryDelete

    An action representing a Story being deleted.

    interface HistoryActionStoryDelete {
        action: "delete";
        entity_type: string;
        id: number;
        name: string;
        parent_story_id?: number;
        story_type: "feature" | "chore" | "bug";
    }
    Index

    Properties

    action: "delete"

    The action of the entity referenced.

    entity_type: string

    The type of entity referenced.

    id: number

    The ID of the entity referenced.

    int64

    name: string

    The name of the Story.

    Optionalparent_story_id

    parent_story_id?: number

    The Story's Parent ID (only applicable if Story is a Sub-task)

    int64

    story_type

    story_type: "feature" | "chore" | "bug"

    The type of Story; either feature, bug, or chore.