@gloablehive/ipad-wechat-plugin 1.0.16 → 1.0.17

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/dist/index.js CHANGED
@@ -20,7 +20,7 @@ export default defineChannelPluginEntry({
20
20
  // Using /api/channels/ prefix like other plugins
21
21
  api.registerHttpRoute({
22
22
  path: "/api/channels/ipad-wechat",
23
- auth: "plugin",
23
+ auth: "gateway",
24
24
  match: "prefix",
25
25
  handler: async (req, res) => {
26
26
  // Check if it's a webhook request
package/index.ts CHANGED
@@ -23,7 +23,7 @@ export default defineChannelPluginEntry({
23
23
  // Using /api/channels/ prefix like other plugins
24
24
  api.registerHttpRoute({
25
25
  path: "/api/channels/ipad-wechat",
26
- auth: "plugin",
26
+ auth: "gateway",
27
27
  match: "prefix",
28
28
  handler: async (req, res) => {
29
29
  // Check if it's a webhook request
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gloablehive/ipad-wechat-plugin",
3
- "version": "1.0.16",
3
+ "version": "1.0.17",
4
4
  "type": "module",
5
5
  "description": "OpenClaw channel plugin for iPad WeChat protocol - enables sending/receiving WeChat messages through iPad protocol",
6
6
  "main": "index.ts",