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