@blotoutio/edgetag-sdk-js 1.10.0 → 1.10.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.js +4 -1
- package/index.mjs +4 -1
- package/internal.d.ts +1 -0
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -921,7 +921,7 @@ const getStandardPayload = (destination, payload) => {
|
|
|
921
921
|
referrer: getReferrer(destination),
|
|
922
922
|
search: getSearch(destination),
|
|
923
923
|
locale: getLocale(),
|
|
924
|
-
sdkVersion: "1.10.
|
|
924
|
+
sdkVersion: "1.10.1" ,
|
|
925
925
|
...(payload || {}),
|
|
926
926
|
};
|
|
927
927
|
let storage = {};
|
|
@@ -1099,6 +1099,7 @@ const processTag = (destination, eventName, data = {}, providers, options) => {
|
|
|
1099
1099
|
const requestCountry = getSetting(destination, 'geoCountry') || null;
|
|
1100
1100
|
const requestRegion = getSetting(destination, 'geoRegion') || null;
|
|
1101
1101
|
const isEURequest = getSetting(destination, 'isEURequest') || false;
|
|
1102
|
+
const sessionId = getSetting(destination, 'sessionId');
|
|
1102
1103
|
const userId = getUserId$1(destination);
|
|
1103
1104
|
const providerData = {};
|
|
1104
1105
|
const consent = getConsent$1(destination);
|
|
@@ -1136,6 +1137,7 @@ const processTag = (destination, eventName, data = {}, providers, options) => {
|
|
|
1136
1137
|
: data;
|
|
1137
1138
|
result[variable.tagName] = pkg.tag({
|
|
1138
1139
|
userId,
|
|
1140
|
+
sessionId,
|
|
1139
1141
|
eventName,
|
|
1140
1142
|
eventId,
|
|
1141
1143
|
data: JSON.parse(JSON.stringify(payload)),
|
|
@@ -1644,6 +1646,7 @@ const handleInit = (preferences) => {
|
|
|
1644
1646
|
isNewUser: result.isNewUser,
|
|
1645
1647
|
consent: getConsent$1(preferences.edgeURL) || result.consent,
|
|
1646
1648
|
userId: result.userId,
|
|
1649
|
+
sessionId: result.session.sessionId,
|
|
1647
1650
|
manifest: result.result,
|
|
1648
1651
|
browserPackages: Object.values(providers),
|
|
1649
1652
|
storageId: result.storageId,
|
package/index.mjs
CHANGED
|
@@ -919,7 +919,7 @@ const getStandardPayload = (destination, payload) => {
|
|
|
919
919
|
referrer: getReferrer(destination),
|
|
920
920
|
search: getSearch(destination),
|
|
921
921
|
locale: getLocale(),
|
|
922
|
-
sdkVersion: "1.10.
|
|
922
|
+
sdkVersion: "1.10.1" ,
|
|
923
923
|
...(payload || {}),
|
|
924
924
|
};
|
|
925
925
|
let storage = {};
|
|
@@ -1097,6 +1097,7 @@ const processTag = (destination, eventName, data = {}, providers, options) => {
|
|
|
1097
1097
|
const requestCountry = getSetting(destination, 'geoCountry') || null;
|
|
1098
1098
|
const requestRegion = getSetting(destination, 'geoRegion') || null;
|
|
1099
1099
|
const isEURequest = getSetting(destination, 'isEURequest') || false;
|
|
1100
|
+
const sessionId = getSetting(destination, 'sessionId');
|
|
1100
1101
|
const userId = getUserId$1(destination);
|
|
1101
1102
|
const providerData = {};
|
|
1102
1103
|
const consent = getConsent$1(destination);
|
|
@@ -1134,6 +1135,7 @@ const processTag = (destination, eventName, data = {}, providers, options) => {
|
|
|
1134
1135
|
: data;
|
|
1135
1136
|
result[variable.tagName] = pkg.tag({
|
|
1136
1137
|
userId,
|
|
1138
|
+
sessionId,
|
|
1137
1139
|
eventName,
|
|
1138
1140
|
eventId,
|
|
1139
1141
|
data: JSON.parse(JSON.stringify(payload)),
|
|
@@ -1642,6 +1644,7 @@ const handleInit = (preferences) => {
|
|
|
1642
1644
|
isNewUser: result.isNewUser,
|
|
1643
1645
|
consent: getConsent$1(preferences.edgeURL) || result.consent,
|
|
1644
1646
|
userId: result.userId,
|
|
1647
|
+
sessionId: result.session.sessionId,
|
|
1645
1648
|
manifest: result.result,
|
|
1646
1649
|
browserPackages: Object.values(providers),
|
|
1647
1650
|
storageId: result.storageId,
|
package/internal.d.ts
CHANGED