@algolia/client-search 5.3.2 → 5.4.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/dist/browser.d.ts +5 -1
- package/dist/builds/browser.js +1 -1
- package/dist/builds/browser.js.map +1 -1
- package/dist/builds/browser.min.js +1 -1
- package/dist/builds/browser.min.js.map +1 -1
- package/dist/builds/browser.umd.js +2 -2
- package/dist/builds/fetch.js +2429 -0
- package/dist/builds/fetch.js.map +1 -0
- package/dist/builds/node.cjs +1 -1
- package/dist/builds/node.cjs.map +1 -1
- package/dist/builds/node.js +1 -1
- package/dist/builds/node.js.map +1 -1
- package/dist/fetch.d.ts +3870 -0
- package/dist/node.d.cts +5 -1
- package/dist/node.d.ts +5 -1
- package/dist/src/searchClient.cjs +1 -1
- package/dist/src/searchClient.cjs.map +1 -1
- package/dist/src/searchClient.js +1 -1
- package/dist/src/searchClient.js.map +1 -1
- package/model/baseSearchResponse.ts +5 -0
- package/package.json +9 -4
|
@@ -116,4 +116,9 @@ export type BaseSearchResponse = Record<string, any> & {
|
|
|
116
116
|
* Unique identifier for the query. This is used for [click analytics](https://www.algolia.com/doc/guides/analytics/click-analytics/).
|
|
117
117
|
*/
|
|
118
118
|
queryID?: string;
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Whether automatic events collection is enabled for the application.
|
|
122
|
+
*/
|
|
123
|
+
_automaticInsights?: boolean;
|
|
119
124
|
};
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "5.
|
|
2
|
+
"version": "5.4.1",
|
|
3
3
|
"repository": {
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "git+https://github.com/algolia/algoliasearch-client-javascript.git"
|
|
@@ -26,6 +26,10 @@
|
|
|
26
26
|
"module": "./dist/builds/node.js",
|
|
27
27
|
"require": "./dist/builds/node.cjs"
|
|
28
28
|
},
|
|
29
|
+
"worker": {
|
|
30
|
+
"types": "./dist/fetch.d.ts",
|
|
31
|
+
"default": "./dist/builds/fetch.js"
|
|
32
|
+
},
|
|
29
33
|
"default": {
|
|
30
34
|
"types": "./dist/browser.d.ts",
|
|
31
35
|
"module": "./dist/builds/browser.js",
|
|
@@ -44,9 +48,10 @@
|
|
|
44
48
|
"index.d.ts"
|
|
45
49
|
],
|
|
46
50
|
"dependencies": {
|
|
47
|
-
"@algolia/client-common": "5.
|
|
48
|
-
"@algolia/requester-browser-xhr": "5.
|
|
49
|
-
"@algolia/requester-
|
|
51
|
+
"@algolia/client-common": "5.4.1",
|
|
52
|
+
"@algolia/requester-browser-xhr": "5.4.1",
|
|
53
|
+
"@algolia/requester-fetch": "5.4.1",
|
|
54
|
+
"@algolia/requester-node-http": "5.4.1"
|
|
50
55
|
},
|
|
51
56
|
"devDependencies": {
|
|
52
57
|
"@arethetypeswrong/cli": "0.15.4",
|