orgnote-api 0.14.1 → 0.14.2

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/api.ts +5 -1
  2. package/package.json +1 -1
package/api.ts CHANGED
@@ -103,7 +103,11 @@ export interface OrgNoteConfig {
103
103
  language: string;
104
104
  };
105
105
  synchronization: {
106
- type: 'none' | 'api' | 'filesystem';
106
+ type: 'none' | 'api';
107
+ };
108
+ vault: {
109
+ /* File system available only for mobile devices */
110
+ type: 'inmemory' | 'filesystem';
107
111
  path?: string;
108
112
  };
109
113
  ui: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orgnote-api",
3
- "version": "0.14.1",
3
+ "version": "0.14.2",
4
4
  "description": "Official API for creating extensions for OrgNote app",
5
5
  "type": "module",
6
6
  "main": "./index.ts",