@live-change/message-authentication-service 0.2.13 → 0.2.14
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/authentication.js +2 -1
- package/definition.js +4 -1
- package/package.json +2 -2
package/authentication.js
CHANGED
|
@@ -154,7 +154,8 @@ definition.action({
|
|
|
154
154
|
const checkResults = await service.trigger({
|
|
155
155
|
type: 'check' + secretTypeUpperCase + 'Secret',
|
|
156
156
|
secret,
|
|
157
|
-
authentication
|
|
157
|
+
authentication,
|
|
158
|
+
client
|
|
158
159
|
})
|
|
159
160
|
authentication = checkResults[0]
|
|
160
161
|
const authenticationData = await Authentication.get(authentication)
|
package/definition.js
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
const app = require("@live-change/framework").app()
|
|
2
2
|
|
|
3
|
+
const security = require('@live-change/security-service')
|
|
4
|
+
|
|
3
5
|
const definition = app.createServiceDefinition({
|
|
4
|
-
name: "messageAuthentication"
|
|
6
|
+
name: "messageAuthentication",
|
|
7
|
+
use: [ security ]
|
|
5
8
|
})
|
|
6
9
|
|
|
7
10
|
module.exports = definition
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/message-authentication-service",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.14",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"@live-change/framework": "^0.5.7",
|
|
25
25
|
"nodemailer": "^6.7.2"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "93745ce6f6f819a9c77fb49fa6fd02fcaaf2b349"
|
|
28
28
|
}
|