diff options
| author | Mahesh Sanikommmu <[email protected]> | 2025-08-24 23:02:20 -0700 |
|---|---|---|
| committer | Mahesh Sanikommmu <[email protected]> | 2025-08-25 12:15:19 -0700 |
| commit | bba2bf09f11ec6d251e321c9bb23245b1edb3824 (patch) | |
| tree | 65996016bc3a4f02c8a845d0368b2414146ea335 /packages/lib | |
| parent | fix: redeploy (diff) | |
| download | supermemory-bba2bf09f11ec6d251e321c9bb23245b1edb3824.tar.xz supermemory-bba2bf09f11ec6d251e321c9bb23245b1edb3824.zip | |
added connections as well to integrations view
Diffstat (limited to 'packages/lib')
| -rw-r--r-- | packages/lib/constants.ts | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/packages/lib/constants.ts b/packages/lib/constants.ts index 1bfd1ea8..fde5bce1 100644 --- a/packages/lib/constants.ts +++ b/packages/lib/constants.ts @@ -1,4 +1,13 @@ const BIG_DIMENSIONS_NEW = 1536 const DEFAULT_PROJECT_ID = "sm_project_default" +const SEARCH_MEMORY_SHORTCUT_URL = + "https://www.icloud.com/shortcuts/f2b5c544372844a38ab4c6900e2a88de" +const ADD_MEMORY_SHORTCUT_URL = + "https://www.icloud.com/shortcuts/ec33b029b2c7481d89eda7640dbb7688" -export { BIG_DIMENSIONS_NEW, DEFAULT_PROJECT_ID } +export { + BIG_DIMENSIONS_NEW, + DEFAULT_PROJECT_ID, + SEARCH_MEMORY_SHORTCUT_URL, + ADD_MEMORY_SHORTCUT_URL, +} |