import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { FailedWorkflowDto } from "./failedworkflowdto.js"; import { ResourceTypeEnum } from "./resourcetypeenum.js"; import { SkippedWorkflowDto } from "./skippedworkflowdto.js"; import { SyncedWorkflowDto } from "./syncedworkflowdto.js"; export type SyncResultDto = { /** * Type of the layout */ resourceType: ResourceTypeEnum; /** * Successfully synced resources */ successful: Array; /** * Failed resource syncs */ failed: Array; /** * Skipped resources */ skipped: Array; /** * Total number of resources processed */ totalProcessed: number; }; /** @internal */ export declare const SyncResultDto$inboundSchema: z.ZodType; export declare function syncResultDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=syncresultdto.d.ts.map