@shortcut/client
    Preparing search index...

    Interface UpdateDoc

    interface UpdateDoc {
        content?: string;
        content_format?: "markdown" | "html";
        title?: string;
    }
    Index

    Properties

    content?: string

    The new content for the document.

    content_format?: "markdown" | "html"

    Format of content. For input: specifies format of provided content (defaults to 'html'). For output: controls response format - 'markdown' (default) or 'html' to include HTML content.

    title?: string

    The new title for the document

    1

    256