import * as z from "zod/v4-mini"; import { ClosedEnum } from "../../types/enums.js"; export declare const ListTasksEntityType: { readonly Events: "EVENTS"; readonly Prices: "PRICES"; readonly Customers: "CUSTOMERS"; readonly Features: "FEATURES"; }; export type ListTasksEntityType = ClosedEnum; export declare const ListTasksOrder: { readonly Asc: "asc"; readonly Desc: "desc"; }; export type ListTasksOrder = ClosedEnum; export declare const ListTasksStatus: { readonly Published: "published"; readonly Deleted: "deleted"; readonly Archived: "archived"; }; export type ListTasksStatus = ClosedEnum; export declare const ListTasksTaskStatus: { readonly Pending: "PENDING"; readonly Processing: "PROCESSING"; readonly Completed: "COMPLETED"; readonly Failed: "FAILED"; }; export type ListTasksTaskStatus = ClosedEnum; export declare const ListTasksTaskType: { readonly Import: "IMPORT"; readonly Export: "EXPORT"; }; export type ListTasksTaskType = ClosedEnum; export type ListTasksRequest = { createdBy?: string | undefined; endTime?: string | undefined; entityType?: ListTasksEntityType | undefined; expand?: string | undefined; limit?: number | undefined; offset?: number | undefined; order?: ListTasksOrder | undefined; scheduledTaskId?: string | undefined; sort?: string | undefined; startTime?: string | undefined; status?: ListTasksStatus | undefined; taskStatus?: ListTasksTaskStatus | undefined; taskType?: ListTasksTaskType | undefined; }; /** @internal */ export declare const ListTasksEntityType$outboundSchema: z.ZodMiniEnum; /** @internal */ export declare const ListTasksOrder$outboundSchema: z.ZodMiniEnum; /** @internal */ export declare const ListTasksStatus$outboundSchema: z.ZodMiniEnum; /** @internal */ export declare const ListTasksTaskStatus$outboundSchema: z.ZodMiniEnum; /** @internal */ export declare const ListTasksTaskType$outboundSchema: z.ZodMiniEnum; /** @internal */ export type ListTasksRequest$Outbound = { created_by?: string | undefined; end_time?: string | undefined; entity_type?: string | undefined; expand?: string | undefined; limit?: number | undefined; offset?: number | undefined; order?: string | undefined; scheduled_task_id?: string | undefined; sort?: string | undefined; start_time?: string | undefined; status?: string | undefined; task_status?: string | undefined; task_type?: string | undefined; }; /** @internal */ export declare const ListTasksRequest$outboundSchema: z.ZodMiniType; export declare function listTasksRequestToJSON(listTasksRequest: ListTasksRequest): string; //# sourceMappingURL=list-tasks-op.d.ts.map