Skip to content

Commit b4ff46d

Browse files
committed
Rebuild schema for docstrings.
1 parent 7bc260d commit b4ff46d

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

client/src/api/schema/schema.ts

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)