@eclaw/openclaw-channel 1.2.5 → 1.2.6

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/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -62,7 +62,7 @@ const plugin = {
62
62
  // registers its own handler keyed by a random per-session Bearer token.
63
63
  api.registerHttpRoute({
64
64
  path: '/eclaw-webhook',
65
- auth: 'none', // Plugin handles its own Bearer-token auth in dispatchWebhook()
65
+ auth: 'plugin', // Plugin handles its own Bearer-token auth in dispatchWebhook()
66
66
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
67
67
  handler: async (req, res) => {
68
68
  await parseBody(req);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eclaw/openclaw-channel",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
4
4
  "description": "E-Claw channel plugin for OpenClaw — AI chat platform for live wallpaper entities",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",