@adcp/sdk API Reference - v10.0.1
    Preparing search index...

    Interface FetchAgentAuthorizationsOptions

    interface FetchAgentAuthorizationsOptions {
        directoryUrl: string;
        since?: Date;
        status?: readonly DirectoryPublisherStatus[];
        cursor?: string;
        limit?: number;
        timeoutMs?: number;
        userAgent?: string;
        signal?: AbortSignal;
    }
    Index

    Properties

    directoryUrl: string

    Base URL of the AAO-compatible directory (e.g. https://aao.example.com). Required — adopters explicitly pick which directory they trust. The SDK does not default to a canonical AAO host because directory choice is an operator decision.

    since?: Date

    Return only entries verified after this timestamp.

    status?: readonly DirectoryPublisherStatus[]

    Filter by lifecycle status. Default is server-defined.

    cursor?: string

    Resume from a specific cursor (use the value from a prior page's next_cursor).

    limit?: number

    Per-page size hint. The directory MAY enforce a lower cap.

    timeoutMs?: number

    Per-request timeout in milliseconds. Defaults to 30_000.

    userAgent?: string

    Custom User-Agent for outbound requests.

    signal?: AbortSignal

    AbortSignal that cancels both in-flight requests and the async iterator. Once aborted, the iterator throws on the next .next() call.