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