@powerhousedao/reactor-api 1.11.2 → 1.12.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/CHANGELOG.md +13 -3
- package/dist/index.d.ts +2 -2
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
- package/src/subgraphs/manager.ts +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,19 @@
|
|
|
1
|
-
## 1.
|
|
1
|
+
## 1.12.0 (2024-12-16)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- updated nx version ([c9690c35](https://github.com/powerhouse-inc/powerhouse/commit/c9690c35))
|
|
2
6
|
|
|
3
7
|
### 🧱 Updated Dependencies
|
|
4
8
|
|
|
5
|
-
- Updated document-model-libs to 1.
|
|
6
|
-
- Updated document-drive to 1.
|
|
9
|
+
- Updated document-model-libs to 1.123.0
|
|
10
|
+
- Updated document-drive to 1.12.0
|
|
11
|
+
- Updated document-model to 2.14.0
|
|
12
|
+
- Updated @powerhousedao/scalars to 1.14.0
|
|
13
|
+
|
|
14
|
+
### ❤️ Thank You
|
|
15
|
+
|
|
16
|
+
- Frank
|
|
7
17
|
|
|
8
18
|
## 1.2.0 (2024-10-29)
|
|
9
19
|
|
package/dist/index.d.ts
CHANGED
|
@@ -5,12 +5,12 @@ import { Operation, Document, DocumentModel, Action, OperationScope, State, Base
|
|
|
5
5
|
import { Unsubscribe } from 'nanoevents';
|
|
6
6
|
import express, { Express } from 'express';
|
|
7
7
|
import { Pool } from 'pg';
|
|
8
|
+
import { IAnalyticsStore } from '@powerhousedao/analytics-engine-core';
|
|
9
|
+
export * from '@powerhousedao/analytics-engine-core';
|
|
8
10
|
import { IncomingHttpHeaders } from 'http';
|
|
9
11
|
import * as graphql from 'graphql';
|
|
10
12
|
import { DocumentNode } from 'graphql';
|
|
11
13
|
import { Knex } from 'knex';
|
|
12
|
-
import { IAnalyticsStore } from '@powerhousedao/analytics-engine-core';
|
|
13
|
-
export * from '@powerhousedao/analytics-engine-core';
|
|
14
14
|
import { GraphQLResolverMap } from '@apollo/subgraph/dist/schema-helper';
|
|
15
15
|
import { AnalyticsModel } from '@powerhousedao/analytics-engine-graphql';
|
|
16
16
|
import { GraphQLResolverMap as GraphQLResolverMap$1 } from '@apollo/subgraph/dist/schema-helper/resolverMap.js';
|
package/dist/index.js
CHANGED
|
@@ -29408,15 +29408,15 @@ var SubgraphManager = class {
|
|
|
29408
29408
|
this.reactor = reactor;
|
|
29409
29409
|
this.operationalStore = operationalStore;
|
|
29410
29410
|
this.analyticsStore = analyticsStore;
|
|
29411
|
-
|
|
29411
|
+
({
|
|
29412
29412
|
reactor: this.reactor,
|
|
29413
29413
|
operationalStore: this.operationalStore,
|
|
29414
29414
|
analyticsStore: this.analyticsStore,
|
|
29415
29415
|
subgraphManager: this
|
|
29416
|
-
};
|
|
29417
|
-
this.
|
|
29418
|
-
this.
|
|
29419
|
-
this.
|
|
29416
|
+
});
|
|
29417
|
+
this.registerSubgraph(SystemSubgraph);
|
|
29418
|
+
this.registerSubgraph(DriveSubgraph);
|
|
29419
|
+
this.registerSubgraph(AnalyticsSubgraph);
|
|
29420
29420
|
}
|
|
29421
29421
|
reactorRouter = Router();
|
|
29422
29422
|
contextFields = {};
|