Skip to content

Commit

Permalink
fix(specs): add type: object to 3 schemas (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#4392

Co-authored-by: algolia-bot <[email protected]>
Co-authored-by: Kai Welke <[email protected]>
  • Loading branch information
algolia-bot and kai687 committed Jan 23, 2025
1 parent cf1a259 commit 64befb2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/algoliasearch/lite/model/trendingFacets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type TrendingFacets = {
/**
* Facet attribute for which to retrieve trending facet values.
*/
facetName: any | null;
facetName: string;

model: TrendingFacetsModel;

Expand Down
2 changes: 1 addition & 1 deletion packages/client-search/model/consequence.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ export type Consequence = {
/**
* 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.
*/
userData?: any | null;
userData?: Record<string, unknown>;
};
2 changes: 1 addition & 1 deletion packages/recommend/model/trendingFacets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type TrendingFacets = {
/**
* Facet attribute for which to retrieve trending facet values.
*/
facetName: any | null;
facetName: string;

model: TrendingFacetsModel;

Expand Down

0 comments on commit 64befb2

Please sign in to comment.