/** * 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 * as zod from "zod"; /** * Retrieve a paginated list of activities for the entity. Supports filtering by resource_type, resource_id, and action. Activities are ordered by created_at descending by default. * @summary List activities */ export declare const getActivitiesQueryLimitDefault = 10; export declare const getActivitiesQueryLimitMax = 100; export declare const GetActivitiesQueryParams: zod.ZodObject<{ limit: zod.ZodDefault; next_cursor: zod.ZodOptional; prev_cursor: zod.ZodOptional; include_total_count: zod.ZodOptional; order_by: zod.ZodOptional, zod.ZodArray>]>>; query: zod.ZodOptional; resource_type: zod.ZodOptional; resource_id: zod.ZodOptional; action: zod.ZodOptional; }, zod.z.core.$strip>; export declare const GetActivitiesHeader: zod.ZodObject<{ "x-entity-id": zod.ZodOptional; }, zod.z.core.$strip>; export declare const GetActivitiesResponse: zod.ZodObject<{ data: zod.ZodArray; actor_id: zod.ZodNullable; actor_label: zod.ZodNullable; details: zod.ZodNullable>; created_at: zod.z.ZodISODateTime; }, zod.z.core.$strip>>; pagination: zod.ZodObject<{ total: zod.ZodNumber; next_cursor: zod.ZodNullable; prev_cursor: zod.ZodNullable; has_more: zod.ZodBoolean; }, zod.z.core.$strip>; }, zod.z.core.$strip>; //# sourceMappingURL=activities.d.ts.map