/** * Small example context used by the bundled demos and docs. Core APIs are * generic over context and do not require these fields. */ export interface DefaultContext { role: string; userId: string; tenantId?: string; } /** * Backwards-compatible alias for the old examples. New consumers should * prefer their own app-specific context type or `DefaultContext`. */ export type Context = DefaultContext;