@live-change/framework 0.6.12 → 0.6.15

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.
@@ -35,12 +35,12 @@ class Index {
35
35
  return this.service.dao.get(this.path(id), ReactiveDao.ObservableValue)
36
36
  }
37
37
 
38
- rangeObservable(range) {
39
- return this.service.dao.observable(this.rangePath(range), ReactiveDao.ObservableList)
38
+ rangeObservable(range, pathRange = null) {
39
+ return this.service.dao.observable(this.rangePath(range, pathRange), ReactiveDao.ObservableList)
40
40
  }
41
41
 
42
- async rangeGet(range) {
43
- return this.service.dao.get(this.path(range), ReactiveDao.ObservableList)
42
+ async rangeGet(range, pathRange = null) {
43
+ return this.service.dao.get(this.rangePath(range, pathRange), ReactiveDao.ObservableList)
44
44
  }
45
45
 
46
46
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-change/framework",
3
- "version": "0.6.12",
3
+ "version": "0.6.15",
4
4
  "description": "Live Change Framework - ultimate solution for real time mobile/web apps",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -21,13 +21,13 @@
21
21
  },
22
22
  "homepage": "https://github.com/live-change/live-change-framework",
23
23
  "devDependencies": {
24
- "@live-change/dao": "0.5.4",
25
- "@live-change/dao-websocket": "0.5.4",
26
- "@live-change/db": "0.5.17",
27
- "@live-change/db-store-level": "0.5.17",
28
- "@live-change/db-store-lmdb": "0.5.17",
24
+ "@live-change/dao": "0.5.6",
25
+ "@live-change/dao-websocket": "0.5.6",
26
+ "@live-change/db": "0.5.18",
27
+ "@live-change/db-store-level": "0.5.18",
28
+ "@live-change/db-store-lmdb": "0.5.18",
29
29
  "@live-change/sockjs": "0.4.1",
30
- "@live-change/uid": "^0.6.12",
30
+ "@live-change/uid": "^0.6.15",
31
31
  "cookie": "^0.4.1",
32
32
  "express": "^4.18.1",
33
33
  "os-service": "^2.2.0",
@@ -35,5 +35,5 @@
35
35
  "tape": "^5.3.2",
36
36
  "websocket": "^1.0.34"
37
37
  },
38
- "gitHead": "2971bd3c587931c7a33f8f424dd7b22a08e04ab0"
38
+ "gitHead": "9b5c0ac7db8788a5647685dde41577b38c994263"
39
39
  }