@infino-ai/infino 0.5.5 → 0.5.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/infino/native.d.ts +5 -1
- package/package.json +7 -7
package/infino/native.d.ts
CHANGED
|
@@ -136,7 +136,11 @@ export declare class Connection {
|
|
|
136
136
|
createTable(name: string, schema: Buffer, indexes: IndexSpec): Table
|
|
137
137
|
/** Open an existing table by name. */
|
|
138
138
|
openTable(name: string): Table
|
|
139
|
-
/**
|
|
139
|
+
/**
|
|
140
|
+
* Drop a table. `purge` defaults to `true`, which also deletes the
|
|
141
|
+
* table's storage subtree after the catalog commit, reclaiming the bytes;
|
|
142
|
+
* pass `false` to only unregister it from the catalog and keep the bytes.
|
|
143
|
+
*/
|
|
140
144
|
dropTable(name: string, purge?: boolean | undefined | null): void
|
|
141
145
|
/** List the catalog's table names. */
|
|
142
146
|
listTables(): Array<string>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infino-ai/infino",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.7",
|
|
4
4
|
"description": "Fast search on object storage — SQL, full-text, and vector search.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"publishConfig": {
|
|
@@ -82,12 +82,12 @@
|
|
|
82
82
|
"apache-arrow": "^17"
|
|
83
83
|
},
|
|
84
84
|
"optionalDependencies": {
|
|
85
|
-
"infx-darwin-x64": "0.5.
|
|
86
|
-
"infx-darwin-arm64": "0.5.
|
|
87
|
-
"infx-linux-x64-gnu": "0.5.
|
|
88
|
-
"infx-linux-arm64-gnu": "0.5.
|
|
89
|
-
"infx-linux-x64-musl": "0.5.
|
|
90
|
-
"infx-linux-arm64-musl": "0.5.
|
|
85
|
+
"infx-darwin-x64": "0.5.7",
|
|
86
|
+
"infx-darwin-arm64": "0.5.7",
|
|
87
|
+
"infx-linux-x64-gnu": "0.5.7",
|
|
88
|
+
"infx-linux-arm64-gnu": "0.5.7",
|
|
89
|
+
"infx-linux-x64-musl": "0.5.7",
|
|
90
|
+
"infx-linux-arm64-musl": "0.5.7"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
93
|
"@napi-rs/cli": "^2.18.0",
|