File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ export type TrendingItems = {
7
7
/**
8
8
* Facet attribute. To be used in combination with `facetValue`. If specified, only recommendations matching the facet filter will be returned.
9
9
*/
10
- facetName : string ;
10
+ facetName ? : string ;
11
11
12
12
/**
13
13
* Facet value. To be used in combination with `facetName`. If specified, only recommendations matching the facet filter will be returned.
14
14
*/
15
- facetValue : string ;
15
+ facetValue ? : string ;
16
16
17
17
model : TrendingItemsModel ;
18
18
Original file line number Diff line number Diff line change @@ -7,12 +7,12 @@ export type TrendingItems = {
7
7
/**
8
8
* Facet attribute. To be used in combination with `facetValue`. If specified, only recommendations matching the facet filter will be returned.
9
9
*/
10
- facetName : string ;
10
+ facetName ? : string ;
11
11
12
12
/**
13
13
* Facet value. To be used in combination with `facetName`. If specified, only recommendations matching the facet filter will be returned.
14
14
*/
15
- facetValue : string ;
15
+ facetValue ? : string ;
16
16
17
17
model : TrendingItemsModel ;
18
18
You can’t perform that action at this time.
0 commit comments