@rynx-ai/plugin-channel-lark 0.1.9 → 0.1.10-beta.2

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.
@@ -923,7 +923,7 @@ function buildItemBodyElement(item) {
923
923
  };
924
924
  }
925
925
  function contentText(parts) {
926
- return parts.map((p) => p.text).join("");
926
+ return parts.map((part) => "text" in part ? part.text : `[Image: ${part.filename ?? part.resourceId}]`).join("");
927
927
  }
928
928
  /** A compact label for a tool head, derived from its JSON arguments. */
929
929
  function toolLabel(argumentsJson) {
package/dist/runtime.mjs CHANGED
@@ -111488,6 +111488,11 @@ var SESSION_INTERACTION_STRUCTURAL_LIMITS = {
111488
111488
  };
111489
111489
  var interactionTextEncoder = new TextEncoder();
111490
111490
 
111491
+ // ../protocol/dist/session-resource.js
111492
+ var SESSION_RESOURCE_MAX_IMAGE_BYTES = 5 * 1024 * 1024;
111493
+ var SESSION_RESOURCE_MAX_MESSAGE_BYTES = 20 * 1024 * 1024;
111494
+ var SESSION_RESOURCE_TRANSFER_CHUNK_BYTES = 32 * 1024;
111495
+
111491
111496
  // ../../node_modules/.pnpm/zod@4.4.3/node_modules/zod/v4/classic/external.js
111492
111497
  var external_exports = {};
111493
111498
  __export(external_exports, {
@@ -126346,6 +126351,11 @@ function newSessionId() {
126346
126351
  return `${SESSION_ID_PREFIX}${randomUUID()}`;
126347
126352
  }
126348
126353
 
126354
+ // ../protocol/dist/control.js
126355
+ var BROWSER_PROGRESS_MAX_MESSAGE_BYTES = 2 * 1024;
126356
+ var BROWSER_PROGRESS_MAX_TOTAL_BYTES = 32 * 1024;
126357
+ var CHROME_INSPECTION_ERROR_MAX_BYTES = 4 * 1024;
126358
+
126349
126359
  // ../core/dist/conversation-directory.js
126350
126360
  import { createHash, randomUUID as randomUUID2 } from "node:crypto";
126351
126361
  import { mkdir, readFile, rename, writeFile } from "node:fs/promises";
@@ -127369,7 +127379,9 @@ function buildItemBodyElement(item) {
127369
127379
  };
127370
127380
  }
127371
127381
  function contentText(parts) {
127372
- return parts.map((p) => p.text).join("");
127382
+ return parts.map(
127383
+ (part) => "text" in part ? part.text : `[Image: ${part.filename ?? part.resourceId}]`
127384
+ ).join("");
127373
127385
  }
127374
127386
  function toolLabel(argumentsJson) {
127375
127387
  let args = {};
package/package.json CHANGED
@@ -1,6 +1,11 @@
1
1
  {
2
2
  "name": "@rynx-ai/plugin-channel-lark",
3
- "version": "0.1.9",
3
+ "version": "0.1.10-beta.2",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "git+https://github.com/rynx-ai/rynx.git",
7
+ "directory": "packages/plugin-channel-lark"
8
+ },
4
9
  "description": "Out-of-process Lark (Feishu) chat-channel plugin for Rynx.",
5
10
  "license": "MIT",
6
11
  "type": "module",
@@ -25,8 +30,8 @@
25
30
  },
26
31
  "dependencies": {
27
32
  "@larksuiteoapi/node-sdk": "^1.60.0",
28
- "@rynx-ai/core": "0.1.9",
29
- "@rynx-ai/plugin-sdk": "0.1.9"
33
+ "@rynx-ai/core": "0.1.10-beta.2",
34
+ "@rynx-ai/plugin-sdk": "0.1.10-beta.2"
30
35
  },
31
36
  "scripts": {
32
37
  "build": "rm -rf dist && tsc -p tsconfig.json && node build-runtime.mjs",