@rynx-ai/plugin-channel-lark 0.1.11-beta.21 → 0.1.11-beta.23

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.
@@ -111,7 +111,11 @@ export class HostConversationRuntime {
111
111
  const unsteer = input.steer?.subscribe((text) => {
112
112
  if (!runId || terminal)
113
113
  return;
114
- void this.host.sessions.steer({ runId, text }).catch(() => undefined);
114
+ // `session.run` is the only message-input operation. The Host reuses
115
+ // `runId` while this Turn is active and lets the native runtime choose
116
+ // turn/steer; callers do not select a separate steering RPC.
117
+ void this.host.sessions.run({ sessionId: input.threadId, message: text })
118
+ .catch(() => undefined);
115
119
  });
116
120
  input.signal?.addEventListener("abort", interrupt, { once: true });
117
121
  const generator = (async function* () {
package/dist/runtime.js CHANGED
@@ -126958,7 +126958,7 @@ var HostConversationRuntime = class {
126958
126958
  }
126959
126959
  const unsteer = input.steer?.subscribe((text) => {
126960
126960
  if (!runId || terminal) return;
126961
- void this.host.sessions.steer({ runId, text }).catch(() => void 0);
126961
+ void this.host.sessions.run({ sessionId: input.threadId, message: text }).catch(() => void 0);
126962
126962
  });
126963
126963
  input.signal?.addEventListener("abort", interrupt, { once: true });
126964
126964
  const generator = (async function* () {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rynx-ai/plugin-channel-lark",
3
- "version": "0.1.11-beta.21",
3
+ "version": "0.1.11-beta.23",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/rynx-ai/rynx.git",
@@ -28,8 +28,8 @@
28
28
  },
29
29
  "dependencies": {
30
30
  "@larksuiteoapi/node-sdk": "^1.60.0",
31
- "@rynx-ai/plugin-sdk": "0.1.11-beta.21",
32
- "@rynx-ai/core": "0.1.11-beta.21"
31
+ "@rynx-ai/core": "0.1.11-beta.23",
32
+ "@rynx-ai/plugin-sdk": "0.1.11-beta.23"
33
33
  },
34
34
  "devDependencies": {
35
35
  "@fontsource-variable/inter": "^5.0.0",
@@ -46,7 +46,7 @@
46
46
  "tailwindcss": "^4.0.0",
47
47
  "typescript": "^6.0.2",
48
48
  "vite": "^6.1.0",
49
- "@rynx-ai/ui": "0.1.11-beta.21"
49
+ "@rynx-ai/ui": "0.1.11-beta.23"
50
50
  },
51
51
  "scripts": {
52
52
  "build": "pnpm run build:runtime && pnpm run build:ui",