fix: use JS naming convention in new index stats fields (#1377)

Changes new index stats fields in node client from snake case to camel
case.
This commit is contained in:
Ryan Green
2024-06-10 16:41:31 -02:30
committed by GitHub
parent 96914a619b
commit 8e348ab4bd
2 changed files with 6 additions and 6 deletions

View File

@@ -712,9 +712,9 @@ export interface VectorIndex {
export interface IndexStats {
numIndexedRows: number | null
numUnindexedRows: number | null
index_type: string | null
distance_type: string | null
completed_at: string | null
indexType: string | null
distanceType: string | null
completedAt: string | null
}
/**