instantsearch.js 4.43.0 → 4.43.1
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/CHANGELOG.md +11 -0
- package/cjs/connectors/rating-menu/connectRatingMenu.js +1 -1
- package/cjs/lib/InstantSearch.js +11 -1
- package/cjs/lib/version.js +1 -1
- package/dist/instantsearch.development.d.ts +2 -2
- package/dist/instantsearch.development.js +14 -4
- package/dist/instantsearch.development.js.map +1 -1
- package/dist/instantsearch.production.d.ts +2 -2
- package/dist/instantsearch.production.min.d.ts +2 -2
- package/dist/instantsearch.production.min.js +2 -2
- package/dist/instantsearch.production.min.js.map +1 -1
- package/es/connectors/geo-search/connectGeoSearch.d.ts +1 -1
- package/es/connectors/rating-menu/connectRatingMenu.js +1 -1
- package/es/lib/InstantSearch.js +11 -1
- 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 +1 -1
|
@@ -34,7 +34,7 @@ declare type AlgoliaHit<THit extends BaseHit = Record<string, any>> = {
|
|
|
34
34
|
};
|
|
35
35
|
};
|
|
36
36
|
_distinctSeqID?: number;
|
|
37
|
-
|
|
37
|
+
_geoloc?: GeoLoc;
|
|
38
38
|
} & THit;
|
|
39
39
|
|
|
40
40
|
declare const analytics: AnalyticsWidget;
|
|
@@ -1169,7 +1169,7 @@ declare const EXPERIMENTAL_connectDynamicWidgets: DynamicWidgetsConnector;
|
|
|
1169
1169
|
/** @deprecated use dynamicWidgets */
|
|
1170
1170
|
declare const EXPERIMENTAL_dynamicWidgets: DynamicWidgetsWidget;
|
|
1171
1171
|
|
|
1172
|
-
declare type GeoHit = Hit & Required<Pick<Hit, '
|
|
1172
|
+
declare type GeoHit = Hit & Required<Pick<Hit, '_geoloc'>>;
|
|
1173
1173
|
|
|
1174
1174
|
declare type GeoLoc = {
|
|
1175
1175
|
lat: number;
|
|
@@ -34,7 +34,7 @@ declare type AlgoliaHit<THit extends BaseHit = Record<string, any>> = {
|
|
|
34
34
|
};
|
|
35
35
|
};
|
|
36
36
|
_distinctSeqID?: number;
|
|
37
|
-
|
|
37
|
+
_geoloc?: GeoLoc;
|
|
38
38
|
} & THit;
|
|
39
39
|
|
|
40
40
|
declare const analytics: AnalyticsWidget;
|
|
@@ -1169,7 +1169,7 @@ declare const EXPERIMENTAL_connectDynamicWidgets: DynamicWidgetsConnector;
|
|
|
1169
1169
|
/** @deprecated use dynamicWidgets */
|
|
1170
1170
|
declare const EXPERIMENTAL_dynamicWidgets: DynamicWidgetsWidget;
|
|
1171
1171
|
|
|
1172
|
-
declare type GeoHit = Hit & Required<Pick<Hit, '
|
|
1172
|
+
declare type GeoHit = Hit & Required<Pick<Hit, '_geoloc'>>;
|
|
1173
1173
|
|
|
1174
1174
|
declare type GeoLoc = {
|
|
1175
1175
|
lat: number;
|