@shortcut/client
    Preparing search index...

    Interface StoryHistoryResponseWrapper

    Response wrapper for story history.

    interface StoryHistoryResponseWrapper {
        $schema: string;
        changes: StoryHistoryChange[];
        current_items: number;
        current_page: number;
        next_page_url?: string;
        total_items: number;
        total_pages: number;
    }
    Index

    Properties

    $schema: string

    The URI of the JSON schema for this response.

    The list of change entries, ordered chronologically by the instant each change occurred (ascending by default; descending with order_dir=desc) across all attributes. Entries at the same instant are ordered deterministically by attribute, in the same tie-break order in both directions. Ordering is stable across pages.

    current_items: number

    The number of items on this page.

    int64

    current_page: number

    The current page number.

    int64

    next_page_url?: string

    URL to fetch the next page, if available.

    total_items: number

    The total number of items across all pages.

    int64

    total_pages: number

    The total number of pages.

    int64