@seamapi/http - v2.4.1
    Preparing search index...

    Interface SeamHttpWithoutWorkspaceOptionsWithClient

    Options for creating a SeamHttpWithoutWorkspace client from an existing client.

    interface SeamHttpWithoutWorkspaceOptionsWithClient {
        axiosOptions?: AxiosRequestConfig<any>;
        axiosRetryOptions?: IAxiosRetryConfig;
        client: AxiosInstance;
        endpoint?: string;
        timeout?: number;
        waitForActionAttempt?: boolean | ResolveActionAttemptOptions;
    }

    Hierarchy

    • SeamHttpCommonOptions
      • SeamHttpWithoutWorkspaceOptionsWithClient
    Index
    axiosOptions?: AxiosRequestConfig<any>
    axiosRetryOptions?: IAxiosRetryConfig
    client: AxiosInstance

    The existing client to use for requests.

    endpoint?: string

    The Seam API endpoint, e.g., https://connect.getseam.com. Defaults to the SEAM_ENDPOINT or SEAM_API_URL environment variable, if set.

    timeout?: number
    waitForActionAttempt?: boolean | ResolveActionAttemptOptions

    Controls whether to wait for the action attempt to resolve when a request returns an action attempt. Pass a boolean to toggle waiting, or ResolveActionAttemptOptions to also configure the timeout and polling interval.