randmarcomps 1.441.0 → 1.442.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.
@@ -233,11 +233,11 @@ declare interface ChatContextType {
233
233
  setHasUnreads: (value: boolean) => void;
234
234
  }
235
235
 
236
- export declare function ChatLayout({ userId, userName, inputRef: externalInputRef, className }: ChatLayoutProps): JSX.Element;
236
+ export declare function ChatLayout({ userId, userEmail, inputRef: externalInputRef, className }: ChatLayoutProps): JSX.Element;
237
237
 
238
238
  export declare interface ChatLayoutProps {
239
239
  userId: string;
240
- userName: string;
240
+ userEmail: string;
241
241
  inputRef?: React.RefObject<HTMLTextAreaElement | null>;
242
242
  className?: string;
243
243
  initialPrompt?: string;