@agenticmail/enterprise 0.5.341 → 0.5.342

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.
@@ -436,8 +436,12 @@ async function runCloudSetup(inquirer, chalk, existingSubdomain) {
436
436
  } catch {
437
437
  console.log(chalk.dim(" winget failed, trying direct download..."));
438
438
  const archStr = arch() === "arm64" ? "arm64" : "amd64";
439
- execSync(`powershell -Command "New-Item -ItemType Directory -Force -Path '$env:LOCALAPPDATA\\cloudflared' | Out-Null; Invoke-WebRequest -Uri 'https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-windows-${archStr}.exe' -OutFile '$env:LOCALAPPDATA\\cloudflared\\cloudflared.exe'"`, { stdio: "pipe", timeout: 12e4 });
440
- process.env.PATH = `${process.env.LOCALAPPDATA}\\cloudflared;${process.env.PATH}`;
439
+ const localAppData = process.env.LOCALAPPDATA || `${process.env.USERPROFILE}\\AppData\\Local`;
440
+ const cfDir = `${localAppData}\\cloudflared`;
441
+ const cfExe = `${cfDir}\\cloudflared.exe`;
442
+ const dlUrl = `https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-windows-${archStr}.exe`;
443
+ execSync(`powershell -Command "New-Item -ItemType Directory -Force -Path '${cfDir}' | Out-Null; Invoke-WebRequest -Uri '${dlUrl}' -OutFile '${cfExe}'"`, { stdio: "pipe", timeout: 12e4 });
444
+ process.env.PATH = `${cfDir};${process.env.PATH}`;
441
445
  }
442
446
  } else {
443
447
  console.log(chalk.yellow(" Please install cloudflared manually: https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-and-setup/installation/"));
@@ -1241,8 +1245,12 @@ async function deploy(config, db, jwtSecret, vaultKey, spinner, chalk) {
1241
1245
  execSync2("winget install --id Cloudflare.cloudflared --accept-source-agreements --accept-package-agreements", { stdio: "pipe", timeout: 12e4 });
1242
1246
  } catch {
1243
1247
  const archStr = process.arch === "arm64" ? "arm64" : "amd64";
1244
- execSync2(`powershell -Command "New-Item -ItemType Directory -Force -Path '$env:LOCALAPPDATA\\\\cloudflared' | Out-Null; Invoke-WebRequest -Uri 'https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-windows-${archStr}.exe' -OutFile '$env:LOCALAPPDATA\\\\cloudflared\\\\cloudflared.exe'"`, { stdio: "pipe", timeout: 12e4 });
1245
- process.env.PATH = `${process.env.LOCALAPPDATA}\\cloudflared;${process.env.PATH}`;
1248
+ const localAppData = process.env.LOCALAPPDATA || `${process.env.USERPROFILE}\\AppData\\Local`;
1249
+ const cfDir = `${localAppData}\\cloudflared`;
1250
+ const cfExe = `${cfDir}\\cloudflared.exe`;
1251
+ const dlUrl = `https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-windows-${archStr}.exe`;
1252
+ execSync2(`powershell -Command "New-Item -ItemType Directory -Force -Path '${cfDir}' | Out-Null; Invoke-WebRequest -Uri '${dlUrl}' -OutFile '${cfExe}'"`, { stdio: "pipe", timeout: 12e4 });
1253
+ process.env.PATH = `${cfDir};${process.env.PATH}`;
1246
1254
  }
1247
1255
  } else if (process.platform === "darwin") {
1248
1256
  execSync2("brew install cloudflared", { stdio: "pipe", timeout: 12e4 });
@@ -1531,7 +1539,7 @@ async function runSetupWizard() {
1531
1539
  const { default: chalk } = await import("chalk");
1532
1540
  console.log("");
1533
1541
  console.log(chalk.cyan(" \u2554\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2557"));
1534
- console.log(chalk.cyan(" \u2551") + chalk.bold.white(" \u2709 AgenticMail Enterprise \u2709 ") + chalk.cyan("\u2551"));
1542
+ console.log(chalk.cyan(" \u2551") + chalk.bold.white(" \u{1F380} AgenticMail Enterprise \u{1F380} ") + chalk.cyan("\u2551"));
1535
1543
  console.log(chalk.cyan(" \u255A\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u255D"));
1536
1544
  console.log("");
1537
1545
  console.log(chalk.bold.white(" The AI Agent Operating System for Organizations"));
package/dist/cli.js CHANGED
@@ -64,7 +64,7 @@ Skill Development:
64
64
  break;
65
65
  case "setup":
66
66
  default:
67
- import("./setup-ZZSBCXJ3.js").then((m) => m.runSetupWizard()).catch(fatal);
67
+ import("./setup-D7IXATAY.js").then((m) => m.runSetupWizard()).catch(fatal);
68
68
  break;
69
69
  }
70
70
  function fatal(err) {
package/dist/index.js CHANGED
@@ -13,7 +13,7 @@ import {
13
13
  import {
14
14
  provision,
15
15
  runSetupWizard
16
- } from "./chunk-MGNDXWOU.js";
16
+ } from "./chunk-2DE62O56.js";
17
17
  import {
18
18
  AgentRuntime,
19
19
  EmailChannel,
@@ -0,0 +1,20 @@
1
+ import {
2
+ promptCompanyInfo,
3
+ promptDatabase,
4
+ promptDeployment,
5
+ promptDomain,
6
+ promptRegistration,
7
+ provision,
8
+ runSetupWizard
9
+ } from "./chunk-2DE62O56.js";
10
+ import "./chunk-Z3I6GNTS.js";
11
+ import "./chunk-KFQGP6VL.js";
12
+ export {
13
+ promptCompanyInfo,
14
+ promptDatabase,
15
+ promptDeployment,
16
+ promptDomain,
17
+ promptRegistration,
18
+ provision,
19
+ runSetupWizard
20
+ };
@@ -0,0 +1,6 @@
1
+ 2026-03-05 16:03:41: [chat-poller] Error polling Agentic Mail Support Space: The operation was aborted due to timeout
2
+ 2026-03-05 16:03:41: [chat-poller] 1 consecutive errors, backing off 30s
3
+ 2026-03-05 16:07:41: [chat-poller] Error polling Agentic Mail Support Space: The operation was aborted due to timeout
4
+ 2026-03-05 16:07:41: [chat-poller] 1 consecutive errors, backing off 30s
5
+ 2026-03-05 16:18:12: [chat-poller] Error polling Agentic Mail Support Space: The operation was aborted due to timeout
6
+ 2026-03-05 16:18:12: [chat-poller] 1 consecutive errors, backing off 30s
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenticmail/enterprise",
3
- "version": "0.5.341",
3
+ "version": "0.5.342",
4
4
  "description": "AgenticMail Enterprise — cloud-hosted AI agent identity, email, auth & compliance for organizations",
5
5
  "type": "module",
6
6
  "bin": {