Integration App SDK - v1.14.0
    Preparing search index...

    Interface ConnectorAuthHandlerBase

    interface ConnectorAuthHandlerBase {
        description?: string;
        ui?: { schema?: DataSchema; helpUri?: string };
        title?: string;
        type:
            | "proxy"
            | "integration-app-token"
            | "oauth2"
            | "oauth1"
            | "client-credentials";
        credentialsSchema?: DataSchema;
        customCredentialsSchema?: DataSchema;
        makeApiClient?: ConnectorMethodImplementationBase;
        refreshCredentials?: ConnectorMethodImplementationBase;
        test?: ConnectorMethodImplementationBase;
        enabled?: any;
    }

    Hierarchy (View Summary)

    Index

    Properties

    description?: string
    ui?: { schema?: DataSchema; helpUri?: string }
    title?: string
    type:
        | "proxy"
        | "integration-app-token"
        | "oauth2"
        | "oauth1"
        | "client-credentials"
    credentialsSchema?: DataSchema
    customCredentialsSchema?: DataSchema
    enabled?: any