@refoldai/refold-js
    Preparing search index...

    Interface KeyBasedParams

    interface KeyBasedParams {
        authType?: AuthType | ConnectorAuthType;
        payload?: Record<string, string>;
        slug: string;
    }
    Index

    The auth type being submitted, as named by the application's Application.auth_type_options. Universal connectors distinguish api_key / basic_auth / bearer_token, so a connector offering more than one cannot be resolved from the credentials alone.

    payload?: Record<string, string>

    The key value pairs of auth data.

    slug: string

    The application slug.