feat(runtime): share chat commands and run login sequence
This commit is contained in:
parent
5535d0adac
commit
41b15efd4d
57 changed files with 1739 additions and 345 deletions
|
|
@ -228,6 +228,22 @@ public sealed class SessionStatusWriter
|
|||
error,
|
||||
});
|
||||
|
||||
public void LoginCommandFailed(
|
||||
string sessionId,
|
||||
int commandIndex,
|
||||
string command,
|
||||
string error) =>
|
||||
Write(new
|
||||
{
|
||||
v = VocabularyVersion,
|
||||
e = "loginCommandFailed",
|
||||
t = Now(),
|
||||
sessionId,
|
||||
commandIndex,
|
||||
command,
|
||||
error,
|
||||
});
|
||||
|
||||
public void Disconnected(string sessionId, string reason)
|
||||
{
|
||||
if (!IsEnabled)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue