/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import * as z from "zod/v3"; export type GetLatestDeploymentGlobals = { appId?: string | undefined; }; export type GetLatestDeploymentRequest = { appId?: string | undefined; }; /** @internal */ export type GetLatestDeploymentRequest$Outbound = { appId?: string | undefined; }; /** @internal */ export const GetLatestDeploymentRequest$outboundSchema: z.ZodType< GetLatestDeploymentRequest$Outbound, z.ZodTypeDef, GetLatestDeploymentRequest > = z.object({ appId: z.string().optional(), }); export function getLatestDeploymentRequestToJSON( getLatestDeploymentRequest: GetLatestDeploymentRequest, ): string { return JSON.stringify( GetLatestDeploymentRequest$outboundSchema.parse(getLatestDeploymentRequest), ); }