@epiphytic/openclaw-discord-voice 1.5.6 → 1.6.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.ts +1 -0
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -499,6 +499,7 @@ export default function register(api: OpenClawPluginApi): void {
499
499
  // -------------------------------------------------------------------------
500
500
  api.registerHttpRoute({
501
501
  path: "/rpc/discord-voice.escalate",
502
+ auth: "gateway",
502
503
  handler: async (req, res) => {
503
504
  if (req.method !== "POST") {
504
505
  sendJson(res, 405, { error: "Method Not Allowed" });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epiphytic/openclaw-discord-voice",
3
- "version": "1.5.6",
3
+ "version": "1.6.1",
4
4
  "description": "OpenClaw plugin for real-time Discord voice assistant with local LLM, STT, and TTS",
5
5
  "type": "module",
6
6
  "main": "index.ts",