Skip to content

Commit 64befb2

Browse files
algolia-botkai687
andcommitted
fix(specs): add type: object to 3 schemas (generated)
algolia/api-clients-automation#4392 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Kai Welke <[email protected]>
1 parent cf1a259 commit 64befb2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/algoliasearch/lite/model/trendingFacets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export type TrendingFacets = {
77
/**
88
* Facet attribute for which to retrieve trending facet values.
99
*/
10-
facetName: any | null;
10+
facetName: string;
1111

1212
model: TrendingFacetsModel;
1313

packages/client-search/model/consequence.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@ export type Consequence = {
2828
/**
2929
* A JSON object with custom data that will be appended to the `userData` array in the response. This object isn\'t interpreted by the API and is limited to 1&nbsp;kB of minified JSON.
3030
*/
31-
userData?: any | null;
31+
userData?: Record<string, unknown>;
3232
};

packages/recommend/model/trendingFacets.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export type TrendingFacets = {
77
/**
88
* Facet attribute for which to retrieve trending facet values.
99
*/
10-
facetName: any | null;
10+
facetName: string;
1111

1212
model: TrendingFacetsModel;
1313

0 commit comments

Comments
 (0)