@theway-ai/sdk 0.1.23 → 0.1.25

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.23",
3
+ "version": "0.1.25",
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": {
@@ -8,6 +8,7 @@ package theway.grpc.v1;
8
8
  import "commands.proto";
9
9
  import "extensions.proto";
10
10
  import "graph_engine.proto";
11
+ import "settings.proto";
11
12
 
12
13
  // Incremental transcript patch: appends/replacements since a consumer cursor.
13
14
  message FeedBlockPatch {
@@ -460,6 +461,10 @@ message ActivateSessionRequest {
460
461
  string client_key = 2;
461
462
  optional string name = 3;
462
463
  SessionRuntimeContext runtime = 4;
464
+ // Session-scoped MCP servers: layered over the daemon-level set for this
465
+ // session only, a same-name server replaces the daemon entry. Credentials
466
+ // stay in the daemon's auth.json (`token_keychain_ref`), never on the wire.
467
+ repeated ProvisionedMcpServer mcp_servers = 5;
463
468
  }
464
469
 
465
470
  message ActivateSessionResponse {