@live-change/framework 0.9.2 → 0.9.4
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/lib/runtime/Dao.js +4 -2
- package/package.json +4 -4
package/lib/runtime/Dao.js
CHANGED
|
@@ -152,14 +152,16 @@ function prepareReactiveDaoDefinition(config, clientData) {
|
|
|
152
152
|
return new ReactiveDao.ObservablePromiseProxy(
|
|
153
153
|
definitionsPromise.then(services => new ReactiveDao.ObservableValue({
|
|
154
154
|
client: { ...clientData, sessionKey: undefined },
|
|
155
|
-
services
|
|
155
|
+
services,
|
|
156
|
+
config: config.clientConfig
|
|
156
157
|
}))
|
|
157
158
|
)
|
|
158
159
|
},
|
|
159
160
|
async get(parameters) {
|
|
160
161
|
return definitionsPromise.then(services => ({
|
|
161
162
|
client: { ...clientData, sessionKey: undefined },
|
|
162
|
-
services
|
|
163
|
+
services,
|
|
164
|
+
config: config.clientConfig
|
|
163
165
|
}))
|
|
164
166
|
}
|
|
165
167
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@live-change/framework",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.4",
|
|
4
4
|
"description": "Live Change Framework - ultimate solution for real time mobile/web apps",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -22,8 +22,8 @@
|
|
|
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.4",
|
|
26
|
+
"@live-change/uid": "^0.9.4"
|
|
27
27
|
},
|
|
28
|
-
"gitHead": "
|
|
28
|
+
"gitHead": "98fd51a1a5fea3ff8adff3662ef1e4a00774eed6"
|
|
29
29
|
}
|