@mindful-web/marko-web-identity-x 1.71.8 → 1.73.2

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.
@@ -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-identity-x$1.71.8/components/access.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.2/components/access.marko",
6
6
  marko_component = require("./access.marko"),
7
7
  marko_renderer = require("marko/dist/runtime/components/renderer"),
8
8
  module_objectPath_module = require("@mindful-web/object-path"),
@@ -53,7 +53,7 @@ marko_template._ = marko_renderer(render, {
53
53
  }, marko_component);
54
54
 
55
55
  marko_template.meta = {
56
- id: "/@mindful-web/marko-web-identity-x$1.71.8/components/access.marko",
56
+ id: "/@mindful-web/marko-web-identity-x$1.73.2/components/access.marko",
57
57
  component: "./access.marko",
58
58
  tags: [
59
59
  "@mindful-web/marko-core/components/resolve.marko"
@@ -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-identity-x$1.71.8/components/comment-stream.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.2/components/comment-stream.marko",
6
6
  marko_component = require("./comment-stream.marko"),
7
7
  marko_renderer = require("marko/dist/runtime/components/renderer"),
8
8
  module_objectPath_module = require("@mindful-web/object-path"),
@@ -85,7 +85,7 @@ marko_template._ = marko_renderer(render, {
85
85
  }, marko_component);
86
86
 
87
87
  marko_template.meta = {
88
- id: "/@mindful-web/marko-web-identity-x$1.71.8/components/comment-stream.marko",
88
+ id: "/@mindful-web/marko-web-identity-x$1.73.2/components/comment-stream.marko",
89
89
  component: "./comment-stream.marko",
90
90
  tags: [
91
91
  "@mindful-web/marko-web/components/browser-component.marko",
@@ -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-identity-x$1.71.8/components/context.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.2/components/context.marko",
6
6
  marko_component = require("./context.marko"),
7
7
  marko_renderer = require("marko/dist/runtime/components/renderer"),
8
8
  marko_dynamicTag = require("marko/dist/runtime/helpers/dynamic-tag"),
@@ -49,7 +49,7 @@ marko_template._ = marko_renderer(render, {
49
49
  }, marko_component);
50
50
 
51
51
  marko_template.meta = {
52
- id: "/@mindful-web/marko-web-identity-x$1.71.8/components/context.marko",
52
+ id: "/@mindful-web/marko-web-identity-x$1.73.2/components/context.marko",
53
53
  component: "./context.marko",
54
54
  tags: [
55
55
  "@mindful-web/marko-core/components/resolve.marko"
@@ -22,11 +22,9 @@ $ const loginButtonLabels = defaultValue(input.loginButtonLabels, {
22
22
  login: i18n("Log in"),
23
23
  profile: i18n("Modify Profile"),
24
24
  });
25
- $ const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
26
-
27
-
28
25
  <if(identityX && form.fieldRows)>
29
26
  <marko-web-identity-x-context|{ hasUser, user, fields, application }| with-fields=true>
27
+ $ const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
30
28
  $ const consentPolicy = form.consentPolicy || identityX.config.get("consentPolicy") || get(application, "organization.consentPolicy");
31
29
  $ const emailConsentRequest = defaultValue(form.emailConsentRequest, get(application, "organization.emailConsentRequest"));
32
30
 
@@ -43,9 +41,19 @@ $ const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consent
43
41
  customTextFieldAnswers,
44
42
  } = getFormCustomFields({ fields, fieldRows, user });
45
43
 
44
+ // Extract only the content properties needed by the access form component.
45
+ // Passing the full content object causes Vue reactivity issues and display bugs.
46
+ // id: used for tracking; type/name: for display; siteContext: for content context
47
+ $ const formAccessContent = (content) => ({
48
+ id: content.id,
49
+ type: content.type,
50
+ name: content.name,
51
+ siteContext: content.siteContext,
52
+ });
53
+
46
54
  $ const props = {
47
55
  // Access form props
48
- content: content,
56
+ content: formAccessContent,
49
57
  title: form.title,
50
58
  fieldRows: form.fieldRows,
51
59
  loginSource: "contentAccess",
@@ -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-identity-x$1.71.8/components/form-access.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.2/components/form-access.marko",
6
6
  marko_component = require("./form-access.marko"),
7
7
  marko_renderer = require("marko/dist/runtime/components/renderer"),
8
8
  module_defaultValue = require("@mindful-web/marko-core/utils/default-value"),
@@ -60,12 +60,12 @@ function render(input, out, __component, component, state) {
60
60
  profile: i18n("Modify Profile"),
61
61
  });
62
62
 
63
- const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
64
-
65
63
  if (identityX && form.fieldRows) {
66
64
  marko_web_identity_x_context_tag({
67
65
  withFields: true,
68
66
  renderBody: function(out, { hasUser, user, fields, application }) {
67
+ const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
68
+
69
69
  const consentPolicy = form.consentPolicy || identityX.config.get("consentPolicy") || get(application, "organization.consentPolicy");
70
70
 
71
71
  const emailConsentRequest = defaultValue(form.emailConsentRequest, get(application, "organization.emailConsentRequest"));
@@ -86,9 +86,18 @@ function render(input, out, __component, component, state) {
86
86
  customTextFieldAnswers,
87
87
  } = getFormCustomFields({ fields, fieldRows, user });
88
88
 
89
+ out.w(" // Extract only the content properties needed by the access form component. // Passing the full content object causes Vue reactivity issues and display bugs. // id: used for tracking; type/name: for display; siteContext: for content context ");
90
+
91
+ const formAccessContent = (content) => ({
92
+ id: content.id,
93
+ type: content.type,
94
+ name: content.name,
95
+ siteContext: content.siteContext,
96
+ });
97
+
89
98
  const props = {
90
99
  // Access form props
91
- content: content,
100
+ content: formAccessContent,
92
101
  title: form.title,
93
102
  fieldRows: form.fieldRows,
94
103
  loginSource: "contentAccess",
@@ -167,7 +176,7 @@ marko_template._ = marko_renderer(render, {
167
176
  }, marko_component);
168
177
 
169
178
  marko_template.meta = {
170
- id: "/@mindful-web/marko-web-identity-x$1.71.8/components/form-access.marko",
179
+ id: "/@mindful-web/marko-web-identity-x$1.73.2/components/form-access.marko",
171
180
  component: "./form-access.marko",
172
181
  tags: [
173
182
  "@mindful-web/marko-web/components/browser-component.marko",
@@ -6,10 +6,9 @@ $ const { identityX, query } = req;
6
6
  $ const isEnabled = Boolean(req.identityX);
7
7
  $ const additionalEventData = defaultValue(input.additionalEventData, {});
8
8
  $ const lang = input.lang || defaultValue(site.config.lang, "en");
9
- $ const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
10
-
11
9
  <if(isEnabled)>
12
10
  <marko-web-identity-x-context|{ application }|>
11
+ $ const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
13
12
  $ const props = {
14
13
  additionalEventData: additionalEventData,
15
14
  token: query.token,
@@ -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-identity-x$1.71.8/components/form-authenticate.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.2/components/form-authenticate.marko",
6
6
  marko_component = require("./form-authenticate.marko"),
7
7
  marko_renderer = require("marko/dist/runtime/components/renderer"),
8
8
  module_objectPath_module = require("@mindful-web/object-path"),
@@ -29,11 +29,11 @@ function render(input, out, __component, component, state) {
29
29
 
30
30
  const lang = input.lang || defaultValue(site.config.lang, "en");
31
31
 
32
- const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
33
-
34
32
  if (isEnabled) {
35
33
  marko_web_identity_x_context_tag({
36
34
  renderBody: function(out, { application }) {
35
+ const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
36
+
37
37
  const props = {
38
38
  additionalEventData: additionalEventData,
39
39
  token: query.token,
@@ -71,7 +71,7 @@ marko_template._ = marko_renderer(render, {
71
71
  }, marko_component);
72
72
 
73
73
  marko_template.meta = {
74
- id: "/@mindful-web/marko-web-identity-x$1.71.8/components/form-authenticate.marko",
74
+ id: "/@mindful-web/marko-web-identity-x$1.73.2/components/form-authenticate.marko",
75
75
  component: "./form-authenticate.marko",
76
76
  tags: [
77
77
  "@mindful-web/marko-web/components/browser-component.marko",
@@ -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-identity-x$1.71.8/components/form-change-email.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.2/components/form-change-email.marko",
6
6
  marko_component = require("./form-change-email.marko"),
7
7
  marko_renderer = require("marko/dist/runtime/components/renderer"),
8
8
  module_objectPath_module = require("@mindful-web/object-path"),
@@ -59,7 +59,7 @@ marko_template._ = marko_renderer(render, {
59
59
  }, marko_component);
60
60
 
61
61
  marko_template.meta = {
62
- id: "/@mindful-web/marko-web-identity-x$1.71.8/components/form-change-email.marko",
62
+ id: "/@mindful-web/marko-web-identity-x$1.73.2/components/form-change-email.marko",
63
63
  component: "./form-change-email.marko",
64
64
  tags: [
65
65
  "@mindful-web/marko-web/components/browser-component.marko",
@@ -8,10 +8,9 @@ $ const { identityX } = req;
8
8
  $ const additionalEventData = defaultValue(input.additionalEventData, {});
9
9
  $ const lang = input.lang || defaultValue(site.config.lang, "en");
10
10
  $ const withFields = defaultValue(input.withFields, false);
11
- $ const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
12
-
13
11
  <if(Boolean(identityX))>
14
12
  <marko-web-identity-x-context|{ user, isEnabled, application, fields }| with-fields=true>
13
+ $ const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
15
14
  $ const { customSelectFieldAnswers, customBooleanFieldAnswers, customTextFieldAnswers } = getCreateUserCustomFields({ fields });
16
15
 
17
16
  $ const activeUser = user ? user : {
@@ -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-identity-x$1.71.8/components/form-login.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.2/components/form-login.marko",
6
6
  marko_component = require("./form-login.marko"),
7
7
  marko_renderer = require("marko/dist/runtime/components/renderer"),
8
8
  module_objectPath_module = require("@mindful-web/object-path"),
@@ -31,12 +31,12 @@ function render(input, out, __component, component, state) {
31
31
 
32
32
  const withFields = defaultValue(input.withFields, false);
33
33
 
34
- const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
35
-
36
34
  if (Boolean(identityX)) {
37
35
  marko_web_identity_x_context_tag({
38
36
  withFields: true,
39
37
  renderBody: function(out, { user, isEnabled, application, fields }) {
38
+ const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
39
+
40
40
  const { customSelectFieldAnswers, customBooleanFieldAnswers, customTextFieldAnswers } = getCreateUserCustomFields({ fields });
41
41
 
42
42
  const activeUser = user ? user : {
@@ -82,7 +82,7 @@ marko_template._ = marko_renderer(render, {
82
82
  }, marko_component);
83
83
 
84
84
  marko_template.meta = {
85
- id: "/@mindful-web/marko-web-identity-x$1.71.8/components/form-login.marko",
85
+ id: "/@mindful-web/marko-web-identity-x$1.73.2/components/form-login.marko",
86
86
  component: "./form-login.marko",
87
87
  tags: [
88
88
  "@mindful-web/marko-web/components/browser-component.marko",
@@ -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-identity-x$1.71.8/components/form-logout.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.2/components/form-logout.marko",
6
6
  marko_renderer = require("marko/dist/runtime/components/renderer"),
7
7
  module_defaultValue = require("@mindful-web/marko-core/utils/default-value"),
8
8
  defaultValue = module_defaultValue.default || module_defaultValue,
@@ -29,7 +29,7 @@ marko_template._ = marko_renderer(render, {
29
29
  });
30
30
 
31
31
  marko_template.meta = {
32
- id: "/@mindful-web/marko-web-identity-x$1.71.8/components/form-logout.marko",
32
+ id: "/@mindful-web/marko-web-identity-x$1.73.2/components/form-logout.marko",
33
33
  tags: [
34
34
  "@mindful-web/marko-web/components/browser-component.marko"
35
35
  ]
@@ -7,10 +7,9 @@ $ const { req, site } = out.global;
7
7
  $ const { identityX, query } = req;
8
8
  $ const additionalEventData = defaultValue(input.additionalEventData, {});
9
9
  $ const lang = input.lang || defaultValue(site.config.lang, "en");
10
- $ const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
11
-
12
10
  <if(Boolean(identityX))>
13
11
  <marko-web-identity-x-context|{ user, isEnabled, application, fields }| with-fields=true>
12
+ $ const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
14
13
  $ const { customSelectFieldAnswers, customBooleanFieldAnswers, customTextFieldAnswers } = getCreateUserCustomFields({ fields });
15
14
  $ const props = {
16
15
  additionalEventData: additionalEventData,
@@ -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-identity-x$1.71.8/components/form-profile.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.2/components/form-profile.marko",
6
6
  marko_component = require("./form-profile.marko"),
7
7
  marko_renderer = require("marko/dist/runtime/components/renderer"),
8
8
  module_objectPath_module = require("@mindful-web/object-path"),
@@ -29,12 +29,12 @@ function render(input, out, __component, component, state) {
29
29
 
30
30
  const lang = input.lang || defaultValue(site.config.lang, "en");
31
31
 
32
- const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
33
-
34
32
  if (Boolean(identityX)) {
35
33
  marko_web_identity_x_context_tag({
36
34
  withFields: true,
37
35
  renderBody: function(out, { user, isEnabled, application, fields }) {
36
+ const consentPolicyEnabled = ("consentPolicyEnabled" in input) ? input.consentPolicyEnabled : identityX.config.get("consentPolicyEnabled") || get(application, "organization.consentPolicyEnabled");
37
+
38
38
  const { customSelectFieldAnswers, customBooleanFieldAnswers, customTextFieldAnswers } = getCreateUserCustomFields({ fields });
39
39
 
40
40
  const props = {
@@ -84,7 +84,7 @@ marko_template._ = marko_renderer(render, {
84
84
  }, marko_component);
85
85
 
86
86
  marko_template.meta = {
87
- id: "/@mindful-web/marko-web-identity-x$1.71.8/components/form-profile.marko",
87
+ id: "/@mindful-web/marko-web-identity-x$1.73.2/components/form-profile.marko",
88
88
  component: "./form-profile.marko",
89
89
  tags: [
90
90
  "@mindful-web/marko-web/components/browser-component.marko",
@@ -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-identity-x$1.71.8/components/form-register.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.2/components/form-register.marko",
6
6
  marko_renderer = require("marko/dist/runtime/components/renderer"),
7
7
  marko_assign = require("marko/dist/runtime/helpers/assign"),
8
8
  marko_web_identity_x_form_login_template = require("./form-login.marko"),
@@ -25,7 +25,7 @@ marko_template._ = marko_renderer(render, {
25
25
  });
26
26
 
27
27
  marko_template.meta = {
28
- id: "/@mindful-web/marko-web-identity-x$1.71.8/components/form-register.marko",
28
+ id: "/@mindful-web/marko-web-identity-x$1.73.2/components/form-register.marko",
29
29
  tags: [
30
30
  "./form-login.marko"
31
31
  ]
@@ -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-identity-x$1.71.8/components/identify.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.2/components/identify.marko",
6
6
  marko_component = require("./identify.marko"),
7
7
  marko_renderer = require("marko/dist/runtime/components/renderer"),
8
8
  module_objectPath_module = require("@mindful-web/object-path"),
@@ -50,7 +50,7 @@ marko_template._ = marko_renderer(render, {
50
50
  }, marko_component);
51
51
 
52
52
  marko_template.meta = {
53
- id: "/@mindful-web/marko-web-identity-x$1.71.8/components/identify.marko",
53
+ id: "/@mindful-web/marko-web-identity-x$1.73.2/components/identify.marko",
54
54
  component: "./identify.marko",
55
55
  tags: [
56
56
  "@mindful-web/marko-web-gtm/components/push.marko",
@@ -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-identity-x$1.71.8/components/non-auth-identify.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.2/components/non-auth-identify.marko",
6
6
  marko_component = require("./non-auth-identify.marko"),
7
7
  marko_renderer = require("marko/dist/runtime/components/renderer"),
8
8
  marko_dynamicTag = require("marko/dist/runtime/helpers/dynamic-tag"),
@@ -45,7 +45,7 @@ marko_template._ = marko_renderer(render, {
45
45
  }, marko_component);
46
46
 
47
47
  marko_template.meta = {
48
- id: "/@mindful-web/marko-web-identity-x$1.71.8/components/non-auth-identify.marko",
48
+ id: "/@mindful-web/marko-web-identity-x$1.73.2/components/non-auth-identify.marko",
49
49
  component: "./non-auth-identify.marko",
50
50
  tags: [
51
51
  "@mindful-web/marko-core/components/resolve.marko"
@@ -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-identity-x$1.71.8/components/subscribe.marko",
5
+ marko_componentType = "/@mindful-web/marko-web-identity-x$1.73.2/components/subscribe.marko",
6
6
  marko_component = require("./subscribe.marko"),
7
7
  marko_renderer = require("marko/dist/runtime/components/renderer"),
8
8
  module_objectPath_module = require("@mindful-web/object-path"),
@@ -73,7 +73,7 @@ marko_template._ = marko_renderer(render, {
73
73
  }, marko_component);
74
74
 
75
75
  marko_template.meta = {
76
- id: "/@mindful-web/marko-web-identity-x$1.71.8/components/subscribe.marko",
76
+ id: "/@mindful-web/marko-web-identity-x$1.73.2/components/subscribe.marko",
77
77
  component: "./subscribe.marko",
78
78
  tags: [
79
79
  "@mindful-web/marko-web/components/browser-component.marko",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mindful-web/marko-web-identity-x",
3
- "version": "1.71.8",
3
+ "version": "1.73.2",
4
4
  "description": "Marko Wrapper for IdentityX",
5
5
  "repository": "https://github.com/parameter1/mindful-web/tree/main/packages/marko-web-identity-x",
6
6
  "author": "Josh Worden <josh@parameter1.com>",
@@ -37,5 +37,5 @@
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "038d51b4f4d76d1d648400c93df1d46573aad487"
40
+ "gitHead": "b7e62b7fff4e239de5173d7991e9ba391f8d0595"
41
41
  }