@hcl-software/domino-rest-sdk-node
    Preparing search index...

    Type Alias DominoRequestOptions

    All data that needs to be provided to the Domino Rest connector

    type DominoRequestOptions = {
        body?: any;
        dataSource?: string;
        mode?: "same-origin" | "no-cors" | "cors" | "navigate";
        Origin?: string;
        params: Map<string, string>;
    }
    Index

    Properties

    body?: any

    for POST, PUT, PATCH: the request body

    dataSource?: string

    The scope name.

    mode?: "same-origin" | "no-cors" | "cors" | "navigate"

    Used for fetch's Request.mode property.

    Origin?: string

    The origin of the request. Used for CORS mode.

    params: Map<string, string>

    Additional URL parameters if required.