import { SessionUser, Session } from '../session.js'; /** * A session as its returned from the API */ type SessionResponse = { _embedded: { /** * The matching user for this member. */ user: SessionUser; /** * API Key for the session. */ api_key: string; }; } & Omit; export type { SessionResponse };