/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 59824f60ac5a */ import * as z from "zod/v4"; export type DeleteProjectGlobals = { /** * Workspace name. Platform API keys already select a workspace; other authentication methods can configure it once on the SDK client. */ workspace?: string | undefined; }; export type DeleteProjectRequest = { /** * Project ID or name. */ idOrName: string; }; /** @internal */ export type DeleteProjectRequest$Outbound = { idOrName: string; }; /** @internal */ export const DeleteProjectRequest$outboundSchema: z.ZodType< DeleteProjectRequest$Outbound, DeleteProjectRequest > = z.object({ idOrName: z.string(), }); export function deleteProjectRequestToJSON( deleteProjectRequest: DeleteProjectRequest, ): string { return JSON.stringify( DeleteProjectRequest$outboundSchema.parse(deleteProjectRequest), ); }