a2acalling 0.6.27 → 0.6.28

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a2acalling",
3
- "version": "0.6.27",
3
+ "version": "0.6.28",
4
4
  "description": "Agent-to-agent calling for OpenClaw - A2A agent communication",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -117,10 +117,10 @@ function createCallbookRouter() {
117
117
  setStatus('Connected. Session cookie stored in your browser.', 'ok');
118
118
  openBtn.style.display = 'inline-block';
119
119
  openBtn.addEventListener('click', () => {
120
- window.location.href = result.dashboard_path || '/dashboard/';
120
+ window.location.href = result.dashboard_path || '/api/a2a/dashboard/';
121
121
  });
122
122
  window.setTimeout(() => {
123
- window.location.href = result.dashboard_path || '/dashboard/';
123
+ window.location.href = result.dashboard_path || '/api/a2a/dashboard/';
124
124
  }, 350);
125
125
  } catch (err) {
126
126
  setStatus('Failed: ' + err.message, 'error');
@@ -451,7 +451,7 @@ function createDashboardApiRouter(options = {}) {
451
451
  return res.json({
452
452
  success: true,
453
453
  device: result.device,
454
- dashboard_path: '/dashboard/'
454
+ dashboard_path: '/api/a2a/dashboard/'
455
455
  });
456
456
  });
457
457