@@ -497,6 +497,7 @@ public async Task<CopilotSession> CreateSessionAsync(SessionConfig config, Cance
497497 hasHooks ? true : null ,
498498 config . WorkingDirectory ,
499499 config . Streaming is true ? true : null ,
500+ config . IncludeSubAgentStreamingEvents ,
500501 config . McpServers ,
501502 "direct" ,
502503 config . CustomAgents ,
@@ -623,6 +624,7 @@ public async Task<CopilotSession> ResumeSessionAsync(string sessionId, ResumeSes
623624 config . EnableConfigDiscovery ,
624625 config . DisableResume is true ? true : null ,
625626 config . Streaming is true ? true : null ,
627+ config . IncludeSubAgentStreamingEvents ,
626628 config . McpServers ,
627629 "direct" ,
628630 config . CustomAgents ,
@@ -1638,6 +1640,7 @@ internal record CreateSessionRequest(
16381640 bool ? Hooks ,
16391641 string ? WorkingDirectory ,
16401642 bool ? Streaming ,
1643+ bool ? IncludeSubAgentStreamingEvents ,
16411644 IDictionary < string , McpServerConfig > ? McpServers ,
16421645 string ? EnvValueMode ,
16431646 IList < CustomAgentConfig > ? CustomAgents ,
@@ -1694,6 +1697,7 @@ internal record ResumeSessionRequest(
16941697 bool ? EnableConfigDiscovery ,
16951698 bool ? DisableResume ,
16961699 bool ? Streaming ,
1700+ bool ? IncludeSubAgentStreamingEvents ,
16971701 IDictionary < string , McpServerConfig > ? McpServers ,
16981702 string ? EnvValueMode ,
16991703 IList < CustomAgentConfig > ? CustomAgents ,
0 commit comments