@mindful-web/marko-web-omeda-identity-x 1.8.0 → 1.9.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.
@@ -71,9 +71,9 @@ module.exports = (params = {}) => {
71
71
  formatter: onLoginLinkSentFormatter,
72
72
  ...appendDataFor('onLoginLinkSent'),
73
73
  behavior: buildBehaviorFor('onLoginLinkSent', {
74
- actionSource: get(args, 'actionSource'),
75
- newsletterSignupType: get(args, 'newsletterSignupType'),
76
- contentGateType: get(args, 'contentGateType'),
74
+ actionSource: get(args, 'additionalEventData.actionSource', get(args, 'actionSource')),
75
+ newsletterSignupType: get(args, 'additionalEventData.newsletterSignupType', get(args, 'newsletterSignupType')),
76
+ contentGateType: get(args, 'additionalEventData.contentGateType', get(args, 'contentGateType')),
77
77
  }),
78
78
  }),
79
79
  });
@@ -90,9 +90,9 @@ module.exports = (params = {}) => {
90
90
  formatter: onAuthenticationSuccessFormatter,
91
91
  ...appendDataFor('onAuthenticationSuccess'),
92
92
  behavior: buildBehaviorFor('onAuthenticationSuccess', {
93
- actionSource: get(args, 'actionSource'),
94
- newsletterSignupType: get(args, 'newsletterSignupType'),
95
- contentGateType: get(args, 'contentGateType'),
93
+ actionSource: get(args, 'additionalEventData.actionSource', get(args, 'actionSource')),
94
+ newsletterSignupType: get(args, 'additionalEventData.newsletterSignupType', get(args, 'newsletterSignupType')),
95
+ contentGateType: get(args, 'additionalEventData.contentGateType', get(args, 'contentGateType')),
96
96
  }),
97
97
  }),
98
98
  });
@@ -108,9 +108,9 @@ module.exports = (params = {}) => {
108
108
  formatter: onUserProfileUpdateFormatter,
109
109
  ...appendDataFor('onUserProfileUpdate'),
110
110
  behavior: buildBehaviorFor('onUserProfileUpdate', {
111
- actionSource: get(args, 'actionSource'),
112
- newsletterSignupType: get(args, 'newsletterSignupType'),
113
- contentGateType: get(args, 'contentGateType'),
111
+ actionSource: get(args, 'additionalEventData.actionSource', get(args, 'actionSource')),
112
+ newsletterSignupType: get(args, 'additionalEventData.newsletterSignupType', get(args, 'newsletterSignupType')),
113
+ contentGateType: get(args, 'additionalEventData.contentGateType', get(args, 'contentGateType')),
114
114
  }),
115
115
  }),
116
116
  });
@@ -2,7 +2,7 @@
2
2
  "use strict";
3
3
 
4
4
  var marko_template = module.exports = require("marko/dist/html").t(__filename),
5
- marko_componentType = "/@mindful-web/marko-web-omeda-identity-x$1.8.0/components/identify.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-omeda-identity-x$1.9.0/components/identify.marko",
6
6
  marko_component = require("./identify.marko"),
7
7
  marko_renderer = require("marko/dist/runtime/components/renderer"),
8
8
  module_getCookieId = require("@mindful-web/marko-web-omeda-identity-x/utils/get-cookie-id"),
@@ -51,7 +51,7 @@ marko_template._ = marko_renderer(render, {
51
51
  }, marko_component);
52
52
 
53
53
  marko_template.meta = {
54
- id: "/@mindful-web/marko-web-omeda-identity-x$1.8.0/components/identify.marko",
54
+ id: "/@mindful-web/marko-web-omeda-identity-x$1.9.0/components/identify.marko",
55
55
  component: "./identify.marko",
56
56
  tags: [
57
57
  "@mindful-web/marko-web-identity-x/components/identify.marko",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindful-web/marko-web-omeda-identity-x",
3
- "version": "1.8.0",
3
+ "version": "1.9.0",
4
4
  "description": "Marko Omeda+IdentityX integration tools",
5
5
  "repository": "https://github.com/parameter1/mindful-web/tree/main/packages/marko-web-omeda-identity-x",
6
6
  "author": "Josh Worden <josh@parameter1.com>",
@@ -13,7 +13,7 @@
13
13
  "test": "yarn compile --no-clean && yarn lint"
14
14
  },
15
15
  "dependencies": {
16
- "@mindful-web/marko-web-identity-x": "^1.8.0",
16
+ "@mindful-web/marko-web-identity-x": "^1.9.0",
17
17
  "@mindful-web/marko-web-omeda": "^1.0.1",
18
18
  "@mindful-web/object-path": "^1.0.0",
19
19
  "@mindful-web/utils": "^1.0.0",
@@ -29,5 +29,5 @@
29
29
  "publishConfig": {
30
30
  "access": "public"
31
31
  },
32
- "gitHead": "b55245a64f03737d1e4fce9be0921bc10282750b"
32
+ "gitHead": "77e5405c1ae375412852396a743fee7e0ba6de78"
33
33
  }