humanbehavior-js 0.2.8 → 0.2.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "humanbehavior-js",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "SDK for HumanBehavior session and event recording",
5
5
  "type": "module",
6
6
  "main": "./dist/cjs/index.js",
package/src/server.ts CHANGED
@@ -28,7 +28,6 @@ export async function identifyUser(
28
28
  body: JSON.stringify({
29
29
  userId: userData.email,
30
30
  userAttributes: userData,
31
- sessionId: null, // Will be set by client-side session recording
32
31
  posthogName: userData.email || userData.name || null // Update posthogName with email
33
32
  })
34
33
  });