feat: support ssh challenge-response

This commit is contained in:
Fu Diwei
2025-06-03 23:39:27 +08:00
parent 7d55383cf7
commit 9ad0e6fb57
8 changed files with 278 additions and 138 deletions

View File

@@ -379,7 +379,8 @@ export type AccessConfigForSlackBot = {
export type AccessConfigForSSH = {
host: string;
port: number;
username: string;
authMethod?: string;
username?: string;
password?: string;
key?: string;
keyPassphrase?: string;