/** * 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 { DocumentVersionDocumentType } from './documentVersionDocumentType'; import type { DocumentVersionSnapshot } from './documentVersionSnapshot'; import type { VersionUser } from './versionUser'; export interface DocumentVersion { /** Version record ID */ id: string; /** Type of document */ document_type: DocumentVersionDocumentType; /** Document ID */ document_id: string; /** * Version number * @minimum 1 */ version: number; /** Full document snapshot at this version */ snapshot: DocumentVersionSnapshot; /** Fields that were changed in this update */ changed_fields: string[]; user: VersionUser | null; /** * Reason for the change * @nullable */ reason: string | null; /** When this version was created */ created_at: string; } //# sourceMappingURL=documentVersion.d.ts.map