import type { Service } from '../services/types' import type { User } from '../users/types' export type ServiceAccessManagement = { userId: string serviceId: string createdAt: string // relationships user?: User service?: Service } export type ServiceAccessManagementRelationships = 'user' | 'service'