/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 0a7309058ee2 */ import * as z from "zod/v4"; export type DeleteReleaseChannelGlobals = { /** * 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 DeleteReleaseChannelRequest = { name: string; /** * Filter by project ID or name. */ project: string; }; /** @internal */ export type DeleteReleaseChannelRequest$Outbound = { name: string; project: string; }; /** @internal */ export const DeleteReleaseChannelRequest$outboundSchema: z.ZodType< DeleteReleaseChannelRequest$Outbound, DeleteReleaseChannelRequest > = z.object({ name: z.string(), project: z.string(), }); export function deleteReleaseChannelRequestToJSON( deleteReleaseChannelRequest: DeleteReleaseChannelRequest, ): string { return JSON.stringify( DeleteReleaseChannelRequest$outboundSchema.parse( deleteReleaseChannelRequest, ), ); }