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 JourneyClientConfig {
    middleware?: RequestMiddleware[];
    realmPath?: string;
    serverConfig?: PathsConfig;
}

Hierarchy (View Summary)

Properties

middleware?: RequestMiddleware[]
realmPath?: string
serverConfig?: PathsConfig