Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface AMCMobileFetchOptions

    interface AMCMobileFetchOptions {
        agentId: string;
        bridgeUrl: string;
        correlationIdFactory?: () => string;
        fetchImpl?: {
            (input: URL | RequestInfo, init?: RequestInit): Promise<Response>;
            (input: string | URL | Request, init?: RequestInit): Promise<Response>;
        };
        injectHeaders?: Record<string, string>;
        provider?: AMCMobileProvider;
        stripProviderAuth?: boolean;
        token?: string;
        workspaceId?: string;
    }
    Index
    agentId: string
    bridgeUrl: string
    correlationIdFactory?: () => string
    fetchImpl?: {
        (input: URL | RequestInfo, init?: RequestInit): Promise<Response>;
        (input: string | URL | Request, init?: RequestInit): Promise<Response>;
    }

    Type Declaration

      • (input: URL | RequestInfo, init?: RequestInit): Promise<Response>
      • Parameters

        • input: URL | RequestInfo
        • Optionalinit: RequestInit

        Returns Promise<Response>

      • (input: string | URL | Request, init?: RequestInit): Promise<Response>
      • Parameters

        • input: string | URL | Request
        • Optionalinit: RequestInit

        Returns Promise<Response>

    injectHeaders?: Record<string, string>
    stripProviderAuth?: boolean
    token?: string
    workspaceId?: string