/** * 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 { GetActivities200DataItemActorType } from './getActivities200DataItemActorType'; import type { GetActivities200DataItemDetails } from './getActivities200DataItemDetails'; export type GetActivities200DataItem = { /** Unique activity identifier */ id: string; /** Entity that owns this activity */ entity_id: string; /** Type of resource (e.g., Invoice, Customer, Payment) */ resource_type: string; /** ID of the resource */ resource_id: string; /** Action performed (e.g., created, updated, deleted, voided, sent) */ action: string; /** Who/what triggered the activity */ actor_type: GetActivities200DataItemActorType; /** * User ID if actor_type is 'user' * @nullable */ actor_id: string | null; /** * Display label (e.g., user email, 'Scheduled sync') * @nullable */ actor_label: string | null; /** * Additional context about the activity * @nullable */ details: GetActivities200DataItemDetails; /** When the activity occurred */ created_at: string; }; //# sourceMappingURL=getActivities200DataItem.d.ts.map