export type AiuxFieldPlain = { value: string; }; export type AiuxFieldCdata = { isCdata: true; value: string; }; export type AiuxFieldRef = { isRef: true; table: string; nowIdKey?: string; explicitSysId?: string; }; export type AiuxFieldValue = AiuxFieldPlain | AiuxFieldCdata | AiuxFieldRef; export type AiuxRecordMetadata = { table: string; fields: Record; nowIdKey: string; uniqueKey: string; explicitSysId?: string; demo_install: boolean; sourceFiles: string[]; fluentPlugin?: string | null; };