/** * CEE SDK Journey Example (TypeScript) * * This module demonstrates how a client might call multiple CEE endpoints via * the TypeScript SDK and then build a combined decision story, journey * summary, and UI flags using metadata-only helpers. * * Notes: * - This file is not executed automatically in CI; it is intended as * copy-pastable example code for integrators. * - When consuming the published SDK, replace relative imports such as * "../index.js" with "@olumi/assistants-sdk". */ import type { DecisionStorySummary, CeeJourneySummary, CeeUiFlags } from "../ceeHelpers.js"; export interface CeeJourneyExampleConfig { apiKey: string; baseUrl?: string; timeoutMs?: number; } export interface CeeJourneyExampleResult { story: DecisionStorySummary; journey: CeeJourneySummary; uiFlags: CeeUiFlags; } /** * Run a simple CEE journey using the SDK client. * * This function intentionally returns a compact, metadata-only result suitable * for driving a UI layer (e.g. chips, banners, and badges) without exposing * raw briefs, graphs, or LLM text. */ export declare function runCeeJourneyExample(config: CeeJourneyExampleConfig): Promise;