@shortcut/client
    Preparing search index...

    Interface CreateDocBody

    interface CreateDocBody {
        collection_ids?: string[];
        content: string;
        content_format?: "markdown" | "html";
        description?: string;
        title: string;
    }
    Index

    Properties

    collection_ids?: string[]

    The IDs of Collections to add the new Doc to.

    content: string

    The content of the new Doc.

    content_format?: "markdown" | "html"

    Format of the content being sent. Defaults to 'html'. If 'markdown', content will be converted to HTML for storage.

    description?: string

    An optional description for the Doc.

    1024

    title: string

    The title of the new Doc.

    1

    256