import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { ValidationItem } from "./validationitem.js"; /** * A human-readable object describing validation decisions Codat has made when pushing data into the platform. If a push has failed because of validation errors, they will be detailed here. */ export type Validation = { errors?: Array | null | undefined; warnings?: Array | null | undefined; }; /** @internal */ export declare const Validation$inboundSchema: z.ZodType; export declare function validationFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=validation.d.ts.map