@naturalcycles/db-lib 10.53.0 → 10.54.0
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/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@naturalcycles/db-lib",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "10.
|
|
4
|
+
"version": "10.54.0",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"@naturalcycles/js-lib": "^15",
|
|
7
7
|
"@naturalcycles/nodejs-lib": "^15"
|
|
8
8
|
},
|
|
9
9
|
"devDependencies": {
|
|
10
10
|
"@typescript/native-preview": "beta",
|
|
11
|
-
"@naturalcycles/dev-lib": "
|
|
11
|
+
"@naturalcycles/dev-lib": "20.49.0"
|
|
12
12
|
},
|
|
13
13
|
"files": [
|
|
14
14
|
"dist",
|
|
@@ -83,7 +83,7 @@ export class CommonTimeSeriesDao {
|
|
|
83
83
|
if (q.fromIncl) dbq.filter('ts', '>=', q.fromIncl)
|
|
84
84
|
if (q.toExcl) dbq.filter('ts', '<', q.toExcl)
|
|
85
85
|
|
|
86
|
-
const rows = (await this.cfg.db.runQuery(dbq)).rows as
|
|
86
|
+
const rows = (await this.cfg.db.runQuery(dbq)).rows as TimeSeriesRow[]
|
|
87
87
|
|
|
88
88
|
// todo: query from aggregated tables when step is above 'hour'
|
|
89
89
|
|