@powerhousedao/reactor-api 1.7.0 → 1.8.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 +3 -18
- package/dist/index.d.ts +51 -20
- package/dist/index.js +350 -150
- package/dist/index.js.map +1 -1
- package/package.json +12 -7
- package/src/router.ts +141 -93
- package/src/server.ts +15 -4
- package/src/subgraphs/drive/index.ts +4 -0
- package/src/subgraphs/drive/resolvers.ts +15 -14
- package/{dist/schema-2U4EFPTT.graphql → src/subgraphs/drive/type-defs.ts} +2 -1
- package/src/subgraphs/index.ts +2 -14
- package/src/subgraphs/system/index.ts +4 -0
- package/src/subgraphs/system/resolvers.ts +2 -1
- package/src/subgraphs/system/type-defs.ts +18 -0
- package/src/types.ts +15 -1
- package/src/utils/create-schema.ts +6 -5
- package/dist/schema-2TGHGOBQ.graphql +0 -18
- package/src/subgraphs/drive/schema.graphql +0 -135
- package/src/subgraphs/drive/subgraph.ts +0 -16
- package/src/subgraphs/system/schema.graphql +0 -18
- package/src/subgraphs/system/subgraph.ts +0 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,24 +1,9 @@
|
|
|
1
|
-
## 1.
|
|
2
|
-
|
|
3
|
-
### 🚀 Features
|
|
4
|
-
|
|
5
|
-
- **design-system:** bump storybook deps ([f21d9539](https://github.com/powerhouse-inc/powerhouse/commit/f21d9539))
|
|
6
|
-
- **monorepo:** remove eslint args ([4677e343](https://github.com/powerhouse-inc/powerhouse/commit/4677e343))
|
|
7
|
-
- **monorepo:** readd vite for reactor local ([24a9e56b](https://github.com/powerhouse-inc/powerhouse/commit/24a9e56b))
|
|
8
|
-
- **monorepo:** add linting for switchboard gui ([dc56c561](https://github.com/powerhouse-inc/powerhouse/commit/dc56c561))
|
|
9
|
-
- **monorepo:** gitignore tsbuildinfo files ([d676a703](https://github.com/powerhouse-inc/powerhouse/commit/d676a703))
|
|
10
|
-
- **monorepo:** unify typescript and linting ([24b9a205](https://github.com/powerhouse-inc/powerhouse/commit/24b9a205))
|
|
1
|
+
## 1.8.1 (2024-12-05)
|
|
11
2
|
|
|
12
3
|
### 🧱 Updated Dependencies
|
|
13
4
|
|
|
14
|
-
- Updated document-model-libs to 1.
|
|
15
|
-
- Updated document-drive to 1.
|
|
16
|
-
- Updated document-model to 2.8.0
|
|
17
|
-
- Updated @powerhousedao/scalars to 1.10.0
|
|
18
|
-
|
|
19
|
-
### ❤️ Thank You
|
|
20
|
-
|
|
21
|
-
- ryanwolhuter @ryanwolhuter
|
|
5
|
+
- Updated document-model-libs to 1.118.1
|
|
6
|
+
- Updated document-drive to 1.7.1
|
|
22
7
|
|
|
23
8
|
## 1.2.0 (2024-10-29)
|
|
24
9
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
|
+
import { PGlite } from '@electric-sql/pglite';
|
|
1
2
|
import { Trigger, PullResponderTriggerData, DocumentDriveDocument, ListenerFilter, DocumentDriveLocalState, ListenerCallInfo, DocumentDriveAction, DocumentDriveState } from 'document-model-libs/document-drive';
|
|
2
3
|
import { Document, OperationScope, Operation, DocumentModel, Action, ActionContext, BaseAction, State, CreateChildDocumentInput, ReducerOptions, Signal } from 'document-model/document';
|
|
3
4
|
import { Unsubscribe } from 'nanoevents';
|
|
4
|
-
import express, { Express
|
|
5
|
+
import express, { Express } from 'express';
|
|
6
|
+
import pg from 'pg';
|
|
7
|
+
import { PgDatabase } from 'drizzle-orm/pg-core';
|
|
8
|
+
import { IncomingHttpHeaders } from 'http';
|
|
5
9
|
import * as graphql from 'graphql';
|
|
6
10
|
import { GraphQLResolverMap } from '@apollo/subgraph/dist/schema-helper';
|
|
7
11
|
|
|
@@ -279,12 +283,6 @@ type PublicPart<T> = Pick<T, PublicKeys<T>>;
|
|
|
279
283
|
type IBaseDocumentDriveServer = PublicPart<AbstractDocumentDriveServer>;
|
|
280
284
|
type IDocumentDriveServer = IBaseDocumentDriveServer & IDefaultDrivesManager & IReadModeDriveServer;
|
|
281
285
|
|
|
282
|
-
type Options = {
|
|
283
|
-
express?: Express;
|
|
284
|
-
port?: number;
|
|
285
|
-
};
|
|
286
|
-
declare function startAPI(reactor: IDocumentDriveServer, options: Options): Promise<express.Express>;
|
|
287
|
-
|
|
288
286
|
type InternalListenerModule = {
|
|
289
287
|
name: string;
|
|
290
288
|
options: Omit<Listener, "driveId">;
|
|
@@ -299,21 +297,54 @@ declare class InternalListenerManager {
|
|
|
299
297
|
registerInternalListener(module: InternalListenerModule): Promise<void>;
|
|
300
298
|
}
|
|
301
299
|
|
|
302
|
-
|
|
300
|
+
interface Context {
|
|
301
|
+
headers: IncomingHttpHeaders;
|
|
302
|
+
driveId: string | undefined;
|
|
303
|
+
driveServer: IDocumentDriveServer;
|
|
304
|
+
db: PgDatabase<any, any, any>;
|
|
305
|
+
}
|
|
306
|
+
type Processor = {
|
|
303
307
|
name: string;
|
|
304
|
-
|
|
305
|
-
|
|
308
|
+
resolvers: any;
|
|
309
|
+
typeDefs: string;
|
|
310
|
+
options?: Omit<Listener, "driveId">;
|
|
311
|
+
transmit?: (strands: InternalTransmitterUpdate[]) => Promise<void>;
|
|
312
|
+
};
|
|
306
313
|
|
|
307
|
-
declare
|
|
308
|
-
|
|
309
|
-
declare
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
314
|
+
declare const Pool$1: typeof pg.Pool;
|
|
315
|
+
|
|
316
|
+
declare class ReactorRouterManager {
|
|
317
|
+
#private;
|
|
318
|
+
private readonly path;
|
|
319
|
+
private readonly app;
|
|
320
|
+
private readonly driveServer;
|
|
321
|
+
private readonly client;
|
|
322
|
+
private listenerManager;
|
|
323
|
+
private database;
|
|
324
|
+
private reactorRouter;
|
|
325
|
+
private contextFields;
|
|
326
|
+
private registry;
|
|
327
|
+
constructor(path: string, app: express.Express, driveServer: IDocumentDriveServer, client?: PGlite | typeof Pool$1, listenerManager?: InternalListenerManager);
|
|
328
|
+
init(): Promise<void>;
|
|
329
|
+
updateRouter(): Promise<void>;
|
|
330
|
+
registerProcessor(processor: Processor): Promise<void>;
|
|
331
|
+
getAdditionalContextFields: () => Record<string, any>;
|
|
332
|
+
setAdditionalContextFields(fields: Record<string, any>): void;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
declare const Pool: typeof pg.Pool;
|
|
336
|
+
|
|
337
|
+
type Options = {
|
|
338
|
+
express?: Express;
|
|
339
|
+
port?: number;
|
|
340
|
+
client?: PGlite | typeof Pool | undefined;
|
|
341
|
+
};
|
|
342
|
+
declare function startAPI(reactor: IDocumentDriveServer, options: Options): Promise<{
|
|
343
|
+
app: express.Express;
|
|
344
|
+
reactorRouterManager: ReactorRouterManager;
|
|
345
|
+
}>;
|
|
315
346
|
|
|
316
|
-
declare const createSchema: (documentDriveServer: IDocumentDriveServer, resolvers: GraphQLResolverMap
|
|
347
|
+
declare const createSchema: (documentDriveServer: IDocumentDriveServer, resolvers: GraphQLResolverMap<Context>, typeDefs: string) => graphql.GraphQLSchema;
|
|
317
348
|
declare const getDocumentModelTypeDefs: (documentDriveServer: IDocumentDriveServer, typeDefs: string) => graphql.DocumentNode;
|
|
318
349
|
|
|
319
|
-
export {
|
|
350
|
+
export { ReactorRouterManager, createSchema, getDocumentModelTypeDefs, startAPI };
|