import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SkillVersion = { /** * Unique identifier for the version */ id: string; /** * Unix timestamp when the version was created */ createdAt: number; /** * Description of the skill version */ description: string; /** * Name of the skill version */ name: string; object?: "skill.version" | undefined; /** * Parent skill identifier */ skillId: string; /** * Version number */ version: string; }; /** @internal */ export declare const SkillVersion$inboundSchema: z.ZodType; /** @internal */ export type SkillVersion$Outbound = { id: string; created_at: number; description: string; name: string; object: "skill.version"; skill_id: string; version: string; }; /** @internal */ export declare const SkillVersion$outboundSchema: z.ZodType; export declare function skillVersionToJSON(skillVersion: SkillVersion): string; export declare function skillVersionFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=skillversion.d.ts.map