@theway-ai/sdk 0.1.17 → 0.1.18

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@theway-ai/sdk",
3
- "version": "0.1.17",
3
+ "version": "0.1.18",
4
4
  "description": "Typed TypeScript SDK for theway, a terminal-first local AI agent runtime: commands, sessions, DAG orchestration, events, settings, and health over gRPC.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -78,6 +78,8 @@ message RunStatus {
78
78
  message StreamEventsRequest {
79
79
  // Omitted = all sessions; set = only events for this session.
80
80
  optional string session_id = 1;
81
+ // Optional feed-history cap for snapshot frames, in rendered plain rows.
82
+ optional uint32 feed_limit = 2;
81
83
  }
82
84
 
83
85
  service EventService {
@@ -393,6 +393,8 @@ message SessionGraphNodeStreamFrame {
393
393
 
394
394
  message SessionStateRequest {
395
395
  string session_id = 1;
396
+ // Optional feed-history cap in rendered plain rows. Omitted = full feed.
397
+ optional uint32 feed_limit = 2;
396
398
  }
397
399
 
398
400
  message UpdateSessionMetadataRequest {