/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 94240488d672 */ import * as z from "zod/v4"; export type SyncContextRequest = { managerId?: string | undefined; /** * Unique identifier for the deployment. */ deploymentId: string; }; /** @internal */ export type SyncContextRequest$Outbound = { managerId?: string | undefined; deploymentId: string; }; /** @internal */ export const SyncContextRequest$outboundSchema: z.ZodType< SyncContextRequest$Outbound, SyncContextRequest > = z.object({ managerId: z.string().optional(), deploymentId: z.string(), }); export function syncContextRequestToJSON( syncContextRequest: SyncContextRequest, ): string { return JSON.stringify( SyncContextRequest$outboundSchema.parse(syncContextRequest), ); }