@upbond/sdk - v0.0.3
    Preparing search index...

    Interface AuthConfig

    Minimal OIDC client configuration for the low-level auth primitives.

    Most integrations should use createUpbond instead.

    interface AuthConfig {
        clientId: string;
        issuer: string;
        redirectUri: string;
        scope?: string;
    }
    Index
    clientId: string

    OIDC client_id registered at the issuer.

    issuer: string

    Issuer origin, e.g. https://id.upbond.io.

    redirectUri: string

    Registered redirect URI back into the RP.

    scope?: string

    Defaults to openid profile email.