Standard journey client configuration with explicit baseUrl.

Use this when you want to configure the AM server directly without OIDC well-known endpoint discovery.

const config: JourneyClientConfig = {
serverConfig: {
baseUrl: 'https://am.example.com/am/',
},
realmPath: 'alpha',
};
interface ResumeOptions {
    journey?: string;
    middleware?: RequestMiddleware[];
    query?: Record<string, string>;
    realmPath?: string;
    serverConfig?: PathsConfig;
}

Hierarchy (View Summary)

Properties

journey?: string
middleware?: RequestMiddleware[]
query?: Record<string, string>
realmPath?: string
serverConfig?: PathsConfig