@armco/analytics 0.2.6 → 0.2.7

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/package.json +1 -1
  2. package/session.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@armco/analytics",
3
- "version": "0.2.6",
3
+ "version": "0.2.7",
4
4
  "description": "Browser Based Analytics interceptor for configured events",
5
5
  "main": "index.js",
6
6
  "type": "module",
package/session.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import Cookies from 'js-cookie';
2
2
  import { v4 as uuidv4 } from "uuid";
3
- const SESSION_COOKIE_NAME = 'ar_session_id';
3
+ const SESSION_COOKIE_NAME = 'ar-session-id';
4
4
  const SESSION_EXPIRATION_TIME = 30;
5
5
  let localStorageTimeout;
6
6
  function generateSessionId() {