@lancedb/lancedb 0.22.4-beta.2 → 0.22.4-beta.3

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/README.md CHANGED
@@ -30,7 +30,7 @@ const results = await table.vectorSearch([0.1, 0.3]).limit(20).toArray();
30
30
  console.log(results);
31
31
  ```
32
32
 
33
- The [quickstart](https://lancedb.github.io/lancedb/basic/) contains a more complete example.
33
+ The [quickstart](https://lancedb.com/docs/quickstart/basic-usage/) contains more complete examples.
34
34
 
35
35
  ## Development
36
36
 
@@ -24,7 +24,7 @@ export interface CreateTableOptions {
24
24
  * Options already set on the connection will be inherited by the table,
25
25
  * but can be overridden here.
26
26
  *
27
- * The available options are described at https://lancedb.github.io/lancedb/guides/storage/
27
+ * The available options are described at https://lancedb.com/docs/storage/
28
28
  */
29
29
  storageOptions?: Record<string, string>;
30
30
  /**
@@ -56,7 +56,7 @@ export interface OpenTableOptions {
56
56
  * Options already set on the connection will be inherited by the table,
57
57
  * but can be overridden here.
58
58
  *
59
- * The available options are described at https://lancedb.github.io/lancedb/guides/storage/
59
+ * The available options are described at https://lancedb.com/docs/storage/
60
60
  */
61
61
  storageOptions?: Record<string, string>;
62
62
  /**
package/dist/native.d.ts CHANGED
@@ -322,7 +322,7 @@ export interface ConnectionOptions {
322
322
  /**
323
323
  * (For LanceDB OSS only): configuration for object storage.
324
324
  *
325
- * The available options are described at https://lancedb.github.io/lancedb/guides/storage/
325
+ * The available options are described at https://lancedb.com/docs/storage/
326
326
  */
327
327
  storageOptions?: Record<string, string>
328
328
  /**
@@ -84,7 +84,7 @@ export declare class PermutationBuilder {
84
84
  * @returns A new PermutationBuilder instance
85
85
  * @example
86
86
  * ```ts
87
- * builder.splitCalculated("user_id % 3");
87
+ * builder.splitCalculated({ calculation: "user_id % 3" });
88
88
  * ```
89
89
  */
90
90
  splitCalculated(options: SplitCalculatedOptions): PermutationBuilder;
@@ -104,7 +104,7 @@ class PermutationBuilder {
104
104
  * @returns A new PermutationBuilder instance
105
105
  * @example
106
106
  * ```ts
107
- * builder.splitCalculated("user_id % 3");
107
+ * builder.splitCalculated({ calculation: "user_id % 3" });
108
108
  * ```
109
109
  */
110
110
  splitCalculated(options) {
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "ann"
12
12
  ],
13
13
  "private": false,
14
- "version": "0.22.4-beta.2",
14
+ "version": "0.22.4-beta.3",
15
15
  "main": "dist/index.js",
16
16
  "exports": {
17
17
  ".": "./dist/index.js",
@@ -102,14 +102,14 @@
102
102
  "reflect-metadata": "^0.2.2"
103
103
  },
104
104
  "optionalDependencies": {
105
- "@lancedb/lancedb-darwin-x64": "0.22.4-beta.2",
106
- "@lancedb/lancedb-darwin-arm64": "0.22.4-beta.2",
107
- "@lancedb/lancedb-linux-x64-gnu": "0.22.4-beta.2",
108
- "@lancedb/lancedb-linux-arm64-gnu": "0.22.4-beta.2",
109
- "@lancedb/lancedb-linux-x64-musl": "0.22.4-beta.2",
110
- "@lancedb/lancedb-linux-arm64-musl": "0.22.4-beta.2",
111
- "@lancedb/lancedb-win32-x64-msvc": "0.22.4-beta.2",
112
- "@lancedb/lancedb-win32-arm64-msvc": "0.22.4-beta.2"
105
+ "@lancedb/lancedb-darwin-x64": "0.22.4-beta.3",
106
+ "@lancedb/lancedb-darwin-arm64": "0.22.4-beta.3",
107
+ "@lancedb/lancedb-linux-x64-gnu": "0.22.4-beta.3",
108
+ "@lancedb/lancedb-linux-arm64-gnu": "0.22.4-beta.3",
109
+ "@lancedb/lancedb-linux-x64-musl": "0.22.4-beta.3",
110
+ "@lancedb/lancedb-linux-arm64-musl": "0.22.4-beta.3",
111
+ "@lancedb/lancedb-win32-x64-msvc": "0.22.4-beta.3",
112
+ "@lancedb/lancedb-win32-arm64-msvc": "0.22.4-beta.3"
113
113
  },
114
114
  "peerDependencies": {
115
115
  "apache-arrow": ">=15.0.0 <=18.1.0"