// Shape of records written to dist/aiux-json/_.json by // @servicenow/aiux-sdk's writeMetadataJson during the prebuild step. 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 }