@blotoutio/providers-google-ads-clicks-sdk 0.62.0 → 0.62.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 +3 -2
- package/index.js +3 -2
- package/index.mjs +3 -2
- package/package.json +1 -1
package/index.cjs.js
CHANGED
|
@@ -243,7 +243,8 @@ const parseCookies = (cookie) => {
|
|
|
243
243
|
return Object.fromEntries(cookie
|
|
244
244
|
.split(/;\s+/)
|
|
245
245
|
.map((r) => r.split('=').map((str) => str.trim()))
|
|
246
|
-
.map(([cookieKey,
|
|
246
|
+
.map(([cookieKey, ...cookieValues]) => {
|
|
247
|
+
const cookieValue = cookieValues.join('=');
|
|
247
248
|
if (!cookieKey) {
|
|
248
249
|
return [];
|
|
249
250
|
}
|
|
@@ -274,7 +275,7 @@ const tag = ({ data, eventName, manifestVariables, eventId, destination, }) => {
|
|
|
274
275
|
}
|
|
275
276
|
return {
|
|
276
277
|
loaded: isLoaded,
|
|
277
|
-
sdkVersion: "0.62.
|
|
278
|
+
sdkVersion: "0.62.1" ,
|
|
278
279
|
};
|
|
279
280
|
};
|
|
280
281
|
|
package/index.js
CHANGED
|
@@ -244,7 +244,8 @@ var ProvidersGoogleAdsClicksSdk = (function () {
|
|
|
244
244
|
return Object.fromEntries(cookie
|
|
245
245
|
.split(/;\s+/)
|
|
246
246
|
.map((r) => r.split('=').map((str) => str.trim()))
|
|
247
|
-
.map(([cookieKey,
|
|
247
|
+
.map(([cookieKey, ...cookieValues]) => {
|
|
248
|
+
const cookieValue = cookieValues.join('=');
|
|
248
249
|
if (!cookieKey) {
|
|
249
250
|
return [];
|
|
250
251
|
}
|
|
@@ -275,7 +276,7 @@ var ProvidersGoogleAdsClicksSdk = (function () {
|
|
|
275
276
|
}
|
|
276
277
|
return {
|
|
277
278
|
loaded: isLoaded,
|
|
278
|
-
sdkVersion: "0.62.
|
|
279
|
+
sdkVersion: "0.62.1" ,
|
|
279
280
|
};
|
|
280
281
|
};
|
|
281
282
|
|
package/index.mjs
CHANGED
|
@@ -241,7 +241,8 @@ const parseCookies = (cookie) => {
|
|
|
241
241
|
return Object.fromEntries(cookie
|
|
242
242
|
.split(/;\s+/)
|
|
243
243
|
.map((r) => r.split('=').map((str) => str.trim()))
|
|
244
|
-
.map(([cookieKey,
|
|
244
|
+
.map(([cookieKey, ...cookieValues]) => {
|
|
245
|
+
const cookieValue = cookieValues.join('=');
|
|
245
246
|
if (!cookieKey) {
|
|
246
247
|
return [];
|
|
247
248
|
}
|
|
@@ -272,7 +273,7 @@ const tag = ({ data, eventName, manifestVariables, eventId, destination, }) => {
|
|
|
272
273
|
}
|
|
273
274
|
return {
|
|
274
275
|
loaded: isLoaded,
|
|
275
|
-
sdkVersion: "0.62.
|
|
276
|
+
sdkVersion: "0.62.1" ,
|
|
276
277
|
};
|
|
277
278
|
};
|
|
278
279
|
|