@brainbase-labs/chat-widget 0.1.14 → 0.1.16
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/embed/index.js +1 -1
- package/dist/index.cjs +8 -10
- package/dist/index.d.ts +1 -1
- package/dist/index.js +896 -877
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -179,7 +179,7 @@ export declare interface SSEEvent {
|
|
|
179
179
|
timestamp?: number;
|
|
180
180
|
}
|
|
181
181
|
|
|
182
|
-
export declare type SSEEventType = 'session' | 'message' | 'tool_call' | 'waiting' | 'done' | 'completed' | 'error';
|
|
182
|
+
export declare type SSEEventType = 'session' | 'message' | 'chunk' | 'tool_call' | 'waiting' | 'done' | 'completed' | 'error';
|
|
183
183
|
|
|
184
184
|
export declare function storeSession(embedId: string, session: Session): void;
|
|
185
185
|
|