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; 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; }; //# sourceMappingURL=types.d.ts.map