We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3af4ad5 commit 1de57d1Copy full SHA for 1de57d1
index.js
@@ -14,6 +14,7 @@ import filtersConsts from "./filters/consts.js";
14
import cluster from "./cluster/index.js";
15
import clusterConsts from "./cluster/consts.js";
16
import replicationConsts from "./data/replication/consts.js";
17
+import { AuthAccessTokenCredentials, AuthUserPasswordCredentials } from "./connection/auth.js";
18
19
require('babel-polyfill')
20
@@ -68,4 +69,8 @@ function initDbVersionProvider(conn) {
68
69
}
70
71
export default app;
72
+export { AuthUserPasswordCredentials, AuthAccessTokenCredentials };
73
module.exports = app;
74
+module.exports.AuthUserPasswordCredentials = AuthUserPasswordCredentials;
75
+module.exports.AuthAccessTokenCredentials = AuthAccessTokenCredentials;
76
+
0 commit comments