fix: add status to remote listIndices return (#1364)

expose `status` returned by remote listIndices
This commit is contained in:
QianZhu
2024-06-08 09:52:35 -07:00
committed by GitHub
parent 5e30648f45
commit b9e3cfbdca

View File

@@ -695,10 +695,18 @@ export interface MergeInsertArgs {
whenNotMatchedBySourceDelete?: string | boolean
}
export enum IndexStatus {
Pending = "pending",
Indexing = "indexing",
Done = "done",
Failed = "failed"
}
export interface VectorIndex {
columns: string[]
name: string
uuid: string
status: IndexStatus
}
export interface IndexStats {