@blotoutio/providers-at-label-sdk 0.62.0 → 0.63.0

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 CHANGED
@@ -19,7 +19,8 @@ const parseCookies = (cookie) => {
19
19
  return Object.fromEntries(cookie
20
20
  .split(/;\s+/)
21
21
  .map((r) => r.split('=').map((str) => str.trim()))
22
- .map(([cookieKey, cookieValue]) => {
22
+ .map(([cookieKey, ...cookieValues]) => {
23
+ const cookieValue = cookieValues.join('=');
23
24
  if (!cookieKey) {
24
25
  return [];
25
26
  }
@@ -37,7 +38,7 @@ const parseCookies = (cookie) => {
37
38
  }));
38
39
  };
39
40
 
40
- const sdkVersion = "0.62.0" ;
41
+ const sdkVersion = "0.63.0" ;
41
42
  const tag = () => {
42
43
  let visitorId = '';
43
44
  const visitorIdCookie = getCookieValue('__attentive_id');
package/index.js CHANGED
@@ -20,7 +20,8 @@ var ProvidersAtLabelSdk = (function () {
20
20
  return Object.fromEntries(cookie
21
21
  .split(/;\s+/)
22
22
  .map((r) => r.split('=').map((str) => str.trim()))
23
- .map(([cookieKey, cookieValue]) => {
23
+ .map(([cookieKey, ...cookieValues]) => {
24
+ const cookieValue = cookieValues.join('=');
24
25
  if (!cookieKey) {
25
26
  return [];
26
27
  }
@@ -38,7 +39,7 @@ var ProvidersAtLabelSdk = (function () {
38
39
  }));
39
40
  };
40
41
 
41
- const sdkVersion = "0.62.0" ;
42
+ const sdkVersion = "0.63.0" ;
42
43
  const tag = () => {
43
44
  let visitorId = '';
44
45
  const visitorIdCookie = getCookieValue('__attentive_id');
package/index.mjs CHANGED
@@ -17,7 +17,8 @@ const parseCookies = (cookie) => {
17
17
  return Object.fromEntries(cookie
18
18
  .split(/;\s+/)
19
19
  .map((r) => r.split('=').map((str) => str.trim()))
20
- .map(([cookieKey, cookieValue]) => {
20
+ .map(([cookieKey, ...cookieValues]) => {
21
+ const cookieValue = cookieValues.join('=');
21
22
  if (!cookieKey) {
22
23
  return [];
23
24
  }
@@ -35,7 +36,7 @@ const parseCookies = (cookie) => {
35
36
  }));
36
37
  };
37
38
 
38
- const sdkVersion = "0.62.0" ;
39
+ const sdkVersion = "0.63.0" ;
39
40
  const tag = () => {
40
41
  let visitorId = '';
41
42
  const visitorIdCookie = getCookieValue('__attentive_id');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blotoutio/providers-at-label-sdk",
3
- "version": "0.62.0",
3
+ "version": "0.63.0",
4
4
  "description": "Attentive Browser SDK for EdgeTag",
5
5
  "author": "Blotout",
6
6
  "license": "MIT",