feat(FN-3800): add session switcher to chat header and mobile switcher

This merge delivers five features: a session switcher for the chat header with mobile-aware dropdown styling and proper ARIA state, mailbox notification events with deep-link highlighting to the unread task, a fix for org chart connector endpoints in wide subtrees, a correction to merge finalize so

Fusion-Task-Id: FN-3800
This commit is contained in:
Fusion
2026-05-08 22:08:31 -07:00
committed by gsxdsm
parent 12ddca0dfe
commit 12bad74955
22 changed files with 608 additions and 22 deletions

View File

@@ -228,7 +228,9 @@ export type NtfyNotificationEvent =
| "planning-awaiting-input"
| "gridlock"
| "fallback-used"
| "memory-dreams-processed";
| "memory-dreams-processed"
| "message:agent-to-user"
| "message:agent-to-agent";
/** Known notification event types. Providers may support additional custom events. */
export const NOTIFICATION_EVENTS = [
@@ -241,6 +243,8 @@ export const NOTIFICATION_EVENTS = [
"gridlock",
"fallback-used",
"memory-dreams-processed",
"message:agent-to-user",
"message:agent-to-agent",
] as const;
/** Notification event type. Known events plus provider-specific custom events. */