@powerhousedao/knowledge-note 1.0.3 → 1.0.4

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.
Files changed (30) hide show
  1. package/README.md +359 -122
  2. package/dist/editors/knowledge-vault/components/DriveExplorer.d.ts.map +1 -1
  3. package/dist/editors/knowledge-vault/components/DriveExplorer.js +8 -2
  4. package/dist/editors/knowledge-vault/components/SearchView.d.ts +2 -0
  5. package/dist/editors/knowledge-vault/components/SearchView.d.ts.map +1 -0
  6. package/dist/editors/knowledge-vault/components/SearchView.js +96 -0
  7. package/dist/editors/knowledge-vault/hooks/use-graph-search.d.ts +25 -0
  8. package/dist/editors/knowledge-vault/hooks/use-graph-search.d.ts.map +1 -0
  9. package/dist/editors/knowledge-vault/hooks/use-graph-search.js +198 -0
  10. package/dist/package.json +2 -1
  11. package/dist/processors/graph-indexer/embedder.d.ts +5 -0
  12. package/dist/processors/graph-indexer/embedder.d.ts.map +1 -0
  13. package/dist/processors/graph-indexer/embedder.js +27 -0
  14. package/dist/processors/graph-indexer/embedding-store.d.ts +11 -0
  15. package/dist/processors/graph-indexer/embedding-store.d.ts.map +1 -0
  16. package/dist/processors/graph-indexer/embedding-store.js +70 -0
  17. package/dist/processors/graph-indexer/index.d.ts.map +1 -1
  18. package/dist/processors/graph-indexer/index.js +48 -0
  19. package/dist/processors/graph-indexer/migrations.d.ts.map +1 -1
  20. package/dist/processors/graph-indexer/migrations.js +35 -0
  21. package/dist/processors/graph-indexer/query.d.ts +21 -0
  22. package/dist/processors/graph-indexer/query.d.ts.map +1 -1
  23. package/dist/processors/graph-indexer/query.js +154 -13
  24. package/dist/processors/graph-indexer/schema.d.ts +11 -0
  25. package/dist/processors/graph-indexer/schema.d.ts.map +1 -1
  26. package/dist/style.css +63 -0
  27. package/dist/subgraphs/knowledge-graph/subgraph.d.ts +321 -12
  28. package/dist/subgraphs/knowledge-graph/subgraph.d.ts.map +1 -1
  29. package/dist/subgraphs/knowledge-graph/subgraph.js +237 -15
  30. package/package.json +2 -1
