@agenticmail/enterprise 0.5.163 → 0.5.164

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.
@@ -2020,7 +2020,7 @@ function MemorySection(props) {
2020
2020
 
2021
2021
  var loadStats = function() {
2022
2022
  engineCall('/memory/agent/' + agentId + '/stats')
2023
- .then(function(d) { setMemoryStats(d); })
2023
+ .then(function(d) { setMemoryStats(d.stats || d); })
2024
2024
  .catch(function() {});
2025
2025
  };
2026
2026
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenticmail/enterprise",
3
- "version": "0.5.163",
3
+ "version": "0.5.164",
4
4
  "description": "AgenticMail Enterprise — cloud-hosted AI agent identity, email, auth & compliance for organizations",
5
5
  "type": "module",
6
6
  "bin": {
@@ -2020,7 +2020,7 @@ function MemorySection(props) {
2020
2020
 
2021
2021
  var loadStats = function() {
2022
2022
  engineCall('/memory/agent/' + agentId + '/stats')
2023
- .then(function(d) { setMemoryStats(d); })
2023
+ .then(function(d) { setMemoryStats(d.stats || d); })
2024
2024
  .catch(function() {});
2025
2025
  };
2026
2026