import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type CreatePromptVersionRequestBody = { /** * The prompt template text */ template: string; }; export type CreatePromptVersionRequest = { id: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; requestBody: CreatePromptVersionRequestBody; }; /** @internal */ export declare const CreatePromptVersionRequestBody$inboundSchema: z.ZodType; /** @internal */ export type CreatePromptVersionRequestBody$Outbound = { template: string; }; /** @internal */ export declare const CreatePromptVersionRequestBody$outboundSchema: z.ZodType; export declare function createPromptVersionRequestBodyToJSON(createPromptVersionRequestBody: CreatePromptVersionRequestBody): string; export declare function createPromptVersionRequestBodyFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CreatePromptVersionRequest$inboundSchema: z.ZodType; /** @internal */ export type CreatePromptVersionRequest$Outbound = { id: string; "X-On-Behalf-Of"?: string | undefined; RequestBody: CreatePromptVersionRequestBody$Outbound; }; /** @internal */ export declare const CreatePromptVersionRequest$outboundSchema: z.ZodType; export declare function createPromptVersionRequestToJSON(createPromptVersionRequest: CreatePromptVersionRequest): string; export declare function createPromptVersionRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createpromptversion.d.ts.map