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