openclaw-extension-typex 1.0.8 → 1.0.10

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.
@@ -70,6 +70,7 @@ async function processTypeXMessage(client, payload, appId, options = {}) {
70
70
  },
71
71
  replyOptions: {
72
72
  disableBlockStreaming: true,
73
+ embedded: true,
73
74
  },
74
75
  });
75
76
  }
@@ -1,5 +1,6 @@
1
1
  /**
2
2
  * Global runtime reference for the TypeX plugin.
3
3
  */
4
- export declare function setTypeXRuntime(next: any): void;
5
- export declare function getTypeXRuntime(): any;
4
+ import type { PluginRuntime } from "openclaw/plugin-sdk";
5
+ export declare function setTypeXRuntime(next: PluginRuntime): void;
6
+ export declare function getTypeXRuntime(): PluginRuntime;
@@ -17,7 +17,7 @@
17
17
  "additionalProperties": true
18
18
  },
19
19
  "channel": {
20
- "id": "openclaw-extension-typex",
20
+ "id": "typex",
21
21
  "label": "TypeX",
22
22
  "selectionLabel": "TypeX (QR Code Login)",
23
23
  "detailLabel": "TypeX Bot",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-extension-typex",
3
- "version": "1.0.8",
3
+ "version": "1.0.10",
4
4
  "description": "TypeX channel integration for OpenClaw",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",