import { BaseFetchOptions } from '../../../../classes'; /** * FetchConflictOptionsDtoV1 * * Data Transfer Object for querying conflict collections. * Inherits timestamp filtering fields and extends them with * conflict-specific query parameters. */ export type FetchConflictOptionsDtoV1 = BaseFetchOptions & { resource?: string; resources?: string[]; level?: number; levels?: number[]; firstRecordedAtMin?: number; firstRecordedAtMax?: number; lastRecordedAtMin?: number; lastRecordedAtMax?: number; };