/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: b600625ea835 */ import * as z from "zod/v4"; export type CancelPackageGlobals = { /** * 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 CancelPackageRequest = { /** * Unique identifier for the package. */ id: string; }; /** @internal */ export type CancelPackageRequest$Outbound = { id: string; }; /** @internal */ export const CancelPackageRequest$outboundSchema: z.ZodType< CancelPackageRequest$Outbound, CancelPackageRequest > = z.object({ id: z.string(), }); export function cancelPackageRequestToJSON( cancelPackageRequest: CancelPackageRequest, ): string { return JSON.stringify( CancelPackageRequest$outboundSchema.parse(cancelPackageRequest), ); }