@eric-emg/symphiq-components 1.2.158 → 1.2.159

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.
@@ -53127,7 +53127,8 @@ class SymphiqCreateAccountDashboardComponent {
53127
53127
  if (detail) {
53128
53128
  map.set(domain, {
53129
53129
  status: detail.status || null,
53130
- tools: detail.tools || []
53130
+ tools: detail.tools || [],
53131
+ id: detail.id
53131
53132
  });
53132
53133
  }
53133
53134
  else {
@@ -53140,11 +53141,15 @@ class SymphiqCreateAccountDashboardComponent {
53140
53141
  const details = [];
53141
53142
  this.focusAreasMap().forEach((value, domain) => {
53142
53143
  if (value.status !== null) {
53143
- details.push({
53144
+ const detail = {
53144
53145
  focusAreaDomain: domain,
53145
53146
  status: value.status,
53146
53147
  tools: value.tools
53147
- });
53148
+ };
53149
+ if (value.id !== undefined) {
53150
+ detail.id = value.id;
53151
+ }
53152
+ details.push(detail);
53148
53153
  }
53149
53154
  });
53150
53155
  return details;