mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-15 01:16:16 +00:00
* fix(infra): preserve bounded response text characters Co-authored-by: qingminlong <34085845+qingminglong@users.noreply.github.com> * ci(plugin-sdk): refresh API baseline --------- Co-authored-by: qingminlong <34085845+qingminglong@users.noreply.github.com>
9 lines
369 B
TypeScript
9 lines
369 B
TypeScript
// Narrow response-size reader for plugins that download bounded HTTP bodies.
|
|
|
|
export { readByteStreamWithLimit } from "@openclaw/media-core/read-byte-stream-with-limit";
|
|
export { readResponseTextPrefix, readResponseWithLimit } from "../infra/http-body.js";
|
|
export type {
|
|
ReadResponseTextPrefixOptions,
|
|
ReadResponseTextPrefixResult,
|
|
} from "../infra/http-body.js";
|