@clawchatsai/connector 0.0.3 → 0.0.4
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 +1 -1
- package/dist/index.js +2 -2
- package/openclaw.plugin.json +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
*
|
|
10
10
|
* Spec: specs/multitenant-p2p.md sections 6.1-6.2
|
|
11
11
|
*/
|
|
12
|
-
export declare const PLUGIN_ID = "
|
|
12
|
+
export declare const PLUGIN_ID = "connector";
|
|
13
13
|
export declare const PLUGIN_VERSION = "0.0.1";
|
|
14
14
|
interface PluginServiceContext {
|
|
15
15
|
stateDir: string;
|
package/dist/index.js
CHANGED
|
@@ -18,7 +18,7 @@ import { dispatchRpc } from './shim.js';
|
|
|
18
18
|
import { checkForUpdates, performUpdate } from './updater.js';
|
|
19
19
|
// Inline from shared/api-version.ts to avoid rootDir conflict
|
|
20
20
|
const CURRENT_API_VERSION = 1;
|
|
21
|
-
export const PLUGIN_ID = '
|
|
21
|
+
export const PLUGIN_ID = 'connector';
|
|
22
22
|
export const PLUGIN_VERSION = '0.0.1';
|
|
23
23
|
/** Max DataChannel message size (~256KB, leave room for envelope) */
|
|
24
24
|
const MAX_DC_MESSAGE_SIZE = 256 * 1024;
|
|
@@ -516,7 +516,7 @@ const plugin = {
|
|
|
516
516
|
register(api) {
|
|
517
517
|
// Background service: signaling + gateway bridge + future WebRTC
|
|
518
518
|
api.registerService({
|
|
519
|
-
id: '
|
|
519
|
+
id: 'connector-service',
|
|
520
520
|
start: (ctx) => startShellChat(ctx, api),
|
|
521
521
|
stop: (ctx) => stopShellChat(ctx),
|
|
522
522
|
});
|
package/openclaw.plugin.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
|
-
"id": "
|
|
3
|
-
"name": "
|
|
4
|
-
"description": "Connects your OpenClaw gateway to
|
|
2
|
+
"id": "connector",
|
|
3
|
+
"name": "ShellChats",
|
|
4
|
+
"description": "Connects your OpenClaw gateway to ShellChats via WebRTC P2P",
|
|
5
5
|
"kind": "integration",
|
|
6
6
|
"configSchema": {
|
|
7
7
|
"type": "object",
|