/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 5ec008d91117 */ import * as z from "zod/v4"; export type VerifyOperationCheckRequest = { /** * Deployment the original write command ran against. */ deploymentId: string; /** * Original operation command whose stored result and dispatch-time verification contract are authoritative. */ commandId: string; }; /** @internal */ export type VerifyOperationCheckRequest$Outbound = { deploymentId: string; commandId: string; }; /** @internal */ export const VerifyOperationCheckRequest$outboundSchema: z.ZodType< VerifyOperationCheckRequest$Outbound, VerifyOperationCheckRequest > = z.object({ deploymentId: z.string(), commandId: z.string(), }); export function verifyOperationCheckRequestToJSON( verifyOperationCheckRequest: VerifyOperationCheckRequest, ): string { return JSON.stringify( VerifyOperationCheckRequest$outboundSchema.parse( verifyOperationCheckRequest, ), ); }