@factorialco/f0-react 1.193.1 → 1.195.0
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/experimental.d.ts +8 -0
- package/dist/experimental.js +3396 -3323
- package/dist/f0.js +2 -2
- package/dist/{hooks-Bv6ppIKp.js → hooks-B6Pv4TaE.js} +8615 -8654
- package/package.json +1 -1
package/dist/experimental.d.ts
CHANGED
|
@@ -250,6 +250,14 @@ declare type AiChatProviderReturnValue = {
|
|
|
250
250
|
shouldPlayEntranceAnimation: boolean;
|
|
251
251
|
setShouldPlayEntranceAnimation: React.Dispatch<React.SetStateAction<boolean>>;
|
|
252
252
|
tmp_setAgent: (agent?: string) => void;
|
|
253
|
+
/**
|
|
254
|
+
* Set the amount of minutes after which the chat will be cleared automatically
|
|
255
|
+
* Set `null` to disable auto-clearing
|
|
256
|
+
*
|
|
257
|
+
* @default 15
|
|
258
|
+
*/
|
|
259
|
+
setAutoClearMinutes: React.Dispatch<React.SetStateAction<number | null>>;
|
|
260
|
+
autoClearMinutes: number | null;
|
|
253
261
|
} & Pick<AiChatState, "greeting" | "agent">;
|
|
254
262
|
|
|
255
263
|
declare interface AiChatState {
|