@leeoohoo/aichat 1.0.8-3 → 1.0.8-5
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.
- package/dist/index.cjs.js +40 -40
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +6 -0
- package/dist/index.esm.js +3258 -3089
- package/dist/index.esm.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -184,6 +184,8 @@ export declare class ApiClient {
|
|
|
184
184
|
project_id: string;
|
|
185
185
|
description?: string;
|
|
186
186
|
metadata?: any;
|
|
187
|
+
mcp_config_ids?: string[];
|
|
188
|
+
mcpConfigIds?: string[];
|
|
187
189
|
}): Promise<any>;
|
|
188
190
|
getSession(id: string): Promise<any>;
|
|
189
191
|
deleteSession(id: string): Promise<any>;
|
|
@@ -454,6 +456,7 @@ declare interface ChatActions {
|
|
|
454
456
|
modelId?: string | null;
|
|
455
457
|
mcpConfigIds?: string[];
|
|
456
458
|
promptIds?: string[];
|
|
459
|
+
promptText?: string | null;
|
|
457
460
|
}) => Promise<void>;
|
|
458
461
|
selectSession: (sessionId: string) => Promise<void>;
|
|
459
462
|
updateSession: (sessionId: string, updates: Partial<Session>) => Promise<void>;
|
|
@@ -609,6 +612,7 @@ declare interface ChatState {
|
|
|
609
612
|
sessions: Session[];
|
|
610
613
|
currentSessionId: string | null;
|
|
611
614
|
currentSession: Session | null;
|
|
615
|
+
sessionMcpRevision: number;
|
|
612
616
|
messages: Message[];
|
|
613
617
|
isLoading: boolean;
|
|
614
618
|
isStreaming: boolean;
|
|
@@ -872,6 +876,8 @@ export declare interface InputAreaProps {
|
|
|
872
876
|
selectedAgentId?: string | null;
|
|
873
877
|
availableAgents?: AgentConfig[];
|
|
874
878
|
onAgentChange?: (agentId: string | null) => void;
|
|
879
|
+
sessionMcpSummary?: string;
|
|
880
|
+
sessionMcpTooltip?: string;
|
|
875
881
|
}
|
|
876
882
|
|
|
877
883
|
/**
|