Norway Open Data SDK
    Preparing search index...

    Type Alias NorwayOpenDataConfig

    Configuration shared by all provider clients.

    type NorwayOpenDataConfig = {
        applicationName?: string;
        cache?: CacheConfig;
        contactEmail?: string;
        credentials?: ProviderCredentials;
        fetch?: typeof globalThis.fetch;
        retries?: number;
        timeoutMs?: number;
    }
    Index
    applicationName?: string

    Meaningful application identifier, required by Entur, MET Norway, and NVDB.

    cache?: CacheConfig

    Optional in-memory cache configuration.

    contactEmail?: string

    Contact address required by MET Norway.

    credentials?: ProviderCredentials

    Optional provider-specific credentials; anonymous methods never require these.

    fetch?: typeof globalThis.fetch

    Fetch-compatible implementation for tests and custom runtimes.

    retries?: number

    Number of retry attempts after the initial request. Defaults to 2.

    timeoutMs?: number

    Request timeout in milliseconds. Defaults to 10 seconds.