@contextableai/clawg-ui 0.3.0 → 0.3.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/dist/index.js +2 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -91,8 +91,10 @@ const plugin = {
91
91
  register(api) {
92
92
  api.registerChannel({ plugin: aguiChannelPlugin });
93
93
  api.registerTool(clawgUiToolFactory);
94
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any -- auth not yet in SDK typings but required at runtime
94
95
  api.registerHttpRoute({
95
96
  path: "/v1/clawg-ui",
97
+ auth: "plugin",
96
98
  handler: createAguiHttpHandler(api),
97
99
  });
98
100
  api.on("before_tool_call", handleBeforeToolCall);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contextableai/clawg-ui",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "AG-UI protocol channel plugin for OpenClaw — connect CopilotKit and AG-UI clients to your OpenClaw gateway",
5
5
  "type": "module",
6
6
  "license": "MIT",