@ninetailed/experience.js 3.4.0-beta.2 → 3.5.0-beta.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/index.cjs +2 -1
- package/index.js +3 -2
- package/package.json +3 -3
package/index.cjs
CHANGED
|
@@ -2617,7 +2617,8 @@ const ninetailedPlugin = ({
|
|
|
2617
2617
|
profileId: anonymousId,
|
|
2618
2618
|
events
|
|
2619
2619
|
}, {
|
|
2620
|
-
locale
|
|
2620
|
+
locale,
|
|
2621
|
+
enabledFeatures: Object.values(experience_jsShared.FEATURES)
|
|
2621
2622
|
});
|
|
2622
2623
|
_instance.storage.setItem(ANONYMOUS_ID, profile.id);
|
|
2623
2624
|
_instance.storage.setItem(PROFILE_FALLBACK_CACHE, profile);
|
package/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import unionBy from 'lodash/unionBy';
|
|
2
|
-
import { logger, ConsoleLogSink, buildPageEvent, buildTrackEvent, buildIdentifyEvent, NinetailedApiClient, OnLogLogSink, OnErrorLogSink, PageviewProperties, Properties, Traits } from '@ninetailed/experience.js-shared';
|
|
2
|
+
import { logger, ConsoleLogSink, buildPageEvent, buildTrackEvent, buildIdentifyEvent, FEATURES, NinetailedApiClient, OnLogLogSink, OnErrorLogSink, PageviewProperties, Properties, Traits } from '@ninetailed/experience.js-shared';
|
|
3
3
|
import Analytics from 'analytics';
|
|
4
4
|
import { HAS_SEEN_EXPERIENCE, HAS_SEEN_COMPONENT } from '@ninetailed/experience.js-plugin-analytics';
|
|
5
5
|
import flatten from 'lodash/flatten';
|
|
@@ -2604,7 +2604,8 @@ const ninetailedPlugin = ({
|
|
|
2604
2604
|
profileId: anonymousId,
|
|
2605
2605
|
events
|
|
2606
2606
|
}, {
|
|
2607
|
-
locale
|
|
2607
|
+
locale,
|
|
2608
|
+
enabledFeatures: Object.values(FEATURES)
|
|
2608
2609
|
});
|
|
2609
2610
|
_instance.storage.setItem(ANONYMOUS_ID, profile.id);
|
|
2610
2611
|
_instance.storage.setItem(PROFILE_FALLBACK_CACHE, profile);
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ninetailed/experience.js",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0-beta.1",
|
|
4
4
|
"module": "./index.js",
|
|
5
5
|
"main": "./index.cjs",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"types": "./index.d.ts",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@ninetailed/experience.js-shared": "3.
|
|
9
|
+
"@ninetailed/experience.js-shared": "3.5.0-beta.1",
|
|
10
10
|
"analytics": "0.8.1",
|
|
11
11
|
"lodash": "4.17.21",
|
|
12
12
|
"murmurhash-js": "1.0.0",
|
|
13
|
-
"@ninetailed/experience.js-plugin-analytics": "3.
|
|
13
|
+
"@ninetailed/experience.js-plugin-analytics": "3.5.0-beta.1"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {}
|
|
16
16
|
}
|