instantsearch.js 4.73.2 → 4.73.3
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/routers/history.js +5 -0
- package/cjs/lib/version.js +1 -1
- package/dist/instantsearch.development.d.ts +1 -1
- package/dist/instantsearch.development.js +38 -34
- 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/routers/history.js +5 -0
- package/es/lib/version.d.ts +1 -1
- package/es/lib/version.js +1 -1
- package/es/types/results.d.ts +1 -1
- package/package.json +6 -6
|
@@ -4938,7 +4938,7 @@ declare type InitialResult = {
|
|
|
4938
4938
|
state?: PlainSearchParameters;
|
|
4939
4939
|
results?: SearchResults['_rawResults'];
|
|
4940
4940
|
recommendResults?: {
|
|
4941
|
-
params: RecommendParametersOptions['params']
|
|
4941
|
+
params: NonNullable<RecommendParametersOptions['params']>;
|
|
4942
4942
|
results: RecommendResults['_rawResults'];
|
|
4943
4943
|
};
|
|
4944
4944
|
requestParams?: SearchOptions[];
|
|
@@ -4938,7 +4938,7 @@ declare type InitialResult = {
|
|
|
4938
4938
|
state?: PlainSearchParameters;
|
|
4939
4939
|
results?: SearchResults['_rawResults'];
|
|
4940
4940
|
recommendResults?: {
|
|
4941
|
-
params: RecommendParametersOptions['params']
|
|
4941
|
+
params: NonNullable<RecommendParametersOptions['params']>;
|
|
4942
4942
|
results: RecommendResults['_rawResults'];
|
|
4943
4943
|
};
|
|
4944
4944
|
requestParams?: SearchOptions[];
|