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