import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The batch's processing state. * * @remarks * - `pending`: accepted, not yet started * - `processing`: reports are being generated * - `completed`: all reports finished * - `failed`: the batch failed before completing */ export declare const Status: { readonly Pending: "pending"; readonly Processing: "processing"; readonly Completed: "completed"; readonly Failed: "failed"; }; /** * The batch's processing state. * * @remarks * - `pending`: accepted, not yet started * - `processing`: reports are being generated * - `completed`: all reports finished * - `failed`: the batch failed before completing */ export type Status = ClosedEnum; export type CreateBulkReport = { /** * Unique identifier of the bulk report batch. */ uuid: string; /** * The batch's processing state. * * @remarks * - `pending`: accepted, not yet started * - `processing`: reports are being generated * - `completed`: all reports finished * - `failed`: the batch failed before completing */ status: Status; }; /** @internal */ export declare const Status$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const CreateBulkReport$inboundSchema: z.ZodType; export declare function createBulkReportFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createbulkreport.d.ts.map