orcid-parser
    Preparing search index...

    Type Alias OrcidClientConfig

    Configuration options for the ORCID API client.

    const config: OrcidClientConfig = {
    baseURL: 'https://pub.orcid.org/v3.0',
    timeout: 10000
    };
    type OrcidClientConfig = {
        baseURL?: string;
        timeout?: number;
    }
    Index

    Properties

    Properties

    baseURL?: string

    Base URL for the ORCID API (defaults to 'https://pub.orcid.org/v3.0')

    timeout?: number

    Request timeout in milliseconds (defaults to 10000)