nextspace
    Preparing search index...

    Interface UseConversationSetupReturn

    interface UseConversationSetupReturn {
        agentActive: boolean;
        agentId: string | null;
        agentIds: string[];
        assistantIntroRef: MutableRefObject<PseudonymousMessage[]>;
        botName: string;
        chatIntroRef: MutableRefObject<PseudonymousMessage[]>;
        chatPasscode: string;
        conversationFeatures: { enabled?: boolean; name: string }[];
        eventDescription: string;
        eventName: string;
        eventStatus: "active" | "future" | "ended";
        eventStatusLoaded: boolean;
        feedbackFrequency: number;
        generalError: string | null;
        hasJoinedConvRef: MutableRefObject<boolean>;
        initialJoinComplete: boolean;
        moderators: { bio: string; name: string }[];
        paramsError: { header: string; params: string[] } | null;
        setGeneralError: Dispatch<SetStateAction<string | null>>;
        setInitialJoinComplete: Dispatch<SetStateAction<boolean>>;
        setShowEventStatusDialog: Dispatch<SetStateAction<boolean>>;
        showEventStatusDialog: boolean;
        speakers: { bio: string; name: string }[];
        transcriptPasscode: string;
    }
    Index

    Properties

    agentActive: boolean
    agentId: string | null
    agentIds: string[]
    assistantIntroRef: MutableRefObject<PseudonymousMessage[]>
    botName: string
    chatIntroRef: MutableRefObject<PseudonymousMessage[]>
    chatPasscode: string
    conversationFeatures: { enabled?: boolean; name: string }[]
    eventDescription: string
    eventName: string
    eventStatus: "active" | "future" | "ended"
    eventStatusLoaded: boolean
    feedbackFrequency: number
    generalError: string | null
    hasJoinedConvRef: MutableRefObject<boolean>
    initialJoinComplete: boolean
    moderators: { bio: string; name: string }[]
    paramsError: { header: string; params: string[] } | null
    setGeneralError: Dispatch<SetStateAction<string | null>>
    setInitialJoinComplete: Dispatch<SetStateAction<boolean>>
    setShowEventStatusDialog: Dispatch<SetStateAction<boolean>>
    showEventStatusDialog: boolean
    speakers: { bio: string; name: string }[]
    transcriptPasscode: string