@@ -3,6 +3,13 @@ export declare class KnowledgeGraphSubgraph extends BaseSubgraph {
3
3
  name: string;
4
4
  typeDefs: import("graphql").DocumentNode;
5
5
  resolvers: {
6
+ KnowledgeGraphNode: {
7
+ topics: (parent: {
8
+ documentId: string;
9
+ topics?: string[];
10
+ _driveId?: string;
11
+ }) => Promise<string[]>;
12
+ };
6
13
  Mutation: {
7
14
  knowledgeGraphReindex: (_: unknown, args: {
8
15
  driveId: string;
@@ -15,7 +22,20 @@ export declare class KnowledgeGraphSubgraph extends BaseSubgraph {
15
22
  Query: {
16
23
  knowledgeGraphNodes: (_: unknown, args: {
17
24
  driveId: string;
18
- }) => Promise<import("../../processors/graph-indexer/query.js").GraphNodeResult[]>;
25
+ }) => Promise<{
26
+ _driveId: string;
27
+ id: string;
28
+ documentId: string;
29
+ title: string | null;
30
+ description: string | null;
31
+ noteType: string | null;
32
+ status: string | null;
33
+ content: string | null;
34
+ author: string | null;
35
+ sourceOrigin: string | null;
36
+ createdAt: string | null;
37
+ updatedAt: string;
38
+ }[]>;
19
39
  knowledgeGraphEdges: (_: unknown, args: {
20
40
  driveId: string;
21
41
  }) => Promise<import("../../processors/graph-indexer/query.js").GraphEdgeResult[]>;
@@ -25,19 +45,75 @@ export declare class KnowledgeGraphSubgraph extends BaseSubgraph {
25
45
  knowledgeGraphNodeByDocumentId: (_: unknown, args: {
26
46
  driveId: string;
27
47
  documentId: string;
28
- }) => Promise<import("../../processors/graph-indexer/query.js").GraphNodeResult | undefined>;
48
+ }) => Promise<{
49
+ _driveId: string;
50
+ id: string;
51
+ documentId: string;
52
+ title: string | null;
53
+ description: string | null;
54
+ noteType: string | null;
55
+ status: string | null;
56
+ content: string | null;
57
+ author: string | null;
58
+ sourceOrigin: string | null;
59
+ createdAt: string | null;
60
+ updatedAt: string;
61
+ } | null>;
29
62
  knowledgeGraphOrphans: (_: unknown, args: {
30
63
  driveId: string;
31
- }) => Promise<import("../../processors/graph-indexer/query.js").GraphNodeResult[]>;
64
+ }) => Promise<{
65
+ _driveId: string;
66
+ id: string;
67
+ documentId: string;
68
+ title: string | null;
69
+ description: string | null;
70
+ noteType: string | null;
71
+ status: string | null;
72
+ content: string | null;
73
+ author: string | null;
74
+ sourceOrigin: string | null;
75
+ createdAt: string | null;
76
+ updatedAt: string;
77
+ }[]>;
32
78
  knowledgeGraphConnections: (_: unknown, args: {
33
79
  driveId: string;
34
80
  documentId: string;
35
81
  depth?: number;
36
- }) => Promise<import("../../processors/graph-indexer/query.js").ConnectionResult[]>;
82
+ }) => Promise<{
83
+ node: {
84
+ _driveId: string;
85
+ id: string;
86
+ documentId: string;
87
+ title: string | null;
88
+ description: string | null;
89
+ noteType: string | null;
90
+ status: string | null;
91
+ content: string | null;
92
+ author: string | null;
93
+ sourceOrigin: string | null;
94
+ createdAt: string | null;
95
+ updatedAt: string;
96
+ };
97
+ depth: number;
98
+ viaLinkType: string | null;
99
+ }[]>;
37
100
  knowledgeGraphNodesByStatus: (_: unknown, args: {
38
101
  driveId: string;
39
102
  status: string;
40
- }) => Promise<import("../../processors/graph-indexer/query.js").GraphNodeResult[]>;
103
+ }) => Promise<{
104
+ _driveId: string;
105
+ id: string;
106
+ documentId: string;
107
+ title: string | null;
108
+ description: string | null;
109
+ noteType: string | null;
110
+ status: string | null;
111
+ content: string | null;
112
+ author: string | null;
113
+ sourceOrigin: string | null;
114
+ createdAt: string | null;
115
+ updatedAt: string;
116
+ }[]>;
41
117
  knowledgeGraphBacklinks: (_: unknown, args: {
42
118
  driveId: string;
43
119
  documentId: string;
@@ -49,22 +125,241 @@ export declare class KnowledgeGraphSubgraph extends BaseSubgraph {
49
125
  driveId: string;
50
126
  query: string;
51
127
  limit?: number;
52
- }) => Promise<import("../../processors/graph-indexer/query.js").GraphNodeResult[]>;
128
+ }) => Promise<{
129
+ _driveId: string;
130
+ id: string;
131
+ documentId: string;
132
+ title: string | null;
133
+ description: string | null;
134
+ noteType: string | null;
135
+ status: string | null;
136
+ content: string | null;
137
+ author: string | null;
138
+ sourceOrigin: string | null;
139
+ createdAt: string | null;
140
+ updatedAt: string;
141
+ }[]>;
53
142
  knowledgeGraphTriangles: (_: unknown, args: {
54
143
  driveId: string;
55
144
  limit?: number;
56
145
  }) => Promise<{
57
- noteA: import("../../processors/graph-indexer/query.js").GraphNodeResult;
58
- noteB: import("../../processors/graph-indexer/query.js").GraphNodeResult;
59
- sharedTarget: import("../../processors/graph-indexer/query.js").GraphNodeResult;
146
+ noteA: {
147
+ _driveId: string;
148
+ id: string;
149
+ documentId: string;
150
+ title: string | null;
151
+ description: string | null;
152
+ noteType: string | null;
153
+ status: string | null;
154
+ content: string | null;
155
+ author: string | null;
156
+ sourceOrigin: string | null;
157
+ createdAt: string | null;
158
+ updatedAt: string;
159
+ };
160
+ noteB: {
161
+ _driveId: string;
162
+ id: string;
163
+ documentId: string;
164
+ title: string | null;
165
+ description: string | null;
166
+ noteType: string | null;
167
+ status: string | null;
168
+ content: string | null;
169
+ author: string | null;
170
+ sourceOrigin: string | null;
171
+ createdAt: string | null;
172
+ updatedAt: string;
173
+ };
174
+ sharedTarget: {
175
+ _driveId: string;
176
+ id: string;
177
+ documentId: string;
178
+ title: string | null;
179
+ description: string | null;
180
+ noteType: string | null;
181
+ status: string | null;
182
+ content: string | null;
183
+ author: string | null;
184
+ sourceOrigin: string | null;
185
+ createdAt: string | null;
186
+ updatedAt: string;
187
+ };
60
188
  }[]>;
