@powerhousedao/reactor-api 1.10.0 → 1.10.1
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/CHANGELOG.md +5 -12
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/src/subgraphs/analytics/db.ts +5 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,24 +1,17 @@
|
|
|
1
|
-
## 1.10.
|
|
2
|
-
|
|
3
|
-
### 🚀 Features
|
|
4
|
-
|
|
5
|
-
- **reactor-api:** Added support for processors ([#655](https://github.com/powerhouse-inc/powerhouse/pull/655))
|
|
1
|
+
## 1.10.1 (2024-12-11)
|
|
6
2
|
|
|
7
3
|
### 🩹 Fixes
|
|
8
4
|
|
|
9
|
-
- **
|
|
5
|
+
- **reactor-api:** use timestamp as data type ([#676](https://github.com/powerhouse-inc/powerhouse/pull/676))
|
|
10
6
|
|
|
11
7
|
### 🧱 Updated Dependencies
|
|
12
8
|
|
|
13
|
-
- Updated document-model-libs to 1.121.
|
|
14
|
-
- Updated document-drive to 1.
|
|
15
|
-
- Updated document-model to 2.11.0
|
|
16
|
-
- Updated @powerhousedao/scalars to 1.13.0
|
|
9
|
+
- Updated document-model-libs to 1.121.1
|
|
10
|
+
- Updated document-drive to 1.10.0
|
|
17
11
|
|
|
18
12
|
### ❤️ Thank You
|
|
19
13
|
|
|
20
|
-
-
|
|
21
|
-
- ryanwolhuter @ryanwolhuter
|
|
14
|
+
- frankp.eth @froid1911
|
|
22
15
|
|
|
23
16
|
## 1.2.0 (2024-10-29)
|
|
24
17
|
|
package/dist/index.js
CHANGED
|
@@ -24469,8 +24469,8 @@ async function createSchema(knex2) {
|
|
|
24469
24469
|
await knex2.schema.createTable("AnalyticsSeries", (table) => {
|
|
24470
24470
|
table.increments("id").primary();
|
|
24471
24471
|
table.string("source").notNullable().index("analyticsseries_source_index");
|
|
24472
|
-
table.
|
|
24473
|
-
table.
|
|
24472
|
+
table.timestamp("start").notNullable().index("analyticsseries_start_index");
|
|
24473
|
+
table.timestamp("end").nullable().index("analyticsseries_end_index");
|
|
24474
24474
|
table.string("metric").notNullable().index("analyticsseries_metric_index");
|
|
24475
24475
|
table.float("value").notNullable().index("analyticsseries_value_index");
|
|
24476
24476
|
table.string("unit").nullable().index("analyticsseries_unit_index");
|