type AttachmentField = keyof Attachment; export type Attachment = { id?: string, filename?: string, mime_type?: string, created_date?: string, created_by?: { id: string } } export type BatchError = { type: string, message: string, input_data: any, request_index: number } export type BoardField = keyof Board; export type Board = { id?: string, name?: string, columns?: Array, archived_columns?: Array, invited_members?: Array, members?: Array, archived_date?: string, labels?: Array