import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type DiffSummaryDto = { /** * Number of added resources (workflows and steps) */ added: number; /** * Number of modified resources (workflows and steps) */ modified: number; /** * Number of deleted resources (workflows and steps) */ deleted: number; /** * Number of unchanged resources (workflows and steps) */ unchanged: number; }; /** @internal */ export declare const DiffSummaryDto$inboundSchema: z.ZodType; export declare function diffSummaryDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=diffsummarydto.d.ts.map