@shortcut/client
    Preparing search index...

    Interface HistoryActionStoryUpdate

    An action representing a Story being updated.

    interface HistoryActionStoryUpdate {
        action: "update";
        app_url: string;
        changes?: HistoryChangesStory;
        entity_type: string;
        id: number;
        name: string;
        story_type: "feature" | "chore" | "bug";
    }
    Index

    Properties

    action: "update"

    The action of the entity referenced.

    app_url: string

    The application URL of the Story.

    2048

    ^https?://.+$

    The changes that have occurred as a result of the action.

    entity_type: string

    The type of entity referenced.

    id: number

    The ID of the entity referenced.

    int64

    name: string

    The name of the Story.

    story_type

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

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