You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -66,6 +67,7 @@ final class MainInjectionQueryParameters {
66
67
this.facets,
67
68
this.hitsPerPage,
68
69
this.maxValuesPerFacet,
70
+
this.renderingContent,
69
71
this.sortFacetValuesBy,
70
72
this.sumOrFiltersScores,
71
73
});
@@ -299,6 +301,9 @@ final class MainInjectionQueryParameters {
299
301
@JsonKey(name:r'maxValuesPerFacet')
300
302
finalint? maxValuesPerFacet;
301
303
304
+
@JsonKey(name:r'renderingContent')
305
+
finalRenderingContent? renderingContent;
306
+
302
307
/// Order in which to retrieve facet values - `count`. Facet values are retrieved by decreasing count. The count is the number of matching records containing this facet value - `alpha`. Retrieve facet values alphabetically This setting doesn't influence how facet values are displayed in your UI (see `renderingContent`). For more information, see [facet value display](https://www.algolia.com/doc/guides/building-search-ui/ui-and-ux-patterns/facet-display/js).
303
308
@JsonKey(name:r'sortFacetValuesBy')
304
309
finalString? sortFacetValuesBy;
@@ -365,6 +370,7 @@ final class MainInjectionQueryParameters {
365
370
other.facets == facets &&
366
371
other.hitsPerPage == hitsPerPage &&
367
372
other.maxValuesPerFacet == maxValuesPerFacet &&
373
+
other.renderingContent == renderingContent &&
368
374
other.sortFacetValuesBy == sortFacetValuesBy &&
369
375
other.sumOrFiltersScores == sumOrFiltersScores;
370
376
@@ -421,6 +427,7 @@ final class MainInjectionQueryParameters {
0 commit comments