@live-change/framework 0.9.3 → 0.9.5

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.
@@ -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",
3
+ "version": "0.9.5",
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.3",
26
- "@live-change/uid": "^0.9.3"
25
+ "@live-change/dao": "^0.9.5",
26
+ "@live-change/uid": "^0.9.5"
27
27
  },
28
- "gitHead": "79f98e67cb1a52a38ced5deb20b0d62d395313cb"
28
+ "gitHead": "59f1d66de3a64b751308593e282e8635c0ecab7e"
29
29
  }