Skip to content

Commit 8adf7de

Browse files
algolia-botmillotp
andcommitted
fix(specs): userData is any type (generated)
algolia/api-clients-automation#4702 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
1 parent 3e3f0bc commit 8adf7de

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

packages/algoliasearch/lite/model/baseIndexSettings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export type BaseIndexSettings = {
7676
/**
7777
* An object with custom data. You can store up to 32kB as custom data.
7878
*/
79-
userData?: Record<string, unknown>;
79+
userData?: any | null;
8080

8181
/**
8282
* Characters and their normalized replacements. This overrides Algolia\'s default [normalization](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/normalization/).

packages/algoliasearch/lite/model/baseSearchResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export type BaseSearchResponse = Record<string, any> & {
115115
/**
116116
* An object with custom data. You can store up to 32kB as custom data.
117117
*/
118-
userData?: Record<string, unknown>;
118+
userData?: any | null;
119119

120120
/**
121121
* Unique identifier for the query. This is used for [click analytics](https://www.algolia.com/doc/guides/analytics/click-analytics/).

packages/client-composition/model/baseSearchResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export type BaseSearchResponse = Record<string, any> & {
115115
/**
116116
* An object with custom data. You can store up to 32kB as custom data.
117117
*/
118-
userData?: Record<string, unknown>;
118+
userData?: any | null;
119119

120120
/**
121121
* Unique identifier for the query. This is used for [click analytics](https://www.algolia.com/doc/guides/analytics/click-analytics/).

packages/client-search/model/baseIndexSettings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export type BaseIndexSettings = {
7676
/**
7777
* An object with custom data. You can store up to 32kB as custom data.
7878
*/
79-
userData?: Record<string, unknown>;
79+
userData?: any | null;
8080

8181
/**
8282
* Characters and their normalized replacements. This overrides Algolia\'s default [normalization](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/normalization/).

packages/client-search/model/baseSearchResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export type BaseSearchResponse = Record<string, any> & {
115115
/**
116116
* An object with custom data. You can store up to 32kB as custom data.
117117
*/
118-
userData?: Record<string, unknown>;
118+
userData?: any | null;
119119

120120
/**
121121
* Unique identifier for the query. This is used for [click analytics](https://www.algolia.com/doc/guides/analytics/click-analytics/).

packages/composition/model/baseSearchResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export type BaseSearchResponse = Record<string, any> & {
115115
/**
116116
* An object with custom data. You can store up to 32kB as custom data.
117117
*/
118-
userData?: Record<string, unknown>;
118+
userData?: any | null;
119119

120120
/**
121121
* Unique identifier for the query. This is used for [click analytics](https://www.algolia.com/doc/guides/analytics/click-analytics/).

packages/recommend/model/baseIndexSettings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export type BaseIndexSettings = {
7676
/**
7777
* An object with custom data. You can store up to 32kB as custom data.
7878
*/
79-
userData?: Record<string, unknown>;
79+
userData?: any | null;
8080

8181
/**
8282
* Characters and their normalized replacements. This overrides Algolia\'s default [normalization](https://www.algolia.com/doc/guides/managing-results/optimize-search-results/handling-natural-languages-nlp/in-depth/normalization/).

packages/recommend/model/baseSearchResponse.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ export type BaseSearchResponse = Record<string, any> & {
115115
/**
116116
* An object with custom data. You can store up to 32kB as custom data.
117117
*/
118-
userData?: Record<string, unknown>;
118+
userData?: any | null;
119119

120120
/**
121121
* Unique identifier for the query. This is used for [click analytics](https://www.algolia.com/doc/guides/analytics/click-analytics/).

0 commit comments

Comments
 (0)