@ozaiya/openclaw-channel 0.10.18 → 0.10.19
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 +3 -0
- package/dist/src/channel.js +3 -2
- package/dist/src/channel.js.map +1 -1
- package/dist/src/configSchema.d.ts +3 -0
- package/dist/src/configSchema.js +3 -0
- package/dist/src/configSchema.js.map +1 -1
- package/dist/src/gateway.js +126 -20
- package/dist/src/gateway.js.map +1 -1
- package/dist/src/sandboxScreenRtc.d.ts +35 -0
- package/dist/src/sandboxScreenRtc.js +147 -0
- package/dist/src/sandboxScreenRtc.js.map +1 -0
- package/dist/src/types.d.ts +1 -0
- package/package.json +2 -1
package/dist/src/types.d.ts
CHANGED
|
@@ -141,6 +141,7 @@ export interface OzaiyaChannelConfig {
|
|
|
141
141
|
/** Social media fetch config (XHS, Douyin, Bilibili via media-fetch-api) */
|
|
142
142
|
socialMedia?: SocialMediaConfig;
|
|
143
143
|
userToken?: string;
|
|
144
|
+
provisionSecret?: string;
|
|
144
145
|
gatewayName?: string;
|
|
145
146
|
webhookBase?: string;
|
|
146
147
|
botWebhookBases?: Record<string, string>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ozaiya/openclaw-channel",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.19",
|
|
4
4
|
"description": "OpenClaw channel plugin for Ozaiya Chat",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -67,6 +67,7 @@
|
|
|
67
67
|
"libsodium-wrappers": "^0.7.15",
|
|
68
68
|
"node-pty": "^1.0.0",
|
|
69
69
|
"socket.io-client": "^4.8.1",
|
|
70
|
+
"werift": "^0.22.9",
|
|
70
71
|
"ws": "^8.18.0"
|
|
71
72
|
},
|
|
72
73
|
"devDependencies": {
|