export type SDTFMessageLocation = { type: 'SDTF'; graphPath: Array; valuePath: Array; targetMode: string | null; localMode: string | null; }; export type JSONMessageLocation = { type: 'JSON'; jsonPath: Array; }; export type ZodMessageLocation = { type: 'zod'; path: Array; }; export type MessageLocation = SDTFMessageLocation | JSONMessageLocation | ZodMessageLocation;