token checking

This commit is contained in:
Jan Prochazka
2024-08-14 15:34:08 +02:00
parent 83ce5710ae
commit a9f9085daa
3 changed files with 13 additions and 5 deletions

View File

@@ -149,7 +149,7 @@ export interface EngineDriver {
summaryCommand(pool, command, row): Promise<void>;
startProfiler(pool, options): Promise<any>;
stopProfiler(pool, profiler): Promise<void>;
getRedirectAuthUrl(connection, options): Promise<string>;
getRedirectAuthUrl(connection, options): Promise<{ url: string; sid: string }>;
getAuthTokenFromCode(connection, options): Promise<string>;
getAccessTokenFromAuth(connection, req): Promise<string | null>;