import type { DomainType } from '../contstants'; import type { DomainEventBaseContext } from '../types-base'; import type { User } from '../user'; import type { Realm } from '../realm'; export interface UserAttribute { id: string; name: string; value: string | null; user_id: User['id']; user: User; realm_id: Realm['id']; realm: Realm; created_at: string; updated_at: string; } export type UserAttributeEventContext = DomainEventBaseContext & { type: `${DomainType.USER_ATTRIBUTE}`; data: UserAttribute; }; //# sourceMappingURL=types.d.ts.map