@adcp/sdk API Reference - v7.9.0
    Preparing search index...

    Interface NetworkConsistencyCheckerConfig

    interface NetworkConsistencyCheckerConfig {
        authoritativeUrl?: string;
        domains?: string[];
        concurrency?: number;
        timeoutMs?: number;
        logLevel?: LogLevel;
        userAgent?: string;
        onProgress?: (progress: CheckProgress) => void;
    }
    Index

    Properties

    authoritativeUrl?: string

    URL of the authoritative adagents.json file

    domains?: string[]

    Domains to check (if no authoritativeUrl, fetches pointer from first domain)

    concurrency?: number

    Max parallel fetches (default 10, max 50)

    timeoutMs?: number

    Per-request timeout in ms (default 10000)

    logLevel?: LogLevel
    userAgent?: string
    onProgress?: (progress: CheckProgress) => void

    Called after each domain/agent check completes.