@live-change/user-service 0.9.215 → 0.9.216
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/authenticator.js +2 -1
- package/package.json +4 -4
package/authenticator.js
CHANGED
|
@@ -13,8 +13,9 @@ definition.authenticator({
|
|
|
13
13
|
return app.dao.observable(
|
|
14
14
|
['database', 'queryObject', app.databaseName, `(${
|
|
15
15
|
async (input, output, { session, authenticatedTableName, userTableName, slowQueryMs }) => {
|
|
16
|
-
const queryId = (Math.random()*10000).toFixed(0)
|
|
16
|
+
//const queryId = (Math.random()*10000).toFixed(0)
|
|
17
17
|
const ts = () => new Date().toISOString()
|
|
18
|
+
const startedAt = Date.now()
|
|
18
19
|
//output.debug(ts(), queryId, 'STARTING USER AUTH QUERY', { session })
|
|
19
20
|
const authenticatedTable = input.table(authenticatedTableName)
|
|
20
21
|
const userTable = input.table(userTableName)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/user-service",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.216",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -22,9 +22,9 @@
|
|
|
22
22
|
},
|
|
23
23
|
"type": "module",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@live-change/framework": "^0.9.
|
|
26
|
-
"@live-change/relations-plugin": "^0.9.
|
|
25
|
+
"@live-change/framework": "^0.9.216",
|
|
26
|
+
"@live-change/relations-plugin": "^0.9.216",
|
|
27
27
|
"pluralize": "^8.0.0"
|
|
28
28
|
},
|
|
29
|
-
"gitHead": "
|
|
29
|
+
"gitHead": "a4aab0fed8f73ef914870c83477488559b2ec3cd"
|
|
30
30
|
}
|