@brander/mcp-demo 0.1.15 → 0.1.17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,18 +1,16 @@
1
- export interface Scenario {
1
+ export interface DemoScenario {
2
2
  id: string;
3
3
  name: string;
4
- industry: string;
5
4
  description: string;
6
- integrationMethod: "SDK" | "MCP" | "Embed";
7
- aiProvider: string;
8
- componentsUsed: string[];
9
- screensConfigured: number;
10
- expectedResults: {
11
- engagementLift: number;
12
- responseTimeMs: number;
13
- userSatisfaction: number;
14
- monthlyInteractions: number;
15
- };
16
- tags: string[];
5
+ dataStrategy: string;
6
+ elementsUsed: string[];
7
+ demonstratesFeatures: string[];
8
+ screenElements: Array<{
9
+ elementType: string;
10
+ props: Record<string, unknown>;
11
+ clickQuery?: string;
12
+ }>;
17
13
  }
18
- export declare const SCENARIOS: Scenario[];
14
+ export declare const SCENARIOS: DemoScenario[];
15
+ export declare function getScenarioList(): Record<string, unknown>;
16
+ export declare function getScenarioDetail(scenarioId: string): Record<string, unknown> | null;