/**
 * Generated by orval v7.10.0 🍺
 * Do not edit manually.
 * eCFR SDK
 * TypeScript SDK and Model Context Protocol server for the Electronic Code of Federal Regulations (eCFR) API
 * OpenAPI spec version: 1.0.0
 */
export type GetApiSearchV1CountsDailyParams = {
    /**
     * Search term; searches the headings and the full text
     */
    query?: string;
    /**
     * limit to content currently associated with these agencies (see AdminService agencies endpoint to retrieve a list of agency slugs)
     */
    'agency_slugs[]'?: string[];
    /**
     * limit to content present on this date (YYYY-MM-DD)
     */
    date?: string;
    /**
     * limit to content last modified after this date (YYYY-MM-DD)
     */
    last_modified_after?: string;
    /**
     * limit to content last modified on or after this date (YYYY-MM-DD)
     */
    last_modified_on_or_after?: string;
    /**
     * limit to content last modified before this date (YYYY-MM-DD)
     */
    last_modified_before?: string;
    /**
     * limit to content last modified on or before this date (YYYY-MM-DD)
     */
    last_modified_on_or_before?: string;
};
