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