import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type EvalSuiteObject = { id: string; object: "eval.suite"; name: string; description: string | null; /** * The org that owns this suite. */ orgId: string; /** * The team that owns this suite. */ teamId: string; activeVersion: number; latestVersion: number; metadata: { [k: string]: string; }; createdAt: number; updatedAt: number; }; /** @internal */ export declare const EvalSuiteObject$inboundSchema: z.ZodType; /** @internal */ export type EvalSuiteObject$Outbound = { id: string; object: "eval.suite"; name: string; description: string | null; org_id: string; team_id: string; active_version: number; latest_version: number; metadata: { [k: string]: string; }; created_at: number; updated_at: number; }; /** @internal */ export declare const EvalSuiteObject$outboundSchema: z.ZodType; export declare function evalSuiteObjectToJSON(evalSuiteObject: EvalSuiteObject): string; export declare function evalSuiteObjectFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=evalsuiteobject.d.ts.map