orgnote-api 0.10.5 → 0.10.6

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 +4 -1
  2. package/package.json +1 -1
package/api.ts CHANGED
@@ -98,9 +98,12 @@ export interface OrgNoteConfig {
98
98
  showGroup: boolean;
99
99
  defaultCompletionLimit: number;
100
100
  };
101
+ system: {
102
+ language: string;
103
+ };
101
104
  ui: {
102
105
  showUserProfiles: boolean;
103
- theme: 'light' | 'dark';
106
+ theme: 'light' | 'dark' | 'auto';
104
107
  darkThemeName?: string;
105
108
  lightThemeName?: string;
106
109
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orgnote-api",
3
- "version": "0.10.5",
3
+ "version": "0.10.6",
4
4
  "description": "Official API for creating extensions for OrgNote app",
5
5
  "type": "module",
6
6
  "main": "./index.ts",