import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UpdateMemoryEntryRequest = { memoryStoreId: string; entryId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; updateMemoryEntryRequest: components.UpdateMemoryEntryRequest; }; /** @internal */ export declare const UpdateMemoryEntryRequest$inboundSchema: z.ZodType; /** @internal */ export type UpdateMemoryEntryRequest$Outbound = { memory_store_id: string; entry_id: string; "X-On-Behalf-Of"?: string | undefined; UpdateMemoryEntryRequest: components.UpdateMemoryEntryRequest$Outbound; }; /** @internal */ export declare const UpdateMemoryEntryRequest$outboundSchema: z.ZodType; export declare function updateMemoryEntryRequestToJSON(updateMemoryEntryRequest: UpdateMemoryEntryRequest): string; export declare function updateMemoryEntryRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=updatememoryentry.d.ts.map