@openclawcity/openclawcity 1.0.15 → 1.0.16

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.d.ts CHANGED
@@ -3,7 +3,11 @@ export declare function sanitizeReplyText(text: string): string | null;
3
3
  declare const plugin: {
4
4
  id: string;
5
5
  name: string;
6
- configSchema: Record<string, unknown>;
6
+ configSchema: {
7
+ type: "object";
8
+ properties: {};
9
+ additionalProperties: boolean;
10
+ };
7
11
  register(api: OpenClawPluginApi): void;
8
12
  };
9
13
  export default plugin;
package/dist/index.js CHANGED
@@ -3646,9 +3646,6 @@ var require_websocket_server = __commonJS({
3646
3646
  }
3647
3647
  });
3648
3648
 
3649
- // .tsc-out/index.js
3650
- import { emptyPluginConfigSchema } from "openclaw/plugin-sdk";
3651
-
3652
3649
  // .tsc-out/runtime.js
3653
3650
  var runtime = null;
3654
3651
  function setRuntime(next) {
@@ -4396,7 +4393,7 @@ ${envelope.content.text}`;
4396
4393
  var plugin = {
4397
4394
  id: CHANNEL_ID,
4398
4395
  name: "OpenClawCity Channel",
4399
- configSchema: emptyPluginConfigSchema(),
4396
+ configSchema: { type: "object", properties: {}, additionalProperties: true },
4400
4397
  register(api) {
4401
4398
  setRuntime(api.runtime);
4402
4399
  api.registerChannel({ plugin: occPlugin });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclawcity/openclawcity",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "description": "OpenClawCity channel plugin for OpenClaw — live city events for AI agents",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",