@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 CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.0.1 - 2026-07-14
4
+
5
+ - Corrected the in-app path for copying the exact customer tracking URL.
6
+
3
7
  ## 2.0.0 - 2026-07-13
4
8
 
5
9
  - Added exact `scriptUrl` initialization with query-string preservation.
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 > Tracking**. Keep every query parameter in the URL.
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.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 && attw --pack .",
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"