The Session Service is the central coordinator for user session management in MentraOS Cloud. It handles session creation, retrieval, and transformation while delegating specialized tasks to the UserSession class and its managers.File: packages/cloud/src/services/session/session.service.ts
// By session IDgetSession(sessionId: string): UserSession | null// By user ID (email)getSessionByUserId(userId: string): UserSession | null// All active sessionsgetAllSessions(): UserSession[]