@agenticmail/enterprise 0.5.310 → 0.5.311

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.
@@ -0,0 +1,20 @@
1
+ import {
2
+ promptCompanyInfo,
3
+ promptDatabase,
4
+ promptDeployment,
5
+ promptDomain,
6
+ promptRegistration,
7
+ provision,
8
+ runSetupWizard
9
+ } from "./chunk-MBT5ND3D.js";
10
+ import "./chunk-4WLJIZZB.js";
11
+ import "./chunk-KFQGP6VL.js";
12
+ export {
13
+ promptCompanyInfo,
14
+ promptDatabase,
15
+ promptDeployment,
16
+ promptDomain,
17
+ promptRegistration,
18
+ provision,
19
+ runSetupWizard
20
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenticmail/enterprise",
3
- "version": "0.5.310",
3
+ "version": "0.5.311",
4
4
  "description": "AgenticMail Enterprise — cloud-hosted AI agent identity, email, auth & compliance for organizations",
5
5
  "type": "module",
6
6
  "bin": {
@@ -705,7 +705,7 @@ export class ComplianceReporter {
705
705
  timeline.push({ timestamp: v.created_at, source: 'vault_access', category: 'access', agentId: v.agent_id, detail: `Vault ${v.action}: ${v.key}`, data: { action: v.action, key: v.key } });
706
706
  }
707
707
 
708
- timeline.sort((a, b) => a.timestamp.localeCompare(b.timestamp));
708
+ timeline.sort((a, b) => String(a.timestamp || '').localeCompare(String(b.timestamp || '')));
709
709
  data.timeline = timeline;
710
710
 
711
711
  // Summary statistics
@@ -720,7 +720,7 @@ export class ComplianceReporter {
720
720
  data.summary.bySource[e.source] = (data.summary.bySource[e.source] || 0) + 1;
721
721
  data.summary.byCategory[e.category] = (data.summary.byCategory[e.category] || 0) + 1;
722
722
  data.summary.byAgent[e.agentId] = (data.summary.byAgent[e.agentId] || 0) + 1;
723
- const day = e.timestamp?.substring(0, 10);
723
+ const day = String(e.timestamp || '').substring(0, 10);
724
724
  if (day) data.summary.byDay[day] = (data.summary.byDay[day] || 0) + 1;
725
725
  }
726
726