Type Alias StudioAgentSessionEventExperimental

StudioAgentSessionEvent:
    | {
        event: StudioAiChatEvent;
        type: "chat";
    }
    | {
        result: StudioAgentToolDispatch;
        type: "toolResult";
    }
    | {
        report: StudioToolDiscoveryReport;
        type: "toolDiscovery";
    }
    | {
        detail?: string;
        status: McpNotificationStreamStatus;
        type: "toolWatch";
    }