@agenticmail/enterprise 0.5.9 → 0.5.10

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.
package/dist/cli.js CHANGED
@@ -48,7 +48,7 @@ Skill Development:
48
48
  break;
49
49
  case "setup":
50
50
  default:
51
- import("./setup-N2VGYYHM.js").then((m) => m.runSetupWizard()).catch(fatal);
51
+ import("./setup-T7E2RKWK.js").then((m) => m.runSetupWizard()).catch(fatal);
52
52
  break;
53
53
  }
54
54
  function fatal(err) {
@@ -0,0 +1,7 @@
1
+ import {
2
+ EngineDatabase
3
+ } from "./chunk-OUHFQDDK.js";
4
+ import "./chunk-KFQGP6VL.js";
5
+ export {
6
+ EngineDatabase
7
+ };
package/dist/index.js CHANGED
@@ -26,7 +26,7 @@ import {
26
26
  requireRole,
27
27
  securityHeaders,
28
28
  validate
29
- } from "./chunk-MUKGRCNR.js";
29
+ } from "./chunk-GMNCD3YS.js";
30
30
  import {
31
31
  PROVIDER_REGISTRY,
32
32
  listAllProviders,
@@ -36,7 +36,7 @@ import {
36
36
  import {
37
37
  provision,
38
38
  runSetupWizard
39
- } from "./chunk-HDS2JMQ6.js";
39
+ } from "./chunk-SB5NTQUL.js";
40
40
  import {
41
41
  ENGINE_TABLES,
42
42
  ENGINE_TABLES_POSTGRES,
@@ -46,7 +46,7 @@ import {
46
46
  MIGRATIONS_TABLE_POSTGRES,
47
47
  sqliteToMySQL,
48
48
  sqliteToPostgres
49
- } from "./chunk-IDTJIAJZ.js";
49
+ } from "./chunk-OUHFQDDK.js";
50
50
  import {
51
51
  deployToCloud,
52
52
  generateDockerCompose,
@@ -0,0 +1,11 @@
1
+ import {
2
+ createServer
3
+ } from "./chunk-GMNCD3YS.js";
4
+ import "./chunk-ZNR5DDTA.js";
5
+ import "./chunk-RO537U6H.js";
6
+ import "./chunk-DRXMYYKN.js";
7
+ import "./chunk-JLSQOQ5L.js";
8
+ import "./chunk-KFQGP6VL.js";
9
+ export {
10
+ createServer
11
+ };
@@ -0,0 +1,20 @@
1
+ import {
2
+ promptCompanyInfo,
3
+ promptDatabase,
4
+ promptDeployment,
5
+ promptDomain,
6
+ promptRegistration,
7
+ provision,
8
+ runSetupWizard
9
+ } from "./chunk-SB5NTQUL.js";
10
+ import "./chunk-G5OKUKJH.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.9",
3
+ "version": "0.5.10",
4
4
  "description": "AgenticMail Enterprise — cloud-hosted AI agent identity, email, auth & compliance for organizations",
5
5
  "type": "module",
6
6
  "bin": {
@@ -209,6 +209,7 @@ CREATE INDEX IF NOT EXISTS idx_approval_policies_org ON approval_policies(org_id
209
209
  * Postgres-compatible version (uses JSONB instead of JSON, SERIAL, etc.)
210
210
  */
211
211
  export const ENGINE_TABLES_POSTGRES = ENGINE_TABLES
212
+ .replace(/\bBLOB\b/g, 'BYTEA')
212
213
  .replace(/JSON/g, 'JSONB')
213
214
  .replace(/INTEGER NOT NULL DEFAULT 0/g, 'INTEGER NOT NULL DEFAULT 0')
214
215
  .replace(/datetime\('now'\)/g, "NOW()")