@live-change/message-authentication-service 0.9.128 → 0.9.129

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 (2) hide show
  1. package/package.json +3 -3
  2. package/sign.js +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/message-authentication-service",
3
- "version": "0.9.128",
3
+ "version": "0.9.129",
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.128",
24
+ "@live-change/framework": "^0.9.129",
25
25
  "nodemailer": "^6.7.2"
26
26
  },
27
- "gitHead": "f6e19206562652cf31d6e44df80523748b694ead",
27
+ "gitHead": "243c2cc85e556cd6f4de4cf65ae4bf8cb8d584a6",
28
28
  "type": "module"
29
29
  }
package/sign.js CHANGED
@@ -74,6 +74,7 @@ for(const contactType of config.contactTypes) {
74
74
  definition.action({
75
75
  name: 'signUp' + contactTypeUName,
76
76
  waitForEvents: true,
77
+ timeout: 20*1000,
77
78
  properties: {
78
79
  ...contactTypeProperties
79
80
  },
@@ -95,6 +96,7 @@ for(const contactType of config.contactTypes) {
95
96
  definition.action({
96
97
  name: 'signIn' + contactTypeUName,
97
98
  waitForEvents: true,
99
+ timeout: 20*1000,
98
100
  properties: {
99
101
  ...contactTypeProperties
100
102
  },
@@ -118,6 +120,7 @@ for(const contactType of config.contactTypes) {
118
120
  if(contactConfig.connect || config.connect ) {
119
121
  definition.action({
120
122
  name: 'connect' + contactTypeUName,
123
+ timeout: 20*1000,
121
124
  properties: {
122
125
  ...contactTypeProperties
123
126
  },
@@ -174,6 +177,7 @@ for(const contactType of config.contactTypes) {
174
177
  definition.action({
175
178
  name: 'signInOrSignUp' + contactTypeUName,
176
179
  waitForEvents: true,
180
+ timeout: 20*1000,
177
181
  properties: {
178
182
  ...contactTypeProperties
179
183
  },