import type { DomainType } from '../contstants'; import type { Role } from '../role'; import type { Robot } from '../robot'; import type { Realm } from '../realm'; import type { DomainEventBaseContext } from '../types-base'; export interface RobotRole { id: string; robot_id: string; role_id: string; role: Role; role_realm_id: Realm['id'] | null; role_realm: Realm | null; robot: Robot; robot_realm_id: Realm['id'] | null; robot_realm: Realm | null; created_at: string; updated_at: string; } export type RobotRoleEventContext = DomainEventBaseContext & { type: `${DomainType.ROBOT_ROLE}`; data: RobotRole; }; //# sourceMappingURL=types.d.ts.map