@atscript/moost-db 0.1.36 → 0.1.37
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/index.cjs +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -382,6 +382,7 @@ else result = await this.readable.findManyWithCount(query);
|
|
|
382
382
|
*/ meta() {
|
|
383
383
|
return {
|
|
384
384
|
searchable: this.readable.isSearchable(),
|
|
385
|
+
vectorSearchable: this.readable.isVectorSearchable(),
|
|
385
386
|
searchIndexes: this._searchIndexes,
|
|
386
387
|
type: this._serializedType
|
|
387
388
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -80,6 +80,7 @@ declare class AsDbReadableController<T extends TAtscriptAnnotatedType = TAtscrip
|
|
|
80
80
|
*/
|
|
81
81
|
meta(): {
|
|
82
82
|
searchable: boolean;
|
|
83
|
+
vectorSearchable: boolean;
|
|
83
84
|
searchIndexes: _atscript_utils_db.TSearchIndexInfo[];
|
|
84
85
|
type: _atscript_typescript_serialize.TSerializedAnnotatedType;
|
|
85
86
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -358,6 +358,7 @@ else result = await this.readable.findManyWithCount(query);
|
|
|
358
358
|
*/ meta() {
|
|
359
359
|
return {
|
|
360
360
|
searchable: this.readable.isSearchable(),
|
|
361
|
+
vectorSearchable: this.readable.isVectorSearchable(),
|
|
361
362
|
searchIndexes: this._searchIndexes,
|
|
362
363
|
type: this._serializedType
|
|
363
364
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atscript/moost-db",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.37",
|
|
4
4
|
"description": "Generic database controller for Moost with Atscript.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"annotations",
|
|
@@ -41,14 +41,14 @@
|
|
|
41
41
|
"@moostjs/event-http": "^0.6.2",
|
|
42
42
|
"moost": "^0.6.2",
|
|
43
43
|
"vitest": "3.2.4",
|
|
44
|
-
"@atscript/core": "^0.1.
|
|
44
|
+
"@atscript/core": "^0.1.37"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"@moostjs/event-http": "^0.6.2",
|
|
48
48
|
"moost": "^0.6.2",
|
|
49
49
|
"@uniqu/core": "^0.0.6",
|
|
50
|
-
"@atscript/utils-db": "^0.1.
|
|
51
|
-
"@atscript/typescript": "^0.1.
|
|
50
|
+
"@atscript/utils-db": "^0.1.37",
|
|
51
|
+
"@atscript/typescript": "^0.1.37"
|
|
52
52
|
},
|
|
53
53
|
"scripts": {
|
|
54
54
|
"pub": "pnpm publish --access public",
|