@infino-ai/infino 0.6.0 → 0.7.0
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 +4 -3
- package/package.json +7 -7
package/infino/native.d.ts
CHANGED
|
@@ -93,9 +93,10 @@ export interface VectorFilter {
|
|
|
93
93
|
/** Per-column FTS options for `IndexSpec.fts`. */
|
|
94
94
|
export interface FtsOptions {
|
|
95
95
|
/**
|
|
96
|
-
* Tokenizer: `"
|
|
97
|
-
* non-ASCII
|
|
98
|
-
*
|
|
96
|
+
* Tokenizer: `"standard"` (the default — the Unicode-aware UAX #29
|
|
97
|
+
* tokenizer that keeps non-ASCII text) or `"ascii_lower"` (ASCII
|
|
98
|
+
* split + lowercase, non-ASCII dropped). It is recorded with the
|
|
99
|
+
* table and cannot be changed afterwards.
|
|
99
100
|
*/
|
|
100
101
|
analyzer?: string
|
|
101
102
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@infino-ai/infino",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.0",
|
|
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.
|
|
86
|
-
"infx-darwin-arm64": "0.
|
|
87
|
-
"infx-linux-x64-gnu": "0.
|
|
88
|
-
"infx-linux-arm64-gnu": "0.
|
|
89
|
-
"infx-linux-x64-musl": "0.
|
|
90
|
-
"infx-linux-arm64-musl": "0.
|
|
85
|
+
"infx-darwin-x64": "0.7.0",
|
|
86
|
+
"infx-darwin-arm64": "0.7.0",
|
|
87
|
+
"infx-linux-x64-gnu": "0.7.0",
|
|
88
|
+
"infx-linux-arm64-gnu": "0.7.0",
|
|
89
|
+
"infx-linux-x64-musl": "0.7.0",
|
|
90
|
+
"infx-linux-arm64-musl": "0.7.0"
|
|
91
91
|
},
|
|
92
92
|
"devDependencies": {
|
|
93
93
|
"@napi-rs/cli": "^2.18.0",
|