import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type EnvironmentsControllerDiffEnvironmentRequest = { /** * Target environment ID (MongoDB ObjectId) to compare against */ targetEnvironmentId: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; /** * Diff request configuration */ diffEnvironmentRequestDto: components.DiffEnvironmentRequestDto; }; export type EnvironmentsControllerDiffEnvironmentResponse = { headers: { [k: string]: Array; }; result: components.DiffEnvironmentResponseDto; }; /** @internal */ export type EnvironmentsControllerDiffEnvironmentRequest$Outbound = { targetEnvironmentId: string; "idempotency-key"?: string | undefined; DiffEnvironmentRequestDto: components.DiffEnvironmentRequestDto$Outbound; }; /** @internal */ export declare const EnvironmentsControllerDiffEnvironmentRequest$outboundSchema: z.ZodType; export declare function environmentsControllerDiffEnvironmentRequestToJSON(environmentsControllerDiffEnvironmentRequest: EnvironmentsControllerDiffEnvironmentRequest): string; /** @internal */ export declare const EnvironmentsControllerDiffEnvironmentResponse$inboundSchema: z.ZodType; export declare function environmentsControllerDiffEnvironmentResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=environmentscontrollerdiffenvironment.d.ts.map