@dxos/plugin-graph 0.8.4-main.c85a9c8dae → 0.8.4-main.d05673bc65

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/plugin-graph",
3
- "version": "0.8.4-main.c85a9c8dae",
3
+ "version": "0.8.4-main.d05673bc65",
4
4
  "description": "DXOS Surface plugin for constructing knowledge graphs",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -29,14 +29,14 @@
29
29
  "src"
30
30
  ],
31
31
  "dependencies": {
32
- "@dxos/async": "0.8.4-main.c85a9c8dae",
33
- "@dxos/app-toolkit": "0.8.4-main.c85a9c8dae",
34
- "@dxos/app-framework": "0.8.4-main.c85a9c8dae",
35
- "@dxos/util": "0.8.4-main.c85a9c8dae",
36
- "@dxos/operation": "0.8.4-main.c85a9c8dae",
37
- "@dxos/debug": "0.8.4-main.c85a9c8dae",
38
- "@dxos/effect": "0.8.4-main.c85a9c8dae",
39
- "@dxos/app-graph": "0.8.4-main.c85a9c8dae"
32
+ "@dxos/app-graph": "0.8.4-main.d05673bc65",
33
+ "@dxos/app-framework": "0.8.4-main.d05673bc65",
34
+ "@dxos/debug": "0.8.4-main.d05673bc65",
35
+ "@dxos/effect": "0.8.4-main.d05673bc65",
36
+ "@dxos/util": "0.8.4-main.d05673bc65",
37
+ "@dxos/app-toolkit": "0.8.4-main.d05673bc65",
38
+ "@dxos/async": "0.8.4-main.d05673bc65",
39
+ "@dxos/operation": "0.8.4-main.d05673bc65"
40
40
  },
41
41
  "devDependencies": {
42
42
  "@effect-atom/atom-react": "^0.5.0",
@@ -47,8 +47,8 @@
47
47
  "react": "~19.2.3",
48
48
  "react-dom": "~19.2.3",
49
49
  "vite": "^7.1.11",
50
- "@dxos/react-client": "0.8.4-main.c85a9c8dae",
51
- "@dxos/storybook-utils": "0.8.4-main.c85a9c8dae"
50
+ "@dxos/react-client": "0.8.4-main.d05673bc65",
51
+ "@dxos/storybook-utils": "0.8.4-main.d05673bc65"
52
52
  },
53
53
  "peerDependencies": {
54
54
  "@effect-atom/atom-react": "^0.5.0",
package/src/graph.ts CHANGED
@@ -12,7 +12,7 @@ import { AppCapabilities } from '@dxos/app-toolkit';
12
12
  // TODO(wittjosiah): Remove or restore graph caching.
13
13
  // import { meta } from './meta';
14
14
 
15
- // const KEY = `${meta.id}/app-graph`;
15
+ // const KEY = `${meta.id}.app-graph`;
16
16
 
17
17
  export default Capability.makeModule(
18
18
  Effect.fnUntraced(function* () {
package/src/meta.ts CHANGED
@@ -6,7 +6,7 @@ import { type Plugin } from '@dxos/app-framework';
6
6
  import { trim } from '@dxos/util';
7
7
 
8
8
  export const meta: Plugin.Meta = {
9
- id: 'dxos.org/plugin/graph',
9
+ id: 'org.dxos.plugin.graph',
10
10
  name: 'Graph',
11
11
  description: trim`
12
12
  Graph database layer providing relationship modeling and queries for workspace objects.