@bilyai/js 2.0.0 → 2.0.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 +4 -0
- package/README.md +2 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -10,7 +10,8 @@ npm install @bilyai/js
|
|
|
10
10
|
|
|
11
11
|
## Initialize once
|
|
12
12
|
|
|
13
|
-
Copy the exact script URL from **Bily > Settings >
|
|
13
|
+
Copy the exact script URL from **Bily > Settings > Apps > More settings > Install tracking**. Keep every query
|
|
14
|
+
parameter in the URL.
|
|
14
15
|
|
|
15
16
|
```ts
|
|
16
17
|
import { init } from "@bilyai/js";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bilyai/js",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "Official Bily browser SDK for page views, product events, and custom application events.",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"author": "Bily <support@bily.ai>",
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"test": "vitest run",
|
|
56
56
|
"test:coverage": "vitest run --coverage",
|
|
57
57
|
"check:public": "node scripts/check-public-language.mjs",
|
|
58
|
-
"check:package": "publint &&
|
|
58
|
+
"check:package": "publint && node scripts/check-package-types.mjs",
|
|
59
59
|
"check:smoke": "node scripts/package-smoke.mjs",
|
|
60
60
|
"check": "npm run typecheck && npm run test:coverage && npm run build && npm run check:public && npm run check:package && npm run check:smoke",
|
|
61
61
|
"prepublishOnly": "npm run check"
|