@agenticmail/enterprise 0.5.8 → 0.5.9

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-SKZG3MS5.js").then((m) => m.runSetupWizard()).catch(fatal);
51
+ import("./setup-N2VGYYHM.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-IDTJIAJZ.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-QURS6HT5.js";
29
+ } from "./chunk-MUKGRCNR.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-VVQLDBGG.js";
39
+ } from "./chunk-HDS2JMQ6.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-SGBTJHEF.js";
49
+ } from "./chunk-IDTJIAJZ.js";
50
50
  import {
51
51
  deployToCloud,
52
52
  generateDockerCompose,
@@ -0,0 +1,11 @@
1
+ import {
2
+ createServer
3
+ } from "./chunk-MUKGRCNR.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-HDS2JMQ6.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.8",
3
+ "version": "0.5.9",
4
4
  "description": "AgenticMail Enterprise — cloud-hosted AI agent identity, email, auth & compliance for organizations",
5
5
  "type": "module",
6
6
  "bin": {
@@ -1262,6 +1262,7 @@ export interface DynamicTableDef {
1262
1262
  */
1263
1263
  export function sqliteToPostgres(sql: string): string {
1264
1264
  return sql
1265
+ .replace(/\bBLOB\b/g, 'BYTEA')
1265
1266
  .replace(/JSON/g, 'JSONB')
1266
1267
  .replace(/datetime\('now'\)/g, "NOW()")
1267
1268
  .replace(/INTEGER NOT NULL DEFAULT 1(?!\d)/g, 'BOOLEAN NOT NULL DEFAULT TRUE')