mirror of
https://github.com/davidkaya/aryx.git
synced 2026-08-26 21:03:58 +02:00
feat: surface MCP OAuth sidecar events
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
@@ -309,6 +309,23 @@ public sealed class UserInputRequestedEventDto : SidecarEventDto
|
||||
public bool? AllowFreeform { get; init; }
|
||||
}
|
||||
|
||||
public sealed class McpOauthStaticClientConfigDto
|
||||
{
|
||||
public string ClientId { get; init; } = string.Empty;
|
||||
public bool? PublicClient { get; init; }
|
||||
}
|
||||
|
||||
public sealed class McpOauthRequiredEventDto : SidecarEventDto
|
||||
{
|
||||
public string SessionId { get; init; } = string.Empty;
|
||||
public string OauthRequestId { get; init; } = string.Empty;
|
||||
public string? AgentId { get; init; }
|
||||
public string? AgentName { get; init; }
|
||||
public string ServerName { get; init; } = string.Empty;
|
||||
public string ServerUrl { get; init; } = string.Empty;
|
||||
public McpOauthStaticClientConfigDto? StaticClientConfig { get; init; }
|
||||
}
|
||||
|
||||
public sealed class ExitPlanModeRequestedEventDto : SidecarEventDto
|
||||
{
|
||||
public string SessionId { get; init; } = string.Empty;
|
||||
|
||||
Reference in New Issue
Block a user