/** * Generated by orval v8.5.3 🍺 * Do not edit manually. * Space Invoices API * REST API for invoice management, customer management, and accounting operations. Features include cursor-based pagination for efficient data navigation, flexible JSON querying with MongoDB-style operators, full-text search across multiple fields, and comprehensive metadata support for custom tracking. * OpenAPI spec version: 1.0.0 */ import type { GetFilesCategory } from './getFilesCategory'; export type GetFilesParams = { /** * Number of results per request. * @minimum 1 * @maximum 100 */ limit?: number; /** * Opaque cursor to fetch the next page of results. Reuse only with the same effective ordering. Use the value from pagination.next_cursor in the previous response. */ next_cursor?: string; /** * Opaque cursor to fetch the previous page of results. Reuse only with the same effective ordering. Use the value from pagination.prev_cursor in the previous response. */ prev_cursor?: string; /** * Whether to include the total count of items in `pagination.total`. Default is `true`. When `false`, `pagination.total` returns -1 for better performance. */ include_total_count?: boolean; /** * Filter by file category */ category?: GetFilesCategory; /** * Filter by account payable ID (for attachments) */ account_payable_id?: string; /** * Filter by incoming purchase document ID (for attachments) */ incoming_purchase_document_id?: string; }; //# sourceMappingURL=getFilesParams.d.ts.map