@agenticmail/enterprise 0.5.87 → 0.5.88
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/chunk-5SKX72EH.js +898 -0
- package/dist/chunk-FOEQH5TZ.js +2191 -0
- package/dist/chunk-PGD43XUU.js +15813 -0
- package/dist/cli.js +1 -1
- package/dist/dashboard/pages/agent-detail.js +24 -2
- package/dist/index.js +3 -3
- package/dist/routes-6YFW4RXP.js +6910 -0
- package/dist/runtime-RZNTYFYL.js +49 -0
- package/dist/server-56SKZN5M.js +12 -0
- package/dist/setup-FDTYP4T2.js +20 -0
- package/package.json +1 -1
- package/src/dashboard/pages/agent-detail.js +24 -2
- package/src/engine/agent-routes.ts +50 -0
package/dist/cli.js
CHANGED
|
@@ -4022,6 +4022,8 @@ function MeetingCapabilitiesSection(props) {
|
|
|
4022
4022
|
if (cfg.meetingsEnabled) checkMeetingBrowser();
|
|
4023
4023
|
}, [cfg.meetingsEnabled]);
|
|
4024
4024
|
|
|
4025
|
+
var _stopping = useState(false); var stopping = _stopping[0]; var setStopping = _stopping[1];
|
|
4026
|
+
|
|
4025
4027
|
function launchMeetingBrowser() {
|
|
4026
4028
|
setLaunching(true);
|
|
4027
4029
|
engineCall('/bridge/agents/' + agentId + '/browser-config/launch-meeting-browser', { method: 'POST' })
|
|
@@ -4033,6 +4035,17 @@ function MeetingCapabilitiesSection(props) {
|
|
|
4033
4035
|
.catch(function(e) { toast(e.message, 'error'); setLaunching(false); });
|
|
4034
4036
|
}
|
|
4035
4037
|
|
|
4038
|
+
function stopMeetingBrowser() {
|
|
4039
|
+
setStopping(true);
|
|
4040
|
+
engineCall('/bridge/agents/' + agentId + '/browser-config/stop-meeting-browser', { method: 'POST' })
|
|
4041
|
+
.then(function(d) {
|
|
4042
|
+
if (d.error) { toast(d.error, 'error'); }
|
|
4043
|
+
else { toast('Meeting browser stopped', 'success'); setBrowserStatus(null); }
|
|
4044
|
+
setStopping(false);
|
|
4045
|
+
})
|
|
4046
|
+
.catch(function(e) { toast(e.message, 'error'); setStopping(false); });
|
|
4047
|
+
}
|
|
4048
|
+
|
|
4036
4049
|
var meetingsOn = cfg.meetingsEnabled === true;
|
|
4037
4050
|
|
|
4038
4051
|
var isContainer = sysCaps && sysCaps.raw && (sysCaps.raw.deployment === 'container');
|
|
@@ -4123,8 +4136,17 @@ function MeetingCapabilitiesSection(props) {
|
|
|
4123
4136
|
),
|
|
4124
4137
|
browserStatus?.ok
|
|
4125
4138
|
? h('div', null,
|
|
4126
|
-
h('div', { style: {
|
|
4127
|
-
|
|
4139
|
+
h('div', { style: { display: 'flex', alignItems: 'center', gap: 8, marginBottom: 6 } },
|
|
4140
|
+
h('span', { style: { fontSize: 12, color: 'var(--text-muted)' } }, browserStatus.browserVersion || 'Chromium ready'),
|
|
4141
|
+
isObserverOnly && h('span', { className: 'badge', style: { fontSize: 10, padding: '1px 6px', background: 'rgba(33,150,243,0.15)', color: 'var(--accent)' } }, 'Observer Only'),
|
|
4142
|
+
browserStatus.port && h('span', { style: { fontSize: 11, color: 'var(--text-muted)' } }, 'Port ' + browserStatus.port)
|
|
4143
|
+
),
|
|
4144
|
+
h('button', {
|
|
4145
|
+
className: 'btn btn-sm',
|
|
4146
|
+
disabled: stopping,
|
|
4147
|
+
onClick: stopMeetingBrowser,
|
|
4148
|
+
style: { background: 'var(--danger)', color: '#fff', border: 'none', marginTop: 4 },
|
|
4149
|
+
}, stopping ? 'Stopping...' : '\u23F9\uFE0F Stop Meeting Browser'),
|
|
4128
4150
|
isContainer && !canJoinMeetings && !isObserverOnly && h('div', { style: { fontSize: 11, color: 'var(--warning)', marginTop: 4 } },
|
|
4129
4151
|
'\u26A0 Browser is headless-only on this container. It cannot join video calls (no display/audio).'
|
|
4130
4152
|
)
|
package/dist/index.js
CHANGED
|
@@ -35,7 +35,7 @@ import {
|
|
|
35
35
|
executeTool,
|
|
36
36
|
runAgentLoop,
|
|
37
37
|
toolsToDefinitions
|
|
38
|
-
} from "./chunk-
|
|
38
|
+
} from "./chunk-PGD43XUU.js";
|
|
39
39
|
import "./chunk-NRF3YRF7.js";
|
|
40
40
|
import "./chunk-TYW5XTOW.js";
|
|
41
41
|
import "./chunk-AQH4DFYV.js";
|
|
@@ -52,11 +52,11 @@ import {
|
|
|
52
52
|
requireRole,
|
|
53
53
|
securityHeaders,
|
|
54
54
|
validate
|
|
55
|
-
} from "./chunk-
|
|
55
|
+
} from "./chunk-FOEQH5TZ.js";
|
|
56
56
|
import {
|
|
57
57
|
provision,
|
|
58
58
|
runSetupWizard
|
|
59
|
-
} from "./chunk-
|
|
59
|
+
} from "./chunk-5SKX72EH.js";
|
|
60
60
|
import {
|
|
61
61
|
ENGINE_TABLES,
|
|
62
62
|
ENGINE_TABLES_POSTGRES,
|