/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: d6d2e5223dce */ import * as z from "zod/v4"; /** * Request schema for updating a manager to a new release */ export type UpdateManagerRequest = { /** * Optional release ID to update to. If not provided, the active release will be chosen */ releaseId?: string | null | undefined; }; /** @internal */ export type UpdateManagerRequest$Outbound = { releaseId?: string | null | undefined; }; /** @internal */ export const UpdateManagerRequest$outboundSchema: z.ZodType< UpdateManagerRequest$Outbound, UpdateManagerRequest > = z.object({ releaseId: z.nullable(z.string()).optional(), }); export function updateManagerRequestToJSON( updateManagerRequest: UpdateManagerRequest, ): string { return JSON.stringify( UpdateManagerRequest$outboundSchema.parse(updateManagerRequest), ); }