ydb-qdrant 5.2.0 → 5.2.1
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/dist/config/env.js +1 -1
- package/package.json +1 -1
package/dist/config/env.js
CHANGED
|
@@ -35,7 +35,7 @@ function parseBooleanEnv(value, defaultValue) {
|
|
|
35
35
|
return true;
|
|
36
36
|
}
|
|
37
37
|
export const GLOBAL_POINTS_AUTOMIGRATE_ENABLED = parseBooleanEnv(process.env.YDB_QDRANT_GLOBAL_POINTS_AUTOMIGRATE, false);
|
|
38
|
-
export const USE_BATCH_DELETE_FOR_COLLECTIONS = parseBooleanEnv(process.env.YDB_QDRANT_USE_BATCH_DELETE,
|
|
38
|
+
export const USE_BATCH_DELETE_FOR_COLLECTIONS = parseBooleanEnv(process.env.YDB_QDRANT_USE_BATCH_DELETE, false);
|
|
39
39
|
export var SearchMode;
|
|
40
40
|
(function (SearchMode) {
|
|
41
41
|
SearchMode["Exact"] = "exact";
|