orgnote-api 0.41.42 → 0.41.44

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.
@@ -199,7 +199,16 @@ export declare enum i18n {
199
199
  GRAPH_NODES_LABEL = "graph.nodes.label",
200
200
  GRAPH_EDGES_LABEL = "graph.edges.label",
201
201
  GRAPH_SETTINGS_TITLE = "graph.settings.title",
202
- GRAPH_SETTINGS_GROUP = "graph.settings.group"
202
+ GRAPH_SETTINGS_GROUP = "graph.settings.group",
203
+ LOCAL_GRAPH_TITLE = "local.graph.title",
204
+ SHOW_PERFORMANCE_REPORT_DESCRIPTION = "Show boot and extension timing report",
205
+ SHOW_PERFORMANCE_REPORT = "Show performance report",
206
+ CLEAR_PERFORMANCE_REPORT = "Clear performance measurements",
207
+ CLEAR_PERFORMANCE_REPORT_DESCRIPTION = "Clear all recorded performance measurements",
208
+ MEASUREMENTS = "measurements",
209
+ CLEAR_MEASUREMENTS = "Clear measurements",
210
+ TOTAL_BOOT_TIME = "Total boot time",
211
+ MS = "ms"
203
212
  }
204
213
  export declare const I18N: {
205
214
  REPORT_BUG: DefaultCommands.REPORT_BUG;
@@ -218,6 +227,7 @@ export declare const I18N: {
218
227
  OPEN_BACKLINKS: DefaultCommands.OPEN_BACKLINKS;
219
228
  OPEN_OUTLINE: DefaultCommands.OPEN_OUTLINE;
220
229
  OPEN_LOCAL_GRAPH: DefaultCommands.OPEN_LOCAL_GRAPH;
230
+ LOCAL_GRAPH: DefaultCommands.LOCAL_GRAPH;
221
231
  TOGGLE_AST_DEBUGGER: DefaultCommands.TOGGLE_AST_DEBUGGER;
222
232
  SEARCH: DefaultCommands.SEARCH;
223
233
  TOGGLE_COMMANDS: DefaultCommands.TOGGLE_COMMANDS;
@@ -306,6 +316,8 @@ export declare const I18N: {
306
316
  OPEN_CRON: DefaultCommands.OPEN_CRON;
307
317
  CLEAR_OLD_QUEUE_TASKS: DefaultCommands.CLEAR_OLD_QUEUE_TASKS;
308
318
  COPY_COMMAND_URL: DefaultCommands.COPY_COMMAND_URL;
319
+ SHOW_PERFORMANCE_REPORT: DefaultCommands.SHOW_PERFORMANCE_REPORT;
320
+ CLEAR_PERFORMANCE_REPORT: DefaultCommands.CLEAR_PERFORMANCE_REPORT;
309
321
  IMPORT_EXTENSION: DefaultCommands.IMPORT_EXTENSION;
310
322
  OPEN_EXTENSIONS_MANAGER: DefaultCommands.OPEN_EXTENSIONS_MANAGER;
311
323
  OPEN_NOTIFICATIONS: DefaultCommands.OPEN_NOTIFICATIONS;
@@ -529,5 +541,12 @@ export declare const I18N: {
529
541
  GRAPH_EDGES_LABEL: i18n.GRAPH_EDGES_LABEL;
530
542
  GRAPH_SETTINGS_TITLE: i18n.GRAPH_SETTINGS_TITLE;
531
543
  GRAPH_SETTINGS_GROUP: i18n.GRAPH_SETTINGS_GROUP;
544
+ LOCAL_GRAPH_TITLE: i18n.LOCAL_GRAPH_TITLE;
545
+ SHOW_PERFORMANCE_REPORT_DESCRIPTION: i18n.SHOW_PERFORMANCE_REPORT_DESCRIPTION;
546
+ CLEAR_PERFORMANCE_REPORT_DESCRIPTION: i18n.CLEAR_PERFORMANCE_REPORT_DESCRIPTION;
547
+ MEASUREMENTS: i18n.MEASUREMENTS;
548
+ CLEAR_MEASUREMENTS: i18n.CLEAR_MEASUREMENTS;
549
+ TOTAL_BOOT_TIME: i18n.TOTAL_BOOT_TIME;
550
+ MS: i18n.MS;
532
551
  };
533
552
  export type I18N = i18n | DefaultCommands;
@@ -212,6 +212,16 @@ export var i18n;
212
212
  i18n["GRAPH_EDGES_LABEL"] = "graph.edges.label";
213
213
  i18n["GRAPH_SETTINGS_TITLE"] = "graph.settings.title";
214
214
  i18n["GRAPH_SETTINGS_GROUP"] = "graph.settings.group";
215
+ i18n["LOCAL_GRAPH_TITLE"] = "local.graph.title";
216
+ // Development
217
+ i18n["SHOW_PERFORMANCE_REPORT_DESCRIPTION"] = "Show boot and extension timing report";
218
+ i18n["SHOW_PERFORMANCE_REPORT"] = "Show performance report";
219
+ i18n["CLEAR_PERFORMANCE_REPORT"] = "Clear performance measurements";
220
+ i18n["CLEAR_PERFORMANCE_REPORT_DESCRIPTION"] = "Clear all recorded performance measurements";
221
+ i18n["MEASUREMENTS"] = "measurements";
222
+ i18n["CLEAR_MEASUREMENTS"] = "Clear measurements";
223
+ i18n["TOTAL_BOOT_TIME"] = "Total boot time";
224
+ i18n["MS"] = "ms";
215
225
  })(i18n || (i18n = {}));
216
226
  export const I18N = {
217
227
  ...i18n,
@@ -25,6 +25,7 @@ export declare enum RouteNames {
25
25
  AuthenticationSettings = "AuthenticationSettings",
26
26
  SynchronisationSettings = "SynchronisationSettings",
27
27
  GraphSettings = "GraphSettings",
28
+ Builtin = "Builtin",
28
29
  Extensions = "Extensions",
29
30
  Keybindings = "Keybindings",
30
31
  RawEditor = "Raw editor",
@@ -26,6 +26,7 @@ export var RouteNames;
26
26
  RouteNames["AuthenticationSettings"] = "AuthenticationSettings";
27
27
  RouteNames["SynchronisationSettings"] = "SynchronisationSettings";
28
28
  RouteNames["GraphSettings"] = "GraphSettings";
29
+ RouteNames["Builtin"] = "Builtin";
29
30
  RouteNames["Extensions"] = "Extensions";
30
31
  RouteNames["Keybindings"] = "Keybindings";
31
32
  RouteNames["RawEditor"] = "Raw editor";
@@ -1,4 +1,4 @@
1
- export type BuiltinBufferScheme = 'file' | 'memory' | 'shared' | 'remote' | 'embedded';
1
+ export type BuiltinBufferScheme = 'file' | 'memory' | 'shared' | 'remote' | 'embedded' | 'builtin';
2
2
  export type BufferScheme = BuiltinBufferScheme | (string & {});
3
3
  export interface BufferUri {
4
4
  scheme: BufferScheme;
@@ -15,6 +15,7 @@ export declare enum DefaultCommands {
15
15
  OPEN_BACKLINKS = "open backlinks",
16
16
  OPEN_OUTLINE = "open outline",
17
17
  OPEN_LOCAL_GRAPH = "open local graph",
18
+ LOCAL_GRAPH = "local graph",
18
19
  TOGGLE_AST_DEBUGGER = "toggle ast debugger",
19
20
  SEARCH = "search",
20
21
  TOGGLE_COMMANDS = "toggle commands",
@@ -103,6 +104,8 @@ export declare enum DefaultCommands {
103
104
  OPEN_CRON = "open cron manager",
104
105
  CLEAR_OLD_QUEUE_TASKS = "clear old queue tasks",
105
106
  COPY_COMMAND_URL = "copy command url",
107
+ SHOW_PERFORMANCE_REPORT = "show performance report",
108
+ CLEAR_PERFORMANCE_REPORT = "clear performance report",
106
109
  IMPORT_EXTENSION = "import extension",
107
110
  OPEN_EXTENSIONS_MANAGER = "open extensions manager",
108
111
  OPEN_NOTIFICATIONS = "open notifications",
@@ -23,6 +23,7 @@ export var DefaultCommands;
23
23
  DefaultCommands["OPEN_BACKLINKS"] = "open backlinks";
24
24
  DefaultCommands["OPEN_OUTLINE"] = "open outline";
25
25
  DefaultCommands["OPEN_LOCAL_GRAPH"] = "open local graph";
26
+ DefaultCommands["LOCAL_GRAPH"] = "local graph";
26
27
  DefaultCommands["TOGGLE_AST_DEBUGGER"] = "toggle ast debugger";
27
28
  // Completion commands
28
29
  DefaultCommands["SEARCH"] = "search";
@@ -123,6 +124,8 @@ export var DefaultCommands;
123
124
  DefaultCommands["OPEN_CRON"] = "open cron manager";
124
125
  DefaultCommands["CLEAR_OLD_QUEUE_TASKS"] = "clear old queue tasks";
125
126
  DefaultCommands["COPY_COMMAND_URL"] = "copy command url";
127
+ DefaultCommands["SHOW_PERFORMANCE_REPORT"] = "show performance report";
128
+ DefaultCommands["CLEAR_PERFORMANCE_REPORT"] = "clear performance report";
126
129
  // Extensions
127
130
  DefaultCommands["IMPORT_EXTENSION"] = "import extension";
128
131
  DefaultCommands["OPEN_EXTENSIONS_MANAGER"] = "open extensions manager";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orgnote-api",
3
- "version": "0.41.42",
3
+ "version": "0.41.44",
4
4
  "description": "Official API for creating extensions for OrgNote app",
5
5
  "type": "module",
6
6
  "main": "./index.js",