@agenshield/integrations 0.7.0 → 0.7.1

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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -848,7 +848,7 @@ async function getOpenClawDashboardUrl() {
848
848
  if (!port || !token) {
849
849
  return { success: false, error: "Gateway port or auth token not found in openclaw.json" };
850
850
  }
851
- const url = `https://localhost:${port}/?token=${token}`;
851
+ const url = `http://127.0.0.1:${port}/?token=${token}`;
852
852
  return { success: true, url };
853
853
  } catch (error) {
854
854
  return { success: false, error: `Failed to get dashboard URL: ${error.message}` };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenshield/integrations",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "type": "module",
5
5
  "description": "OpenClaw and third-party integration utilities for AgenShield",
6
6
  "main": "./index.js",