import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Entity = { id: string; createdAt: Date; updatedAt: Date; /** * The ID of the instruction which generated the entity. */ instructionId: string; /** * The ID of the document which the entity was produced from. */ documentId: string; chunkId?: string | null | undefined; data: { [k: string]: any; }; }; /** @internal */ export declare const Entity$inboundSchema: z.ZodType; /** @internal */ export type Entity$Outbound = { id: string; created_at: string; updated_at: string; instruction_id: string; document_id: string; chunk_id?: string | null | undefined; data: { [k: string]: any; }; }; /** @internal */ export declare const Entity$outboundSchema: z.ZodType; export declare function entityToJSON(entity: Entity): string; export declare function entityFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=entity.d.ts.map