import type { Category } from '../categories/types' import type { Department } from '../departments/types' import type { File } from '../files/types' export type QuickReply = { id: string title: string text: string accountId: string createdAt: string updatedAt: string deletedAt: string | null // relationships departments?: Department[] categories?: Category[] files?: File[] } export type QuickReplyRelationships = 'departments' | 'categories' | 'files' export type CreateQuickReplyPayload = { title: string text: string } export type UpdateQuickReplyPayload = { title?: string text?: string }