@live-change/message-authentication-service 0.9.1 → 0.9.3

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.
Files changed (3) hide show
  1. package/config.js +14 -0
  2. package/package.json +3 -3
  3. package/sign.js +1 -1
package/config.js ADDED
@@ -0,0 +1,14 @@
1
+ import App from '@live-change/framework'
2
+ const app = App.app()
3
+ import definition from './definition.js'
4
+
5
+ const {
6
+ contactTypes = []
7
+ } = definition.config
8
+
9
+ const config = {
10
+ ...definition.config,
11
+ contactTypes
12
+ }
13
+
14
+ export default config
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/message-authentication-service",
3
- "version": "0.9.1",
3
+ "version": "0.9.3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -21,9 +21,9 @@
21
21
  "url": "https://www.viamage.com/"
22
22
  },
23
23
  "dependencies": {
24
- "@live-change/framework": "^0.9.1",
24
+ "@live-change/framework": "^0.9.3",
25
25
  "nodemailer": "^6.7.2"
26
26
  },
27
- "gitHead": "d00e08ee081d6993421e4573fc25588345aaabca",
27
+ "gitHead": "79f98e67cb1a52a38ced5deb20b0d62d395313cb",
28
28
  "type": "module"
29
29
  }
package/sign.js CHANGED
@@ -1,7 +1,7 @@
1
1
  import App from '@live-change/framework'
2
2
  const app = App.app()
3
3
  import definition from './definition.js'
4
- const config = definition.config
4
+ import config from "./config.js"
5
5
 
6
6
  import { contactProperties } from './authentication.js'
7
7