@live-change/framework 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.
|
@@ -10,7 +10,9 @@ export interface ActionDefinitionSpecification {
|
|
|
10
10
|
access?: AccessSpecification,
|
|
11
11
|
skipValidation?: boolean,
|
|
12
12
|
validation?: (parameters: ActionParameters, context: ActionContext) => Promise<any>
|
|
13
|
-
waitForEvents?: boolean
|
|
13
|
+
waitForEvents?: boolean,
|
|
14
|
+
timeout?: number,
|
|
15
|
+
requestTimeout?: number
|
|
14
16
|
}
|
|
15
17
|
|
|
16
18
|
class ActionDefinition<T extends ActionDefinitionSpecification> {
|
|
@@ -44,7 +44,7 @@ class TriggerHandler {
|
|
|
44
44
|
...trigger
|
|
45
45
|
}, data, returnArray)
|
|
46
46
|
}, emit))
|
|
47
|
-
console.log("RESULT PROMISE", resultPromise, resultPromise.then)
|
|
47
|
+
//console.log("RESULT PROMISE", resultPromise, resultPromise.then)
|
|
48
48
|
resultPromise = resultPromise.then(async result => {
|
|
49
49
|
const processedResult = await processReturn(result, this.definition.returns, this.service)
|
|
50
50
|
return processedResult
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/framework",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.129",
|
|
4
4
|
"description": "Live Change Framework - ultimate solution for real time mobile/web apps",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
},
|
|
23
23
|
"homepage": "https://github.com/live-change/live-change-stack",
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@live-change/dao": "^0.9.
|
|
26
|
-
"@live-change/uid": "^0.9.
|
|
25
|
+
"@live-change/dao": "^0.9.129",
|
|
26
|
+
"@live-change/uid": "^0.9.129",
|
|
27
27
|
"typedoc": "0.28.3",
|
|
28
28
|
"typedoc-plugin-markdown": "^4.6.3",
|
|
29
29
|
"typedoc-plugin-rename-defaults": "^0.7.3"
|
|
30
30
|
},
|
|
31
|
-
"gitHead": "
|
|
31
|
+
"gitHead": "243c2cc85e556cd6f4de4cf65ae4bf8cb8d584a6"
|
|
32
32
|
}
|