update depedencies, changes to support updated authentication-module
[squeep-indie-auther] / test / stub-db.js
index f973b8d417d0184ee3fdb61b9cf5230d2dec358c..054cc47d857810bbfeb33834857f1c665eecb1e2 100644 (file)
@@ -8,9 +8,12 @@ class StubDatabase extends Base {
     return [
       ...super._stubFns,
       'almanacGetAll',
+      'almanacUpsert',
       'authenticationGet',
       'authenticationSuccess',
       'authenticationUpsert',
+      'authenticationUpdateCredential',
+      'authenticationUpdateOTPKey',
       'profileIdentifierInsert',
       'profileIsValid',
       'profileScopeInsert',
@@ -27,9 +30,12 @@ class StubDatabase extends Base {
       'tokenGetByCodeId',
       'tokenRefreshRevokeByCodeId',
       'tokenRevokeByCodeId',
-      'tokensGetByIdentifier',    
+      'tokensGetByIdentifier',
+      'ticketRedeemed',
+      'ticketTokenPublished',
+      'ticketTokenGetUnpublished',
     ];
   }
 }
 
-module.exports = StubDatabase;
\ No newline at end of file
+module.exports = StubDatabase;