Add SSH TOTP authentication support #350

Merged
ZacharyZcR merged 3 commits from feature-ssh-totp into dev-1.8.0 2025-10-08 01:01:48 +00:00
Showing only changes of commit 67e24b87a4 - Show all commits

View File

@@ -97,7 +97,7 @@ interface SSHSession {
interface PendingTOTPSession {
client: SSHClient;
finish: (responses: string[]) => void;
config: any;
config: import("ssh2").ConnectConfig;
createdAt: number;
sessionId: string;
}