@vertesia/common 0.77.0 → 0.78.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/lib/cjs/access-control.js +1 -0
- package/lib/cjs/access-control.js.map +1 -1
- package/lib/cjs/store/store.js.map +1 -1
- package/lib/esm/access-control.js +1 -0
- package/lib/esm/access-control.js.map +1 -1
- package/lib/esm/store/store.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/lib/types/access-control.d.ts +2 -1
- package/lib/types/access-control.d.ts.map +1 -1
- package/lib/types/store/store.d.ts +4 -0
- package/lib/types/store/store.d.ts.map +1 -1
- package/lib/vertesia-common.js +1 -1
- package/lib/vertesia-common.js.map +1 -1
- package/package.json +1 -1
- package/src/access-control.ts +1 -0
- package/src/store/store.ts +5 -0
package/package.json
CHANGED
package/src/access-control.ts
CHANGED
package/src/store/store.ts
CHANGED
|
@@ -220,6 +220,11 @@ export interface ContentObjectItem<T = Record<string, any>> extends BaseObject {
|
|
|
220
220
|
* and modification attempts should be rejected.
|
|
221
221
|
*/
|
|
222
222
|
is_locked?: boolean;
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* The document score, used for ranking and sorting.
|
|
226
|
+
*/
|
|
227
|
+
score?: number;
|
|
223
228
|
}
|
|
224
229
|
|
|
225
230
|
/**
|