@algolia/client-insights 0.0.0 → 5.0.0-alpha.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.
@@ -0,0 +1,8 @@
1
+ // This file is generated, manual changes will be lost - read more on https://github.com/algolia/api-clients-automation.
2
+
3
+ export type PushEventsResponse = {
4
+ /**
5
+ * A message confirming the event push.
6
+ */
7
+ message: string;
8
+ };
package/package.json CHANGED
@@ -1 +1,35 @@
1
- { "version": "0.0.0", "name": "@algolia/client-insights"}
1
+ {
2
+ "name": "@algolia/client-insights",
3
+ "version": "5.0.0-alpha.2",
4
+ "description": "JavaScript client for client-insights",
5
+ "repository": "algolia/algoliasearch-client-javascript",
6
+ "license": "MIT",
7
+ "author": "Algolia",
8
+ "main": "index.js",
9
+ "jsdelivr": "dist/client-insights.umd.js",
10
+ "unpkg": "dist/client-insights.umd.js",
11
+ "module": "dist/client-insights.esm.node.js",
12
+ "browser": "dist/client-insights.umd.js",
13
+ "types": "index.d.ts",
14
+ "files": [
15
+ "dist",
16
+ "model",
17
+ "index.js",
18
+ "index.d.ts"
19
+ ],
20
+ "scripts": {
21
+ "clean": "rm -rf ./dist"
22
+ },
23
+ "dependencies": {
24
+ "@algolia/client-common": "5.0.0-alpha.2",
25
+ "@algolia/requester-browser-xhr": "5.0.0-alpha.2",
26
+ "@algolia/requester-node-http": "5.0.0-alpha.2"
27
+ },
28
+ "devDependencies": {
29
+ "@types/node": "16.11.45",
30
+ "typescript": "4.7.4"
31
+ },
32
+ "engines": {
33
+ "node": ">= 14.0.0"
34
+ }
35
+ }