SW Combine SDK
    Preparing search index...

    Interface ClientConfig

    interface ClientConfig {
        accessType?: AccessType;
        baseURL?: string;
        clientId?: string;
        clientSecret?: string;
        debug?: boolean;
        maxRetries?: number;
        redirectUri?: string;
        retryDelay?: number;
        timeout?: number;
        token?: string | OAuthToken;
    }
    Index

    Properties

    accessType?: AccessType

    Access type: online or offline (offline provides refresh token)

    baseURL?: string

    Base URL for API (default: https://www.swcombine.com/ws/v2.0/)

    clientId?: string

    OAuth client ID

    clientSecret?: string

    OAuth client secret

    debug?: boolean

    Enable debug logging

    maxRetries?: number

    Maximum number of retry attempts (default: 3)

    redirectUri?: string

    OAuth redirect URI

    retryDelay?: number

    Delay between retries in milliseconds (default: 1000)

    timeout?: number

    Request timeout in milliseconds (default: 30000)

    token?: string | OAuthToken

    Existing token to initialize with