import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { DeploymentUpdateOperationStatus } from "./deploymentupdateoperationstatus.js"; import { DeploymentUpdateReason } from "./deploymentupdatereason.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type DeploymentUpdateOperationSummary = { /** * Unique identifier for the deployment update operation. */ id: string; status: DeploymentUpdateOperationStatus; reasons: Array; /** * Unique identifier for the release. */ targetReleaseId: string; changedKeys: Array; /** * Action needed before this update can execute; the current release remains installed. */ actionRequired?: string | null | undefined; requestedAt: Date; startedAt?: Date | null | undefined; completedAt?: Date | null | undefined; }; /** @internal */ export declare const DeploymentUpdateOperationSummary$inboundSchema: z.ZodType; export declare function deploymentUpdateOperationSummaryFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=deploymentupdateoperationsummary.d.ts.map