import OverhypedAI from '@overhyped-ai/connect/OverhypedAI';// Assuming that onMount is called on first renderconst onMount = () => { OverhypedAI("initOrg", <ORG_TOKEN>, { autoConnect: false })}// Assuming that onLogin is called once user login to your webappconst onLogin = () => { OverhypedAI( "initUser", { type: "email", value: "name@company.com" }, { subscriptionPlan: "Free Trial", firstName: "John", lastName: "Doe", role: "User Role", company: "User Company", userCreatedAt: "2025-11-15T09:00:00.000Z", } )}// Assuming that onShow is called once user login to your webapp and onLogin is called.const onShow = () => { OverhypedAI("connect")}// Assuming that onLogout is called whenever you want to disconnect the user.const onLogout = () => { OverhypedAI("disconnect")}