/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: 7fc35abb47d2 */ import * as z from "zod/v4"; export type GetProjectGlobals = { /** * 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 GetProjectRequest = { /** * Project ID or name. */ idOrName: string; }; /** @internal */ export type GetProjectRequest$Outbound = { idOrName: string; }; /** @internal */ export const GetProjectRequest$outboundSchema: z.ZodType< GetProjectRequest$Outbound, GetProjectRequest > = z.object({ idOrName: z.string(), }); export function getProjectRequestToJSON( getProjectRequest: GetProjectRequest, ): string { return JSON.stringify( GetProjectRequest$outboundSchema.parse(getProjectRequest), ); }