@rkat/sdk 0.8.10 → 0.8.11

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.
@@ -1,4 +1,4 @@
1
- export declare const CONTRACT_VERSION = "0.8.10";
1
+ export declare const CONTRACT_VERSION = "0.8.11";
2
2
  export type Value = unknown;
3
3
  export interface WireUsage {
4
4
  input_tokens: number;
@@ -495,7 +495,7 @@ export interface InjectSystemContextParams {
495
495
  source?: string | null;
496
496
  }
497
497
  export interface InjectSystemContextResult {
498
- status: "applied" | "staged" | "duplicate";
498
+ status: "applied" | "duplicate";
499
499
  }
500
500
  export interface InterruptParams {
501
501
  session_id: string;
@@ -1195,7 +1195,7 @@ export interface MobAppendSystemContextParams {
1195
1195
  export interface MobAppendSystemContextResult {
1196
1196
  agent_identity: string;
1197
1197
  mob_id: string;
1198
- status: "applied" | "staged" | "duplicate";
1198
+ status: "applied" | "duplicate";
1199
1199
  }
1200
1200
  export interface MobFlowsResult {
1201
1201
  flows: string[];
@@ -1284,6 +1284,7 @@ export interface MobTurnStartParams {
1284
1284
  skill_refs?: SkillKey[] | null;
1285
1285
  structured_output_retries?: number | null;
1286
1286
  system_prompt?: string | null;
1287
+ transient_turn_context?: string | null;
1287
1288
  turn_tool_overlay?: PublicTurnToolOverlay | null;
1288
1289
  }
1289
1290
  export interface MobMemberStatusResult {
@@ -1335,6 +1336,7 @@ export interface MobSubmitWorkParams {
1335
1336
  member_ref: WireMemberRef;
1336
1337
  objective_id?: string | null;
1337
1338
  origin?: "external" | "internal";
1339
+ transient_turn_context?: string | null;
1338
1340
  work_ref?: string | null;
1339
1341
  }
1340
1342
  export interface MobSubmitWorkResult {
@@ -1932,7 +1934,9 @@ export interface BridgeDeliveryPayload {
1932
1934
  outcome_tracking?: "interaction" | null;
1933
1935
  protocol_version: BridgeProtocolVersion;
1934
1936
  supervisor: BridgePeerSpec;
1937
+ system_prompt?: string | null;
1935
1938
  transcript_interaction_id?: string | null;
1939
+ transient_turn_context?: string | null;
1936
1940
  turn?: BridgeTurnDirective | null;
1937
1941
  }
1938
1942
  export interface BridgeDeliveryResponse {
@@ -2640,7 +2644,9 @@ export interface BridgeCommandDeliverMemberInput {
2640
2644
  outcome_tracking?: "interaction" | null;
2641
2645
  protocol_version: BridgeProtocolVersion;
2642
2646
  supervisor: BridgePeerSpec;
2647
+ system_prompt?: string | null;
2643
2648
  transcript_interaction_id?: string | null;
2649
+ transient_turn_context?: string | null;
2644
2650
  turn?: BridgeTurnDirective | null;
2645
2651
  }
2646
2652
  export interface BridgeCommandObserveMember {
@@ -4493,6 +4499,7 @@ export type WireImageOperationPhase = WireImageOperationPhaseRequested | WireIma
4493
4499
  export interface WireSessionMessageSystem {
4494
4500
  content: string;
4495
4501
  created_at: string;
4502
+ identity?: Record<string, unknown> | null;
4496
4503
  role: "system";
4497
4504
  }
4498
4505
  export interface WireSessionMessageSystemNotice {