/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. * @generated-id: b9d5a5b69ec4 */ import * as z from "zod/v4"; import { StackInputValueRequest, StackInputValueRequest$Outbound, StackInputValueRequest$outboundSchema, } from "./stackinputvaluerequest.js"; export type UpdateDeploymentInputsRequest = { inputValues?: { [k: string]: StackInputValueRequest } | undefined; clearInputIds?: Array | undefined; }; /** @internal */ export type UpdateDeploymentInputsRequest$Outbound = { inputValues?: { [k: string]: StackInputValueRequest$Outbound } | undefined; clearInputIds?: Array | undefined; }; /** @internal */ export const UpdateDeploymentInputsRequest$outboundSchema: z.ZodType< UpdateDeploymentInputsRequest$Outbound, UpdateDeploymentInputsRequest > = z.object({ inputValues: z.record(z.string(), StackInputValueRequest$outboundSchema) .optional(), clearInputIds: z.array(z.string()).optional(), }); export function updateDeploymentInputsRequestToJSON( updateDeploymentInputsRequest: UpdateDeploymentInputsRequest, ): string { return JSON.stringify( UpdateDeploymentInputsRequest$outboundSchema.parse( updateDeploymentInputsRequest, ), ); }