import { BaseFetchOptions, ContentFetchOptions, DraftedFetchOptions, TimestampsFetchOptions, ViewedByFetchOptions } from '../../../../classes'; /** * FetchMemberOptionsDtoV1 * * Data Transfer Object for querying member collections. * Inherits timestamp filtering fields and extends them with * member-specific query parameters. */ export type FetchMemberOptionsDtoV1 = BaseFetchOptions & TimestampsFetchOptions & DraftedFetchOptions & ContentFetchOptions & ViewedByFetchOptions & { isActive?: boolean; };