@agenticmail/enterprise 0.2.1 → 0.2.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.
@@ -857,7 +857,7 @@ function createServer(config) {
857
857
  }
858
858
  app.get("/health", (c) => c.json({
859
859
  status: "ok",
860
- version: "0.2.0",
860
+ version: "0.2.2",
861
861
  uptime: process.uptime()
862
862
  }));
863
863
  app.get("/ready", async (c) => {
package/dist/cli.js CHANGED
@@ -6,7 +6,7 @@ import {
6
6
  generateDockerCompose,
7
7
  generateFlyToml,
8
8
  getSupportedDatabases
9
- } from "./chunk-DXNKR3TG.js";
9
+ } from "./chunk-YFDSE4BW.js";
10
10
  import "./chunk-PNKVD2UK.js";
11
11
 
12
12
  // src/cli.ts
package/dist/index.js CHANGED
@@ -52,7 +52,7 @@ import {
52
52
  securityHeaders,
53
53
  validate,
54
54
  withRetry
55
- } from "./chunk-DXNKR3TG.js";
55
+ } from "./chunk-YFDSE4BW.js";
56
56
  import {
57
57
  DatabaseAdapter
58
58
  } from "./chunk-77IDQJL3.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenticmail/enterprise",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "AgenticMail Enterprise — cloud-hosted AI agent identity, email, auth & compliance for organizations",
5
5
  "type": "module",
6
6
  "bin": {
package/src/server.ts CHANGED
@@ -107,7 +107,7 @@ export function createServer(config: ServerConfig): ServerInstance {
107
107
 
108
108
  app.get('/health', (c) => c.json({
109
109
  status: 'ok',
110
- version: '0.2.0',
110
+ version: '0.2.2',
111
111
  uptime: process.uptime(),
112
112
  }));
113
113