LWT JavaScript API
    Preparing search index...

    Interface TextSaveResponse

    Text save response.

    A text long enough to need splitting is created as a book of chapters instead, so a create can come back with a bookIdtextId is then the first chapter. An update never splits and always answers with bookId: null.

    interface TextSaveResponse {
        bookId: number | null;
        error?: string;
        message: string;
        textId: number | null;
    }
    Index
    bookId: number | null
    error?: string
    message: string
    textId: number | null