orgnote-api 0.40.23 → 0.40.24

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.
@@ -49,6 +49,7 @@ export declare enum i18n {
49
49
  CANCEL = "cancel",
50
50
  CONFIRM_DELETE_ALL_DATA = "are you sure you want to delete all data? this is an irreversible event",
51
51
  RESET_SYSTEM = "Reset system",
52
+ RESET_SYSTEM_WARNING = "A local reset will result in complete local data deletion. Be careful: if there is no backup, it\u2019s impossible to restore the data.",
52
53
  RESET_SYSTEM_DESCRIPTION = "Delete all local data, including notes, files, account information, settings, etc.",
53
54
  IRREVERSIBLE_EVENT = "This is an irreversible event",
54
55
  CONFIRM_DELETE_NOTES = "Are you sure you want to delete all notes? This is an irreversible event",
@@ -188,7 +189,6 @@ export declare const I18N: {
188
189
  SPONSOR: DefaultCommands.SPONSOR;
189
190
  DELETE_ALL_DATA: DefaultCommands.DELETE_ALL_DATA;
190
191
  RESET_SYSTEM: DefaultCommands.RESET_SYSTEM;
191
- RESET_SYSTEM_WARNING: DefaultCommands.RESET_SYSTEM_WARNING;
192
192
  DELETE_ALL_NOTES: DefaultCommands.DELETE_ALL_NOTES;
193
193
  DELETE_ACCOUNT: DefaultCommands.DELETE_ACCOUNT;
194
194
  STORAGE_SETTINGS: DefaultCommands.STORAGE_SETTINGS;
@@ -279,6 +279,7 @@ export declare const I18N: {
279
279
  CONFIRM: i18n.CONFIRM;
280
280
  CANCEL: i18n.CANCEL;
281
281
  CONFIRM_DELETE_ALL_DATA: i18n.CONFIRM_DELETE_ALL_DATA;
282
+ RESET_SYSTEM_WARNING: i18n.RESET_SYSTEM_WARNING;
282
283
  RESET_SYSTEM_DESCRIPTION: i18n.RESET_SYSTEM_DESCRIPTION;
283
284
  IRREVERSIBLE_EVENT: i18n.IRREVERSIBLE_EVENT;
284
285
  CONFIRM_DELETE_NOTES: i18n.CONFIRM_DELETE_NOTES;
@@ -50,6 +50,7 @@ export var i18n;
50
50
  i18n["CANCEL"] = "cancel";
51
51
  i18n["CONFIRM_DELETE_ALL_DATA"] = "are you sure you want to delete all data? this is an irreversible event";
52
52
  i18n["RESET_SYSTEM"] = "Reset system";
53
+ i18n["RESET_SYSTEM_WARNING"] = "A local reset will result in complete local data deletion. Be careful: if there is no backup, it\u2019s impossible to restore the data.";
53
54
  i18n["RESET_SYSTEM_DESCRIPTION"] = "Delete all local data, including notes, files, account information, settings, etc.";
54
55
  i18n["IRREVERSIBLE_EVENT"] = "This is an irreversible event";
55
56
  i18n["CONFIRM_DELETE_NOTES"] = "Are you sure you want to delete all notes? This is an irreversible event";
@@ -35,7 +35,6 @@ export declare enum DefaultCommands {
35
35
  SPONSOR = "sponsor",
36
36
  DELETE_ALL_DATA = "delete all data",
37
37
  RESET_SYSTEM = "Reset system",
38
- RESET_SYSTEM_WARNING = "A local reset will result in complete local data deletion. Be careful: if there is no backup, it\u2019s impossible to restore the data.",
39
38
  DELETE_ALL_NOTES = "delete all notes",
40
39
  DELETE_ACCOUNT = "delete account",
41
40
  STORAGE_SETTINGS = "storage settings",
@@ -44,7 +44,6 @@ export var DefaultCommands;
44
44
  DefaultCommands["SPONSOR"] = "sponsor";
45
45
  DefaultCommands["DELETE_ALL_DATA"] = "delete all data";
46
46
  DefaultCommands["RESET_SYSTEM"] = "Reset system";
47
- DefaultCommands["RESET_SYSTEM_WARNING"] = "A local reset will result in complete local data deletion. Be careful: if there is no backup, it\u2019s impossible to restore the data.";
48
47
  DefaultCommands["DELETE_ALL_NOTES"] = "delete all notes";
49
48
  DefaultCommands["DELETE_ACCOUNT"] = "delete account";
50
49
  DefaultCommands["STORAGE_SETTINGS"] = "storage settings";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "orgnote-api",
3
- "version": "0.40.23",
3
+ "version": "0.40.24",
4
4
  "description": "Official API for creating extensions for OrgNote app",
5
5
  "type": "module",
6
6
  "main": "./index.js",