orgnote-api 0.10.4 → 0.10.5

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 +2 -1
  2. package/package.json +1 -1
package/api.ts CHANGED
@@ -90,7 +90,7 @@ export interface OrgNoteConfig {
90
90
  showSpecialSymbols: boolean;
91
91
  showPropertyDrawer: boolean;
92
92
  };
93
- common: {
93
+ developer: {
94
94
  developerMode: boolean;
95
95
  maximumLogsCount: number;
96
96
  };
@@ -99,6 +99,7 @@ export interface OrgNoteConfig {
99
99
  defaultCompletionLimit: number;
100
100
  };
101
101
  ui: {
102
+ showUserProfiles: boolean;
102
103
  theme: 'light' | 'dark';
103
104
  darkThemeName?: string;
104
105
  lightThemeName?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orgnote-api",
3
- "version": "0.10.4",
3
+ "version": "0.10.5",
4
4
  "description": "Official API for creating extensions for OrgNote app",
5
5
  "type": "module",
6
6
  "main": "./index.ts",