orgnote-api 0.41.42 → 0.41.43
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.
- package/constants/i18n-keys.d.ts +4 -1
- package/constants/i18n-keys.js +1 -0
- package/constants/route-names.d.ts +1 -0
- package/constants/route-names.js +1 -0
- package/models/buffer-uri.d.ts +1 -1
- package/models/default-commands.d.ts +1 -0
- package/models/default-commands.js +1 -0
- package/package.json +1 -1
package/constants/i18n-keys.d.ts
CHANGED
|
@@ -199,7 +199,8 @@ 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"
|
|
203
204
|
}
|
|
204
205
|
export declare const I18N: {
|
|
205
206
|
REPORT_BUG: DefaultCommands.REPORT_BUG;
|
|
@@ -218,6 +219,7 @@ export declare const I18N: {
|
|
|
218
219
|
OPEN_BACKLINKS: DefaultCommands.OPEN_BACKLINKS;
|
|
219
220
|
OPEN_OUTLINE: DefaultCommands.OPEN_OUTLINE;
|
|
220
221
|
OPEN_LOCAL_GRAPH: DefaultCommands.OPEN_LOCAL_GRAPH;
|
|
222
|
+
LOCAL_GRAPH: DefaultCommands.LOCAL_GRAPH;
|
|
221
223
|
TOGGLE_AST_DEBUGGER: DefaultCommands.TOGGLE_AST_DEBUGGER;
|
|
222
224
|
SEARCH: DefaultCommands.SEARCH;
|
|
223
225
|
TOGGLE_COMMANDS: DefaultCommands.TOGGLE_COMMANDS;
|
|
@@ -529,5 +531,6 @@ export declare const I18N: {
|
|
|
529
531
|
GRAPH_EDGES_LABEL: i18n.GRAPH_EDGES_LABEL;
|
|
530
532
|
GRAPH_SETTINGS_TITLE: i18n.GRAPH_SETTINGS_TITLE;
|
|
531
533
|
GRAPH_SETTINGS_GROUP: i18n.GRAPH_SETTINGS_GROUP;
|
|
534
|
+
LOCAL_GRAPH_TITLE: i18n.LOCAL_GRAPH_TITLE;
|
|
532
535
|
};
|
|
533
536
|
export type I18N = i18n | DefaultCommands;
|
package/constants/i18n-keys.js
CHANGED
|
@@ -212,6 +212,7 @@ 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";
|
|
215
216
|
})(i18n || (i18n = {}));
|
|
216
217
|
export const I18N = {
|
|
217
218
|
...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",
|
package/constants/route-names.js
CHANGED
|
@@ -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";
|
package/models/buffer-uri.d.ts
CHANGED
|
@@ -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",
|
|
@@ -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";
|