61
189
  knowledgeGraphBridges: (_: unknown, args: {
62
190
  driveId: string;
63
- }) => Promise<import("../../processors/graph-indexer/query.js").GraphNodeResult[]>;
191
+ }) => Promise<{
192
+ _driveId: string;
193
+ id: string;
194
+ documentId: string;
195
+ title: string | null;
196
+ description: string | null;
197
+ noteType: string | null;
198
+ status: string | null;
199
+ content: string | null;
200
+ author: string | null;
201
+ sourceOrigin: string | null;
202
+ createdAt: string | null;
203
+ updatedAt: string;
204
+ }[]>;
64
205
  knowledgeGraphForwardLinks: (_: unknown, args: {
65
206
  driveId: string;
66
207
  documentId: string;
67
208
  }) => Promise<import("../../processors/graph-indexer/query.js").GraphEdgeResult[]>;
209
+ knowledgeGraphTopics: (_: unknown, args: {
210
+ driveId: string;
211
+ }) => Promise<import("../../processors/graph-indexer/query.js").TopicStatsResult[]>;
212
+ knowledgeGraphByTopic: (_: unknown, args: {
213
+ driveId: string;
214
+ topic: string;
215
+ }) => Promise<{
216
+ _driveId: string;
217
+ id: string;
218
+ documentId: string;
219
+ title: string | null;
220
+ description: string | null;
221
+ noteType: string | null;
222
+ status: string | null;
223
+ content: string | null;
224
+ author: string | null;
225
+ sourceOrigin: string | null;
226
+ createdAt: string | null;
227
+ updatedAt: string;
228
+ }[]>;
229
+ knowledgeGraphRelatedByTopic: (_: unknown, args: {
230
+ driveId: string;
231
+ documentId: string;
232
+ limit?: number;
233
+ }) => Promise<{
234
+ node: {
235
+ _driveId: string;
236
+ id: string;
237
+ documentId: string;
238
+ title: string | null;
239
+ description: string | null;
240
+ noteType: string | null;
241
+ status: string | null;
242
+ content: string | null;
243
+ author: string | null;
244
+ sourceOrigin: string | null;
245
+ createdAt: string | null;
246
+ updatedAt: string;
247
+ };
248
+ sharedTopics: string[];
249
+ sharedTopicCount: number;
250
+ }[]>;
251
+ knowledgeGraphFullSearch: (_: unknown, args: {
252
+ driveId: string;
253
+ query: string;
254
+ limit?: number;
255
+ }) => Promise<{
256
+ _driveId: string;
257
+ id: string;
258
+ documentId: string;
259
+ title: string | null;
260
+ description: string | null;
261
+ noteType: string | null;
262
+ status: string | null;
263
+ content: string | null;
264
+ author: string | null;
265
+ sourceOrigin: string | null;
266
+ createdAt: string | null;
267
+ updatedAt: string;
268
+ }[]>;
269
+ knowledgeGraphByAuthor: (_: unknown, args: {
270
+ driveId: string;
271
+ author: string;
272
+ }) => Promise<{
273
+ _driveId: string;
274
+ id: string;
275
+ documentId: string;
276
+ title: string | null;
277
+ description: string | null;
278
+ noteType: string | null;
279
+ status: string | null;
280
+ content: string | null;
281
+ author: string | null;
282
+ sourceOrigin: string | null;
283
+ createdAt: string | null;
284
+ updatedAt: string;
285
+ }[]>;
286
+ knowledgeGraphByOrigin: (_: unknown, args: {
287
+ driveId: string;
288
+ origin: string;
289
+ }) => Promise<{
290
+ _driveId: string;
291
+ id: string;
292
+ documentId: string;
293
+ title: string | null;
294
+ description: string | null;
295
+ noteType: string | null;
296
+ status: string | null;
297
+ content: string | null;
298
+ author: string | null;
299
+ sourceOrigin: string | null;
300
+ createdAt: string | null;
301
+ updatedAt: string;
302
+ }[]>;
303
+ knowledgeGraphRecent: (_: unknown, args: {
304
+ driveId: string;
305
+ limit?: number;
306
+ since?: string;
307
+ }) => Promise<{
308
+ _driveId: string;
309
+ id: string;
310
+ documentId: string;
311
+ title: string | null;
312
+ description: string | null;
313
+ noteType: string | null;
314
+ status: string | null;
315
+ content: string | null;
316
+ author: string | null;
317
+ sourceOrigin: string | null;
318
+ createdAt: string | null;
319
+ updatedAt: string;
320
+ }[]>;
321
+ knowledgeGraphSemanticSearch: (_: unknown, args: {
322
+ driveId: string;
323
+ query: string;
324
+ limit?: number;
325
+ }) => Promise<{
326
+ node: {
327
+ _driveId: string;
328
+ id: string;
329
+ documentId: string;
330
+ title: string | null;
331
+ description: string | null;
332
+ noteType: string | null;
333
+ status: string | null;
334
+ content: string | null;
335
+ author: string | null;
336
+ sourceOrigin: string | null;
337
+ createdAt: string | null;
338
+ updatedAt: string;
339
+ };
340
+ similarity: number;
341
+ }[]>;
342
+ knowledgeGraphSimilar: (_: unknown, args: {
343
+ driveId: string;
344
+ documentId: string;
345
+ limit?: number;
346
+ }) => Promise<{
347
+ node: {
348
+ _driveId: string;
349
+ id: string;
350
+ documentId: string;
351
+ title: string | null;
352
+ description: string | null;
353
+ noteType: string | null;
354
+ status: string | null;
355
+ content: string | null;
356
+ author: string | null;
357
+ sourceOrigin: string | null;
358
+ createdAt: string | null;
359
+ updatedAt: string;
360
+ };
361
+ similarity: number;
362
+ }[]>;
68
363
  knowledgeGraphDebug: (_: unknown, args: {
69
364
  driveId: string;
70
365
  }) => Promise<{
@@ -77,7 +372,13 @@ export declare class KnowledgeGraphSubgraph extends BaseSubgraph {
77
372
  description: string | null;
78
373
  noteType: string | null;
79
374
  status: string | null;
375
+ content: string | null;
376
+ author: string | null;
377
+ sourceOrigin: string | null;
378
+ createdAt: string | null;
379
+ topics: never[];
80
380
  updatedAt: string;
381
+ _driveId: string;
81
382
  }[];
82
383
  rawEdges: {
83
384
  id: string;
@@ -94,13 +395,21 @@ export declare class KnowledgeGraphSubgraph extends BaseSubgraph {
94
395
  constructor(args: SubgraphArgs);
95
396
  /**
96
397
  * Returns a Kysely<DB> instance scoped to the processor's namespace
97
- * for the given drive. Centralizes the Legacy IRelationalDb cast.
398
+ * for the given drive. Centralizes the Legacy -> IRelationalDb cast.
399
+ */
400
+ /**
401
+ * Read-only namespaced query builder — use for all SELECT resolvers.
98
402
  */
99
403
  private getDb;
404
+ /**
405
+ * Writable namespaced Kysely instance — use for reindex (INSERT/DELETE).
406
+ * createNamespace returns a full Kysely, not the read-only query builder.
407
+ */
408
+ private getWritableDb;
100
409
  private getQuery;
101
410
  /**
102
411
  * Ensures a bai/knowledge-graph document exists in the given drive.
103
- * Called lazily on first query supports API/plugin access without
412
+ * Called lazily on first query -- supports API/plugin access without
104
413
  * requiring the Connect UI to have initialized the drive first.
105
414
  */
106
415
  private ensuredDrives;
@@ -1 +1 @@
1
- {"version":3,"file":"subgraph.d.ts","sourceRoot":"","sources":["../../../subgraphs/knowledge-graph/subgraph.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,YAAY,EAAE,KAAK,YAAY,EAAE,MAAM,4BAA4B,CAAC;AAO7E,qBAAa,sBAAuB,SAAQ,YAAY;IAC7C,IAAI,SAAoB;IAExB,QAAQ,iCAqGf;IAEO,SAAS;;uCAEa,OAAO,QAAQ;gBAAE,OAAO,EAAE,MAAM,CAAA;aAAE;8BAiLtC,MAAM;8BAAgB,MAAM;wBAAU,MAAM,EAAE;;;;qCA7KtC,OAAO,QAAQ;gBAAE,OAAO,EAAE,MAAM,CAAA;aAAE;qCAMlC,OAAO,QAAQ;gBAAE,OAAO,EAAE,MAAM,CAAA;aAAE;qCAMlC,OAAO,QAAQ;gBAAE,OAAO,EAAE,MAAM,CAAA;aAAE;gDAO5D,OAAO,QACJ;gBAAE,OAAO,EAAE,MAAM,CAAC;gBAAC,UAAU,EAAE,MAAM,CAAA;aAAE;uCAMd,OAAO,QAAQ;gBAAE,OAAO,EAAE,MAAM,CAAA;aAAE;2CAM9D,OAAO,QACJ;gBAAE,OAAO,EAAE,MAAM,CAAC;gBAAC,UAAU,EAAE,MAAM,CAAC;gBAAC,KAAK,CAAC,EAAE,MAAM,CAAA;aAAE;6CAO1D,OAAO,QACJ;gBAAE,OAAO,EAAE,MAAM,CAAC;gBAAC,MAAM,EAAE,MAAM,CAAA;aAAE;yCAOtC,OAAO,QACJ;gBAAE,OAAO,EAAE,MAAM,CAAC;gBAAC,UAAU,EAAE,MAAM,CAAA;aAAE;uCAMd,OAAO,QAAQ;gBAAE,OAAO,EAAE,MAAM,CAAA;aAAE;sCAM9D,OAAO,QACJ;gBAAE,OAAO,EAAE,MAAM,CAAC;gBAAC,KAAK,EAAE,MAAM,CAAC;gBAAC,KAAK,CAAC,EAAE,MAAM,CAAA;aAAE;yCAOrD,OAAO,QACJ;gBAAE,OAAO,EAAE,MAAM,CAAC;gBAAC,KAAK,CAAC,EAAE,MAAM,CAAA;aAAE;;;;;uCAWV,OAAO,QAAQ;gBAAE,OAAO,EAAE,MAAM,CAAA;aAAE;4CAM9D,OAAO,QACJ;gBAAE,OAAO,EAAE,MAAM,CAAC;gBAAC,UAAU,EAAE,MAAM,CAAA;aAAE;qCAMhB,OAAO,QAAQ;gBAAE,OAAO,EAAE,MAAM,CAAA;aAAE;;;;;;;;;;;;;;;;;;;;;;;MAiDnE;gBAEU,IAAI,EAAE,YAAY;IAI9B;;;OAGG;IACH,OAAO,CAAC,KAAK;IAOb,OAAO,CAAC,QAAQ;IAIhB;;;;OAIG;IACH,OAAO,CAAC,aAAa,CAAqB;YAE5B,YAAY;YAqGZ,cAAc;CAmD7B"}
1
+ {"version":3,"file":"subgraph.d.ts","sourceRoot":"","sources":["../../../subgraphs/knowledge-graph/subgraph.ts"],"names":[],"mappings":"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"}