orgnote-api 0.40.19 → 0.40.22

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.
@@ -130,7 +130,10 @@ export declare enum i18n {
130
130
  SELECT_COMMAND_TO_COPY_URL = "select command to copy URL",
131
131
  SELECT_COMMAND = "select command",
132
132
  CONFIRM_CLEAR_LOGS = "confirm clear logs",
133
+ SYSTEM_INFO = "system info",
133
134
  FILE_DELETED_EXTERNALLY = "file was deleted externally",
135
+ USED_SPACE = "used space",
136
+ STORAGE = "storage",
134
137
  AUTHENTICATION_STATUS = "authentication status",
135
138
  COMING_SOON = "coming soon",
136
139
  AUTH_IDENTIFYING = "identifying",
@@ -148,7 +151,7 @@ export declare enum i18n {
148
151
  }
149
152
  export declare const I18N: {
150
153
  REPORT_BUG: DefaultCommands.REPORT_BUG;
151
- OPEN_DEBUG_INFO: DefaultCommands.OPEN_DEBUG_INFO;
154
+ OPEN_SYSTEM_INFO: DefaultCommands.OPEN_SYSTEM_INFO;
152
155
  SHOW_LOGS: DefaultCommands.SHOW_LOGS;
153
156
  CLEAR_LOGS: DefaultCommands.CLEAR_LOGS;
154
157
  TOGGLE_SIDEBAR: DefaultCommands.TOGGLE_SIDEBAR;
@@ -350,7 +353,10 @@ export declare const I18N: {
350
353
  SELECT_COMMAND_TO_COPY_URL: i18n.SELECT_COMMAND_TO_COPY_URL;
351
354
  SELECT_COMMAND: i18n.SELECT_COMMAND;
352
355
  CONFIRM_CLEAR_LOGS: i18n.CONFIRM_CLEAR_LOGS;
356
+ SYSTEM_INFO: i18n.SYSTEM_INFO;
353
357
  FILE_DELETED_EXTERNALLY: i18n.FILE_DELETED_EXTERNALLY;
358
+ USED_SPACE: i18n.USED_SPACE;
359
+ STORAGE: i18n.STORAGE;
354
360
  AUTHENTICATION_STATUS: i18n.AUTHENTICATION_STATUS;
355
361
  COMING_SOON: i18n.COMING_SOON;
356
362
  AUTH_IDENTIFYING: i18n.AUTH_IDENTIFYING;
@@ -133,8 +133,12 @@ export var i18n;
133
133
  i18n["SELECT_COMMAND_TO_COPY_URL"] = "select command to copy URL";
134
134
  i18n["SELECT_COMMAND"] = "select command";
135
135
  i18n["CONFIRM_CLEAR_LOGS"] = "confirm clear logs";
136
+ i18n["SYSTEM_INFO"] = "system info";
136
137
  // Buffer
137
138
  i18n["FILE_DELETED_EXTERNALLY"] = "file was deleted externally";
139
+ // Subscription limits
140
+ i18n["USED_SPACE"] = "used space";
141
+ i18n["STORAGE"] = "storage";
138
142
  // Auth
139
143
  i18n["AUTHENTICATION_STATUS"] = "authentication status";
140
144
  i18n["COMING_SOON"] = "coming soon";
@@ -1,6 +1,6 @@
1
1
  export declare enum DefaultCommands {
2
2
  REPORT_BUG = "report bug",
3
- OPEN_DEBUG_INFO = "open debug info",
3
+ OPEN_SYSTEM_INFO = "open system info",
4
4
  SHOW_LOGS = "show logs",
5
5
  CLEAR_LOGS = "clear logs",
6
6
  TOGGLE_SIDEBAR = "toggle sidebar",
@@ -7,7 +7,7 @@ export var DefaultCommands;
7
7
  (function (DefaultCommands) {
8
8
  // Global commands
9
9
  DefaultCommands["REPORT_BUG"] = "report bug";
10
- DefaultCommands["OPEN_DEBUG_INFO"] = "open debug info";
10
+ DefaultCommands["OPEN_SYSTEM_INFO"] = "open system info";
11
11
  DefaultCommands["SHOW_LOGS"] = "show logs";
12
12
  DefaultCommands["CLEAR_LOGS"] = "clear logs";
13
13
  DefaultCommands["TOGGLE_SIDEBAR"] = "toggle sidebar";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orgnote-api",
3
- "version": "0.40.19",
3
+ "version": "0.40.22",
4
4
  "description": "Official API for creating extensions for OrgNote app",
5
5
  "type": "module",
6
6
  "main": "./index.js",