@wix/search 1.0.44 → 1.0.45
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/package.json +4 -4
- package/type-bundles/context.bundle.d.ts +137 -475
- package/type-bundles/index.bundle.d.ts +137 -475
- package/type-bundles/meta.bundle.d.ts +4 -0
|
@@ -948,6 +948,8 @@ interface TrendingRequest$1 {
|
|
|
948
948
|
language?: string | null;
|
|
949
949
|
/** Include seo hidden documents. Defaults to false if not provided. */
|
|
950
950
|
includeSeoHidden?: boolean | null;
|
|
951
|
+
/** The properties/overrides/experiments to enable for this request. Currently supported: `scoring_profile`, `result-format`. */
|
|
952
|
+
properties?: SearchProperty$1[];
|
|
951
953
|
}
|
|
952
954
|
interface TrendingResponse$1 {
|
|
953
955
|
results?: TrendingItems$1[];
|
|
@@ -1369,6 +1371,8 @@ interface TrendingRequest {
|
|
|
1369
1371
|
language?: string | null;
|
|
1370
1372
|
/** Include seo hidden documents. Defaults to false if not provided. */
|
|
1371
1373
|
includeSeoHidden?: boolean | null;
|
|
1374
|
+
/** The properties/overrides/experiments to enable for this request. Currently supported: `scoring_profile`, `result-format`. */
|
|
1375
|
+
properties?: SearchProperty[];
|
|
1372
1376
|
}
|
|
1373
1377
|
interface TrendingResponse {
|
|
1374
1378
|
results?: TrendingItems[];
|