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