@shortcut/client
    Preparing search index...

    Interface HistoryReferenceStory

    A reference to a Story.

    interface HistoryReferenceStory {
        app_url: string;
        entity_type: string;
        id: string | number;
        name: string;
        story_type: "feature" | "chore" | "bug";
    }
    Index

    Properties

    app_url: string

    The application URL of the Story.

    2048

    ^https?://.+$

    entity_type: string

    The type of entity referenced.

    id: string | number

    The ID of the entity referenced.

    name: string

    The name of the entity referenced.

    story_type

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

    If the referenced entity is a Story, either "bug", "chore", or "feature".