@firstlovecenter/ai-chat 0.8.1 → 0.9.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.
@@ -13,12 +13,12 @@ type AiChatProps$1 = {
13
13
  * (`/chat/[id]`) so reload/bookmark/multi-tab restore the exact
14
14
  * conversation. `null` (or omitted) renders the empty new-chat state.
15
15
  */
16
- initialSessionId?: number | null;
16
+ initialSessionId?: string | null;
17
17
  };
18
18
  declare function AiChat({ userFirstName, scopeLabel, initialProvider, initialSessionId }: AiChatProps$1): react_jsx_runtime.JSX.Element;
19
19
 
20
20
  type AiChatSessionSummary = {
21
- id: number;
21
+ id: string;
22
22
  title: string;
23
23
  updatedAt: string | null;
24
24
  };
@@ -34,7 +34,7 @@ type AiChatProps = {
34
34
  * conversation the user was viewing. Pass `null` (or omit) for the
35
35
  * empty "new chat" state.
36
36
  */
37
- initialSessionId?: number | null;
37
+ initialSessionId?: string | null;
38
38
  };
39
39
 
40
40
  declare function VercelChat({ userFirstName, scopeLabel, initialProvider, initialSessionId }: AiChatProps): react_jsx_runtime.JSX.Element;
@@ -13,12 +13,12 @@ type AiChatProps$1 = {
13
13
  * (`/chat/[id]`) so reload/bookmark/multi-tab restore the exact
14
14
  * conversation. `null` (or omitted) renders the empty new-chat state.
15
15
  */
16
- initialSessionId?: number | null;
16
+ initialSessionId?: string | null;
17
17
  };
18
18
  declare function AiChat({ userFirstName, scopeLabel, initialProvider, initialSessionId }: AiChatProps$1): react_jsx_runtime.JSX.Element;
19
19
 
20
20
  type AiChatSessionSummary = {
21
- id: number;
21
+ id: string;
22
22
  title: string;
23
23
  updatedAt: string | null;
24
24
  };
@@ -34,7 +34,7 @@ type AiChatProps = {
34
34
  * conversation the user was viewing. Pass `null` (or omit) for the
35
35
  * empty "new chat" state.
36
36
  */
37
- initialSessionId?: number | null;
37
+ initialSessionId?: string | null;
38
38
  };
39
39
 
40
40
  declare function VercelChat({ userFirstName, scopeLabel, initialProvider, initialSessionId }: AiChatProps): react_jsx_runtime.JSX.Element;