TypeAlias.ImportMapperRowType
type ImportMapperRowType = ObjectEnum<typeof ImportMapperRowType>;
Type of an import-mapper row, describing how source is interpreted.
path:sourceis a JSON path / accessor expression evaluated against the imported JSON to extract a value fordestination. Used by JSON mappers.column:sourceis a zero-based column index into a CSV row; the cell at that index is assigned todestination. Used by CSV mappers.const:sourceis a literal value assigned as-is todestination, regardless of the imported content. Used by both JSON and CSV mappers (e.g. enum/const-only destinations).