Internal configuration after wellknown discovery and resolution. Used internally by the journey client - not part of public API.

interface InternalJourneyClientConfig {
    middleware?: RequestMiddleware[];
    realmPath?: string;
    serverConfig: {
        baseUrl: string;
        paths?: CustomPathConfig;
        timeout?: number;
    };
    wellknownResponse: WellknownResponse;
}

Properties

middleware?: RequestMiddleware[]

Optional middleware for request customization

realmPath?: string

Resolved realm path

serverConfig: { baseUrl: string; paths?: CustomPathConfig; timeout?: number }

Type declaration

  • baseUrl: string

    Resolved base URL (required after inference)

  • Optionalpaths?: CustomPathConfig

    Optional custom path overrides

  • Optionaltimeout?: number

    Optional request timeout in milliseconds

wellknownResponse: WellknownResponse

Cached wellknown response