@tacenta/sdk
    Preparing search index...

    Interface ConnectOptions

    interface ConnectOptions {
        server?: string;
        documentUrl?: string;
        document?: ServiceDocument;
        allowPlaintext?: boolean;
    }
    Index
    server?: string

    The server's host name; the document is fetched from https://{server}/.well-known/tacenta.

    documentUrl?: string

    The document's URL, for a local development gateway (http://127.0.0.1:4780/.well-known/tacenta).

    document?: ServiceDocument

    A document already in hand; skips the fetch and the origin check, so the caller vouches for it. A plaintext (ws://) carriage is still refused unless it is on loopback or allowPlaintext is set.

    allowPlaintext?: boolean

    Accept a plaintext carriage off loopback in document: a LAN test rig, never production.