From 31613de0da03be7cd5898cc1dd0f5d8b670a0652 Mon Sep 17 00:00:00 2001 From: THeflinKeeper Date: Thu, 11 Apr 2024 15:12:17 -0700 Subject: [PATCH] testing if this value gets returned or not --- keeperapi/src/auth.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/keeperapi/src/auth.ts b/keeperapi/src/auth.ts index 67b0958..666ec82 100644 --- a/keeperapi/src/auth.ts +++ b/keeperapi/src/auth.ts @@ -815,7 +815,8 @@ export class Auth { expireIn: tfaExpiration } if(channel === TwoFactorChannelType.TWO_FA_CT_DUO && [TwoFactorPushType.TWO_FA_PUSH_DUO_PUSH, TwoFactorPushType.TWO_FA_PUSH_DUO_CALL].includes(pushType)) { - await this.executeRestAction(twoFASendDuoMessage(sendPushRequest)) + const testing = await this.executeRestAction(twoFASendDuoMessage(sendPushRequest)) + console.log(testing) } else { await this.executeRestAction(twoFactorSend2FAPushMessage(sendPushRequest)) }