import type { DomainType } from '../contstants'; import type { Realm } from '../realm'; import type { DomainEventBaseContext } from '../types-base'; import type { User } from '../user'; export interface Robot { id: string; secret: string; name: string; description: string; active: boolean; created_at: Date; updated_at: Date; user_id: User['id'] | null; user: User | null; realm_id: Realm['id']; realm: Realm; } export type RobotEventContext = DomainEventBaseContext & { type: `${DomainType.ROBOT}`; data: Robot; }; //# sourceMappingURL=types.d.ts.map