import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { DependencyReasonEnum } from "./dependencyreasonenum.js"; import { ResourceTypeEnum } from "./resourcetypeenum.js"; export type ResourceDependencyDto = { /** * Type of the layout */ resourceType: ResourceTypeEnum; /** * ID of the dependent resource */ resourceId: string; /** * Name of the dependent resource */ resourceName: string; /** * Whether this dependency blocks the operation */ isBlocking: boolean; /** * Reason for the dependency */ reason: DependencyReasonEnum; }; /** @internal */ export declare const ResourceDependencyDto$inboundSchema: z.ZodType; export declare function resourceDependencyDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=resourcedependencydto.d.ts.map