import type { Account } from '../accounts/types' import type { File } from '../files/types' export type AcceptanceTerm = { id: string name: string textField: string accountId: string fileId: string createdAt: string updatedAt: string deletedAt: string | null // relationships account?: Account file?: File } export type AcceptanceTermRelationships = 'account' | 'file' export type CreateAcceptanceTermPayload = { name: string fileId?: string textField?: string } export type UpdateAcceptanceTermPayload = { name?: string fileId?: string textField?: string }