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