@live-change/framework 0.9.199 → 0.9.200

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.
@@ -59,7 +59,7 @@ async function prepareParameters(parameters, definition, service) {
59
59
  }
60
60
  for(let propName in definition) {
61
61
  let prop = definition[propName]
62
- if(prop.default && typeof out[propName] === 'undefined') {
62
+ if(prop.default && (typeof prop.default !== 'function') && typeof out[propName] === 'undefined') {
63
63
  out[propName] = prop.default
64
64
  }
65
65
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/framework",
3
- "version": "0.9.199",
3
+ "version": "0.9.200",
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.199",
26
- "@live-change/uid": "^0.9.199",
25
+ "@live-change/dao": "^0.9.200",
26
+ "@live-change/uid": "^0.9.200",
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": "1900043a10cf9ad49b9cc33a539fb973706de962"
31
+ "gitHead": "a509834e600a546297faa7d1534b6f52e66d2e66"
32
32
  }