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