@enonic-types/lib-content 7.11.1 → 7.11.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/content.d.ts +3 -0
- package/package.json +2 -2
package/content.d.ts
CHANGED
|
@@ -302,17 +302,20 @@ export interface FulltextDslExpression {
|
|
|
302
302
|
fields: string[];
|
|
303
303
|
query: string;
|
|
304
304
|
operator?: DslOperator;
|
|
305
|
+
boost?: number;
|
|
305
306
|
}
|
|
306
307
|
export interface NgramDslExpression {
|
|
307
308
|
fields: string[];
|
|
308
309
|
query: string;
|
|
309
310
|
operator?: DslOperator;
|
|
311
|
+
boost?: number;
|
|
310
312
|
}
|
|
311
313
|
export interface StemmedDslExpression {
|
|
312
314
|
fields: string[];
|
|
313
315
|
query: string;
|
|
314
316
|
language: string;
|
|
315
317
|
operator?: DslOperator;
|
|
318
|
+
boost?: number;
|
|
316
319
|
}
|
|
317
320
|
export interface ExistsDslExpression {
|
|
318
321
|
field: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@enonic-types/lib-content",
|
|
3
|
-
"version": "7.11.
|
|
3
|
+
"version": "7.11.3",
|
|
4
4
|
"description": "Type definitions for lib-content.",
|
|
5
5
|
"types": "content.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
},
|
|
28
28
|
"homepage": "https://github.com/enonic/xp/tree/master#readme",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@enonic-types/core": "7.11.
|
|
30
|
+
"@enonic-types/core": "7.11.3"
|
|
31
31
|
},
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|