File tree Expand file tree Collapse file tree 1 file changed +19
-2
lines changed
Expand file tree Collapse file tree 1 file changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -14828,7 +14828,19 @@ export interface components {
1482814828 /** Message */
1482914829 message: string;
1483014830 };
14831- /** InferredColumnMapping */
14831+ /**
14832+ * InferredColumnMapping
14833+ * @description Records that a column at a specific index was successfully parsed and mapped.
14834+ *
14835+ * Used in parse logs to show users which columns were recognized and how they were interpreted.
14836+ *
14837+ * Example log entry:
14838+ * InferredColumnMapping(
14839+ * column_index=2,
14840+ * column_title="MD5 Sum",
14841+ * parsed_column=ParsedColumn(type="hash_md5", type_index=0, title="MD5 Sum")
14842+ * )
14843+ */
1483214844 InferredColumnMapping: {
1483314845 /** Column Index */
1483414846 column_index: number;
@@ -18601,7 +18613,12 @@ export interface components {
1860118613 */
1860218614 content: string;
1860318615 };
18604- /** ParsedColumn */
18616+ /**
18617+ * ParsedColumn
18618+ * @description Serializable representation of a parsed column (Pydantic model version of HeaderColumn).
18619+ *
18620+ * Used in API responses and logging to communicate which columns were recognized.
18621+ */
1860518622 ParsedColumn: {
1860618623 /** Title */
1860718624 title: string;
You can’t perform that action at this time.
0 commit comments