instantsearch.js 4.73.0 → 4.73.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/lib/server.js +4 -1
- package/cjs/lib/utils/getAppIdAndApiKey.js +4 -4
- package/cjs/lib/utils/hydrateSearchClient.js +6 -5
- package/cjs/lib/version.js +1 -1
- package/cjs/middlewares/createInsightsMiddleware.js +1 -1
- package/dist/instantsearch.development.d.ts +1 -1
- package/dist/instantsearch.development.js +17 -17
- package/dist/instantsearch.development.js.map +1 -1
- package/dist/instantsearch.production.d.ts +1 -1
- package/dist/instantsearch.production.min.d.ts +1 -1
- package/dist/instantsearch.production.min.js +2 -2
- package/dist/instantsearch.production.min.js.map +1 -1
- package/es/lib/server.js +4 -1
- package/es/lib/utils/getAppIdAndApiKey.js +4 -4
- package/es/lib/utils/hydrateSearchClient.js +6 -5
- package/es/lib/version.d.ts +1 -1
- package/es/lib/version.js +1 -1
- package/es/middlewares/createInsightsMiddleware.js +1 -1
- package/es/types/results.d.ts +1 -1
- package/package.json +7 -7
|
@@ -4941,7 +4941,7 @@ declare type InitialResult = {
|
|
|
4941
4941
|
params: RecommendParametersOptions['params'];
|
|
4942
4942
|
results: RecommendResults['_rawResults'];
|
|
4943
4943
|
};
|
|
4944
|
-
requestParams?: SearchOptions;
|
|
4944
|
+
requestParams?: SearchOptions[];
|
|
4945
4945
|
};
|
|
4946
4946
|
|
|
4947
4947
|
declare type InitialResults = Record<string, InitialResult>;
|
|
@@ -4941,7 +4941,7 @@ declare type InitialResult = {
|
|
|
4941
4941
|
params: RecommendParametersOptions['params'];
|
|
4942
4942
|
results: RecommendResults['_rawResults'];
|
|
4943
4943
|
};
|
|
4944
|
-
requestParams?: SearchOptions;
|
|
4944
|
+
requestParams?: SearchOptions[];
|
|
4945
4945
|
};
|
|
4946
4946
|
|
|
4947
4947
|
declare type InitialResults = Record<string, InitialResult>;
|