@43world/43chat-openclaw-plugin 0.1.6 → 0.1.7

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/index.ts CHANGED
@@ -8,7 +8,7 @@ export { sendMessage43Chat } from "./src/send.js";
8
8
  export { chat43Plugin } from "./src/channel.js";
9
9
 
10
10
  const plugin = {
11
- id: "43chat",
11
+ id: packageJson.openclaw.channel.id,
12
12
  name: "43Chat",
13
13
  version: packageJson.version,
14
14
  description: "43Chat OpenAPI + SSE channel plugin",
@@ -1,7 +1,7 @@
1
1
  {
2
- "id": "43chat",
2
+ "id": "43chat-openclaw-plugin",
3
3
  "channels": [
4
- "43chat"
4
+ "43chat-openclaw-plugin"
5
5
  ],
6
6
  "configSchema": {
7
7
  "type": "object",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@43world/43chat-openclaw-plugin",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "type": "module",
5
5
  "description": "43World: 43Chat OpenClaw channel plugin",
6
6
  "scripts": {
@@ -23,7 +23,7 @@
23
23
  "./index.ts"
24
24
  ],
25
25
  "channel": {
26
- "id": "43chat",
26
+ "id": "43chat-openclaw-plugin",
27
27
  "label": "43Chat",
28
28
  "selectionLabel": "43Chat",
29
29
  "docsPath": "/channels/43chat",
package/src/channel.ts CHANGED
@@ -15,7 +15,7 @@ const DEFAULT_ACCOUNT_ID = "default";
15
15
  const PAIRING_APPROVED_MESSAGE = "✓ You have been approved to chat with this agent.";
16
16
 
17
17
  const meta = {
18
- id: "43chat",
18
+ id: packageJson.openclaw.channel.id,
19
19
  label: "43Chat",
20
20
  selectionLabel: "43Chat",
21
21
  docsPath: "/channels/43chat",
@@ -26,7 +26,7 @@ const meta = {
26
26
  };
27
27
 
28
28
  export const chat43Plugin: ChannelPlugin<Resolved43ChatAccount> = {
29
- id: "43chat",
29
+ id: packageJson.openclaw.channel.id,
30
30
  meta,
31
31
 
32
32
  pairing: {