@agenticmail/enterprise 0.5.492 → 0.5.493

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.
@@ -197,7 +197,9 @@ function RoutingRowEditor(props) {
197
197
  modelId: modelId,
198
198
  providers: providers,
199
199
  onChange: function(p, m) {
200
- onChange(p && m ? p + '/' + m : '');
200
+ if (p && m) onChange(p + '/' + m);
201
+ else if (p) onChange(p + '/');
202
+ else onChange('');
201
203
  }
202
204
  }),
203
205
  h('div', { style: { fontSize: 11, color: 'var(--text-muted)', marginTop: 4, fontStyle: 'italic' } }, 'Recommended: ' + ctx.rec),
@@ -741,9 +743,15 @@ export function ConfigurationSection(props) {
741
743
  setEditingRouting(true);
742
744
  },
743
745
  onSave: function() {
746
+ // Clean routing: strip entries with provider but no model (e.g. "anthropic/")
747
+ var cleanRouting = {};
748
+ Object.keys(routingForm).forEach(function(k) {
749
+ var v = routingForm[k] || '';
750
+ cleanRouting[k] = v.endsWith('/') ? '' : v;
751
+ });
744
752
  saveUpdates({
745
- modelRouting: routingForm,
746
- voiceConfig: Object.assign({}, config.voiceConfig || {}, { chatModel: routingForm.chat || '', meetingModel: routingForm.meeting || '' }),
753
+ modelRouting: cleanRouting,
754
+ voiceConfig: Object.assign({}, config.voiceConfig || {}, { chatModel: cleanRouting.chat || '', meetingModel: cleanRouting.meeting || '' }),
747
755
  }, function() { setEditingRouting(false); });
748
756
  },
749
757
  onCancel: function() { setEditingRouting(false); }
@@ -563,3 +563,13 @@
563
563
  2026-03-14 04:50:35: 2026-03-14T03:50:35Z INF Registered tunnel connection connIndex=3 connection=edaea301-0814-452a-816f-f78a2c49c9e5 event=0 ip=198.41.200.23 location=atl15 protocol=quic
564
564
  2026-03-14 04:50:35: 2026-03-14T03:50:35Z INF Registered tunnel connection connIndex=2 connection=7e9be2c3-35ca-48ee-9fc9-8bb982e3c6ba event=0 ip=198.41.192.167 location=atl06 protocol=quic
565
565
  2026-03-14 04:50:35: 2026-03-14T03:50:35Z INF Registered tunnel connection connIndex=1 connection=bb94f936-08f3-49db-9d1a-364d2e05be2f event=0 ip=198.41.200.113 location=atl10 protocol=quic
566
+ 2026-03-14 04:56:00: 2026-03-14T03:56:00Z ERR error="stream 5 canceled by remote with error code 0" connIndex=0 event=1 ingressRule=0 originService=http://localhost:3100
567
+ 2026-03-14 04:56:00: 2026-03-14T03:56:00Z ERR Request failed error="stream 5 canceled by remote with error code 0" connIndex=0 dest=https://enterprise.agenticmail.io/api/polymarket/67ba24f1-c8af-40b4-9df5-c05b81fc1e7a/price-stream event=0 ip=198.41.192.37 type=http
568
+ 2026-03-14 04:56:04: 2026-03-14T03:56:04Z ERR error="stream 1 canceled by remote with error code 0" connIndex=0 event=1 ingressRule=0 originService=http://localhost:3100
569
+ 2026-03-14 04:56:04: 2026-03-14T03:56:04Z ERR Request failed error="stream 1 canceled by remote with error code 0" connIndex=0 dest=https://enterprise.agenticmail.io/api/polymarket/stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.192.37 type=http
570
+ 2026-03-14 05:04:27: 2026-03-14T04:04:27Z ERR error="stream 633 canceled by remote with error code 0" connIndex=0 event=1 ingressRule=0 originService=http://localhost:3100
571
+ 2026-03-14 05:04:27: 2026-03-14T04:04:27Z ERR Request failed error="stream 633 canceled by remote with error code 0" connIndex=0 dest=https://enterprise.agenticmail.io/api/engine/agent-status-stream event=0 ip=198.41.192.37 type=http
572
+ 2026-03-14 05:04:29: 2026-03-14T04:04:29Z ERR error="stream 673 canceled by remote with error code 0" connIndex=0 event=1 ingressRule=0 originService=http://localhost:3100
573
+ 2026-03-14 05:04:29: 2026-03-14T04:04:29Z ERR Request failed error="stream 673 canceled by remote with error code 0" connIndex=0 dest=https://enterprise.agenticmail.io/api/engine/agent-status-stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.192.37 type=http
574
+ 2026-03-14 05:04:56: 2026-03-14T04:04:56Z ERR error="stream 713 canceled by remote with error code 0" connIndex=0 event=1 ingressRule=0 originService=http://localhost:3100
575
+ 2026-03-14 05:04:56: 2026-03-14T04:04:56Z ERR Request failed error="stream 713 canceled by remote with error code 0" connIndex=0 dest=https://enterprise.agenticmail.io/api/engine/agent-status-stream?agentId=67ba24f1-c8af-40b4-9df5-c05b81fc1e7a event=0 ip=198.41.192.37 type=http
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenticmail/enterprise",
3
- "version": "0.5.492",
3
+ "version": "0.5.493",
4
4
  "description": "AgenticMail Enterprise — cloud-hosted AI agent identity, email, auth & compliance for organizations",
5
5
  "type": "module",
6
6
  "bin": {