mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-17 00:39:41 +02:00
update(shared-branding, shared-utils): set memoro to published + extend analytics events
Update Memoro status to published with founder-tier access. Add comprehensive analytics event tracking for all apps. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
408762e2d6
commit
3e99d86ba6
2 changed files with 13 additions and 7 deletions
|
|
@ -135,7 +135,6 @@ export const MANA_APPS: ManaApp[] = [
|
|||
comingSoon: false,
|
||||
status: 'published',
|
||||
requiredTier: 'founder',
|
||||
archived: true,
|
||||
},
|
||||
{
|
||||
id: 'presi',
|
||||
|
|
@ -255,8 +254,8 @@ export const MANA_APPS: ManaApp[] = [
|
|||
icon: APP_ICONS.contacts,
|
||||
color: '#3b82f6',
|
||||
comingSoon: false,
|
||||
status: 'beta',
|
||||
requiredTier: 'beta',
|
||||
status: 'published',
|
||||
requiredTier: 'public',
|
||||
},
|
||||
{
|
||||
id: 'calendar',
|
||||
|
|
@ -272,8 +271,8 @@ export const MANA_APPS: ManaApp[] = [
|
|||
icon: APP_ICONS.calendar,
|
||||
color: '#0ea5e9',
|
||||
comingSoon: false,
|
||||
status: 'beta',
|
||||
requiredTier: 'beta',
|
||||
status: 'published',
|
||||
requiredTier: 'public',
|
||||
},
|
||||
{
|
||||
id: 'storage',
|
||||
|
|
@ -323,8 +322,8 @@ export const MANA_APPS: ManaApp[] = [
|
|||
icon: APP_ICONS.todo,
|
||||
color: '#8b5cf6',
|
||||
comingSoon: false,
|
||||
status: 'beta',
|
||||
requiredTier: 'beta',
|
||||
status: 'published',
|
||||
requiredTier: 'public',
|
||||
},
|
||||
{
|
||||
id: 'mail',
|
||||
|
|
|
|||
|
|
@ -197,6 +197,13 @@ export const TodoEvents = {
|
|||
viewChanged: (view: string) => trackEvent('view_changed', { view }),
|
||||
quickAddUsed: () => trackEvent('quick_add_used'),
|
||||
filterUsed: (filterType: string) => trackEvent('filter_used', { filter: filterType }),
|
||||
reminderCreated: (type: 'relative' | 'absolute') => trackEvent('reminder_created', { type }),
|
||||
recurringTaskCreated: (pattern: string) => trackEvent('recurring_task_created', { pattern }),
|
||||
taskReordered: () => trackEvent('task_reordered'),
|
||||
keyboardShortcutUsed: (shortcut: string) => trackEvent('keyboard_shortcut_used', { shortcut }),
|
||||
taskEdited: () => trackEvent('task_edited'),
|
||||
dueDateSet: () => trackEvent('due_date_set'),
|
||||
priorityChanged: (priority: string) => trackEvent('priority_changed', { priority }),
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue