mirror of
https://github.com/supermemoryai/supermemory.git
synced 2026-07-21 06:53:51 +00:00
Add hasCompanyBrain helper + useHasCompanyBrain hook reading the company_brain add-on from org metadata to gate Company Brain UI. Fixes ENG-806
22 lines
783 B
TypeScript
22 lines
783 B
TypeScript
const BIG_DIMENSIONS_NEW = 1536
|
|
const DEFAULT_PROJECT_ID = "sm_project_default"
|
|
const SHARED_TEAM_BRAIN_TAG = "sm_org_shared"
|
|
const SEARCH_MEMORY_SHORTCUT_URL =
|
|
"https://www.icloud.com/shortcuts/b0a132cc3c0d475196bc7014aa702a5c"
|
|
const ADD_MEMORY_SHORTCUT_URL =
|
|
"https://www.icloud.com/shortcuts/0fd3e855be444845b457f94c78c2c8d9"
|
|
const RAYCAST_EXTENSION_URL = "https://www.raycast.com/supermemory/supermemory"
|
|
const CHROME_EXTENSION_URL =
|
|
"https://chromewebstore.google.com/detail/supermemory/afpgkkipfdpeaflnpoaffkcankadgjfc"
|
|
const POKE_RECIPE_URL = "https://supermemory.link/poke"
|
|
|
|
export {
|
|
BIG_DIMENSIONS_NEW,
|
|
DEFAULT_PROJECT_ID,
|
|
SHARED_TEAM_BRAIN_TAG,
|
|
SEARCH_MEMORY_SHORTCUT_URL,
|
|
ADD_MEMORY_SHORTCUT_URL,
|
|
RAYCAST_EXTENSION_URL,
|
|
CHROME_EXTENSION_URL,
|
|
POKE_RECIPE_URL,
|
|
}
|