Skip to content

Commit b275d77

Browse files
algolia-botrenovate[bot]shortcutsmillotp
committed
chore: generated code for commit 505a22f5. [skip ci]
algolia/api-clients-automation@505a22f Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Algolia Bot <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: shortcuts <[email protected]> Co-authored-by: Pierre Millot <[email protected]>
1 parent d99d5b0 commit b275d77

File tree

11 files changed

+105
-103
lines changed

11 files changed

+105
-103
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"bundlesize2": "0.0.31",
3131
"execa": "9.2.0",
3232
"lerna": "8.1.3",
33-
"nx": "19.2.2",
33+
"nx": "19.3.0",
3434
"rollup": "4.18.0",
3535
"rollup-plugin-node-globals": "1.4.0",
3636
"rollup-plugin-typescript2": "0.36.0",

packages/algoliasearch/lite/model/baseIndexSettings.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ export type BaseIndexSettings = {
7474
searchableAttributes?: string[];
7575

7676
/**
77-
* An object with custom data. You can store up to 32&nbsp;kB as custom data.
77+
* An object with custom data. You can store up to 32kB as custom data.
7878
*/
79-
userData?: any | null;
79+
userData?: Record<string, any>;
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ export type BaseSearchResponse = Record<string, any> & {
128128
serverUsed?: string;
129129

130130
/**
131-
* An object with custom data. You can store up to 32&nbsp;kB as custom data.
131+
* An object with custom data. You can store up to 32kB as custom data.
132132
*/
133-
userData?: any | null;
133+
userData?: Record<string, any>;
134134

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

packages/client-common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"@types/node": "20.14.2",
2727
"jest": "29.7.0",
2828
"jest-environment-jsdom": "29.7.0",
29-
"ts-jest": "29.1.4",
29+
"ts-jest": "29.1.5",
3030
"typescript": "5.4.5"
3131
},
3232
"engines": {

packages/client-search/model/baseIndexSettings.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,9 @@ export type BaseIndexSettings = {
7474
searchableAttributes?: string[];
7575

7676
/**
77-
* An object with custom data. You can store up to 32&nbsp;kB as custom data.
77+
* An object with custom data. You can store up to 32kB as custom data.
7878
*/
79-
userData?: any | null;
79+
userData?: Record<string, any>;
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ export type BaseSearchResponse = Record<string, any> & {
128128
serverUsed?: string;
129129

130130
/**
131-
* An object with custom data. You can store up to 32&nbsp;kB as custom data.
131+
* An object with custom data. You can store up to 32kB as custom data.
132132
*/
133-
userData?: any | null;
133+
userData?: Record<string, any>;
134134

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

packages/recommend/model/baseSearchResponse.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,9 +128,9 @@ export type BaseSearchResponse = Record<string, any> & {
128128
serverUsed?: string;
129129

130130
/**
131-
* An object with custom data. You can store up to 32&nbsp;kB as custom data.
131+
* An object with custom data. You can store up to 32kB as custom data.
132132
*/
133-
userData?: any | null;
133+
userData?: Record<string, any>;
134134

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

packages/requester-browser-xhr/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@types/node": "20.14.2",
3030
"jest": "29.7.0",
3131
"jest-environment-jsdom": "29.7.0",
32-
"ts-jest": "29.1.4",
32+
"ts-jest": "29.1.5",
3333
"typescript": "5.4.5",
3434
"xhr-mock": "2.5.1"
3535
},

packages/requester-fetch/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"cross-fetch": "4.0.0",
3131
"jest": "29.7.0",
3232
"nock": "13.5.4",
33-
"ts-jest": "29.1.4",
33+
"ts-jest": "29.1.5",
3434
"typescript": "5.4.5"
3535
},
3636
"engines": {

packages/requester-node-http/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@types/node": "20.14.2",
3030
"jest": "29.7.0",
3131
"nock": "13.5.4",
32-
"ts-jest": "29.1.4",
32+
"ts-jest": "29.1.5",
3333
"typescript": "5.4.5"
3434
},
3535
"engines": {

0 commit comments

Comments
 (0)