@nesso-how/types 0.1.0-alpha.27 → 0.1.0-alpha.28

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 (2) hide show
  1. package/dist/index.d.ts +4 -2
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -60,6 +60,8 @@ export interface NessoSettings {
60
60
  maximumInterval: number;
61
61
  inspectorExamplesOpen: boolean;
62
62
  inspectorRelationsOpen: boolean;
63
- /** Desktop: custom folder for graph .json files; null = default app data graphs folder. */
64
- graphWorkspacePath: string | null;
63
+ /** Desktop: absolute paths of folders the user has explicitly opened, most-recent first. */
64
+ knownProjects: string[];
65
+ /** Desktop: absolute path of the active project folder; null until resolved at startup. */
66
+ activeProjectPath: string | null;
65
67
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nesso-how/types",
3
- "version": "0.1.0-alpha.27",
3
+ "version": "0.1.0-alpha.28",
4
4
  "description": "Nesso shared TypeScript types — graph, node, edge, settings, FSRS",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -22,7 +22,7 @@
22
22
  }
23
23
  },
24
24
  "dependencies": {
25
- "@nesso-how/relation-types": "0.1.0-alpha.27"
25
+ "@nesso-how/relation-types": "0.1.0-alpha.28"
26
26
  },
27
27
  "peerDependencies": {
28
28
  "ts-fsrs": "^5.3.2"