@factorialco/f0-react 1.194.0 → 1.195.1

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.
@@ -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 {