@nexly/next 0.17.0 → 1.0.0

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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -73,6 +73,7 @@ export function SignUpButton() {
73
73
  - **`appId`**, **`ingestKey`** — required credentials.
74
74
  - **`autoPageView`** (default `false`) — send a pageview on mount and on every client-side route change.
75
75
  - **`autoEngagement`** (default `false`) — attach scroll, click, visibility, and heartbeat listeners. The underlying `startEngagement()` is idempotent. Mark elements with `data-nexly-ignore` to exclude them (and their descendants) from auto-`click` / auto-`input_focus` capture.
76
+ - **`privacyMode`** (default `false`) — never read or write `localStorage` for visitor / session identifiers; the Nexly collector derives a daily-rotating visit fingerprint server-side instead. See the [`@nexly/web` README](https://www.npmjs.com/package/@nexly/web) for details.
76
77
 
77
78
  ### Using outside React (plain functions)
78
79
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nexly/next",
3
- "version": "0.17.0",
3
+ "version": "1.0.0",
4
4
  "description": "Next.js App Router helpers for Nexly: route-aware auto pageview on top of @nexly/react-web",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -41,7 +41,7 @@
41
41
  "react": "^18.0.0 || ^19.0.0"
42
42
  },
43
43
  "dependencies": {
44
- "@nexly/react-web": "0.17.0"
44
+ "@nexly/react-web": "1.0.0"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@types/react": "^19.2.14",