From a10a4ba17da94ff037733ebe6167ad9bf4d6be17 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Tue, 22 Apr 2025 15:20:41 +0300 Subject: [PATCH] chore(nx): prepare turndown-plugin-gfm --- .../turndown-plugin-gfm/dist/index.d.ts | 2 + .../turndown-plugin-gfm/dist/index.d.ts.map | 1 + .../turndown-plugin-gfm/dist/lib/gfm.d.ts | 7 + .../turndown-plugin-gfm/dist/lib/gfm.d.ts.map | 1 + .../dist/lib/highlighted-code-block.d.ts | 2 + .../dist/lib/highlighted-code-block.d.ts.map | 1 + .../dist/lib/strikethrough.d.ts | 2 + .../dist/lib/strikethrough.d.ts.map | 1 + .../turndown-plugin-gfm/dist/lib/tables.d.ts | 2 + .../dist/lib/tables.d.ts.map | 1 + .../dist/lib/task-list-items.d.ts | 2 + .../dist/lib/task-list-items.d.ts.map | 1 + .../dist/tsconfig.lib.tsbuildinfo | 1 + .../turndown-plugin-gfm/dist/index.d.ts | 2 + .../turndown-plugin-gfm/dist/index.d.ts.map | 1 + .../turndown-plugin-gfm/dist/lib/gfm.d.ts | 7 + .../turndown-plugin-gfm/dist/lib/gfm.d.ts.map | 1 + .../dist/lib/highlighted-code-block.d.ts | 2 + .../dist/lib/highlighted-code-block.d.ts.map | 1 + .../dist/lib/strikethrough.d.ts | 2 + .../dist/lib/strikethrough.d.ts.map | 1 + .../turndown-plugin-gfm/dist/lib/tables.d.ts | 2 + .../dist/lib/tables.d.ts.map | 1 + .../dist/lib/task-list-items.d.ts | 2 + .../dist/lib/task-list-items.d.ts.map | 1 + .../dist/tsconfig.lib.tsbuildinfo | 1 + .nx/cache/run.json | 18 +- .../terminalOutputs/11353423252934082150 | 2 + .nx/cache/terminalOutputs/6308689797653528488 | 2 + .nx/workspace-data/d/daemon.log | 311 + .nx/workspace-data/d/server-process.json | 2 +- .../e18ca523839d47128dbab4548c9c1635.db-shm | Bin 32768 -> 32768 bytes .../e18ca523839d47128dbab4548c9c1635.db-wal | Bin 111272 -> 168952 bytes .../eslint-2654242865465226088.hash | 210 + .nx/workspace-data/file-map.json | 7457 +++++++++-------- .nx/workspace-data/lockfile.hash | 2 +- .nx/workspace-data/nx_files.nxt | Bin 111348 -> 113876 bytes .nx/workspace-data/project-graph.json | 195 +- .nx/workspace-data/source-maps.json | 254 + .../tsc-2568428459166798129.hash | 2 +- .nx/workspace-data/tsconfig-files.hash | 2 +- .../vite-9347777721732807074.hash | 90 + package-lock.json | 11 + packages/turndown-plugin-gfm/.swcrc | 22 + .../turndown-plugin-gfm/LICENSE | 0 packages/turndown-plugin-gfm/README.md | 7 + packages/turndown-plugin-gfm/dist/index.d.ts | 2 + .../turndown-plugin-gfm/dist/index.d.ts.map | 1 + .../turndown-plugin-gfm/dist/lib/gfm.d.ts | 7 + .../turndown-plugin-gfm/dist/lib/gfm.d.ts.map | 1 + .../dist/lib/highlighted-code-block.d.ts | 2 + .../dist/lib/highlighted-code-block.d.ts.map | 1 + .../dist/lib/strikethrough.d.ts | 2 + .../dist/lib/strikethrough.d.ts.map | 1 + .../turndown-plugin-gfm/dist/lib/tables.d.ts | 2 + .../dist/lib/tables.d.ts.map | 1 + .../dist/lib/task-list-items.d.ts | 2 + .../dist/lib/task-list-items.d.ts.map | 1 + .../dist/tsconfig.lib.tsbuildinfo | 1 + packages/turndown-plugin-gfm/package.json | 39 + packages/turndown-plugin-gfm/src/index.js | 1 + .../turndown-plugin-gfm/src/lib}/gfm.js | 0 .../src/lib}/highlighted-code-block.js | 0 .../src/lib}/strikethrough.js | 0 .../turndown-plugin-gfm/src/lib}/tables.js | 0 .../src/lib}/task-list-items.js | 0 packages/turndown-plugin-gfm/tsconfig.json | 10 + .../turndown-plugin-gfm/tsconfig.lib.json | 15 + tsconfig.json | 3 + 69 files changed, 5035 insertions(+), 3692 deletions(-) create mode 100644 .nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/index.d.ts create mode 100644 .nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/index.d.ts.map create mode 100644 .nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts create mode 100644 .nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map create mode 100644 .nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts create mode 100644 .nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map create mode 100644 .nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts create mode 100644 .nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map create mode 100644 .nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/tables.d.ts create mode 100644 .nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map create mode 100644 .nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts create mode 100644 .nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map create mode 100644 .nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo create mode 100644 .nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/index.d.ts create mode 100644 .nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/index.d.ts.map create mode 100644 .nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts create mode 100644 .nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map create mode 100644 .nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts create mode 100644 .nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map create mode 100644 .nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts create mode 100644 .nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map create mode 100644 .nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/tables.d.ts create mode 100644 .nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map create mode 100644 .nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts create mode 100644 .nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map create mode 100644 .nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo create mode 100644 .nx/cache/terminalOutputs/11353423252934082150 create mode 100644 .nx/cache/terminalOutputs/6308689797653528488 create mode 100644 packages/turndown-plugin-gfm/.swcrc rename {_regroup_monorepo/packages => packages}/turndown-plugin-gfm/LICENSE (100%) create mode 100644 packages/turndown-plugin-gfm/README.md create mode 100644 packages/turndown-plugin-gfm/dist/index.d.ts create mode 100644 packages/turndown-plugin-gfm/dist/index.d.ts.map create mode 100644 packages/turndown-plugin-gfm/dist/lib/gfm.d.ts create mode 100644 packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map create mode 100644 packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts create mode 100644 packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map create mode 100644 packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts create mode 100644 packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map create mode 100644 packages/turndown-plugin-gfm/dist/lib/tables.d.ts create mode 100644 packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map create mode 100644 packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts create mode 100644 packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map create mode 100644 packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo create mode 100644 packages/turndown-plugin-gfm/package.json create mode 100644 packages/turndown-plugin-gfm/src/index.js rename {_regroup_monorepo/packages/turndown-plugin-gfm/src => packages/turndown-plugin-gfm/src/lib}/gfm.js (100%) rename {_regroup_monorepo/packages/turndown-plugin-gfm/src => packages/turndown-plugin-gfm/src/lib}/highlighted-code-block.js (100%) rename {_regroup_monorepo/packages/turndown-plugin-gfm/src => packages/turndown-plugin-gfm/src/lib}/strikethrough.js (100%) rename {_regroup_monorepo/packages/turndown-plugin-gfm/src => packages/turndown-plugin-gfm/src/lib}/tables.js (100%) rename {_regroup_monorepo/packages/turndown-plugin-gfm/src => packages/turndown-plugin-gfm/src/lib}/task-list-items.js (100%) create mode 100644 packages/turndown-plugin-gfm/tsconfig.json create mode 100644 packages/turndown-plugin-gfm/tsconfig.lib.json diff --git a/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/index.d.ts b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/index.d.ts new file mode 100644 index 000000000..a7d874f74 --- /dev/null +++ b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/index.d.ts @@ -0,0 +1,2 @@ +export * from "./lib/gfm.js"; +//# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/index.d.ts.map b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/index.d.ts.map new file mode 100644 index 000000000..6e08bd549 --- /dev/null +++ b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/index.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.js"],"names":[],"mappings":""} \ No newline at end of file diff --git a/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts new file mode 100644 index 000000000..8b53613ef --- /dev/null +++ b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts @@ -0,0 +1,7 @@ +export function gfm(turndownService: any): void; +import highlightedCodeBlock from './highlighted-code-block.js'; +import strikethrough from './strikethrough.js'; +import tables from './tables.js'; +import taskListItems from './task-list-items.js'; +export { highlightedCodeBlock, strikethrough, tables, taskListItems }; +//# sourceMappingURL=gfm.d.ts.map \ No newline at end of file diff --git a/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map new file mode 100644 index 000000000..1fb19dbd2 --- /dev/null +++ b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"gfm.d.ts","sourceRoot":"","sources":["../../src/lib/gfm.js"],"names":[],"mappings":"AAKA,gDAOC;iCAZgC,6BAA6B;0BACpC,oBAAoB;mBAC3B,aAAa;0BACN,sBAAsB"} \ No newline at end of file diff --git a/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts new file mode 100644 index 000000000..c8e1f01c7 --- /dev/null +++ b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts @@ -0,0 +1,2 @@ +export default function highlightedCodeBlock(turndownService: any): void; +//# sourceMappingURL=highlighted-code-block.d.ts.map \ No newline at end of file diff --git a/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map new file mode 100644 index 000000000..a79b63b02 --- /dev/null +++ b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"highlighted-code-block.d.ts","sourceRoot":"","sources":["../../src/lib/highlighted-code-block.js"],"names":[],"mappings":"AAEA,yEAsBC"} \ No newline at end of file diff --git a/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts new file mode 100644 index 000000000..de206608a --- /dev/null +++ b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts @@ -0,0 +1,2 @@ +export default function strikethrough(turndownService: any): void; +//# sourceMappingURL=strikethrough.d.ts.map \ No newline at end of file diff --git a/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map new file mode 100644 index 000000000..c4ed2acc8 --- /dev/null +++ b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"strikethrough.d.ts","sourceRoot":"","sources":["../../src/lib/strikethrough.js"],"names":[],"mappings":"AAAA,kEAOC"} \ No newline at end of file diff --git a/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/tables.d.ts b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/tables.d.ts new file mode 100644 index 000000000..7fcccb13c --- /dev/null +++ b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/tables.d.ts @@ -0,0 +1,2 @@ +export default function tables(turndownService: any): void; +//# sourceMappingURL=tables.d.ts.map \ No newline at end of file diff --git a/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map new file mode 100644 index 000000000..1e224931d --- /dev/null +++ b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"tables.d.ts","sourceRoot":"","sources":["../../src/lib/tables.js"],"names":[],"mappings":"AAoRA,2DASC"} \ No newline at end of file diff --git a/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts new file mode 100644 index 000000000..ea37b5ecf --- /dev/null +++ b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts @@ -0,0 +1,2 @@ +export default function taskListItems(turndownService: any): void; +//# sourceMappingURL=task-list-items.d.ts.map \ No newline at end of file diff --git a/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map new file mode 100644 index 000000000..2e27eeae4 --- /dev/null +++ b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"task-list-items.d.ts","sourceRoot":"","sources":["../../src/lib/task-list-items.js"],"names":[],"mappings":"AAAA,kEASC"} \ No newline at end of file diff --git a/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo new file mode 100644 index 000000000..4e1f61b64 --- /dev/null +++ b/.nx/cache/11353423252934082150/packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo @@ -0,0 +1 @@ +{"version":"5.7.3"} \ No newline at end of file diff --git a/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/index.d.ts b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/index.d.ts new file mode 100644 index 000000000..a7d874f74 --- /dev/null +++ b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/index.d.ts @@ -0,0 +1,2 @@ +export * from "./lib/gfm.js"; +//# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/index.d.ts.map b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/index.d.ts.map new file mode 100644 index 000000000..6e08bd549 --- /dev/null +++ b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/index.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.js"],"names":[],"mappings":""} \ No newline at end of file diff --git a/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts new file mode 100644 index 000000000..8b53613ef --- /dev/null +++ b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts @@ -0,0 +1,7 @@ +export function gfm(turndownService: any): void; +import highlightedCodeBlock from './highlighted-code-block.js'; +import strikethrough from './strikethrough.js'; +import tables from './tables.js'; +import taskListItems from './task-list-items.js'; +export { highlightedCodeBlock, strikethrough, tables, taskListItems }; +//# sourceMappingURL=gfm.d.ts.map \ No newline at end of file diff --git a/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map new file mode 100644 index 000000000..1fb19dbd2 --- /dev/null +++ b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"gfm.d.ts","sourceRoot":"","sources":["../../src/lib/gfm.js"],"names":[],"mappings":"AAKA,gDAOC;iCAZgC,6BAA6B;0BACpC,oBAAoB;mBAC3B,aAAa;0BACN,sBAAsB"} \ No newline at end of file diff --git a/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts new file mode 100644 index 000000000..c8e1f01c7 --- /dev/null +++ b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts @@ -0,0 +1,2 @@ +export default function highlightedCodeBlock(turndownService: any): void; +//# sourceMappingURL=highlighted-code-block.d.ts.map \ No newline at end of file diff --git a/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map new file mode 100644 index 000000000..a79b63b02 --- /dev/null +++ b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"highlighted-code-block.d.ts","sourceRoot":"","sources":["../../src/lib/highlighted-code-block.js"],"names":[],"mappings":"AAEA,yEAsBC"} \ No newline at end of file diff --git a/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts new file mode 100644 index 000000000..de206608a --- /dev/null +++ b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts @@ -0,0 +1,2 @@ +export default function strikethrough(turndownService: any): void; +//# sourceMappingURL=strikethrough.d.ts.map \ No newline at end of file diff --git a/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map new file mode 100644 index 000000000..c4ed2acc8 --- /dev/null +++ b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"strikethrough.d.ts","sourceRoot":"","sources":["../../src/lib/strikethrough.js"],"names":[],"mappings":"AAAA,kEAOC"} \ No newline at end of file diff --git a/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/tables.d.ts b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/tables.d.ts new file mode 100644 index 000000000..7fcccb13c --- /dev/null +++ b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/tables.d.ts @@ -0,0 +1,2 @@ +export default function tables(turndownService: any): void; +//# sourceMappingURL=tables.d.ts.map \ No newline at end of file diff --git a/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map new file mode 100644 index 000000000..1e224931d --- /dev/null +++ b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"tables.d.ts","sourceRoot":"","sources":["../../src/lib/tables.js"],"names":[],"mappings":"AAoRA,2DASC"} \ No newline at end of file diff --git a/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts new file mode 100644 index 000000000..ea37b5ecf --- /dev/null +++ b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts @@ -0,0 +1,2 @@ +export default function taskListItems(turndownService: any): void; +//# sourceMappingURL=task-list-items.d.ts.map \ No newline at end of file diff --git a/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map new file mode 100644 index 000000000..2e27eeae4 --- /dev/null +++ b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"task-list-items.d.ts","sourceRoot":"","sources":["../../src/lib/task-list-items.js"],"names":[],"mappings":"AAAA,kEASC"} \ No newline at end of file diff --git a/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo new file mode 100644 index 000000000..4e1f61b64 --- /dev/null +++ b/.nx/cache/6308689797653528488/packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo @@ -0,0 +1 @@ +{"version":"5.7.3"} \ No newline at end of file diff --git a/.nx/cache/run.json b/.nx/cache/run.json index edf601eb4..d2de15dfe 100644 --- a/.nx/cache/run.json +++ b/.nx/cache/run.json @@ -1,18 +1,18 @@ { "run": { - "command": "nx test commons", - "startTime": "2025-04-22T12:06:29.829Z", - "endTime": "2025-04-22T12:06:30.546Z", + "command": "nx build turndown-plugin-gfm", + "startTime": "2025-04-22T12:21:01.774Z", + "endTime": "2025-04-22T12:21:03.047Z", "inner": false }, "tasks": [ { - "taskId": "@triliumnext/commons:test", - "target": "test", - "projectName": "@triliumnext/commons", - "hash": "304969377575151971", - "startTime": "2025-04-22T12:06:29.839Z", - "endTime": "2025-04-22T12:06:30.537Z", + "taskId": "@triliumnext/turndown-plugin-gfm:build", + "target": "build", + "projectName": "@triliumnext/turndown-plugin-gfm", + "hash": "6308689797653528488", + "startTime": "2025-04-22T12:21:01.785Z", + "endTime": "2025-04-22T12:21:03.023Z", "params": "", "cacheStatus": "cache-miss", "status": 0 diff --git a/.nx/cache/terminalOutputs/11353423252934082150 b/.nx/cache/terminalOutputs/11353423252934082150 new file mode 100644 index 000000000..b9c1c3eb0 --- /dev/null +++ b/.nx/cache/terminalOutputs/11353423252934082150 @@ -0,0 +1,2 @@ +Compiling with SWC for @triliumnext/turndown-plugin-gfm... + diff --git a/.nx/cache/terminalOutputs/6308689797653528488 b/.nx/cache/terminalOutputs/6308689797653528488 new file mode 100644 index 000000000..b9c1c3eb0 --- /dev/null +++ b/.nx/cache/terminalOutputs/6308689797653528488 @@ -0,0 +1,2 @@ +Compiling with SWC for @triliumnext/turndown-plugin-gfm... + diff --git a/.nx/workspace-data/d/daemon.log b/.nx/workspace-data/d/daemon.log index 365f56914..467972b14 100644 --- a/.nx/workspace-data/d/daemon.log +++ b/.nx/workspace-data/d/daemon.log @@ -308,3 +308,314 @@ [NX v20.8.0 Daemon Server] - 2025-04-22T12:06:30.557Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0. [NX v20.8.0 Daemon Server] - 2025-04-22T12:06:30.557Z - Time taken for 'postTasksExecution' 0.09569699999701697ms [NX v20.8.0 Daemon Server] - 2025-04-22T12:06:30.565Z - Closed a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:47.809Z - Started listening on: /tmp/nix-shell-1791937-0/32649d4e7241f504a54b/d.sock +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:47.810Z - [WATCHER]: Subscribed to changes within: /home/elian/Projects/TriliumNext/Notes (native) +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:47.820Z - Established a connection. Number of open connections: 1 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:47.821Z - Established a connection. Number of open connections: 2 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:47.822Z - Closed a connection. Number of open connections: 1 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:47.823Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:47.986Z - Time taken for 'Load Nx Plugin: /home/elian/Projects/TriliumNext/Notes/node_modules/nx/src/plugins/js' 160.53319999999997ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:47.987Z - Time taken for 'Load Nx Plugin: /home/elian/Projects/TriliumNext/Notes/node_modules/nx/src/plugins/project-json/build-nodes/project-json' 161.40982899999997ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:47.997Z - Time taken for 'loadDefaultNxPlugins' 171.685805ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.026Z - Time taken for 'Load Nx Plugin: @nx/eslint/plugin' 202.00842500000002ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.029Z - Time taken for 'Load Nx Plugin: @nx/js/typescript' 205.43054399999997ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.054Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.054Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.054Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.064Z - Time taken for 'loadSpecifiedNxPlugins' 229.095359ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.065Z - Established a connection. Number of open connections: 2 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.065Z - Closed a connection. Number of open connections: 1 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.066Z - Established a connection. Number of open connections: 2 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.068Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.068Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.068Z - Handled GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.068Z - Established a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.069Z - Established a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.071Z - Closed a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.073Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.073Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.073Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.074Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.074Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.074Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.196Z - Time taken for 'build-project-configs' 115.86358099999995ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.200Z - Time taken for '@nx/js/typescript:createDependencies' 8.562975999999935ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.200Z - Time taken for '@nx/vite/plugin:createDependencies' 7.113590000000045ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.214Z - [SYNC]: collect registered sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.214Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"] +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.214Z - [REQUEST]: Responding to the client. project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.215Z - Time taken for 'total for creating and serializing project graph' 391.356302ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.215Z - Done responding to the client project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.215Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 391. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.314Z - [SYNC]: running scheduled generator @nx/js:typescript-sync +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.528Z - Established a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.529Z - Established a connection. Number of open connections: 5 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.529Z - Closed a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.530Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.530Z - [REQUEST]: Responding to the client. project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.530Z - Time taken for 'total for creating and serializing project graph' 0.18649199999993016ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.531Z - Done responding to the client project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.531Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.535Z - [SYNC]: @nx/js:typescript-sync changes: +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:48.535Z - Time taken for 'run-sync-generator:@nx/js:typescript-sync' 220.406255ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:51.874Z - [WATCHER]: 7 file(s) created or restored, 1 file(s) modified, 0 file(s) deleted +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:51.875Z - [WATCHER]: Processing file changes in outputs +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:51.977Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:51.977Z - [REQUEST]: packages/turndown-plugin-gfm/.swcrc,packages/turndown-plugin-gfm/tsconfig.json,packages/turndown-plugin-gfm/src/index.js,packages/turndown-plugin-gfm/src/lib/turndown-plugin-gfm.js,packages/turndown-plugin-gfm/package.json,packages/turndown-plugin-gfm/tsconfig.lib.json,packages/turndown-plugin-gfm/README.md,tsconfig.json +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:51.977Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:51.985Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:51.985Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:51.985Z - Handled GLOB. Handling time: 1. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:51.985Z - Time taken for 'hash changed files from watcher' 1.4196560000000318ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:51.986Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:51.986Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:51.987Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:51.990Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:51.990Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:51.990Z - Handled HASH_GLOB. Handling time: 3. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:52.625Z - [WATCHER]: packages/turndown-plugin-gfm was created or restored +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:52.626Z - [WATCHER]: Processing file changes in outputs +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:52.663Z - Time taken for 'build-project-configs' 672.7463159999998ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:52.665Z - Time taken for '@nx/vite/plugin:createDependencies' 5.188648000000285ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:52.666Z - Time taken for '@nx/js/typescript:createDependencies' 6.928428000000167ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:52.686Z - [SYNC]: collect registered sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:52.687Z - [SYNC]: nx.json hash is the same, not collecting global sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:52.687Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"] +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:52.687Z - Time taken for 'total execution time for createProjectGraph()' 23.668668000000253ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:52.747Z - [WATCHER]: Processing file changes in outputs +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:52.748Z - Closed a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:52.748Z - Closed a connection. Number of open connections: 2 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:52.748Z - Closed a connection. Number of open connections: 1 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:52.748Z - Closed a connection. Number of open connections: 0 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:52.748Z - [WATCHER]: Stopping the watcher for /home/elian/Projects/TriliumNext/Notes (sources) +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:52.749Z - [WATCHER]: Stopping the watcher for /home/elian/Projects/TriliumNext/Notes (outputs) +[NX v20.8.0 Daemon Server] - 2025-04-22T12:18:52.749Z - Server stopped because: "LOCK_FILES_CHANGED" +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:00.970Z - Started listening on: /tmp/nix-shell-1791937-0/32649d4e7241f504a54b/d.sock +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:00.972Z - [WATCHER]: Subscribed to changes within: /home/elian/Projects/TriliumNext/Notes (native) +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:00.979Z - Established a connection. Number of open connections: 1 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:00.979Z - Established a connection. Number of open connections: 2 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:00.981Z - Closed a connection. Number of open connections: 1 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:00.982Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.149Z - Time taken for 'Load Nx Plugin: /home/elian/Projects/TriliumNext/Notes/node_modules/nx/src/plugins/project-json/build-nodes/project-json' 164.44294899999997ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.162Z - Time taken for 'Load Nx Plugin: /home/elian/Projects/TriliumNext/Notes/node_modules/nx/src/plugins/package-json' 178.101303ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.165Z - Time taken for 'loadDefaultNxPlugins' 181.481436ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.179Z - Time taken for 'Load Nx Plugin: @nx/js/typescript' 196.16509399999998ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.185Z - Time taken for 'Load Nx Plugin: @nx/eslint/plugin' 201.543702ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.216Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.216Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.216Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.228Z - Time taken for 'loadSpecifiedNxPlugins' 232.68991999999997ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.229Z - Established a connection. Number of open connections: 2 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.230Z - Closed a connection. Number of open connections: 1 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.230Z - Established a connection. Number of open connections: 2 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.230Z - Established a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.232Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.233Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.233Z - Handled GLOB. Handling time: 1. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.233Z - Established a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.233Z - Closed a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.235Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.235Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.235Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.238Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.238Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:01.238Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.029Z - Time taken for 'build-project-configs' 785.8964510000001ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.031Z - Time taken for '@nx/js/typescript:createDependencies' 6.1733489999999165ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.031Z - Time taken for '@nx/vite/plugin:createDependencies' 4.767010999999911ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.074Z - [SYNC]: collect registered sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.075Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"] +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.075Z - [REQUEST]: Responding to the client. project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.075Z - Time taken for 'total for creating and serializing project graph' 1092.958652ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.076Z - Done responding to the client project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.076Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 1093. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.081Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.081Z - Done responding to the client handleRunPreTasksExecution +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.081Z - Handled PRE_TASKS_EXECUTION. Handling time: 0. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.081Z - Time taken for 'preTasksExecution' 0.36243500000000495ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.106Z - [REQUEST]: Responding to the client. handleHashTasks +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.106Z - Done responding to the client handleHashTasks +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.106Z - Handled HASH_TASKS. Handling time: 7. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.128Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.129Z - Done responding to the client handleGetEstimatedTaskTimings +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.129Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 1. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.175Z - [SYNC]: running scheduled generator @nx/js:typescript-sync +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.377Z - Established a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.378Z - Established a connection. Number of open connections: 5 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.378Z - Closed a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.379Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.379Z - [REQUEST]: Responding to the client. project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.379Z - Time taken for 'total for creating and serializing project graph' 0.19183299999986048ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.380Z - Done responding to the client project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.380Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.384Z - [SYNC]: @nx/js:typescript-sync changes: +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:02.384Z - Time taken for 'run-sync-generator:@nx/js:typescript-sync' 208.196592ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.366Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.366Z - Done responding to the client recordOutputsHash +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.366Z - Handled RECORD_OUTPUTS_HASH. Handling time: 3. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.383Z - [WATCHER]: 13 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.383Z - [WATCHER]: Processing file changes in outputs +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.398Z - [REQUEST]: Responding to the client. handleRecordTaskRuns +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.398Z - Done responding to the client handleRecordTaskRuns +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.398Z - Handled RECORD_TASK_RUNS. Handling time: 13. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.399Z - [REQUEST]: Responding to the client. handleGetFlakyTasks +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.399Z - Done responding to the client handleGetFlakyTasks +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.399Z - Handled GET_FLAKY_TASKS. Handling time: 0. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.401Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.401Z - Done responding to the client handleRunPostTasksExecution +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.401Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.401Z - Time taken for 'postTasksExecution' 0.13605200000029072ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.409Z - Closed a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.485Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.486Z - [REQUEST]: packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map,packages/turndown-plugin-gfm/dist/index.d.ts.map,packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts,packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts,packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map,packages/turndown-plugin-gfm/dist/index.d.ts,packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo,packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map,packages/turndown-plugin-gfm/dist/lib/tables.d.ts,packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map,packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts,packages/turndown-plugin-gfm/dist/lib/gfm.d.ts,packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.486Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.496Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.496Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.496Z - Handled GLOB. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.497Z - Time taken for 'hash changed files from watcher' 1.4239079999997557ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.498Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.498Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.498Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.503Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.503Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.503Z - Handled HASH_GLOB. Handling time: 3. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.532Z - Time taken for 'build-project-configs' 35.289662000000135ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.533Z - Time taken for '@nx/js/typescript:createDependencies' 5.346737999999732ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.534Z - Time taken for '@nx/vite/plugin:createDependencies' 4.307604999999967ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.547Z - [SYNC]: collect registered sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.547Z - [SYNC]: project graph hash is the same, not collecting task sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.547Z - [SYNC]: nx.json hash is the same, not collecting global sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.547Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"] +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.547Z - Time taken for 'total execution time for createProjectGraph()' 13.879997999999887ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.747Z - [SYNC]: running scheduled generator @nx/js:typescript-sync +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.748Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.748Z - [REQUEST]: Responding to the client. project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.748Z - Time taken for 'total for creating and serializing project graph' 0.16054200000007768ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.749Z - Done responding to the client project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.749Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.752Z - [SYNC]: @nx/js:typescript-sync changes: +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:03.752Z - Time taken for 'run-sync-generator:@nx/js:typescript-sync' 4.778632000000016ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.713Z - [WATCHER]: packages/turndown-plugin-gfm/LICENSE was created or restored +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.714Z - [WATCHER]: Processing file changes in outputs +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.814Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.814Z - [REQUEST]: packages/turndown-plugin-gfm/LICENSE +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.814Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.822Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.822Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.823Z - Handled GLOB. Handling time: 1. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.823Z - Time taken for 'hash changed files from watcher' 0.9376330000013695ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.824Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.824Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.824Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.827Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.827Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.827Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.858Z - Time taken for 'build-project-configs' 31.5749739999992ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.861Z - Time taken for '@nx/js/typescript:createDependencies' 6.281932000001689ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.861Z - Time taken for '@nx/vite/plugin:createDependencies' 5.866557000001194ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.876Z - [SYNC]: collect registered sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.876Z - [SYNC]: project graph hash is the same, not collecting task sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.876Z - [SYNC]: nx.json hash is the same, not collecting global sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.876Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"] +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:19.876Z - Time taken for 'total execution time for createProjectGraph()' 17.825564000002487ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:20.276Z - [SYNC]: running scheduled generator @nx/js:typescript-sync +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:20.278Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:20.278Z - [REQUEST]: Responding to the client. project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:20.279Z - Time taken for 'total for creating and serializing project graph' 0.17083199999979115ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:20.279Z - Done responding to the client project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:20.279Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:20.282Z - [SYNC]: @nx/js:typescript-sync changes: +[NX v20.8.0 Daemon Server] - 2025-04-22T12:20:20.282Z - Time taken for 'run-sync-generator:@nx/js:typescript-sync' 5.576402999999118ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.728Z - Established a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.728Z - Closed a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.728Z - Established a connection. Number of open connections: 4 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.730Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.730Z - [REQUEST]: Responding to the client. project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.730Z - Time taken for 'total for creating and serializing project graph' 0.16078299999935552ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.731Z - Done responding to the client project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.731Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.735Z - [REQUEST]: Responding to the client. handleRunPreTasksExecution +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.735Z - Done responding to the client handleRunPreTasksExecution +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.735Z - Handled PRE_TASKS_EXECUTION. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.735Z - Time taken for 'preTasksExecution' 0.15214199999900302ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.758Z - [REQUEST]: Responding to the client. handleHashTasks +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.759Z - Done responding to the client handleHashTasks +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.759Z - Handled HASH_TASKS. Handling time: 5. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.782Z - [REQUEST]: Responding to the client. handleGetEstimatedTaskTimings +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.782Z - Done responding to the client handleGetEstimatedTaskTimings +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:01.782Z - Handled GET_ESTIMATED_TASK_TIMINGS. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.095Z - [WATCHER]: 0 file(s) created or restored, 0 file(s) modified, 13 file(s) deleted +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.095Z - [WATCHER]: Processing file changes in outputs +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.197Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.197Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.197Z - [REQUEST]: packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts,packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map,packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo,packages/turndown-plugin-gfm/dist/lib/gfm.d.ts,packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map,packages/turndown-plugin-gfm/dist/lib/tables.d.ts,packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map,packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map,packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts,packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts,packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map,packages/turndown-plugin-gfm/dist/index.d.ts.map,packages/turndown-plugin-gfm/dist/index.d.ts +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.208Z - Time taken for 'hash changed files from watcher' 1.3572490000005928ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.210Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.210Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.210Z - Handled GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.213Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.213Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.213Z - Handled HASH_GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.221Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.221Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.221Z - Handled HASH_GLOB. Handling time: 8. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.254Z - Time taken for 'build-project-configs' 40.3235810000042ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.256Z - Time taken for '@nx/js/typescript:createDependencies' 5.689159000001382ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.256Z - Time taken for '@nx/vite/plugin:createDependencies' 4.824486999998044ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.267Z - [SYNC]: collect registered sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.268Z - [SYNC]: project graph hash is the same, not collecting task sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.268Z - [SYNC]: nx.json hash is the same, not collecting global sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.268Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"] +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:02.268Z - Time taken for 'total execution time for createProjectGraph()' 12.569024000003992ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.028Z - [REQUEST]: Responding to the client. recordOutputsHash +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.029Z - Done responding to the client recordOutputsHash +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.029Z - Handled RECORD_OUTPUTS_HASH. Handling time: 4. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.043Z - [WATCHER]: Processing file changes in outputs +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.044Z - [WATCHER]: 13 file(s) created or restored, 0 file(s) modified, 0 file(s) deleted +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.056Z - [REQUEST]: Responding to the client. handleRecordTaskRuns +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.056Z - Done responding to the client handleRecordTaskRuns +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.056Z - Handled RECORD_TASK_RUNS. Handling time: 7. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.057Z - [REQUEST]: Responding to the client. handleGetFlakyTasks +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.057Z - Done responding to the client handleGetFlakyTasks +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.057Z - Handled GET_FLAKY_TASKS. Handling time: 0. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.059Z - [REQUEST]: Responding to the client. handleRunPostTasksExecution +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.059Z - Done responding to the client handleRunPostTasksExecution +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.059Z - Handled POST_TASKS_EXECUTION. Handling time: 0. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.059Z - Time taken for 'postTasksExecution' 0.10483199999725912ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.068Z - [SYNC]: running scheduled generator @nx/js:typescript-sync +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.069Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.071Z - [REQUEST]: Updated workspace context based on watched changes, recomputing project graph... +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.071Z - [REQUEST]: packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts,packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map,packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts,packages/turndown-plugin-gfm/dist/index.d.ts,packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts,packages/turndown-plugin-gfm/dist/lib/tables.d.ts,packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo,packages/turndown-plugin-gfm/dist/index.d.ts.map,packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map,packages/turndown-plugin-gfm/dist/lib/gfm.d.ts,packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map,packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map,packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.071Z - [REQUEST]: +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.078Z - Time taken for 'hash changed files from watcher' 1.3583680000010645ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.078Z - Closed a connection. Number of open connections: 3 +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.080Z - [REQUEST]: Responding to the client. handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.080Z - Done responding to the client handleGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.080Z - Handled GLOB. Handling time: 2. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.082Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.082Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.082Z - Handled HASH_GLOB. Handling time: 1. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.086Z - [REQUEST]: Responding to the client. handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.086Z - Done responding to the client handleHashMultiGlob +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.086Z - Handled HASH_GLOB. Handling time: 3. Response time: 0. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.097Z - Time taken for 'build-project-configs' 14.051885000000766ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.099Z - Time taken for '@nx/vite/plugin:createDependencies' 4.75979599999846ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.099Z - Time taken for '@nx/js/typescript:createDependencies' 6.355669000004127ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.116Z - [SYNC]: collect registered sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.117Z - [SYNC]: project graph hash is the same, not collecting task sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.117Z - [SYNC]: nx.json hash is the same, not collecting global sync generators +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.117Z - [SYNC]: scheduling: ["@nx/js:typescript-sync"] +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.117Z - [REQUEST]: Responding to the client. project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.117Z - Time taken for 'total for creating and serializing project graph' 47.69519299999956ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.117Z - Done responding to the client project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.118Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 48. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.120Z - [SYNC]: @nx/js:typescript-sync changes: +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:03.120Z - Time taken for 'run-sync-generator:@nx/js:typescript-sync' 52.00020300000324ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:04.717Z - [SYNC]: running scheduled generator @nx/js:typescript-sync +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:04.718Z - [REQUEST]: Client Request for Project Graph Received +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:04.718Z - [REQUEST]: Responding to the client. project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:04.718Z - Time taken for 'total for creating and serializing project graph' 0.17161299999861512ms +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:04.719Z - Done responding to the client project-graph +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:04.719Z - Handled REQUEST_PROJECT_GRAPH. Handling time: 0. Response time: 1. +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:04.722Z - [SYNC]: @nx/js:typescript-sync changes: +[NX v20.8.0 Daemon Server] - 2025-04-22T12:21:04.723Z - Time taken for 'run-sync-generator:@nx/js:typescript-sync' 5.300212999994983ms diff --git a/.nx/workspace-data/d/server-process.json b/.nx/workspace-data/d/server-process.json index 0fab18a62..7519f379d 100644 --- a/.nx/workspace-data/d/server-process.json +++ b/.nx/workspace-data/d/server-process.json @@ -1,3 +1,3 @@ { - "processId": 1874608 + "processId": 1885564 } diff --git a/.nx/workspace-data/e18ca523839d47128dbab4548c9c1635.db-shm b/.nx/workspace-data/e18ca523839d47128dbab4548c9c1635.db-shm index 33b68d836e31939ba7a61ce69fe1974f4d520043..ea2e6593ab7fbc24b0ff792065fc7291078bbdb0 100644 GIT binary patch delta 234 zcmZo@U}|V!s+V}A%K!pwK+MR%AfO4Pxqz6(Omt#`%KQHhgfzFrIjWWJTpbl-e#K)O zsp^47fdRv z7$g}K7}UW$ZU$inDF#Ib4G?eghj2D#B?e6}`&|?pvmApeSQS5mAcF*hJcHWCkK9TC D`yEAt delta 220 zcmZo@U}|V!s+V}A%K!pgK+MR%ARrB8_qL=zWDiX!c_5^@CC*W;G@-JfkVR2x0;%dj zW`h98-2X@bEXcsX#K17Iv3Ro%<0Z$*4vZFy|2c7PHe&q2#LC9N!63HTkntxID;I+h kgCvB>%^=Jm1!hkE5Y7fxIr&`_gu%+sAjlvAl;l?e00PQ84FCWD diff --git a/.nx/workspace-data/e18ca523839d47128dbab4548c9c1635.db-wal b/.nx/workspace-data/e18ca523839d47128dbab4548c9c1635.db-wal index e50b20f954764163c110b28767fae70278399008..1d9cc7973ad46541e1f4720ec8ec8954253a8489 100644 GIT binary patch delta 1263 zcmZ4SlhAYViXW-3246Ov+vn`UIqpRX8vdf{xkfu`J*={3i$Fn*fF!3 z`ie6c8XB7#n;01znHpIdn;2La8JZe6loVy=WR~XUrB;;amy{OerR10A=@#Uarf25q zrl;j5m1gFoOy3;HSSlpH#`Jx|u7X2cU>kNY@bB2ZVG-jxen|;tQ$}oNGf!tsVzd|2 z`%>xet?>0N#ARj-{CoJT_|1SW)8Kb;VrDbtU@|twrk(Azk%5t^u7QcJk&%L-k(H5w zm4Pu9q3MST8K()IF1p?0u}X!31lJih0bQq|yz1i7)yXOl*A+4FU*KQFUj%er3crCK zGdqK+GzTjyHs=+WCMTyB7c)+aEqHnvM7~-yU1}0z9!L4Sifw5g@7T6an8f&>Uzr&g zTpU2m^*~5-OPr%xX`0TR^R>rTUnRk%z;HBDWdRz(05e2l&&TVZE2bO!o8ZDN3Q)Ksv)`94Dv6W?c`p^y3M9a-3n zLCFb=!5FE@5HmG_geXao9I#XhPLdMQ{~{c+%KVm7D*!<0RiY(s+L4KycU*u(yfZYt z@;d_qz?eT?mxZ0d7?fhMga9JJ7M{BaOt6KQ*OQmPZ$A1PyR%hE3zEP!LFp1Dflm}Q QWBLDHC4pN02Bv;}01rY_HUIzs delta 11 TcmeydoNL8XwuUW?D>eZDB##Bm diff --git a/.nx/workspace-data/eslint-2654242865465226088.hash b/.nx/workspace-data/eslint-2654242865465226088.hash index 2e3054b9c..57de0fe1a 100644 --- a/.nx/workspace-data/eslint-2654242865465226088.hash +++ b/.nx/workspace-data/eslint-2654242865465226088.hash @@ -127,5 +127,215 @@ } } } + }, + "10247607291498964418": {}, + "373634769702099074": { + "packages/turndown-plugin-gfm": { + "targets": { + "lint": { + "command": "eslint .", + "cache": true, + "options": { + "cwd": "packages/turndown-plugin-gfm" + }, + "inputs": [ + "default", + "^default", + "{workspaceRoot}/eslint.config.mjs", + "{workspaceRoot}/tools/eslint-rules/**/*", + { + "externalDependencies": [ + "eslint" + ] + } + ], + "outputs": [ + "{options.outputFile}" + ], + "metadata": { + "technologies": [ + "eslint" + ], + "description": "Runs ESLint on project", + "help": { + "command": "npx eslint --help", + "example": { + "options": { + "max-warnings": 0 + } + } + } + } + } + } + } + }, + "14221541608191622200": {}, + "17260986105460493071": { + "packages/turndown-plugin-gfm": { + "targets": { + "lint": { + "command": "eslint .", + "cache": true, + "options": { + "cwd": "packages/turndown-plugin-gfm" + }, + "inputs": [ + "default", + "^default", + "{workspaceRoot}/eslint.config.mjs", + "{workspaceRoot}/tools/eslint-rules/**/*", + { + "externalDependencies": [ + "eslint" + ] + } + ], + "outputs": [ + "{options.outputFile}" + ], + "metadata": { + "technologies": [ + "eslint" + ], + "description": "Runs ESLint on project", + "help": { + "command": "npx eslint --help", + "example": { + "options": { + "max-warnings": 0 + } + } + } + } + } + } + } + }, + "6874505746025276775": {}, + "9479442896631340904": { + "packages/turndown-plugin-gfm": { + "targets": { + "lint": { + "command": "eslint .", + "cache": true, + "options": { + "cwd": "packages/turndown-plugin-gfm" + }, + "inputs": [ + "default", + "^default", + "{workspaceRoot}/eslint.config.mjs", + "{workspaceRoot}/tools/eslint-rules/**/*", + { + "externalDependencies": [ + "eslint" + ] + } + ], + "outputs": [ + "{options.outputFile}" + ], + "metadata": { + "technologies": [ + "eslint" + ], + "description": "Runs ESLint on project", + "help": { + "command": "npx eslint --help", + "example": { + "options": { + "max-warnings": 0 + } + } + } + } + } + } + } + }, + "15174523476100391336": {}, + "11102925800252096922": { + "packages/turndown-plugin-gfm": { + "targets": { + "lint": { + "command": "eslint .", + "cache": true, + "options": { + "cwd": "packages/turndown-plugin-gfm" + }, + "inputs": [ + "default", + "^default", + "{workspaceRoot}/eslint.config.mjs", + "{workspaceRoot}/tools/eslint-rules/**/*", + { + "externalDependencies": [ + "eslint" + ] + } + ], + "outputs": [ + "{options.outputFile}" + ], + "metadata": { + "technologies": [ + "eslint" + ], + "description": "Runs ESLint on project", + "help": { + "command": "npx eslint --help", + "example": { + "options": { + "max-warnings": 0 + } + } + } + } + } + } + } + }, + "16649883691249550177": {}, + "9648230976117489289": { + "packages/turndown-plugin-gfm": { + "targets": { + "lint": { + "command": "eslint .", + "cache": true, + "options": { + "cwd": "packages/turndown-plugin-gfm" + }, + "inputs": [ + "default", + "^default", + "{workspaceRoot}/eslint.config.mjs", + "{workspaceRoot}/tools/eslint-rules/**/*", + { + "externalDependencies": [ + "eslint" + ] + } + ], + "outputs": [ + "{options.outputFile}" + ], + "metadata": { + "technologies": [ + "eslint" + ], + "description": "Runs ESLint on project", + "help": { + "command": "npx eslint --help", + "example": { + "options": { + "max-warnings": 0 + } + } + } + } + } + } + } } } \ No newline at end of file diff --git a/.nx/workspace-data/file-map.json b/.nx/workspace-data/file-map.json index 490022ac5..eb75f77ac 100644 --- a/.nx/workspace-data/file-map.json +++ b/.nx/workspace-data/file-map.json @@ -41,3731 +41,3836 @@ "fileMap": { "nonProjectFiles": [ { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FancytreeEvents.html", - "hash": "11031154792558652689" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Tables_image.png", - "hash": "5417625780542207119" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Lists.md", - "hash": "12112056947947146011" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/4_Adaptive icon_image.png", - "hash": "9672254538887140002" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API.NoteContextAwareWidget.html", - "hash": "10455528563649947810" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-6.html", - "hash": "9457762962429674796" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Search in note_image.png", - "hash": "14767314553298789957" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Cut to subnote.md", - "hash": "1597214027009838580" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/Adaptive icon.md", - "hash": "3497841704967107299" - }, - { - "file": "docs/Release Notes/Release Notes/v0.93.0.md", - "hash": "6446128540116970069" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List.md", - "hash": "6293287821691646630" - }, - { - "file": "docs/User Guide/User Guide/Troubleshooting/Error logs.md", - "hash": "15587281502024486048" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Navigation.md", - "hash": "12696895579094718506" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Object.html", - "hash": "7536195722949662168" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AttrFunction.html", - "hash": "7464389257892501573" - }, - { - "file": "docs/Developer Guide/!!!meta.json", - "hash": "3255937222893785990" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.TextElement.html", - "hash": "13001308591865194378" - }, - { - "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.parseString.html", - "hash": "10258104029178654570" - }, - { - "file": "docs/Script API/modules/Backend_Script_API.html", - "hash": "2670989234660369623" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Zen mode.md", - "hash": "12484251737157353550" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CancelStatic.html", - "hash": "2400180820286945238" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Block quotes & admonitions.png", - "hash": "1499961390844427836" - }, - { - "file": "docs/Developer Guide/Developer Guide/Scripting/Widgets/Right pane widget.md", - "hash": "13341365552460927801" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Key.html", - "hash": "7466986453655214266" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API.BasicWidget.html", - "hash": "7136750462660837560" - }, - { - "file": "docs/User Guide/User Guide/AI/8_Introduction_image.png", - "hash": "11452529331641889807" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/12_Tables_image.png", - "hash": "17637903660588300344" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/1_Note tree contextual menu_.png", - "hash": "747296639953030665" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/3_Zen mode_image.png", - "hash": "6013034841761075376" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/3_Tables_image.png", - "hash": "9228058938189586627" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/recent_notes.md", - "hash": "16017799368937039846" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosResponseHeaders.html", - "hash": "2442744119645635699" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/6_Images_image.png", - "hash": "6173165911963001959" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.CommandAndEventMappings.html", - "hash": "2268313864143285342" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosPromise.html", - "hash": "3408905621401339879" - }, - { - "file": "docs/Script API/assets/search.js", - "hash": "8475404948919950531" - }, - { - "file": "docs/Script API/modules/Backend_Script_API._internal_.EventEmitter.html", - "hash": "8242760582394611478" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Export diagram as SVG.md", - "hash": "8391941206097753891" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosHeaderValue.html", - "hash": "9512883085740903000" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.TypeOrArray.html", - "hash": "7227281976133909191" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Note type checklist.md", - "hash": "1608854407457647774" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CancelToken.html", - "hash": "17902608789772135187" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Custom app-wide CSS_image.png", - "hash": "3158185449180547797" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosAdapter.html", - "hash": "13933798201523018141" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatt.png", - "hash": "14391624469883910402" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Relationship.html", - "hash": "2373120637168991589" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Sharing/1_Serving directly the conte.png", - "hash": "12112716038656287241" - }, - { - "file": "docs/README.ru.md", - "hash": "12627167880272281170" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Read-Only Notes.md", - "hash": "8776625923756086770" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Cheerio.html", - "hash": "9617725570069495188" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.9-beta.md", - "hash": "9397735037604295419" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CommandData.html", - "hash": "5984048291317023628" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Web Clipper_image.png", - "hash": "4210423681076794011" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Note Map.md", - "hash": "1349664584062347967" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitter.EventEmitterReferencingAsyncResource.html", - "hash": "16079421563292372603" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryKeyEventObject.html", - "hash": "7199790450716776034" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ContentOpts-2.html", - "hash": "843600582580013845" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Attribute Inheritance.md", - "hash": "8343345793425816358" - }, - { - "file": "docs/Developer Guide/Developer Guide/Documentation_image.png", - "hash": "4287687447151188970" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.TaskContext.html", - "hash": "7871285994240472519" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Custom Widgets.md", - "hash": "3016592544713030940" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Sharing_share-single-note.png", - "hash": "9562584638001327012" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Element.html", - "hash": "6095597057243564126" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Internal API/API Reference.dat", - "hash": "3244421341483603138" - }, - { - "file": ".idea/.gitignore", - "hash": "13646957392060337731" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/entity_changes.md", - "hash": "11984017581176676352" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes_image.png", - "hash": "2285942951742705208" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.EventMappings.html", - "hash": "17522712746708162269" - }, - { - "file": "docs/Script API/enums/Frontend_Script_API._internal_.FancytreeSelectMode.html", - "hash": "10406956801362805969" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitter.EventEmitterAsyncResourceOptions.html", - "hash": "5102482543207472128" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Export as PDF_image.png", - "hash": "14541367628854414550" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes_steel-blue.png", - "hash": "3726910334005032045" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.FormDataVisitorHelpers.html", - "hash": "11306007087078053081" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Reference.md", - "hash": "11046588365730688403" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams_image.png", - "hash": "2085027971032498137" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.GetTextEditorCallback.html", - "hash": "14843214499299206182" - }, - { - "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/Setting up authentication.md", - "hash": "6015736112713223983" - }, - { - "file": ".github/ISSUE_TEMPLATE/bug_report.yml", - "hash": "9337980927788000468" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text.md", - "hash": "2403881404737477024" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Cancel.html", - "hash": "1851696810072605979" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Templates_template.png", - "hash": "18268213999228112195" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Other features_image.png", - "hash": "17467294145722623090" - }, - { - "file": ".npmrc", - "hash": "16137381183792061922" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Floating buttons_image.png", - "hash": "9229127427161350065" - }, - { - "file": "docs/README.it.md", - "hash": "9798316810783494206" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/1_Day Notes_image.png", - "hash": "16475107103618581356" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Images/Image references.md", - "hash": "9404432048954214990" - }, - { - "file": "docs/Release Notes/Release Notes/v0.91.6.md", - "hash": "2891090662713160134" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Search in note.md", - "hash": "7332983517167321294" - }, - { - "file": "docs/User Guide/User Guide/Note Types/2_File_image.png", - "hash": "5767399260855724832" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CallSite.html", - "hash": "9105341353515433236" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.2-beta.md", - "hash": "7134694010981034314" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.MouseEventBase.html", - "hash": "9847223446952188535" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Attribute.html", - "hash": "14233676832837243756" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.DefinitionObject.html", - "hash": "11130678699920159045" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/11_Tables_image.png", - "hash": "5258562961033949883" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Math Equations_image.png", - "hash": "16696251042196156633" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the data.png", - "hash": "4563135905265987265" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/2. Reverse proxy/Apache.md", - "hash": "12298787927497626453" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Default Note Title.md", - "hash": "13357835412456271247" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Special notes.md", - "hash": "3244421341483603138" - }, - { - "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.stripPrefix.html", - "hash": "15670937774342345272" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Icons.md", - "hash": "1744378485879608318" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/5_Adaptive icon_image.png", - "hash": "17290325327178029571" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/10_Tables_image.png", - "hash": "6404125826080231616" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.node_modules__types_xml2js.Options.html", - "hash": "14451666559484126665" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Event.html", - "hash": "1251345523646307022" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.RenderOptions.html", - "hash": "11685063307205303310" - }, - { - "file": "docs/User Guide/User Guide/Note Types/6_File_image.png", - "hash": "10934030213595628481" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams/ELK layout_ELK off.svg", - "hash": "1981254385350765245" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.LookupAddressEntry.html", - "hash": "5234862388258249396" - }, - { - "file": ".idea/codeStyles/codeStyleConfig.xml", - "hash": "4690022301721055948" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.BEtapiToken.html", - "hash": "7465710577091605064" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.10-beta.md", - "hash": "1078969479317092269" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.PromiseBase.html", - "hash": "1805758559982211811" - }, - { - "file": "docs/Developer Guide/Developer Guide/Building and deployment/Build deliveries locally.md", - "hash": "3170736676204731767" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Content language & Right-t.png", - "hash": "2884027460715375910" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/5_Developer-specific formatt.png", - "hash": "10133610562087684023" - }, - { - "file": "docs/Release Notes/!!!meta.json", - "hash": "10934753383109932202" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Deleted notes.md", - "hash": "3244421341483603138" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API.FAttachment.html", - "hash": "13471286589201764286" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NotePojo.html", - "hash": "13485037937373113578" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.OptionRow.html", - "hash": "85392993839447133" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Vertical and horizontal la.png", - "hash": "7070453246985156821" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.CommonResponseHeadersList.html", - "hash": "12686548264575273733" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Mobile Frontend_mobile-tab.png", - "hash": "12373682799958388972" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.BRevision.html", - "hash": "1913392095596974652" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.GenericAbortSignal.html", - "hash": "8823686662211753104" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Examples/Using promoted attributes .png", - "hash": "13316953234191714312" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/Adaptive icon_image.png", - "hash": "17678072455595448906" - }, - { - "file": "images/screenshots/app.png", - "hash": "955084500244844963" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.7-beta.md", - "hash": "12288347682016090997" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/4_Tables_image.png", - "hash": "8355105912319259830" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/1_Installing Ollama_image.png", - "hash": "14013766524203877283" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Sharing.md", - "hash": "16449818561772399839" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.TypedComponent.html", - "hash": "1592247705606960334" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme.md", - "hash": "8694971297894648515" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.RawAxiosResponseHeaders.html", - "hash": "1328538700446026505" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.CommonRequestHeadersList.html", - "hash": "6016657590786602881" - }, - { - "file": "nx.json", - "hash": "17259946656272583256" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Templates.md", - "hash": "6677127073180056229" - }, - { - "file": "docs/User Guide/User Guide/Note Types/5_Geo Map_image.png", - "hash": "5669308583844409052" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/3_Developer-specific formatt.png", - "hash": "371275438898256895" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Protected entities.md", - "hash": "8607204597560914266" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/1_Jump to Note_image.png", - "hash": "3109371474460200422" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NoteMetaData.html", - "hash": "6643969533434745761" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Internationalisation Translations/i18n-ally.md", - "hash": "15286767887045318756" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Read-Only Notes_image.png", - "hash": "647700179866845833" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API.FNote.html", - "hash": "2643559578902394996" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.MouseDownEvent.html", - "hash": "11958072015813563157" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/8_Tables_image.png", - "hash": "5258562961033949883" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Synchronisation/Content hashing.md", - "hash": "8981070653808491801" - }, - { - "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/Setting up authentication_.png", - "hash": "11786210734557105126" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.EventData.html", - "hash": "7371978295108003728" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NoteSwitchedContext.html", - "hash": "3972424598157172512" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API.FBranch.html", - "hash": "1369425044274420635" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.LabelType.html", - "hash": "10278520028325625693" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.EventMap.html", - "hash": "18377469335988447416" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons.md", - "hash": "10855339462601677185" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Labels.md", - "hash": "9387392694503447715" - }, - { - "file": ".nxignore", - "hash": "17027752051574521115" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Customize the Next theme.md", - "hash": "10932498007288012373" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/9_Tables_image.png", - "hash": "10336090900386736766" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Sharing_share-multiple-not.png", - "hash": "12880863418544002540" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Using Kubernetes.md", - "hash": "6747559135065742360" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Demo document.md", - "hash": "10094511099627127819" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.SerializerOptions.html", - "hash": "10688294646722029359" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Workspaces_image.png", - "hash": "12666342516606462643" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Code_image.png", - "hash": "5890806361392158763" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CancelTokenSource.html", - "hash": "2321427478602125655" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Vertical and horizontal layout.md", - "hash": "10256487723212567021" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Note ID.md", - "hash": "450617259989353772" - }, - { - "file": "docs/User Guide/User Guide/Note Types.md", - "hash": "3734229651482058716" - }, - { - "file": ".idea/misc.xml", - "hash": "14348037015527695066" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.ParserOptions.html", - "hash": "15642689994042434174" - }, - { - "file": "docs/Script API/media/README.it.md", - "hash": "14217194317100046164" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.4.md", - "hash": "2207971841022283765" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Bookmarks_bookmark-folder.png", - "hash": "1845229153111247293" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Images.md", - "hash": "9287615942710690324" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database.md", - "hash": "10952592975566243217" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Cloning Notes.md", - "hash": "7700476154666309105" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/3_Vertical and horizontal la.png", - "hash": "17791091569728992943" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.GenericHTMLFormElement.html", - "hash": "513753591946297609" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API.Api.html", - "hash": "13446311020763232058" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.SavingOpts.html", - "hash": "17517531639057561352" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/3_SQL Console_image.png", - "hash": "13660740225101115149" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AttributeType.html", - "hash": "5550475244964704932" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Customize the Next theme_i.png", - "hash": "9049696547697245045" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Promoted Attributes_image.png", - "hash": "15783140557738540121" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Similar Notes_image.png", - "hash": "8643335030510998526" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Relation Map_relation-map-.png", - "hash": "5132534751975390759" - }, - { - "file": "docs/User Guide/User Guide/Note Types/11_Geo Map_image.png", - "hash": "2543239855913430096" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_3_Split View_im.png", - "hash": "17939885197973038320" - }, - { - "file": "docs/User Guide/User Guide.md", - "hash": "1450359651649532141" - }, - { - "file": "docs/User Guide/User Guide/Note Types/File_image.png", - "hash": "6783984664127428948" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Printing.md", - "hash": "17241912836120464831" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Launch Bar.md", - "hash": "9757830933816714683" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Selector.html", - "hash": "15364640600220089516" - }, - { - "file": "scripts/update-build-info.ts", - "hash": "16199158489777820240" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/TLS Configuration.md", - "hash": "12439296878183116768" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Using Docker.md", - "hash": "15354643679921200435" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree.md", - "hash": "10401640377108524547" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Highlights list.md", - "hash": "612991856020272057" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ResolveOptions.html", - "hash": "2583999493139967374" - }, - { - "file": "docs/Script API/variables/Backend_Script_API._internal_.Object.html", - "hash": "735061891881479089" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.DefinitionObject.html", - "hash": "8482669630775134171" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac.md", - "hash": "14915015362708890087" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.3.md", - "hash": "18427677233259365358" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting/Code blocks_image.png", - "hash": "16799092375248159407" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used/Leaflet.md", - "hash": "5471188167022095551" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text_image.png", - "hash": "2939147542296328141" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.RawCommonResponseHeaders.html", - "hash": "3506987803332284666" - }, - { - "file": "docs/User Guide/User Guide/Troubleshooting/Error logs_image.png", - "hash": "10805210383135653112" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ContentOpts.html", - "hash": "11051628329727220926" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/6_Lists_image.png", - "hash": "12597899845274049940" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization_image.png", - "hash": "13708579463799173943" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Icons_note-icon-chang.png", - "hash": "11083556565458137739" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Marker.html", - "hash": "8991963297786749743" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Args.html", - "hash": "386788577814183214" - }, - { - "file": "docs/Developer Guide/Developer Guide/Dependency Management/Having a simpler packaging sys.md", - "hash": "7380313725791405277" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Options_image.png", - "hash": "13366394243903008319" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Recent Changes_image.png", - "hash": "5636741691843527729" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TextEditor.html", - "hash": "449560112535320014" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Sorting Notes.md", - "hash": "10860595661578165438" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/SQL Console.md", - "hash": "13100562027326538681" - }, - { - "file": ".github/actions/build-electron/action.yml", - "hash": "14612245546992951859" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.SqlExecuteResults.html", - "hash": "2078240985444622878" - }, - { - "file": "docs/Script API/assets/main.js", - "hash": "6389590901821178970" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/4_Other features_image.png", - "hash": "12203404498693344880" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.AttributeType.html", - "hash": "5684353554129692485" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.TagElement.html", - "hash": "5955058222239385082" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View.md", - "hash": "886075848609982938" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ConfirmDialogOptions.html", - "hash": "2485905035049187615" - }, - { - "file": "docs/User Guide/User Guide/AI/1_AI Provider Information_im.png", - "hash": "10888045542047015146" - }, - { - "file": "LICENSE", - "hash": "8606862000888906709" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.BaseJQueryEventObject.html", - "hash": "5013732184832830923" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Zen mode_image.png", - "hash": "3662917132549511544" - }, - { - "file": "docs/Developer Guide/Developer Guide/Notes for old development/Releasing a version.clone.md", - "hash": "7452856003847983708" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Promoted Attributes.md", - "hash": "5430776196114252034" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FancytreeNode.html", - "hash": "16364488325625359774" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Protected Notes_protecting.gif", - "hash": "9909987976886492758" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Promise.html", - "hash": "11866758654625306439" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting/1_Code blocks_image.png", - "hash": "12452128562004210306" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/Multi-Factor Authentication.md", - "hash": "10006749572057153946" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.IterableIterator.html", - "hash": "5163879713483896100" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/10_Images_image.png", - "hash": "8482371421622741436" - }, - { - "file": "docs/Developer Guide/Developer Guide/Project maintenance/Updating dependencies.md", - "hash": "12527925976936861939" - }, - { - "file": "docs/User Guide/User Guide/Note Types/10_Geo Map_image.png", - "hash": "8838519618452959037" - }, - { - "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/Test database.md", - "hash": "12683306435434855517" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TranslationTable.html", - "hash": "16850652013639160527" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown.md", - "hash": "11019657887828180506" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NoteParams.html", - "hash": "5715377170996239099" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Sharing/Serving directly the conte.png", - "hash": "1644425674057515860" - }, - { - "file": "docs/Script API/assets/highlight.css", - "hash": "4285074483474071706" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Block quotes & admonitions.png", - "hash": "9887089141669552684" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosInstance.html", - "hash": "13857640297500317744" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Global menu_image.png", - "hash": "215776480600711406" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases.md", - "hash": "11266482405619520103" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Mind Map_image.png", - "hash": "12216762309023170303" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryEventObject.html", - "hash": "1874567868978952553" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/ckeditor5-math.md", - "hash": "92408046703009242" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.default.html", - "hash": "1518836167267522724" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FAttributeRow.html", - "hash": "16526604781141457523" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.EventEmitter.EventEmitterAsyncResource.html", - "hash": "7206080304720434024" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.BNote.html", - "hash": "7005007978668651456" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/7_Images_image.png", - "hash": "17511659637484055697" - }, - { - "file": "vitest.workspace.ts", - "hash": "8851963806934849101" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Revisions.md", - "hash": "17445918024788718614" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Links_image.png", - "hash": "11406167236236482911" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.TransitionalOptions.html", - "hash": "10766908675740671008" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database/Demo Notes.md", - "hash": "1378072563095330583" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Custom app-wide CSS.md", - "hash": "17661816458846796544" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryPromise.html", - "hash": "400605862919872301" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Developer-specific formatt.png", - "hash": "6129242964974999554" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Code.md", - "hash": "2257698891491035087" - }, - { - "file": "docs/Developer Guide/Developer Guide/Installation/Download latest nightly and in.md", - "hash": "6689583225600859966" - }, - { - "file": "docs/User Guide/User Guide/AI/2_Introduction_image.png", - "hash": "4884550846089380843" - }, - { - "file": "docs/User Guide/User Guide/Note Types/2_Text_image.png", - "hash": "17505861757177107597" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options.md", - "hash": "2394676798595882833" - }, - { - "file": "docs/Script API/modules/Backend_Script_API._internal_.node_modules__types_xml2js.html", - "hash": "57223527041811899" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Keyboard Shortcuts.md", - "hash": "5332915151552262991" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/ckeditor5-math/Release management & continuou.md", - "hash": "16898764451434429632" - }, - { - "file": "docs/Script API/assets/icons.js", - "hash": "16920762893256242568" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/10_Calendar View_image.png", - "hash": "6057572322117403470" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NoteCommandData.html", - "hash": "4249395754539564632" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Note types.md", - "hash": "12191728192542611537" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/3_Adaptive icon_image.png", - "hash": "7856931497974089783" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TriggeredEvent.html", - "hash": "12620323996473383686" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Table.html", - "hash": "4028689333146133118" - }, - { - "file": "docs/User Guide/User Guide/Note Types/9_Geo Map_image.png", - "hash": "17335918274787502426" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Links_image.png", - "hash": "8876685958483648347" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosRequestTransformer.html", - "hash": "10880068715112388734" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.CommandMappings.html", - "hash": "5989980086619830728" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Block quotes & admonitions.md", - "hash": "5962660712660554216" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_Cr.png", - "hash": "14045585611753963314" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/5_Insert buttons_image.png", - "hash": "16494632615299758318" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/9_Lists_image.png", - "hash": "12986812650616357264" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosInterceptorOptions.html", - "hash": "9333796471759547757" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/3_General formatting_image.png", - "hash": "12935355679871327728" - }, - { - "file": "docs/User Guide/User Guide/Note Types/2_Mermaid Diagrams_image.png", - "hash": "17913912640153568729" - }, - { - "file": ".github/workflows/playwright.yml", - "hash": "11286744737758129262" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Similar Notes.md", - "hash": "14872467952454561602" - }, - { - "file": "docs/Release Notes/Release Notes/v0.94.0.md", - "hash": "9030403597079974748" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Versions and external plugins.md", - "hash": "16823304672831771300" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Canvas.md", - "hash": "9502581554311379088" - }, - { - "file": "docs/Release Notes/Release Notes/v0.92.7.md", - "hash": "17418643896362304150" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization_sync-in-pr.png", - "hash": "132284441928130501" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Note Map (Link map, Tree m.png", - "hash": "16598943343245802197" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AnyRest.html", - "hash": "12710122115453684289" - }, - { - "file": "docs/Release Notes/Release Notes/v0.92.6.md", - "hash": "2771016520384144999" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Themes.md", - "hash": "9431375033964731793" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.5-beta_image.png", - "hash": "18107480102557535583" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-2.html", - "hash": "7838335193815529689" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosRequestHeaders.html", - "hash": "14760718317659645650" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/4_General formatting_image.png", - "hash": "4875243929617270209" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Tables.md", - "hash": "15149183778855005839" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Backlinks.md", - "hash": "3244421341483603138" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NotePathRecord.html", - "hash": "4324180597327533759" - }, - { - "file": "docs/Release Notes/Release Notes/v0.91.3-beta.md", - "hash": "8650194840196326837" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Note tree contextual menu.md", - "hash": "17383973353100108762" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.Screen.html", - "hash": "14867701053189781907" - }, - { - "file": "docs/User Guide/User Guide/Note Types/1_Mermaid Diagrams_image.png", - "hash": "811538388658451497" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Script API.md", - "hash": "12652565283186593544" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/2. Reverse proxy/Nginx.md", - "hash": "10501145259956261610" - }, - { - "file": "docs/User Guide/User Guide/Scripting.md", - "hash": "17214995894850908124" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_4_Split View_im.png", - "hash": "7394270400443781214" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.SearchParams.html", - "hash": "9726462727745192733" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Jump to Note_image.png", - "hash": "9832511457480397483" - }, - { - "file": "docs/Release Notes/Release Notes/v0.92.3-beta.md", - "hash": "17317864745090652158" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Hoisting_note-hoistin.gif", - "hash": "16530172022334752331" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Quick search_image.png", - "hash": "11779273039184489731" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitter.Abortable.html", - "hash": "16436864775799866182" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/11_Calendar View_image.png", - "hash": "6636068838859637072" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-file-imp.gif", - "hash": "17798202582697524861" - }, - { - "file": "package.json", - "hash": "1602354664150176928" - }, - { - "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/Running tests.md", - "hash": "17371597141704701872" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.BOption.html", - "hash": "18026026232234236536" - }, - { - "file": "docs/Developer Guide/Developer Guide/Documentation.md", - "hash": "4320322749360908547" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryMouseEventObject.html", - "hash": "530744806508107000" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Include Note.md", - "hash": "16473224076113886785" - }, - { - "file": "docs/User Guide/User Guide/Note Types/8_Geo Map_image.png", - "hash": "2873444371416724136" - }, - { - "file": "docs/Script API/.nojekyll", - "hash": "12301719336174243164" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosProxyConfig.html", - "hash": "4788096206368192516" - }, - { - "file": "docs/Developer Guide/Developer Guide/Project maintenance/Updating dependencies/Testing compatibility.md", - "hash": "1432296361498549709" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.EventNames.html", - "hash": "10465196291594055305" - }, - { - "file": "docs/Script API/variables/Backend_Script_API._internal_.node_modules__types_xml2js.defaults.html", - "hash": "7094676868001758932" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Packaged version for Linux.md", - "hash": "5552434531380325100" - }, - { - "file": "docs/User Guide/User Guide/AI/3_Introduction_image.png", - "hash": "2601903779808317589" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ExecuteCommandData.html", - "hash": "2037836278009355941" - }, - { - "file": ".github/workflows/main-docker.yml", - "hash": "7393672086018807690" - }, - { - "file": ".github/actions/report-size/action.yml", - "hash": "17705058309368771560" - }, - { - "file": "docs/README.es.md", - "hash": "18392624940816469374" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosProgressEvent.html", - "hash": "12957834045669515554" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Content language & Right-to-le.md", - "hash": "13683115122867215765" - }, - { - "file": "docs/User Guide/User Guide/Note Types/7_Geo Map_image.png", - "hash": "6480890944074410737" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Other features.md", - "hash": "905284970607153537" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used.md", - "hash": "9961547767560894531" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Table of contents_image.png", - "hash": "4733595202943894589" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CKEvent.html", - "hash": "3375455992863958581" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information_im.png", - "hash": "7031327870994678887" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosBasicCredentials.html", - "hash": "9483175987744037880" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Render Note.md", - "hash": "10907883447497386270" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.11-beta.md", - "hash": "1640429599497982025" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/ckeditor5-math/Updating with upstream.md", - "hash": "1170819569679600371" - }, - { - "file": ".idea/dataSources.xml", - "hash": "1648100896127507056" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Book_image.png", - "hash": "1768928603662784559" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.FormSerializerOptions.html", - "hash": "11304844495282338077" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Pick.html", - "hash": "3341742815545223156" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Live reload.md", - "hash": "14445433634969987457" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Insert buttons_image.png", - "hash": "13776013165806672321" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API.FAttribute.html", - "hash": "917184200961509118" - }, - { - "file": "docs/Script API/assets/hierarchy.js", - "hash": "5555048876431558061" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/OneNote.md", - "hash": "16890517179618830832" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/1_Zen mode_image.png", - "hash": "17870947971075093638" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.ConfirmDialogCallback.html", - "hash": "1423651493475025417" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Export as PDF.md", - "hash": "13532136945252311206" - }, - { - "file": "docs/User Guide/User Guide/Note Types/14_Geo Map_image.png", - "hash": "17134563145439183238" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Footnotes_image.png", - "hash": "1577288190943202052" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization_sync-init.png", - "hash": "15322721528964766736" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/4_Developer-specific formatt.png", - "hash": "12452128562004210306" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization.md", - "hash": "16892041595153525525" - }, - { - "file": "docs/Developer Guide/Developer Guide/Building and deployment/Documentation.md", - "hash": "14979232810690309809" - }, - { - "file": "docs/User Guide/User Guide/Note Types/1_Relation Map_relation-map-.png", - "hash": "15720370010832556444" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.Axios.html", - "hash": "6269752855705474165" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.EventData.html", - "hash": "5083755709710579372" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_3_.png", - "hash": "1518431155925547874" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Hidden Notes.md", - "hash": "13368937778131192525" - }, - { - "file": ".github/workflows/codeql.yml", - "hash": "15023875105706044332" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Templates_template-create-.png", - "hash": "4737869303956882568" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CloneResponse.html", - "hash": "5030255813529246705" - }, - { - "file": "docs/Script API/hierarchy.html", - "hash": "7087761326174264857" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Markdown-like formatting.md", - "hash": "11422547423110182484" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosResponseInterceptorUse.html", - "hash": "11001137893491926586" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Render Note_image.png", - "hash": "5322813341800091719" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.EventEmitter.html", - "hash": "9085627966887041694" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Images_image.png", - "hash": "1599196428668280551" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Lists_image.png", - "hash": "13706420500212756506" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes.md", - "hash": "9592422191973306572" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/2_Tabs_image.png", - "hash": "10334320195251173502" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/On NixOS.md", - "hash": "4555018800299124693" - }, - { - "file": "docs/User Guide/User Guide/Note Types/6_Geo Map_image.png", - "hash": "890997284892548696" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.node_modules__types_xml2js.Builder.html", - "hash": "14955316081398141094" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/5_Images_image.png", - "hash": "404883919247951217" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Script API/Backend API.dat", - "hash": "3244421341483603138" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-4.html", - "hash": "14292946853601737478" - }, - { - "file": "docs/User Guide/User Guide/Troubleshooting/Error logs_error-logs-fire.png", - "hash": "16523046904936619160" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.ResponseType.html", - "hash": "1367713021652945755" - }, - { - "file": ".idea/git_toolbox_prj.xml", - "hash": "15025719909834120292" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/4_Vertical and horizontal la.png", - "hash": "7456379737044893906" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitter.html", - "hash": "4730824434973280272" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ParamEncoder.html", - "hash": "15628448467004066967" - }, - { - "file": "docs/Script API/assets/navigation.js", - "hash": "7622748052566621629" - }, - { - "file": "docs/User Guide/User Guide/Troubleshooting/Synchronization fails with 504.md", - "hash": "2785587467017944783" - }, - { - "file": ".github/ISSUE_TEMPLATE/task.yml", - "hash": "442256738724543481" - }, - { - "file": "docs/User Guide/User Guide/Note Types/1_Geo Map_image.png", - "hash": "5960205806672652286" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ContentOpts-1.html", - "hash": "14200853044524072086" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.PersistData.html", - "hash": "16866004549969430581" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.IteratorYieldResult.html", - "hash": "6690858814696502663" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Links.md", - "hash": "10628878424092766954" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Record.html", - "hash": "13673511288898005305" - }, - { - "file": "docs/User Guide/User Guide/Troubleshooting/Refreshing the application.md", - "hash": "3405008745811341199" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API.RightPanelWidget.html", - "hash": "3165901033915109292" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/notes.md", - "hash": "17589195664721269554" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.InternalAxiosRequestConfig.html", - "hash": "9365833872657075449" - }, - { - "file": ".editorconfig", - "hash": "11859237446229868960" - }, - { - "file": "docs/User Guide/User Guide/AI/6_Introduction_image.png", - "hash": "9380676484647713768" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Attachments.md", - "hash": "14577503159371179344" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Weight Tracker.md", - "hash": "11605650381109217207" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Multiple selection_image.png", - "hash": "9707758146677680170" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree_move-note-with-k.gif", - "hash": "1539959243766334436" + "file": "docs/User Guide/User Guide/Note Types/Text/4_Images_image.png", + "hash": "14862810319352213491" }, { "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/7_Calendar View_image.png", "hash": "11541935763676308271" }, { - "file": "docs/Script API/types/Backend_Script_API._internal_.Listener.html", - "hash": "3329650507998631496" + "file": "docs/User Guide/User Guide/Note Types/Text/Links_image.png", + "hash": "11406167236236482911" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.node_modules__types_xml2js.Options.html", + "hash": "14451666559484126665" }, { "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosHeaderMatcher.html", "hash": "13309236837429941975" }, { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FNoteRow.html", - "hash": "1484356400159794839" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Images_image.png", - "hash": "4210412299283729681" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Script API/Frontend API/FNote.dat", - "hash": "3244421341483603138" - }, - { - "file": ".github/ISSUE_TEMPLATE/feature_request.yml", - "hash": "13653184246748995672" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Creating a new option.md", - "hash": "7445777789708082311" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.DefaultEventMap.html", - "hash": "2483778765279634717" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/1_Icons on Mac_image.png", - "hash": "9113973157649197285" - }, - { - "file": "docs/User Guide/User Guide/Note Types/3_Geo Map_image.png", - "hash": "6747111431605585316" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_2_.png", - "hash": "7017134628923823634" - }, - { - "file": "docs/Script API/modules/Backend_Script_API._internal_.node_modules__types_xml2js.processors.html", - "hash": "6995519834803022692" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Manually.md", - "hash": "7984968569437996419" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Bulk Actions.md", - "hash": "2881796418862161644" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Attributes.md", - "hash": "14090747291386876448" - }, - { - "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.parseNumbers.html", - "hash": "11186627944493481537" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.0-beta.md", - "hash": "2832294761822956301" - }, - { - "file": "docs/Script API/enums/Backend_Script_API._internal_.HttpStatusCode.html", - "hash": "8745780281324259183" - }, - { - "file": "docs/Script API/index.html", - "hash": "7164310318541615803" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Images/Image references_image.png", - "hash": "1175189001050726431" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree_drag-and-drop.gif", - "hash": "16530764084716612313" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Search_image.png", - "hash": "16349440484070621360" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Other features_image.png", - "hash": "15510836132033988057" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/7_Tables_image.png", - "hash": "15239152810309003956" - }, - { - "file": ".idea/jsLinters/jslint.xml", - "hash": "711681400810612149" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Writer.html", - "hash": "456106708570117750" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Desktop Installation.md", - "hash": "4446390166291792083" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/10_Lists_image.png", - "hash": "2954862785845336764" - }, - { - "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.normalize.html", - "hash": "5359474619226365804" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.MentionItem.html", - "hash": "13820590719720410030" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.AxiosError.html", - "hash": "3538595726634027313" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/2_Zen mode_image.png", - "hash": "18110039784597588797" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TextRange.html", - "hash": "1639545837883955808" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/5_Vertical and horizontal la.png", - "hash": "6580926007613627467" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Building the editor.md", - "hash": "15005698969604672222" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.default.html", - "hash": "7838365315847650187" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Task Manager.md", - "hash": "5069971154417713445" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.PromptDialogOptions.html", - "hash": "7465892738608602420" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Sharing_shared-list.png", - "hash": "11693155295709888518" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-3.html", - "hash": "10184639014742437536" - }, - { - "file": "docs/Release Notes/Release Notes/v0.92.5-beta.md", - "hash": "14426279930922433783" - }, - { - "file": "docs/User Guide/User Guide/Note Types/1_Code_image.png", - "hash": "5782275106327359896" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Quick search.md", - "hash": "13334896477355249102" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryInputEventObject.html", - "hash": "9534752471101527686" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-export-n.gif", - "hash": "6892395771679875424" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/3_Installing Ollama_image.png", - "hash": "16240241501910096427" - }, - { - "file": "docs/Developer Guide/Developer Guide/Project maintenance/Updating dependencies/Node.js, Electron and `better-.md", - "hash": "7009722849407231683" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Footnotes.md", - "hash": "11339671296450160355" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Search.md", - "hash": "11467430470930503027" - }, - { - "file": "docs/Script API/variables/Frontend_Script_API.api.html", - "hash": "15725440464713569337" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Saved Search.md", - "hash": "8132559986223151235" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.AxiosHeaders.html", - "hash": "239737713549577107" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.MentionConfig.html", - "hash": "17866598684703786658" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes_image.png", - "hash": "451865633567842034" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Right Sidebar_image.png", - "hash": "8071194794088169141" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Highlights list_image.png", - "hash": "2083570772957836032" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Data directory_image.png", - "hash": "16647401677978700113" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Tree Concepts.md", - "hash": "15081221128162970091" - }, - { - "file": "docs/Script API/enums/Frontend_Script_API._internal_.FancytreeClickFolderMode.html", - "hash": "5271243830085395651" - }, - { - "file": ".github/workflows/nightly.yml", - "hash": "13780588628454221051" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.AsyncResource.html", - "hash": "11134645773041976007" - }, - { - "file": ".idea/encodings.xml", - "hash": "11374258188085040410" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Sharing/Serving directly the content o.md", - "hash": "1296006089989860555" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.8.md", - "hash": "10541241835395856847" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/SVG rendering.md", - "hash": "14938937788563990628" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/blobs.md", - "hash": "9289462600651110466" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/5_Other features_image.png", - "hash": "8577237444604362438" - }, - { - "file": "docs/User Guide/User Guide/Note Types/5_File_image.png", - "hash": "9655011546911837239" - }, - { - "file": ".github/workflows/release-winget.yml", - "hash": "11802042483604535783" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosRequestInterceptorUse.html", - "hash": "13834561859469322019" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information/OpenAI.md", - "hash": "3244421341483603138" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Archived Notes.md", - "hash": "16760672233525606038" - }, - { - "file": "docs/README-ZH_CN.md", - "hash": "1366683638207788793" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Attributes_image.png", - "hash": "9403778094976246640" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/Installing Ollama.md", - "hash": "12841437113258344682" - }, - { - "file": "docs/User Guide/User Guide/Theme development/1_Custom app-wide CSS_image.png", - "hash": "17083234048482228473" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosInterceptorManager.html", - "hash": "16067141193448503175" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Examples/New Task launcher button.md", - "hash": "918543869021637630" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TextPosition.html", - "hash": "5309524778644384927" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Evernote.md", - "hash": "10663074258500447978" - }, - { - "file": "docs/User Guide/User Guide/Note Types/13_Geo Map_image.png", - "hash": "3444457344697003162" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/7_Lists_image.png", - "hash": "7647172644799470339" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API.Api.html", - "hash": "10134937553251491464" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_2_Split View_im.png", - "hash": "15941739623146058763" - }, - { - "file": "docs/User Guide/User Guide/Troubleshooting/Reporting issues.md", - "hash": "7437940663744225187" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.node_modules__types_xml2js.Parser.html", - "hash": "8038479147069214953" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Partial.html", - "hash": "4501011672124687658" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/Slightly blurry icon on Ma.png", - "hash": "12881778660438955813" - }, - { - "file": "docs/User Guide/User Guide/Troubleshooting.md", - "hash": "16688909957107755744" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Math Equations.md", - "hash": "7352168231624868948" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.AbstractBeccaEntity.html", - "hash": "8730749362119426250" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.ElementType.html", - "hash": "3432788365641156892" - }, - { - "file": ".idea/modules.xml", - "hash": "11070074368343041178" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting.md", - "hash": "748081058892517144" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/1_Calendar View_image.png", - "hash": "6148618346253868614" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Mobile Frontend.md", - "hash": "1441716712876520647" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Promoted Attributes_promot.png", - "hash": "4117009512006470814" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/ckeditor5-math_image.png", - "hash": "3354031708515247111" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/6_Insert buttons_image.png", - "hash": "11895482486771487063" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Relations.md", - "hash": "6540434149738193967" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/8_Images_image.png", - "hash": "9366125920821414974" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Saving data via spaced update.md", - "hash": "15110096891490816903" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation.md", - "hash": "16110939920725749339" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.PropertyKey.html", - "hash": "11788481235345192510" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.GenericFormData.html", - "hash": "6929183783104069561" - }, - { - "file": "docs/Release Notes/Release Notes/v0.91.5.md", - "hash": "7852050459752848879" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Syntax highlighting.md", - "hash": "133151893331360659" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Displaying the option in setti.md", - "hash": "8267518082616976817" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Custom Widgets/Widget Basics.md", - "hash": "11549739193679627411" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.CanceledError.html", - "hash": "4425156980023604406" - }, - { - "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.firstCharLowerCase.html", - "hash": "922120200627718986" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_General formatting_image.png", - "hash": "9106571901573895633" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams/ELK layout.md", - "hash": "9218990841595290329" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Vertical and horizontal la.png", - "hash": "17788024311673518016" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/1_Slightly blurry icon on Ma.png", - "hash": "704956280599536830" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Global menu.md", - "hash": "824107434255196614" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FAttachmentRow.html", - "hash": "17859240158533988201" - }, - { - "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.parseStringPromise.html", - "hash": "17682488357431062503" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Tabs.md", - "hash": "9299907944748565805" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Upgrading TriliumNext.md", - "hash": "2632666519047935337" - }, - { - "file": "docs/Script API/modules/Backend_Script_API._internal_.html", - "hash": "1411675043711338139" - }, - { - "file": "docs/Script API/assets/icons.svg", - "hash": "12265282051439672960" - }, - { - "file": "docs/Developer Guide/Developer Guide/Building and deployment/CI/Main_image.png", - "hash": "5477858928741357904" - }, - { - "file": ".idea/sqldialects.xml", - "hash": "1907427473079819363" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_General formatting_image.png", - "hash": "13063031561540176225" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/2_SQL Console_image.png", - "hash": "7503307765374810706" - }, - { - "file": "docs/User Guide/User Guide/Note Types/15_Geo Map_image.png", - "hash": "4140348661462948102" - }, - { - "file": ".idea/codeStyles/Project.xml", - "hash": "17510646002422655057" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.BAttribute.html", - "hash": "12076925399563302864" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database.md", - "hash": "4406107932468637386" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CodeMirrorInstance.html", - "hash": "5254704683408293778" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/6_Adaptive icon_image.png", - "hash": "17558530465809578826" - }, - { - "file": "docs/User Guide/User Guide/Note Types/3_File_image.png", - "hash": "14996991930227579563" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams.md", - "hash": "14857943768636243310" - }, - { - "file": "docs/User Guide/User Guide/Troubleshooting/Anonymized Database_image.png", - "hash": "201026404721860858" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosDefaults.html", - "hash": "4789207332665890873" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.RecentNoteRow.html", - "hash": "11559748337879587947" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/3_Images_image.png", - "hash": "17061610823626139831" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Navigation_image.png", - "hash": "12236157060422417393" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FBranchRow.html", - "hash": "15841520180055323953" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NotePathRecord.html", - "hash": "5314139773497320682" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Exclude.html", - "hash": "6634549736483692084" - }, - { - "file": "docs/Script API/modules/Frontend_Script_API._internal_.html", - "hash": "4791159135464329921" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Relation Map_relation-map-.gif", - "hash": "11740192765914054661" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/3_Links_image.png", - "hash": "15811656947725398233" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.12.md", - "hash": "9620208026446895995" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CreateAxiosDefaults.html", - "hash": "4682429153033268388" - }, - { - "file": "docs/Release Notes/Release Notes/v0.92.0-beta.md", - "hash": "14565759833614120830" - }, - { - "file": "docs/Developer Guide/Developer Guide/Building and deployment/CI/Main.md", - "hash": "17316636940774967390" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Custom Request Handler.md", - "hash": "9170902304145032041" - }, - { - "file": "docs/Developer Guide/Developer Guide/Building and deployment/CI/1_Main_image.png", - "hash": "14970379467694797728" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Geo Map_image.png", - "hash": "6164131355503646691" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Iterator.html", - "hash": "1549347431730460347" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Protected Notes.md", - "hash": "5093501931256724020" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-1.html", - "hash": "17242853187880822286" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Internationalisation Translations/Server translations.md", - "hash": "233325850886770120" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/attributes.md", - "hash": "18044189470051526719" - }, - { - "file": "renovate.json", - "hash": "13944559841874503663" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.TypedBasicWidget.html", - "hash": "9014785497596129429" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.List.html", - "hash": "16260087667105894937" - }, - { - "file": "docs/User Guide/User Guide/Note Types/1_Text_image.png", - "hash": "13901334951495473202" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.BranchRow.html", - "hash": "6739150629511690175" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/ETAPI (REST API).md", - "hash": "5606902658267694054" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.EventOnlyNames.html", - "hash": "14604459281094063363" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Launchers.md", - "hash": "17121274757495258227" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/1_Workspaces_image.png", - "hash": "4002479791831846933" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Ribbon_image.png", - "hash": "253567192754290441" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.EventListener.html", - "hash": "3086992513345785187" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.LookupAddress.html", - "hash": "14049613797860375879" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.CommandNames.html", - "hash": "2129304447782419249" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AttributeRow.html", - "hash": "15707791380899076017" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Thenable.html", - "hash": "8331448234773365089" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Other features_image.png", - "hash": "1340984468489886696" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/8_Lists_image.png", - "hash": "7443683400857714109" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Jump to Note_recent-notes.gif", - "hash": "4138922403272569966" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/2_Vertical and horizontal la.png", - "hash": "17310758833048940667" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosRequestConfig.html", - "hash": "9355857643405320103" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Bookmarks.md", - "hash": "8976377563476496635" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.RawAxiosHeaders.html", - "hash": "11240216240251060271" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Data directory.md", - "hash": "4358803339908624454" - }, - { - "file": "docs/Developer Guide/Developer Guide/Building and deployment/Releasing a version.md", - "hash": "16796012838594019346" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Tabs_image.png", - "hash": "7795320006621100645" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/7_Insert buttons_image.png", - "hash": "12084899036395439728" - }, - { - "file": "docs/User Guide/User Guide/AI/5_Introduction_image.png", - "hash": "4850690168254105590" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/Calendar View.md", - "hash": "1959120139728442097" - }, - { - "file": "CODE_OF_CONDUCT", - "hash": "18279634385063499779" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.5-beta.md", - "hash": "10117902968885317624" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Disposable.html", - "hash": "17695646711983531865" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Safe mode.md", - "hash": "1713747027699127500" - }, - { - "file": "docs/Developer Guide/Developer Guide/Scripting/Widgets.md", - "hash": "12822032052331653311" - }, - { - "file": "SECURITY.md", - "hash": "599955342543329887" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Include Note_image.png", - "hash": "13366623301870990750" - }, - { - "file": "docs/User Guide/User Guide/Note Types/4_File_image.png", - "hash": "6230957845104792702" - }, - { - "file": "docs/README.ja.md", - "hash": "423329561350748151" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NodeData.html", - "hash": "4571368827230764181" - }, - { - "file": "docs/User Guide/User Guide/Note Types/4_Geo Map_image.png", - "hash": "2426346789252029208" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/6_Other features_image.png", - "hash": "3612025371214749570" - }, - { - "file": "docs/Release Notes/Release Notes/v0.91.2-beta.md", - "hash": "7463292530355249790" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/options.md", - "hash": "11018885735468470461" - }, - { - "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/1_Setting up authentication_.png", - "hash": "6311326131929912302" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Math Equations_image.png", - "hash": "17950780031579539712" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Workspaces.md", - "hash": "4135430089914112456" - }, - { - "file": "docs/User Guide/User Guide/Quick Start.md", - "hash": "26614788084837278" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Key2.html", - "hash": "3433423352949927099" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.XmlDeclarationAttributes.html", - "hash": "7252070241156279013" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Internationalisation Translations/Guidelines.md", - "hash": "4788416431512568863" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.RevisionRow.html", - "hash": "9642250565769124462" - }, - { - "file": "docs/Developer Guide/Developer Guide/Project maintenance/Updating dependencies/bettersqlite binaries.md", - "hash": "15329551937381145875" - }, - { - "file": "docs/Script API/media/README.ja.md", - "hash": "5839329094632699960" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/General formatting_image.png", - "hash": "12783629317063905582" - }, - { - "file": "docs/Developer Guide/Developer Guide/Troubleshooting/Error [TransformError] The pac.md", - "hash": "2007360804189743501" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.IteratorReturnResult.html", - "hash": "308316750572840399" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Updating to a newer version of.md", - "hash": "208622457670454515" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FancytreeOptions.html", - "hash": "7213971429337564504" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Filter.html", - "hash": "14499170204301357222" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.6-beta.md", - "hash": "665053246882198240" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosHeaderParser.html", - "hash": "12559633325326468874" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/2_Installing Ollama_image.png", - "hash": "5664446890215872177" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/3_Insert buttons_image.png", - "hash": "16565743405065440773" - }, - { - "file": ".gitignore", - "hash": "11919028057662818718" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/4_Images_image.png", - "hash": "14862810319352213491" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Note Map (Link map, Tree map).md", - "hash": "5234725591771253677" - }, - { - "file": "docs/User Guide/User Guide/Note Types/18_Geo Map_image.png", - "hash": "13441170146038040719" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Note tree contextual menu_.png", - "hash": "7539417519466307919" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Images_image.png", - "hash": "14485228935641695910" - }, - { - "file": "docs/Developer Guide/Developer Guide/Scripting/Widgets/CSS.md", - "hash": "3537418956212770699" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.StaticEventEmitterOptions.html", - "hash": "5066445864444001282" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/8_Insert buttons_image.png", - "hash": "16706472587272328864" - }, - { - "file": ".idea/vcs.xml", - "hash": "16873264805383449197" - }, - { - "file": "docs/Release Notes/Release Notes/v0.91.1-beta.md", - "hash": "1505295548915455849" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.IteratorResult.html", - "hash": "257322488402218270" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/revisions.md", - "hash": "6910018916604118009" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.SetNoteOpts.html", - "hash": "12907434742803176528" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Multiple selection.md", - "hash": "14248403792799944995" - }, - { - "file": "docs/User Guide/User Guide/Theme development/2_Custom app-wide CSS_image.png", - "hash": "5480944933144148013" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes_dark-theme.png", - "hash": "4104069441770412146" - }, - { - "file": ".github/FUNDING.yml", - "hash": "9417438148586196659" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes.md", - "hash": "7930914628254226583" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CustomParamsSerializer.html", - "hash": "15081765819063145387" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-5.html", - "hash": "960615437114587660" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/First steps.md", - "hash": "11319680458358123245" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.node_modules__types_xml2js.OptionsV2.html", - "hash": "5920402519687550675" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Links_image.png", - "hash": "15063546866325110183" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Keyboard shortcuts.md", - "hash": "17819850783262866648" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.ArrayBufferLike.html", - "hash": "7422498195549677002" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.BBranch.html", - "hash": "12776123451982372768" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.DragAndDrop5.html", - "hash": "12235972956045755395" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/etapi_tokens.md", - "hash": "2602584635600548101" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosAdapterConfig.html", - "hash": "1582111942992506095" - }, - { - "file": "docs/Developer Guide/Developer Guide/Documentation/Documentation references in th.md", - "hash": "4999625856386815050" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Lists_image.png", - "hash": "5447861844644759091" - }, - { - "file": "docs/User Guide/User Guide/Note Types/1_File_image.png", - "hash": "2974379219914373732" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosResponseTransformer.html", - "hash": "2806242482626180969" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosStatic.html", - "hash": "8016093090359225641" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Docker.md", - "hash": "11338947733300465635" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Events.md", - "hash": "16576016033025672802" - }, - { - "file": "docs/User Guide/User Guide/Note Types/12_Geo Map_image.png", - "hash": "7173377365018544807" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/6_Developer-specific formatt.png", - "hash": "2718064772609307655" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting/Code blocks.md", - "hash": "3478413245687427782" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AttachmentRow.html", - "hash": "15465410837105601985" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Trigger UI refresh.md", - "hash": "12597276870551481120" - }, - { - "file": "tsconfig.json", - "hash": "15145157276445734434" - }, - { - "file": "docs/User Guide/User Guide/Note Types/File.md", - "hash": "12296690400052211633" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Examples/New Task launcher button_i.png", - "hash": "12237996247459794678" - }, - { - "file": "docs/Developer Guide/Developer Guide/Notes for old development/Build deliveries locally.clone.md", - "hash": "16752226799330019694" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/3_Other features_image.png", - "hash": "14748759719944428714" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Insert buttons_image.png", - "hash": "989188453960649104" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Configuration (config.ini or environment variables)/Cross-Origin Resource Sharing .md", - "hash": "8992349904956274857" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Archived Notes_hide-archiv.png", - "hash": "14754545197579652981" - }, - { - "file": "docs/Developer Guide/Developer Guide/Building and deployment/Running a development build.md", - "hash": "5918235052453307119" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Froca.html", - "hash": "1217693842643344527" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used/CKEditor.md", - "hash": "13836346921716381572" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Branch prefixes.md", - "hash": "3244421341483603138" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.PromptShownDialogCallback.html", - "hash": "10896789866055321500" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.StaticEventEmitterIteratorOptions.html", - "hash": "11141466728229885637" - }, - { - "file": "docs/Script API/media/README-ZH_CN.md", - "hash": "11984743821127984549" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Custom Widgets/Word count widget.md", - "hash": "9645085549983198995" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Recent Changes.md", - "hash": "8884492790625828020" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Saved Search_saved-search.gif", - "hash": "7608073468067457147" - }, - { - "file": "docs/Developer Guide/Developer Guide/Notes for old development/Running a development build.clone.md", - "hash": "18190833443469068343" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Images/1_Image references_image.png", - "hash": "15112796094753790620" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.Required.html", - "hash": "13874622162097676032" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used/MindElixir.md", - "hash": "6918212641187571529" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Removed icons.md", - "hash": "12540003826330492194" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitterOptions.html", - "hash": "17877148018809949898" - }, - { - "file": "docs/User Guide/User Guide/AI/9_Introduction_image.png", - "hash": "18028155585930429734" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/3_Lists_image.png", - "hash": "7911785825993500211" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TextNode.html", - "hash": "6688773409712327203" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/3_Calendar View_image.png", - "hash": "7365965105798352895" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Task Manager_task-manager.png", - "hash": "15131572581326854447" - }, - { - "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.parseBooleans.html", - "hash": "13001294351403898208" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_1_Split View_im.png", - "hash": "8605575081147969224" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ViewScope.html", - "hash": "3321680446742914167" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/1_Note Map (Link map, Tree m.png", - "hash": "12373337465272366302" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Note source_image.png", - "hash": "5630189849743414946" - }, - { - "file": "docs/Script API/media/README.es.md", - "hash": "12007132810736524416" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/4_Calendar View_image.png", - "hash": "5933726449688725337" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Tables_image.png", - "hash": "4005816462770724619" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/1_Export as PDF_image.png", - "hash": "4937399655807059093" - }, - { - "file": "docs/User Guide/User Guide/Troubleshooting/Anonymized Database.md", - "hash": "1892644441410455042" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/2_Slightly blurry icon on Ma.png", - "hash": "2401758914571491717" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/Installing Ollama_image.png", - "hash": "910316219442712311" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Formatting toolbar_image.png", - "hash": "9465014681604577852" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Cloning Notes_create-clone.gif", - "hash": "304941799268696983" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EtapiTokenRow.html", - "hash": "10941322562955927911" - }, - { - "file": "docs/User Guide/User Guide/Troubleshooting/Error logs_error-logs-expo.png", - "hash": "6194482635852243395" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/First steps/mind_map.js", - "hash": "10796090623247054169" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.BuilderOptions.html", - "hash": "7369938283163183148" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/6_Tables_image.png", - "hash": "7670352131626581828" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/5_Tables_image.png", - "hash": "1917723022829886737" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Cloning Notes/Branch prefix.md", - "hash": "176004439186847737" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Root.html", - "hash": "15144226037365053003" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Internationalisation Translat.md", - "hash": "2844329594560711440" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Table of contents.md", - "hash": "10314448453619064211" - }, - { - "file": "docs/User Guide/User Guide/Note Types/1_Relation Map_relation-map-.gif", - "hash": "10041817102859838104" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Developer-specific formatt.png", - "hash": "13063031561540176225" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Footnotes_image.png", - "hash": "15321934377294206330" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-inline-i.gif", - "hash": "14529090719970710849" - }, - { - "file": "scripts/update-nightly-version.ts", - "hash": "11430035494524347958" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List_image.png", - "hash": "17344203973631084668" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/2_Adaptive icon_image.png", - "hash": "2898250727568220507" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Tables_image.png", - "hash": "17750886350164547911" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ConfirmWithMessageOptions.html", - "hash": "2506067464385064028" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.HeadersDefaults.html", - "hash": "11660903537271563350" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Custom Resource Providers.md", - "hash": "14771953276779663048" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Build information.md", - "hash": "927621925199425057" - }, - { - "file": "docs/User Guide/User Guide/AI/4_Introduction_image.png", - "hash": "7955162789754070400" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Lists_image.png", - "hash": "8577237444604362438" - }, - { - "file": "tsconfig.base.json", - "hash": "8900268571896142108" - }, - { - "file": "docs/User Guide/User Guide/Note Types_image.png", - "hash": "11158350846319988504" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ConvertOpts.html", - "hash": "15701215347730249486" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/5_Installing Ollama_image.png", - "hash": "6152858080669098007" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Copy image reference to the cl.md", - "hash": "5997370566040672231" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Book.md", - "hash": "15417036035073159470" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/1_Note List_image.png", - "hash": "5608976400586326827" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/2_Note List_image.png", - "hash": "10714735469933566718" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-7.html", - "hash": "15012618481181922435" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Ribbon.md", - "hash": "15123628542353858523" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Note Map_image.png", - "hash": "1162798172636853322" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosResponse.html", - "hash": "6858727221974372008" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.SerializerVisitor.html", - "hash": "1067379542585829302" - }, - { - "file": "docs/Release Notes/Release Notes/Release Template.md", - "hash": "10587082767465867254" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Differences from upstream.md", - "hash": "18050776852643274350" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/SQL Console_image.png", - "hash": "970435259063086957" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Launch Bar_image.png", - "hash": "3856338290485766365" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information.md", - "hash": "15763428834172387866" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.convertableToString.html", - "hash": "3228561214395660819" - }, - { - "file": ".github/actions/build-server/action.yml", - "hash": "12834103831780063020" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Refresh widget with option cha.md", - "hash": "12967337054313845860" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Hidden Notes_image.png", - "hash": "17789739194721579134" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.AddToToolbarOpts.html", - "hash": "15598576219424391202" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Geo Map_image.jpg", - "hash": "14126513805103816937" - }, - { - "file": "docs/Release Notes/Release Notes/v0.92.4.md", - "hash": "9768188864190804507" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.Multiplicity.html", - "hash": "13792316861027742564" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Frontend Basics.md", - "hash": "14476108367955913260" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CKNode.html", - "hash": "328358266701651791" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes.md", - "hash": "4048785561696936259" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ParamsSerializerOptions.html", - "hash": "3588430129710258287" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Examples/Downloading responses from Goo.md", - "hash": "3591187406500098510" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/9_Images_image.png", - "hash": "5509956150273006831" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Check box option.md", - "hash": "13176063915179660637" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Backup.md", - "hash": "11054206897853098224" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Insert buttons.md", - "hash": "10439313914343399726" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Multiple server instances.md", - "hash": "14997675224095677092" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CheerioParserOptions.html", - "hash": "15172117939473057072" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Right Sidebar.md", - "hash": "11028754003011624084" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosAdapterName.html", - "hash": "13105758170302488612" - }, - { - "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/4_Installing Ollama_image.png", - "hash": "4991925732090469797" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Configuration (config.ini or environment variables)/Trilium instance.md", - "hash": "17970831384961567831" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ContextMenuCommandData.html", - "hash": "7750561669371601406" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Revisions.md", - "hash": "3244421341483603138" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_5_.png", - "hash": "6214291566037882613" - }, - { - "file": "packages/.gitkeep", - "hash": "3244421341483603138" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Web View.md", - "hash": "11930025137242473821" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/2_Calendar View_image.png", - "hash": "8746483486106953393" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/branches.md", - "hash": "11383257066368994244" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Web Clipper.md", - "hash": "2359889091966702200" - }, - { - "file": "docs/Script API/variables/Backend_Script_API.api.html", - "hash": "2357111998918240337" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Jump to Note.md", - "hash": "13969417585075707281" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.TaskData.html", - "hash": "5988678324469384089" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Revisions_note-revisi.png", - "hash": "15021951667703156902" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Loading data.md", - "hash": "17419379493759801290" - }, - { - "file": "docs/User Guide/User Guide/Note Types/17_Geo Map_image.png", - "hash": "18076589540377938573" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Configuration (config.ini or e.md", - "hash": "14993988245541217079" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/9_Calendar View_image.png", - "hash": "16035162645109284070" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Sharing_share-single-note-.png", - "hash": "6136583984879914294" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AttachmentOpts.html", - "hash": "152500221014723550" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NodePatch.html", - "hash": "6729580968896710441" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting/2_Code blocks_image.png", - "hash": "15497219282555300265" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.Handler.html", - "hash": "460599419953386172" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ConfirmWithTitleOptions.html", - "hash": "5866678357727613126" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes/Theme Gallery.md", - "hash": "18153059640044698398" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/4_Insert buttons_image.png", - "hash": "14260304610675467053" - }, - { - "file": ".idea/jsLibraryMappings.xml", - "hash": "463890270158677548" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Recent Changes_image.png", - "hash": "16567853903302976035" - }, - { - "file": "docs/Release Notes/Release Notes/v0.90.1-beta.md", - "hash": "2310438812816074728" - }, - { - "file": "docs/User Guide/User Guide/Note Types/2_Geo Map_image.png", - "hash": "7283724173419351355" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Fancytree.html", - "hash": "10131902098145945474" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Note source.md", - "hash": "9394701129235967378" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Weight Tracker_image.png", - "hash": "9366125920821414974" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/4_Lists_image.png", - "hash": "8922870427366632483" - }, - { - "file": "docs/User Guide/User Guide/AI/1_Introduction_image.png", - "hash": "4877080719766343931" - }, - { - "file": ".github/workflows/release.yml", - "hash": "17127017447936409690" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.ConfirmDialogResult.html", - "hash": "5446474556972615089" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.BAttachment.html", - "hash": "8665382541585871854" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Options_image.png", - "hash": "13893366860557066470" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/8_Calendar View_image.png", - "hash": "13401928785023381483" - }, - { - "file": "docs/Script API/classes/Backend_Script_API.BRecentNote.html", - "hash": "11994967186676125771" - }, - { - "file": ".github/workflows/dev.yml", - "hash": "97027197327334007" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/5_Calendar View_image.png", - "hash": "15719916793769487087" - }, - { - "file": "docs/User Guide/User Guide/Note Types/16_Geo Map_image.png", - "hash": "17273732328125046708" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.ContentType.html", - "hash": "13932579651356217652" - }, - { - "file": "docs/Script API/media/README.md", - "hash": "13555307518746257814" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-export-s.gif", - "hash": "13674308169686225848" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Icons_note-icon-galle.png", - "hash": "11774634652263476090" - }, - { - "file": "docs/Script API/assets/style.css", - "hash": "6390674142144445392" - }, - { - "file": "docs/User Guide/User Guide/Scripting/Custom Widgets/Word count widget_image.png", - "hash": "2841511895989652415" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.UIEventBase.html", - "hash": "7464724917937222976" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.SpacedUpdate.html", - "hash": "18328662110444012644" - }, - { - "file": "docs/Script API/classes/Backend_Script_API._internal_.node_modules__types_xml2js.ValidationError.html", - "hash": "9783880855468813600" - }, - { - "file": "docs/Release Notes/Release Notes/v0.92.1-beta.md", - "hash": "9808089043918900724" - }, - { - "file": "docs/Developer Guide/Developer Guide/Scripting/Server-side imports.md", - "hash": "11219131325031274988" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Zoom.md", - "hash": "3244421341483603138" - }, - { - "file": "docs/User Guide/!!!meta.json", - "hash": "11895438397111702315" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams/ELK layout_ELK on.svg", - "hash": "16635311815022210160" - }, - { - "file": "docs/Script API/modules/Frontend_Script_API.html", - "hash": "9601829814309710108" - }, - { - "file": "README.md", - "hash": "13679989229500744212" - }, - { - "file": "docs/Release Notes/Release Notes/v0.91.4-beta.md", - "hash": "13432720443489500483" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CommentElement.html", - "hash": "5757791309139487861" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note buttons.md", - "hash": "13864464437617054232" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Cut to subnote_cut-to-subn.gif", - "hash": "11217765058792445527" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_4_.png", - "hash": "3728661401474084659" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Tabs_image.png", - "hash": "17923007007271061715" - }, - { - "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Environment setup.md", - "hash": "17921742902733994403" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/Slightly blurry icon on Mac.md", - "hash": "13487479054609586827" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note buttons_image.png", - "hash": "6536290798453171827" - }, - { - "file": "docs/User Guide/User Guide/AI/7_Introduction_image.png", - "hash": "5587697700215758247" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization_sync-confi.png", - "hash": "2997447751316549256" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Floating buttons.md", - "hash": "7301256874416908847" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/1_Adaptive icon_image.png", - "hash": "9113973157649197285" - }, - { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Hidden notes.md", - "hash": "12457340832473421506" - }, - { - "file": "docs/User Guide/User Guide/FAQ.md", - "hash": "16165615300336202445" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Options.md", - "hash": "11823746626813599281" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used/Excalidraw.md", - "hash": "10507559843179746851" - }, - { - "file": "docs/User Guide/User Guide/AI/Introduction.md", - "hash": "7557589660733249024" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Mind Map.md", - "hash": "10495538393047943834" - }, - { - "file": "docs/Script API/classes/Frontend_Script_API._internal_.NoteContext.html", - "hash": "3072165195826397058" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Canceler.html", - "hash": "8429141126574678442" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.CallbackBase.html", - "hash": "741726841759646895" - }, - { - "file": "eslint.config.mjs", - "hash": "9204104122661382069" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Insert buttons_image.png", - "hash": "9041778621024218634" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Canvas_image.png", - "hash": "1139182728331705462" - }, - { - "file": "package-lock.json", - "hash": "14055134617324864882" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Bulk Actions_image.png", - "hash": "378004986618242169" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/Formatting toolbar.md", - "hash": "9300995663475426917" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CreateLinkOptions.html", - "hash": "13233819667236849105" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Bookmarks_bookmarks.gif", - "hash": "6177069217916149128" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CancelTokenStatic.html", - "hash": "7602172161601555412" - }, - { - "file": "docs/User Guide/User Guide/Installation & Setup/Mobile Frontend_mobile-sma.png", - "hash": "8564668320550827697" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Updater.html", - "hash": "1581734712077372064" - }, - { - "file": "docs/Developer Guide/Developer Guide/Dependency Management/Adding a new client library.md", - "hash": "7049385257986266177" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/2_Formatting toolbar_image.png", - "hash": "11287318707285627003" - }, - { - "file": "docs/User Guide/User Guide/AI/Introduction_image.png", - "hash": "17351850101399104891" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.Func.html", - "hash": "17945745625077581027" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/1_SQL Console_image.png", - "hash": "12789086198380592587" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ContentOpts-3.html", - "hash": "184966545090795313" + "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/Setting up authentication_.png", + "hash": "11786210734557105126" }, { "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NoteAndBranch.html", "hash": "5338132683548030950" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/5_Lists_image.png", - "hash": "6428938901484193450" + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosInterceptorManager.html", + "hash": "16067141193448503175" }, { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/Calendar View_image.png", - "hash": "8652479499535248784" + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/1_Jump to Note_image.png", + "hash": "3109371474460200422" }, { - "file": "docs/User Guide/User Guide/Scripting/Examples/Using promoted attributes to c.md", - "hash": "14959920764392213925" + "file": ".idea/modules.xml", + "hash": "11070074368343041178" }, { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.PromiseLike.html", - "hash": "974283704390710355" + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AttachmentRow.html", + "hash": "15465410837105601985" }, { - "file": "docs/Release Notes/Release Notes/v0.92.2-beta.md", - "hash": "358559780905427698" + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TriggeredEvent.html", + "hash": "12620323996473383686" }, { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/6_Calendar View_image.png", - "hash": "17281596805053082675" + "file": "docs/User Guide/User Guide/Note Types/11_Geo Map_image.png", + "hash": "2543239855913430096" }, { - "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/attachments.md", - "hash": "11249076532876645190" + "file": "docs/User Guide/User Guide/Scripting/Examples/New Task launcher button.md", + "hash": "918543869021637630" }, { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.GetByIdOpts.html", - "hash": "5448737405855690783" + "file": "docs/User Guide/User Guide/Note Types/Text/Math Equations.md", + "hash": "7352168231624868948" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/Formatting toolbar_image.png", - "hash": "104005948126057026" + "file": "docs/Script API/types/Backend_Script_API._internal_.Args.html", + "hash": "386788577814183214" }, { - "file": "docs/Script API/modules.html", - "hash": "13008731499994074466" + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/3_Calendar View_image.png", + "hash": "7365965105798352895" }, { - "file": "docs/User Guide/User Guide/Note Types/Text/3_Formatting toolbar_image.png", - "hash": "13884099936378253709" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CheerioAPI.html", - "hash": "13479832008860105998" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/1_Block quotes & admonitions.png", - "hash": "18010671239225600245" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Relation Map.md", - "hash": "7102785365602063713" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NoteRow.html", - "hash": "17068126425098799180" - }, - { - "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AsyncResourceOptions.html", - "hash": "8020470007601054280" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Geo Map.md", - "hash": "6160461763173577677" - }, - { - "file": "docs/User Guide/User Guide/Advanced Usage/ETAPI (REST API)/API Reference.dat", - "hash": "3244421341483603138" - }, - { - "file": ".idea/inspectionProfiles/Project_Default.xml", - "hash": "10941077199758478688" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.Omit.html", - "hash": "13529309166908888710" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree_image.png", - "hash": "8528551565462205040" - }, - { - "file": "docs/User Guide/User Guide/Note Types/Text/General formatting.md", - "hash": "11206044994963259500" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.AddressFamily.html", - "hash": "7517399269447797629" - }, - { - "file": "docs/Script API/media/README.ru.md", - "hash": "3404562560235215042" - }, - { - "file": "docs/Script API/types/Frontend_Script_API._internal_.NoteType.html", - "hash": "3821780205674560486" - }, - { - "file": "docs/Developer Guide/Developer Guide/Testing.md", - "hash": "1756354223273679632" - }, - { - "file": "docs/Script API/types/Backend_Script_API._internal_.RawAxiosRequestHeaders.html", - "hash": "559182507513172234" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_Split View_imag.png", - "hash": "16441078406174519311" - }, - { - "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ShownCallbackData.html", - "hash": "13537247872398882796" - }, - { - "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_1_.png", - "hash": "9462084121181865214" - }, - { - "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Hoisting.md", - "hash": "1136330695046256259" + "file": "docs/Release Notes/Release Notes/v0.91.3-beta.md", + "hash": "8650194840196326837" }, { "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac_image.png", "hash": "10777331931886290213" }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Options.md", + "hash": "11823746626813599281" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ConvertOpts.html", + "hash": "15701215347730249486" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.IteratorResult.html", + "hash": "257322488402218270" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Promoted Attributes_image.png", + "hash": "15783140557738540121" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/11_Tables_image.png", + "hash": "5258562961033949883" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/12_Tables_image.png", + "hash": "17637903660588300344" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/4_Adaptive icon_image.png", + "hash": "9672254538887140002" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.RenderOptions.html", + "hash": "11685063307205303310" + }, + { + "file": "docs/User Guide/User Guide.md", + "hash": "1450359651649532141" + }, + { + "file": ".github/workflows/dev.yml", + "hash": "97027197327334007" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Revisions.md", + "hash": "17445918024788718614" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note buttons.md", + "hash": "13864464437617054232" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.RawCommonResponseHeaders.html", + "hash": "3506987803332284666" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.SpacedUpdate.html", + "hash": "18328662110444012644" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosRequestConfig.html", + "hash": "9355857643405320103" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Search_image.png", + "hash": "16349440484070621360" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Links_image.png", + "hash": "8876685958483648347" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Script API.md", + "hash": "12652565283186593544" + }, + { + "file": ".github/FUNDING.yml", + "hash": "9417438148586196659" + }, + { + "file": "docs/Script API/assets/icons.svg", + "hash": "12265282051439672960" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting/Synchronization fails with 504.md", + "hash": "2785587467017944783" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Note Map (Link map, Tree m.png", + "hash": "16598943343245802197" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ContextMenuCommandData.html", + "hash": "7750561669371601406" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/5_Tables_image.png", + "hash": "1917723022829886737" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.EventData.html", + "hash": "5083755709710579372" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Floating buttons.md", + "hash": "7301256874416908847" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/4_Vertical and horizontal la.png", + "hash": "7456379737044893906" + }, + { + "file": "docs/Script API/modules/Frontend_Script_API._internal_.html", + "hash": "4791159135464329921" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosResponseTransformer.html", + "hash": "2806242482626180969" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.CommonResponseHeadersList.html", + "hash": "12686548264575273733" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Math Equations_image.png", + "hash": "16696251042196156633" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NodeData.html", + "hash": "4571368827230764181" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_Formatting toolbar_image.png", + "hash": "13884099936378253709" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Geo Map_image.png", + "hash": "6164131355503646691" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Other features.md", + "hash": "905284970607153537" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Bookmarks_bookmark-folder.png", + "hash": "1845229153111247293" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.XmlDeclarationAttributes.html", + "hash": "7252070241156279013" + }, + { + "file": "docs/Release Notes/Release Notes/v0.92.5-beta.md", + "hash": "14426279930922433783" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.ConfirmDialogCallback.html", + "hash": "1423651493475025417" + }, + { + "file": "docs/User Guide/User Guide/AI/1_Introduction_image.png", + "hash": "4877080719766343931" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Ribbon_image.png", + "hash": "253567192754290441" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CKNode.html", + "hash": "328358266701651791" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Custom app-wide CSS_image.png", + "hash": "3158185449180547797" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting.md", + "hash": "748081058892517144" + }, + { + "file": "docs/Script API/media/README-ZH_CN.md", + "hash": "11984743821127984549" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/OneNote.md", + "hash": "16890517179618830832" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Hidden Notes_image.png", + "hash": "17789739194721579134" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.CommandNames.html", + "hash": "2129304447782419249" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.FormSerializerOptions.html", + "hash": "11304844495282338077" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Sorting Notes.md", + "hash": "10860595661578165438" + }, + { + "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Differences from upstream.md", + "hash": "18050776852643274350" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_4_.png", + "hash": "3728661401474084659" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Attribute.html", + "hash": "14233676832837243756" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Note Map_image.png", + "hash": "1162798172636853322" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Icons_note-icon-galle.png", + "hash": "11774634652263476090" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/branches.md", + "hash": "11383257066368994244" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TextEditor.html", + "hash": "449560112535320014" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AddressFamily.html", + "hash": "7517399269447797629" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Book.md", + "hash": "15417036035073159470" + }, + { + "file": "docs/Release Notes/Release Notes/v0.92.3-beta.md", + "hash": "17317864745090652158" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Lists.md", + "hash": "12112056947947146011" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Block quotes & admonitions.png", + "hash": "18010671239225600245" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Filter.html", + "hash": "14499170204301357222" + }, + { + "file": "docs/Release Notes/Release Notes/v0.94.0.md", + "hash": "9030403597079974748" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/etapi_tokens.md", + "hash": "2602584635600548101" + }, + { + "file": "scripts/update-build-info.ts", + "hash": "16199158489777820240" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/5_Adaptive icon_image.png", + "hash": "17290325327178029571" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_1_Split View_im.png", + "hash": "8605575081147969224" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.GenericHTMLFormElement.html", + "hash": "513753591946297609" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Book_image.png", + "hash": "1768928603662784559" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-export-n.gif", + "hash": "6892395771679875424" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/11_Calendar View_image.png", + "hash": "6636068838859637072" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Launchers.md", + "hash": "17121274757495258227" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List.md", + "hash": "6293287821691646630" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_4_Split View_im.png", + "hash": "7394270400443781214" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryEventObject.html", + "hash": "1874567868978952553" + }, + { + "file": "docs/Developer Guide/Developer Guide/Building and deployment/CI/Main.md", + "hash": "17316636940774967390" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Omit.html", + "hash": "13529309166908888710" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/2_Vertical and horizontal la.png", + "hash": "17310758833048940667" + }, + { + "file": "docs/User Guide/User Guide/Note Types/12_Geo Map_image.png", + "hash": "7173377365018544807" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Custom Widgets.md", + "hash": "3016592544713030940" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.10-beta.md", + "hash": "1078969479317092269" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/7_Lists_image.png", + "hash": "7647172644799470339" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Web Clipper_image.png", + "hash": "4210423681076794011" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization_sync-init.png", + "hash": "15322721528964766736" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosResponseInterceptorUse.html", + "hash": "11001137893491926586" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Attributes.md", + "hash": "14090747291386876448" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes.md", + "hash": "4048785561696936259" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Tables_image.png", + "hash": "5417625780542207119" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Navigation_image.png", + "hash": "12236157060422417393" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Sharing/Serving directly the content o.md", + "hash": "1296006089989860555" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.Screen.html", + "hash": "14867701053189781907" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.PromiseLike.html", + "hash": "974283704390710355" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Images_image.png", + "hash": "14485228935641695910" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_General formatting_image.png", + "hash": "9106571901573895633" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/6_Lists_image.png", + "hash": "12597899845274049940" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitter.Abortable.html", + "hash": "16436864775799866182" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/4_Insert buttons_image.png", + "hash": "14260304610675467053" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes_dark-theme.png", + "hash": "4104069441770412146" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API.Api.html", + "hash": "10134937553251491464" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TextRange.html", + "hash": "1639545837883955808" + }, + { + "file": ".github/actions/build-electron/action.yml", + "hash": "14612245546992951859" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/8_Calendar View_image.png", + "hash": "13401928785023381483" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization_sync-in-pr.png", + "hash": "132284441928130501" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Right Sidebar_image.png", + "hash": "8071194794088169141" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Include Note_image.png", + "hash": "13366623301870990750" + }, + { + "file": "docs/User Guide/User Guide/Note Types_image.png", + "hash": "11158350846319988504" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Custom Request Handler.md", + "hash": "9170902304145032041" + }, + { + "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/Setting up authentication.md", + "hash": "6015736112713223983" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database/Demo Notes.md", + "hash": "1378072563095330583" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Right Sidebar.md", + "hash": "11028754003011624084" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Customize the Next theme_i.png", + "hash": "9049696547697245045" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/Calendar View.md", + "hash": "1959120139728442097" + }, + { + "file": "docs/Release Notes/Release Notes/v0.92.1-beta.md", + "hash": "9808089043918900724" + }, + { + "file": "docs/Script API/assets/main.js", + "hash": "6389590901821178970" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Protected Notes.md", + "hash": "5093501931256724020" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Script API/Frontend API/FNote.dat", + "hash": "3244421341483603138" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Search.md", + "hash": "11467430470930503027" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Relations.md", + "hash": "6540434149738193967" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/Slightly blurry icon on Ma.png", + "hash": "12881778660438955813" + }, + { + "file": "docs/User Guide/User Guide/Note Types/6_Geo Map_image.png", + "hash": "890997284892548696" + }, + { + "file": "docs/User Guide/User Guide/AI/3_Introduction_image.png", + "hash": "2601903779808317589" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.RawAxiosHeaders.html", + "hash": "11240216240251060271" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Multiple selection_image.png", + "hash": "9707758146677680170" + }, + { + "file": "docs/Script API/modules/Backend_Script_API._internal_.node_modules__types_xml2js.processors.html", + "hash": "6995519834803022692" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.node_modules__types_xml2js.Parser.html", + "hash": "8038479147069214953" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes_image.png", + "hash": "451865633567842034" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Data directory_image.png", + "hash": "16647401677978700113" + }, + { + "file": "docs/Developer Guide/Developer Guide/Building and deployment/Documentation.md", + "hash": "14979232810690309809" + }, + { + "file": ".npmrc", + "hash": "16137381183792061922" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosAdapter.html", + "hash": "13933798201523018141" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.HeadersDefaults.html", + "hash": "11660903537271563350" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.SqlExecuteResults.html", + "hash": "2078240985444622878" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Updater.html", + "hash": "1581734712077372064" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AttributeRow.html", + "hash": "15707791380899076017" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryKeyEventObject.html", + "hash": "7199790450716776034" + }, + { + "file": "docs/Developer Guide/Developer Guide/Testing.md", + "hash": "1756354223273679632" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Iterator.html", + "hash": "1549347431730460347" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CommandData.html", + "hash": "5984048291317023628" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CodeMirrorInstance.html", + "hash": "5254704683408293778" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.EventEmitter.html", + "hash": "9085627966887041694" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Relation Map_relation-map-.png", + "hash": "5132534751975390759" + }, + { + "file": "docs/User Guide/User Guide/Note Types/1_Text_image.png", + "hash": "13901334951495473202" + }, + { + "file": "docs/Developer Guide/Developer Guide/Building and deployment/CI/1_Main_image.png", + "hash": "14970379467694797728" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting/Error logs_image.png", + "hash": "10805210383135653112" + }, + { + "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.parseStringPromise.html", + "hash": "17682488357431062503" + }, + { + "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.stripPrefix.html", + "hash": "15670937774342345272" + }, + { + "file": ".idea/.gitignore", + "hash": "13646957392060337731" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes.md", + "hash": "9592422191973306572" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/2_Calendar View_image.png", + "hash": "8746483486106953393" + }, + { + "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.firstCharLowerCase.html", + "hash": "922120200627718986" + }, + { + "file": "docs/Release Notes/Release Notes/v0.91.4-beta.md", + "hash": "13432720443489500483" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Archived Notes.md", + "hash": "16760672233525606038" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Hidden Notes.md", + "hash": "13368937778131192525" + }, + { + "file": "docs/Script API/.nojekyll", + "hash": "12301719336174243164" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ParamEncoder.html", + "hash": "15628448467004066967" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Insert buttons_image.png", + "hash": "9041778621024218634" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosAdapterName.html", + "hash": "13105758170302488612" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting/Refreshing the application.md", + "hash": "3405008745811341199" + }, + { + "file": "docs/Developer Guide/Developer Guide/Project maintenance/Updating dependencies/Testing compatibility.md", + "hash": "1432296361498549709" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API.BasicWidget.html", + "hash": "7136750462660837560" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Keyboard shortcuts.md", + "hash": "17819850783262866648" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.CommandMappings.html", + "hash": "5989980086619830728" + }, + { + "file": "docs/User Guide/User Guide/Note Types/1_Relation Map_relation-map-.png", + "hash": "15720370010832556444" + }, + { + "file": "docs/User Guide/User Guide/AI/1_AI Provider Information_im.png", + "hash": "10888045542047015146" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Workspaces_image.png", + "hash": "12666342516606462643" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.Multiplicity.html", + "hash": "13792316861027742564" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Global menu.md", + "hash": "824107434255196614" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Note source_image.png", + "hash": "5630189849743414946" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.EventListener.html", + "hash": "3086992513345785187" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API.Api.html", + "hash": "13446311020763232058" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.Required.html", + "hash": "13874622162097676032" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Code.md", + "hash": "2257698891491035087" + }, + { + "file": "docs/Script API/modules/Frontend_Script_API.html", + "hash": "9601829814309710108" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Tabs_image.png", + "hash": "17923007007271061715" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options.md", + "hash": "2394676798595882833" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Tables.md", + "hash": "15149183778855005839" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Code_image.png", + "hash": "5890806361392158763" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/recent_notes.md", + "hash": "16017799368937039846" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.NoteContext.html", + "hash": "3072165195826397058" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/9_Tables_image.png", + "hash": "10336090900386736766" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Sharing_shared-list.png", + "hash": "11693155295709888518" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/1_Workspaces_image.png", + "hash": "4002479791831846933" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Trigger UI refresh.md", + "hash": "12597276870551481120" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Pick.html", + "hash": "3341742815545223156" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TextPosition.html", + "hash": "5309524778644384927" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Custom Widgets/Widget Basics.md", + "hash": "11549739193679627411" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/10_Calendar View_image.png", + "hash": "6057572322117403470" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Note tree contextual menu.md", + "hash": "17383973353100108762" + }, + { + "file": "tsconfig.base.json", + "hash": "8900268571896142108" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Export as PDF.md", + "hash": "13532136945252311206" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/General formatting.md", + "hash": "11206044994963259500" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Packaged version for Linux.md", + "hash": "5552434531380325100" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Custom Widgets/Word count widget_image.png", + "hash": "2841511895989652415" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NoteCommandData.html", + "hash": "4249395754539564632" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Task Manager_task-manager.png", + "hash": "15131572581326854447" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text.md", + "hash": "2403881404737477024" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Syntax highlighting.md", + "hash": "133151893331360659" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/10_Lists_image.png", + "hash": "2954862785845336764" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Relationship.html", + "hash": "2373120637168991589" + }, + { + "file": "docs/Developer Guide/Developer Guide/Dependency Management/Having a simpler packaging sys.md", + "hash": "7380313725791405277" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Cancel.html", + "hash": "1851696810072605979" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/8_Lists_image.png", + "hash": "7443683400857714109" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Sharing_share-single-note.png", + "hash": "9562584638001327012" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/8_Insert buttons_image.png", + "hash": "16706472587272328864" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_1_.png", + "hash": "9462084121181865214" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Mind Map.md", + "hash": "10495538393047943834" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Sharing/1_Serving directly the conte.png", + "hash": "12112716038656287241" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.List.html", + "hash": "16260087667105894937" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Manually.md", + "hash": "7984968569437996419" + }, + { + "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Updating to a newer version of.md", + "hash": "208622457670454515" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.BRevision.html", + "hash": "1913392095596974652" + }, + { + "file": "docs/User Guide/User Guide/Quick Start.md", + "hash": "26614788084837278" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/1_Export as PDF_image.png", + "hash": "4937399655807059093" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ConfirmWithTitleOptions.html", + "hash": "5866678357727613126" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams/ELK layout_ELK on.svg", + "hash": "16635311815022210160" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/5_Installing Ollama_image.png", + "hash": "6152858080669098007" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Cloning Notes_create-clone.gif", + "hash": "304941799268696983" + }, + { + "file": "eslint.config.mjs", + "hash": "9204104122661382069" + }, + { + "file": "docs/User Guide/User Guide/Note Types/13_Geo Map_image.png", + "hash": "3444457344697003162" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Highlights list_image.png", + "hash": "2083570772957836032" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Promoted Attributes.md", + "hash": "5430776196114252034" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Launch Bar_image.png", + "hash": "3856338290485766365" + }, + { + "file": "docs/Script API/assets/search.js", + "hash": "8475404948919950531" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Internationalisation Translations/i18n-ally.md", + "hash": "15286767887045318756" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Highlights list.md", + "hash": "612991856020272057" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Lists_image.png", + "hash": "5447861844644759091" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosHeaderParser.html", + "hash": "12559633325326468874" + }, + { + "file": "docs/Release Notes/Release Notes/v0.92.4.md", + "hash": "9768188864190804507" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Similar Notes.md", + "hash": "14872467952454561602" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Examples/Using promoted attributes to c.md", + "hash": "14959920764392213925" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosInterceptorOptions.html", + "hash": "9333796471759547757" + }, + { + "file": "docs/Script API/media/README.ru.md", + "hash": "3404562560235215042" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Froca.html", + "hash": "1217693842643344527" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Formatting toolbar.md", + "hash": "9300995663475426917" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Custom Resource Providers.md", + "hash": "14771953276779663048" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.MouseEventBase.html", + "hash": "9847223446952188535" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FBranchRow.html", + "hash": "15841520180055323953" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/1_Note tree contextual menu_.png", + "hash": "747296639953030665" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/4_General formatting_image.png", + "hash": "4875243929617270209" + }, + { + "file": "docs/User Guide/User Guide/Note Types/File.md", + "hash": "12296690400052211633" + }, + { + "file": "docs/User Guide/User Guide/Note Types/2_File_image.png", + "hash": "5767399260855724832" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Archived Notes_hide-archiv.png", + "hash": "14754545197579652981" + }, + { + "file": "docs/User Guide/User Guide/Note Types/9_Geo Map_image.png", + "hash": "17335918274787502426" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Table of contents_image.png", + "hash": "4733595202943894589" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Internationalisation Translat.md", + "hash": "2844329594560711440" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Printing.md", + "hash": "17241912836120464831" + }, + { + "file": "nx.json", + "hash": "17259946656272583256" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AnyRest.html", + "hash": "12710122115453684289" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosPromise.html", + "hash": "3408905621401339879" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Tables_image.png", + "hash": "4005816462770724619" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.LabelType.html", + "hash": "10278520028325625693" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/options.md", + "hash": "11018885735468470461" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.Func.html", + "hash": "17945745625077581027" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.AbstractBeccaEntity.html", + "hash": "8730749362119426250" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.TagElement.html", + "hash": "5955058222239385082" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-4.html", + "hash": "14292946853601737478" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/blobs.md", + "hash": "9289462600651110466" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Icons_note-icon-chang.png", + "hash": "11083556565458137739" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/2_Slightly blurry icon on Ma.png", + "hash": "2401758914571491717" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Mind Map_image.png", + "hash": "12216762309023170303" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Table of contents.md", + "hash": "10314448453619064211" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/revisions.md", + "hash": "6910018916604118009" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Bookmarks.md", + "hash": "8976377563476496635" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/4_Installing Ollama_image.png", + "hash": "4991925732090469797" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Task Manager.md", + "hash": "5069971154417713445" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.MouseDownEvent.html", + "hash": "11958072015813563157" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AttributeType.html", + "hash": "5550475244964704932" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Vertical and horizontal layout.md", + "hash": "10256487723212567021" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database.md", + "hash": "10952592975566243217" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CreateLinkOptions.html", + "hash": "13233819667236849105" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/5_Calendar View_image.png", + "hash": "15719916793769487087" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View.md", + "hash": "886075848609982938" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Thenable.html", + "hash": "8331448234773365089" + }, + { + "file": "docs/Script API/enums/Frontend_Script_API._internal_.FancytreeSelectMode.html", + "hash": "10406956801362805969" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.GetTextEditorCallback.html", + "hash": "14843214499299206182" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/Adaptive icon_image.png", + "hash": "17678072455595448906" + }, + { + "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.parseNumbers.html", + "hash": "11186627944493481537" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Attributes_image.png", + "hash": "9403778094976246640" + }, + { + "file": "docs/User Guide/User Guide/Note Types/3_File_image.png", + "hash": "14996991930227579563" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosRequestInterceptorUse.html", + "hash": "13834561859469322019" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Read-Only Notes_image.png", + "hash": "647700179866845833" + }, + { + "file": "docs/Release Notes/Release Notes/v0.91.5.md", + "hash": "7852050459752848879" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.EventData.html", + "hash": "7371978295108003728" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosResponseHeaders.html", + "hash": "2442744119645635699" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosResponse.html", + "hash": "6858727221974372008" + }, + { + "file": "docs/Developer Guide/Developer Guide/Sub-projects/ckeditor5-math_image.png", + "hash": "3354031708515247111" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used/Excalidraw.md", + "hash": "10507559843179746851" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-export-s.gif", + "hash": "13674308169686225848" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.RawAxiosRequestHeaders.html", + "hash": "559182507513172234" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.BNote.html", + "hash": "7005007978668651456" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Footnotes_image.png", + "hash": "1577288190943202052" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown.md", + "hash": "11019657887828180506" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/3_Zen mode_image.png", + "hash": "6013034841761075376" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Keyboard Shortcuts.md", + "hash": "5332915151552262991" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-1.html", + "hash": "17242853187880822286" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/6_Tables_image.png", + "hash": "7670352131626581828" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitter.EventEmitterAsyncResourceOptions.html", + "hash": "5102482543207472128" + }, + { + "file": "docs/User Guide/User Guide/AI/5_Introduction_image.png", + "hash": "4850690168254105590" + }, + { + "file": "docs/Release Notes/Release Notes/v0.92.7.md", + "hash": "17418643896362304150" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.SerializerOptions.html", + "hash": "10688294646722029359" + }, + { + "file": "docs/Script API/modules.html", + "hash": "13008731499994074466" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Global menu_image.png", + "hash": "215776480600711406" + }, + { + "file": "docs/User Guide/User Guide/Note Types/10_Geo Map_image.png", + "hash": "8838519618452959037" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting/1_Code blocks_image.png", + "hash": "12452128562004210306" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.AddToToolbarOpts.html", + "hash": "15598576219424391202" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Options_image.png", + "hash": "13893366860557066470" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Mobile Frontend_mobile-sma.png", + "hash": "8564668320550827697" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Examples/Downloading responses from Goo.md", + "hash": "3591187406500098510" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CustomParamsSerializer.html", + "hash": "15081765819063145387" + }, + { + "file": ".idea/dataSources.xml", + "hash": "1648100896127507056" + }, + { + "file": "packages/.gitkeep", + "hash": "3244421341483603138" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Similar Notes_image.png", + "hash": "8643335030510998526" + }, + { + "file": ".github/actions/report-size/action.yml", + "hash": "17705058309368771560" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note buttons_image.png", + "hash": "6536290798453171827" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.InternalAxiosRequestConfig.html", + "hash": "9365833872657075449" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-2.html", + "hash": "7838335193815529689" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Search in note.md", + "hash": "7332983517167321294" + }, + { + "file": "docs/User Guide/User Guide/Note Types/8_Geo Map_image.png", + "hash": "2873444371416724136" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.StaticEventEmitterIteratorOptions.html", + "hash": "11141466728229885637" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitterOptions.html", + "hash": "17877148018809949898" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Branch prefixes.md", + "hash": "3244421341483603138" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NoteMetaData.html", + "hash": "6643969533434745761" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used.md", + "hash": "9961547767560894531" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Copy image reference to the cl.md", + "hash": "5997370566040672231" + }, + { + "file": "docs/Developer Guide/Developer Guide/Notes for old development/Build deliveries locally.clone.md", + "hash": "16752226799330019694" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used/Leaflet.md", + "hash": "5471188167022095551" + }, + { + "file": "docs/README.ja.md", + "hash": "423329561350748151" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/4_Calendar View_image.png", + "hash": "5933726449688725337" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API.FAttribute.html", + "hash": "917184200961509118" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/Slightly blurry icon on Mac.md", + "hash": "13487479054609586827" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database.md", + "hash": "4406107932468637386" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/Calendar View_image.png", + "hash": "8652479499535248784" + }, + { + "file": "docs/User Guide/User Guide/Note Types/1_Geo Map_image.png", + "hash": "5960205806672652286" + }, + { + "file": ".github/workflows/main-docker.yml", + "hash": "7393672086018807690" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/First steps.md", + "hash": "11319680458358123245" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/9_Calendar View_image.png", + "hash": "16035162645109284070" + }, + { + "file": "CODE_OF_CONDUCT", + "hash": "18279634385063499779" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Listener.html", + "hash": "3329650507998631496" + }, + { + "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/Running tests.md", + "hash": "17371597141704701872" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/1_Note List_image.png", + "hash": "5608976400586326827" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/6_Adaptive icon_image.png", + "hash": "17558530465809578826" + }, + { + "file": "docs/User Guide/User Guide/Note Types/18_Geo Map_image.png", + "hash": "13441170146038040719" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Build information.md", + "hash": "927621925199425057" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Geo Map.md", + "hash": "6160461763173577677" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Links_image.png", + "hash": "15063546866325110183" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Record.html", + "hash": "13673511288898005305" + }, + { + "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.parseString.html", + "hash": "10258104029178654570" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Revisions.md", + "hash": "3244421341483603138" + }, + { + "file": "docs/User Guide/User Guide/Theme development/2_Custom app-wide CSS_image.png", + "hash": "5480944933144148013" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.convertableToString.html", + "hash": "3228561214395660819" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Cut to subnote.md", + "hash": "1597214027009838580" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/ETAPI (REST API).md", + "hash": "5606902658267694054" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Floating buttons_image.png", + "hash": "9229127427161350065" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/2_Adaptive icon_image.png", + "hash": "2898250727568220507" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ContentOpts-1.html", + "hash": "14200853044524072086" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Launch Bar.md", + "hash": "9757830933816714683" + }, + { + "file": "docs/Script API/enums/Backend_Script_API._internal_.HttpStatusCode.html", + "hash": "8745780281324259183" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Customize the Next theme.md", + "hash": "10932498007288012373" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatt.png", + "hash": "14391624469883910402" + }, + { + "file": "docs/Developer Guide/Developer Guide/Documentation.md", + "hash": "4320322749360908547" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Content language & Right-t.png", + "hash": "2884027460715375910" + }, + { + "file": ".idea/misc.xml", + "hash": "14348037015527695066" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_General formatting_image.png", + "hash": "12935355679871327728" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/4_Developer-specific formatt.png", + "hash": "12452128562004210306" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.IteratorReturnResult.html", + "hash": "308316750572840399" + }, + { + "file": "docs/README-ZH_CN.md", + "hash": "1366683638207788793" + }, + { + "file": ".github/workflows/nightly.yml", + "hash": "13780588628454221051" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons.md", + "hash": "10855339462601677185" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ParamsSerializerOptions.html", + "hash": "3588430129710258287" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Note type checklist.md", + "hash": "1608854407457647774" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Recent Changes_image.png", + "hash": "5636741691843527729" + }, + { + "file": "docs/README.es.md", + "hash": "18392624940816469374" + }, + { + "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.parseBooleans.html", + "hash": "13001294351403898208" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Bookmarks_bookmarks.gif", + "hash": "6177069217916149128" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.LookupAddressEntry.html", + "hash": "5234862388258249396" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/8_Tables_image.png", + "hash": "5258562961033949883" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes.md", + "hash": "7930914628254226583" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/5_Other features_image.png", + "hash": "8577237444604362438" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.BOption.html", + "hash": "18026026232234236536" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-7.html", + "hash": "15012618481181922435" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Events.md", + "hash": "16576016033025672802" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/notes.md", + "hash": "17589195664721269554" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Search in note_image.png", + "hash": "14767314553298789957" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Markdown-like formatting.md", + "hash": "11422547423110182484" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Insert buttons.md", + "hash": "10439313914343399726" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_Split View_imag.png", + "hash": "16441078406174519311" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/Installing Ollama.md", + "hash": "12841437113258344682" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-3.html", + "hash": "10184639014742437536" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.TaskData.html", + "hash": "5988678324469384089" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Upgrading TriliumNext.md", + "hash": "2632666519047935337" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AttachmentOpts.html", + "hash": "152500221014723550" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Insert buttons_image.png", + "hash": "13776013165806672321" + }, + { + "file": "docs/User Guide/User Guide/Note Types/4_File_image.png", + "hash": "6230957845104792702" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Selector.html", + "hash": "15364640600220089516" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.Handler.html", + "hash": "460599419953386172" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Recent Changes.md", + "hash": "8884492790625828020" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Desktop Installation.md", + "hash": "4446390166291792083" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Configuration (config.ini or environment variables)/Cross-Origin Resource Sharing .md", + "hash": "8992349904956274857" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosInstance.html", + "hash": "13857640297500317744" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NoteParams.html", + "hash": "5715377170996239099" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/2_Zen mode_image.png", + "hash": "18110039784597588797" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.6-beta.md", + "hash": "665053246882198240" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_2_.png", + "hash": "7017134628923823634" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Backlinks.md", + "hash": "3244421341483603138" + }, + { + "file": "docs/Developer Guide/Developer Guide/Notes for old development/Running a development build.clone.md", + "hash": "18190833443469068343" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.node_modules__types_xml2js.Builder.html", + "hash": "14955316081398141094" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Relation Map.md", + "hash": "7102785365602063713" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Custom app-wide CSS.md", + "hash": "17661816458846796544" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.RecentNoteRow.html", + "hash": "11559748337879587947" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CancelTokenStatic.html", + "hash": "7602172161601555412" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/2. Reverse proxy/Nginx.md", + "hash": "10501145259956261610" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Multiple server instances.md", + "hash": "14997675224095677092" + }, + { + "file": "docs/Developer Guide/Developer Guide/Building and deployment/Build deliveries locally.md", + "hash": "3170736676204731767" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting.md", + "hash": "16688909957107755744" + }, + { + "file": "docs/Script API/modules/Backend_Script_API.html", + "hash": "2670989234660369623" + }, + { + "file": "docs/User Guide/User Guide/Note Types/14_Geo Map_image.png", + "hash": "17134563145439183238" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Demo document.md", + "hash": "10094511099627127819" + }, + { + "file": ".idea/sqldialects.xml", + "hash": "1907427473079819363" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Cut to subnote_cut-to-subn.gif", + "hash": "11217765058792445527" + }, + { + "file": ".github/ISSUE_TEMPLATE/feature_request.yml", + "hash": "13653184246748995672" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_Images_image.png", + "hash": "17061610823626139831" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-file-imp.gif", + "hash": "17798202582697524861" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.LookupAddress.html", + "hash": "14049613797860375879" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FancytreeNode.html", + "hash": "16364488325625359774" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.AxiosHeaders.html", + "hash": "239737713549577107" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Tabs.md", + "hash": "9299907944748565805" + }, + { + "file": "renovate.json", + "hash": "13944559841874503663" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting/Anonymized Database_image.png", + "hash": "201026404721860858" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Templates_template-create-.png", + "hash": "4737869303956882568" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Read-Only Notes.md", + "hash": "8776625923756086770" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Key.html", + "hash": "7466986453655214266" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Hoisting_note-hoistin.gif", + "hash": "16530172022334752331" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization_sync-confi.png", + "hash": "2997447751316549256" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Insert buttons_image.png", + "hash": "989188453960649104" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_General formatting_image.png", + "hash": "13063031561540176225" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.RawAxiosResponseHeaders.html", + "hash": "1328538700446026505" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryInputEventObject.html", + "hash": "9534752471101527686" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Table.html", + "hash": "4028689333146133118" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting/Code blocks.md", + "hash": "3478413245687427782" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.12.md", + "hash": "9620208026446895995" + }, + { + "file": "docs/Developer Guide/Developer Guide/Scripting/Widgets/CSS.md", + "hash": "3537418956212770699" + }, + { + "file": ".github/workflows/codeql.yml", + "hash": "15023875105706044332" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API.FNote.html", + "hash": "2643559578902394996" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/2_Note List_image.png", + "hash": "10714735469933566718" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.AsyncResource.html", + "hash": "11134645773041976007" + }, + { + "file": "docs/Script API/assets/icons.js", + "hash": "16920762893256242568" + }, + { + "file": "docs/Developer Guide/Developer Guide/Project maintenance/Updating dependencies/bettersqlite binaries.md", + "hash": "15329551937381145875" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.NoteType.html", + "hash": "3821780205674560486" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CallSite.html", + "hash": "9105341353515433236" + }, + { + "file": "tsconfig.json", + "hash": "8784381935299652134" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NoteRow.html", + "hash": "17068126425098799180" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FNoteRow.html", + "hash": "1484356400159794839" + }, + { + "file": ".idea/encodings.xml", + "hash": "11374258188085040410" + }, + { + "file": "docs/User Guide/User Guide/Note Types/7_Geo Map_image.png", + "hash": "6480890944074410737" + }, + { + "file": "docs/Developer Guide/Developer Guide/Scripting/Widgets.md", + "hash": "12822032052331653311" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.BranchRow.html", + "hash": "6739150629511690175" + }, + { + "file": "docs/Release Notes/Release Notes/v0.93.0.md", + "hash": "6446128540116970069" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting/Anonymized Database.md", + "hash": "1892644441410455042" + }, + { + "file": "docs/Developer Guide/Developer Guide/Dependency Management/Adding a new client library.md", + "hash": "7049385257986266177" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting/Error logs.md", + "hash": "15587281502024486048" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/ETAPI (REST API)/API Reference.dat", + "hash": "3244421341483603138" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Formatting toolbar_image.png", + "hash": "9465014681604577852" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Block quotes & admonitions.md", + "hash": "5962660712660554216" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/1_Calendar View_image.png", + "hash": "6148618346253868614" + }, + { + "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Environment setup.md", + "hash": "17921742902733994403" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Lists_image.png", + "hash": "8577237444604362438" + }, + { + "file": ".github/actions/build-server/action.yml", + "hash": "12834103831780063020" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Examples/Using promoted attributes .png", + "hash": "13316953234191714312" + }, + { + "file": "vitest.workspace.ts", + "hash": "8851963806934849101" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.IterableIterator.html", + "hash": "5163879713483896100" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.TypedBasicWidget.html", + "hash": "9014785497596129429" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.ArrayBufferLike.html", + "hash": "7422498195549677002" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.BuilderOptions.html", + "hash": "7369938283163183148" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.OptionRow.html", + "hash": "85392993839447133" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Promoted Attributes_promot.png", + "hash": "4117009512006470814" + }, + { + "file": "docs/User Guide/User Guide/Note Types/1_Mermaid Diagrams_image.png", + "hash": "811538388658451497" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.CKEvent.html", + "hash": "3375455992863958581" + }, + { + "file": "LICENSE", + "hash": "8606862000888906709" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_Developer-specific formatt.png", + "hash": "371275438898256895" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Developer-specific formatt.png", + "hash": "6129242964974999554" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/7_Tables_image.png", + "hash": "15239152810309003956" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Workspaces.md", + "hash": "4135430089914112456" + }, + { + "file": "docs/Release Notes/Release Notes/v0.92.6.md", + "hash": "2771016520384144999" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Element.html", + "hash": "6095597057243564126" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/6_Images_image.png", + "hash": "6173165911963001959" + }, + { + "file": "docs/User Guide/User Guide/Note Types/File_image.png", + "hash": "6783984664127428948" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Frontend Basics.md", + "hash": "14476108367955913260" + }, + { + "file": "docs/Developer Guide/Developer Guide/Building and deployment/Releasing a version.md", + "hash": "16796012838594019346" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Deleted notes.md", + "hash": "3244421341483603138" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ContentOpts-2.html", + "hash": "843600582580013845" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/General formatting_image.png", + "hash": "12783629317063905582" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_2_Split View_im.png", + "hash": "15941739623146058763" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/5_Developer-specific formatt.png", + "hash": "10133610562087684023" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API.FAttachment.html", + "hash": "13471286589201764286" + }, + { + "file": "docs/Script API/modules/Backend_Script_API._internal_.EventEmitter.html", + "hash": "8242760582394611478" + }, + { + "file": "docs/Developer Guide/Developer Guide/Scripting/Widgets/Right pane widget.md", + "hash": "13341365552460927801" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used/CKEditor.md", + "hash": "13836346921716381572" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization.md", + "hash": "16892041595153525525" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryMouseEventObject.html", + "hash": "530744806508107000" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.CommandAndEventMappings.html", + "hash": "2268313864143285342" + }, + { + "file": "docs/README.ru.md", + "hash": "12627167880272281170" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Web View.md", + "hash": "11930025137242473821" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.DragAndDrop5.html", + "hash": "12235972956045755395" + }, + { + "file": "docs/Release Notes/Release Notes/v0.92.0-beta.md", + "hash": "14565759833614120830" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Backup.md", + "hash": "11054206897853098224" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Quick search_image.png", + "hash": "11779273039184489731" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.3.md", + "hash": "18427677233259365358" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Removed icons.md", + "hash": "12540003826330492194" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NotePojo.html", + "hash": "13485037937373113578" + }, + { + "file": "docs/User Guide/User Guide/Note Types/1_Code_image.png", + "hash": "5782275106327359896" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.EventEmitter.EventEmitterAsyncResource.html", + "hash": "7206080304720434024" + }, { "file": "docs/User Guide/User Guide/AI/AI Provider Information/Anthropic.md", "hash": "3244421341483603138" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Ribbon.md", + "hash": "15123628542353858523" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases.md", + "hash": "11266482405619520103" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.SetNoteOpts.html", + "hash": "12907434742803176528" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.7-beta.md", + "hash": "12288347682016090997" + }, + { + "file": "docs/Developer Guide/Developer Guide/Documentation_image.png", + "hash": "4287687447151188970" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text_image.png", + "hash": "2939147542296328141" + }, + { + "file": "docs/Script API/variables/Frontend_Script_API.api.html", + "hash": "15725440464713569337" + }, + { + "file": "package-lock.json", + "hash": "10036577029847593827" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Zen mode_image.png", + "hash": "3662917132549511544" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Cloning Notes/Branch prefix.md", + "hash": "176004439186847737" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/1_Icons on Mac_image.png", + "hash": "9113973157649197285" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Canvas.md", + "hash": "9502581554311379088" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.Axios.html", + "hash": "6269752855705474165" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/4_Lists_image.png", + "hash": "8922870427366632483" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.ContentType.html", + "hash": "13932579651356217652" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.MentionConfig.html", + "hash": "17866598684703786658" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API.FBranch.html", + "hash": "1369425044274420635" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Vertical and horizontal la.png", + "hash": "17788024311673518016" + }, + { + "file": "docs/Script API/assets/navigation.js", + "hash": "7622748052566621629" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Sharing.md", + "hash": "16449818561772399839" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.EventNames.html", + "hash": "10465196291594055305" + }, + { + "file": "images/screenshots/app.png", + "hash": "955084500244844963" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting/2_Code blocks_image.png", + "hash": "15497219282555300265" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Sharing_share-single-note-.png", + "hash": "6136583984879914294" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EtapiTokenRow.html", + "hash": "10941322562955927911" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitter.html", + "hash": "4730824434973280272" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Images/Image references.md", + "hash": "9404432048954214990" + }, + { + "file": "docs/Developer Guide/Developer Guide/Documentation/Documentation references in th.md", + "hash": "4999625856386815050" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Footnotes.md", + "hash": "11339671296450160355" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.PromiseBase.html", + "hash": "1805758559982211811" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.default.html", + "hash": "1518836167267522724" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Icons.md", + "hash": "1744378485879608318" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/Adaptive icon.md", + "hash": "3497841704967107299" + }, + { + "file": "docs/Developer Guide/!!!meta.json", + "hash": "3255937222893785990" + }, + { + "file": "docs/Developer Guide/Developer Guide/Building and deployment/Running a development build.md", + "hash": "5918235052453307119" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/Installing Ollama_image.png", + "hash": "910316219442712311" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/4_Tables_image.png", + "hash": "8355105912319259830" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.BAttribute.html", + "hash": "12076925399563302864" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/7_Insert buttons_image.png", + "hash": "12084899036395439728" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.TextElement.html", + "hash": "13001308591865194378" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API.NoteContextAwareWidget.html", + "hash": "10455528563649947810" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.TypedComponent.html", + "hash": "1592247705606960334" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.CallbackBase.html", + "hash": "741726841759646895" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme.md", + "hash": "8694971297894648515" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/5_Vertical and horizontal la.png", + "hash": "6580926007613627467" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/SQL Console.md", + "hash": "13100562027326538681" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Jump to Note_image.png", + "hash": "9832511457480397483" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosStatic.html", + "hash": "8016093090359225641" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Refresh widget with option cha.md", + "hash": "12967337054313845860" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/3_Adaptive icon_image.png", + "hash": "7856931497974089783" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.5-beta.md", + "hash": "10117902968885317624" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Include Note.md", + "hash": "16473224076113886785" + }, + { + "file": "docs/User Guide/User Guide/Note Types/5_File_image.png", + "hash": "9655011546911837239" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Protected Notes_protecting.gif", + "hash": "9909987976886492758" + }, + { + "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/Test database.md", + "hash": "12683306435434855517" + }, + { + "file": "docs/Script API/variables/Backend_Script_API._internal_.node_modules__types_xml2js.defaults.html", + "hash": "7094676868001758932" + }, + { + "file": "docs/User Guide/User Guide/Note Types/5_Geo Map_image.png", + "hash": "5669308583844409052" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FAttributeRow.html", + "hash": "16526604781141457523" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_Insert buttons_image.png", + "hash": "16565743405065440773" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.EventEmitter.EventEmitterReferencingAsyncResource.html", + "hash": "16079421563292372603" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Saved Search_saved-search.gif", + "hash": "7608073468067457147" + }, + { + "file": "docs/User Guide/User Guide/Note Types/4_Geo Map_image.png", + "hash": "2426346789252029208" + }, + { + "file": "docs/Release Notes/Release Notes/v0.92.2-beta.md", + "hash": "358559780905427698" + }, + { + "file": "docs/Script API/media/README.it.md", + "hash": "14217194317100046164" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.8.md", + "hash": "10541241835395856847" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Labels.md", + "hash": "9387392694503447715" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Images_image.png", + "hash": "4210412299283729681" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/8_Images_image.png", + "hash": "9366125920821414974" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.StaticEventEmitterOptions.html", + "hash": "5066445864444001282" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Saved Search.md", + "hash": "8132559986223151235" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List/6_Calendar View_image.png", + "hash": "17281596805053082675" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/2_Installing Ollama_image.png", + "hash": "5664446890215872177" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Cloning Notes.md", + "hash": "7700476154666309105" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.1-beta.md", + "hash": "2310438812816074728" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Other features_image.png", + "hash": "17467294145722623090" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.ResponseType.html", + "hash": "1367713021652945755" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API.RightPanelWidget.html", + "hash": "3165901033915109292" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.AxiosError.html", + "hash": "3538595726634027313" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Writer.html", + "hash": "456106708570117750" + }, + { + "file": "SECURITY.md", + "hash": "599955342543329887" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.JQueryPromise.html", + "hash": "400605862919872301" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_Cr.png", + "hash": "14045585611753963314" + }, + { + "file": "docs/Script API/assets/style.css", + "hash": "6390674142144445392" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree.md", + "hash": "10401640377108524547" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.AttributeType.html", + "hash": "5684353554129692485" + }, + { + "file": "docs/User Guide/User Guide/Note Types/6_File_image.png", + "hash": "10934030213595628481" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.NotePathRecord.html", + "hash": "4324180597327533759" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.PropertyKey.html", + "hash": "11788481235345192510" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/6_Other features_image.png", + "hash": "3612025371214749570" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/attachments.md", + "hash": "11249076532876645190" + }, + { + "file": "docs/User Guide/User Guide/Note Types/16_Geo Map_image.png", + "hash": "17273732328125046708" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Object.html", + "hash": "7536195722949662168" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.0-beta.md", + "hash": "2832294761822956301" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes/Theme Gallery.md", + "hash": "18153059640044698398" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Navigation.md", + "hash": "12696895579094718506" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Attachments.md", + "hash": "14577503159371179344" + }, + { + "file": "package.json", + "hash": "1602354664150176928" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.node_modules__types_xml2js.ValidationError.html", + "hash": "9783880855468813600" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Safe mode.md", + "hash": "1713747027699127500" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Images_image.png", + "hash": "1599196428668280551" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Zoom.md", + "hash": "3244421341483603138" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Images.md", + "hash": "9287615942710690324" + }, + { + "file": "docs/User Guide/User Guide/Note Types.md", + "hash": "3734229651482058716" + }, + { + "file": "docs/Release Notes/Release Notes/Release Template.md", + "hash": "10587082767465867254" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.GenericAbortSignal.html", + "hash": "8823686662211753104" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NoteSwitchedContext.html", + "hash": "3972424598157172512" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosDefaults.html", + "hash": "4789207332665890873" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ContentOpts-3.html", + "hash": "184966545090795313" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Sharing/Serving directly the conte.png", + "hash": "1644425674057515860" + }, + { + "file": "docs/User Guide/User Guide/AI/6_Introduction_image.png", + "hash": "9380676484647713768" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Note tree contextual menu_.png", + "hash": "7539417519466307919" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Note types.md", + "hash": "12191728192542611537" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Script API/Backend API.dat", + "hash": "3244421341483603138" + }, + { + "file": "docs/User Guide/User Guide/AI/9_Introduction_image.png", + "hash": "18028155585930429734" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ExecuteCommandData.html", + "hash": "2037836278009355941" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/5_Images_image.png", + "hash": "404883919247951217" + }, + { + "file": "docs/User Guide/User Guide/Note Types/2_Mermaid Diagrams_image.png", + "hash": "17913912640153568729" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Displaying the option in setti.md", + "hash": "8267518082616976817" + }, + { + "file": "docs/Script API/assets/highlight.css", + "hash": "4285074483474071706" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Themes.md", + "hash": "9431375033964731793" + }, + { + "file": "docs/Developer Guide/Developer Guide/Building and deployment/CI/Main_image.png", + "hash": "5477858928741357904" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.PersistData.html", + "hash": "16866004549969430581" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Recent Changes_image.png", + "hash": "16567853903302976035" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_Lists_image.png", + "hash": "7911785825993500211" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.default.html", + "hash": "7838365315847650187" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CancelTokenSource.html", + "hash": "2321427478602125655" + }, + { + "file": "docs/Developer Guide/Developer Guide/Notes for old development/Releasing a version.clone.md", + "hash": "7452856003847983708" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/On NixOS.md", + "hash": "4555018800299124693" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Custom Widgets/Word count widget.md", + "hash": "9645085549983198995" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/Multi-Factor Authentication.md", + "hash": "10006749572057153946" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note List_image.png", + "hash": "17344203973631084668" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosHeaderValue.html", + "hash": "9512883085740903000" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.2-beta.md", + "hash": "7134694010981034314" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Content language & Right-to-le.md", + "hash": "13683115122867215765" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Vertical and horizontal la.png", + "hash": "7070453246985156821" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Hidden notes.md", + "hash": "12457340832473421506" + }, + { + "file": "docs/Developer Guide/Developer Guide/Troubleshooting/Error [TransformError] The pac.md", + "hash": "2007360804189743501" + }, + { + "file": ".gitignore", + "hash": "11919028057662818718" + }, + { + "file": ".idea/jsLibraryMappings.xml", + "hash": "463890270158677548" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac.md", + "hash": "14915015362708890087" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.EventOnlyNames.html", + "hash": "14604459281094063363" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ResolveOptions.html", + "hash": "2583999493139967374" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/5_Lists_image.png", + "hash": "6428938901484193450" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Templates.md", + "hash": "6677127073180056229" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.ContentOpts.html", + "hash": "11051628329727220926" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.node_modules__types_xml2js.ParserOptions.html", + "hash": "15642689994042434174" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.CommonRequestHeadersList.html", + "hash": "6016657590786602881" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Links.md", + "hash": "10628878424092766954" + }, + { + "file": "docs/Script API/hierarchy.html", + "hash": "7087761326174264857" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams/ELK layout.md", + "hash": "9218990841595290329" + }, + { + "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Versions and external plugins.md", + "hash": "16823304672831771300" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ShownCallbackData.html", + "hash": "13537247872398882796" + }, + { + "file": "docs/Script API/modules/Backend_Script_API._internal_.node_modules__types_xml2js.html", + "hash": "57223527041811899" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Live reload.md", + "hash": "14445433634969987457" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Weight Tracker_image.png", + "hash": "9366125920821414974" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/2_SQL Console_image.png", + "hash": "7503307765374810706" + }, + { + "file": "docs/User Guide/User Guide/AI/Introduction_image.png", + "hash": "17351850101399104891" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/SQL Console_image.png", + "hash": "970435259063086957" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Developer-specific formatting/Code blocks_image.png", + "hash": "16799092375248159407" + }, + { + "file": "docs/User Guide/User Guide/Note Types/17_Geo Map_image.png", + "hash": "18076589540377938573" + }, + { + "file": "docs/User Guide/!!!meta.json", + "hash": "11895438397111702315" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/4_Other features_image.png", + "hash": "12203404498693344880" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.EventMappings.html", + "hash": "17522712746708162269" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Docker.md", + "hash": "11338947733300465635" + }, + { + "file": "docs/Developer Guide/Developer Guide/Sub-projects/CKEditor/Building the editor.md", + "hash": "15005698969604672222" + }, + { + "file": ".idea/jsLinters/jslint.xml", + "hash": "711681400810612149" + }, + { + "file": "docs/User Guide/User Guide/Note Types/2_Text_image.png", + "hash": "17505861757177107597" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Root.html", + "hash": "15144226037365053003" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Jump to Note.md", + "hash": "13969417585075707281" + }, + { + "file": "docs/Developer Guide/Developer Guide/Project maintenance/Updating dependencies.md", + "hash": "12527925976936861939" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Render Note.md", + "hash": "10907883447497386270" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.CanceledError.html", + "hash": "4425156980023604406" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_5_.png", + "hash": "6214291566037882613" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Canceler.html", + "hash": "8429141126574678442" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation.md", + "hash": "16110939920725749339" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Internationalisation Translations/Server translations.md", + "hash": "233325850886770120" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-5.html", + "hash": "960615437114587660" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.4.md", + "hash": "2207971841022283765" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.BaseJQueryEventObject.html", + "hash": "5013732184832830923" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.TypeOrArray.html", + "hash": "7227281976133909191" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/First steps/mind_map.js", + "hash": "10796090623247054169" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Creating a custom theme_3_.png", + "hash": "1518431155925547874" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Fancytree.html", + "hash": "10131902098145945474" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Creating a new option.md", + "hash": "7445777789708082311" + }, + { + "file": "docs/User Guide/User Guide/Scripting/Examples/New Task launcher button_i.png", + "hash": "12237996247459794678" + }, + { + "file": "docs/Script API/assets/hierarchy.js", + "hash": "5555048876431558061" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TranslationTable.html", + "hash": "16850652013639160527" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Developer-specific formatt.png", + "hash": "13063031561540176225" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.node_modules__types_xml2js.OptionsV2.html", + "hash": "5920402519687550675" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Relation Map_relation-map-.gif", + "hash": "11740192765914054661" + }, + { + "file": "docs/User Guide/User Guide/FAQ.md", + "hash": "16165615300336202445" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.DefinitionObject.html", + "hash": "8482669630775134171" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information_im.png", + "hash": "7031327870994678887" + }, + { + "file": "docs/Release Notes/!!!meta.json", + "hash": "10934753383109932202" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ConfirmDialogOptions.html", + "hash": "2485905035049187615" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Tree Concepts.md", + "hash": "15081221128162970091" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosRequestHeaders.html", + "hash": "14760718317659645650" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/1_Day Notes_image.png", + "hash": "16475107103618581356" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting/Error logs_error-logs-fire.png", + "hash": "16523046904936619160" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_Tables_image.png", + "hash": "9228058938189586627" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/TLS Configuration.md", + "hash": "12439296878183116768" + }, + { + "file": "docs/User Guide/User Guide/Note Types/1_Relation Map_relation-map-.gif", + "hash": "10041817102859838104" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosProxyConfig.html", + "hash": "4788096206368192516" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Formatting toolbar_image.png", + "hash": "104005948126057026" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information.md", + "hash": "15763428834172387866" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Special notes.md", + "hash": "3244421341483603138" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Block quotes & admonitions.png", + "hash": "1499961390844427836" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree_image.png", + "hash": "8528551565462205040" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams/ELK layout_ELK off.svg", + "hash": "1981254385350765245" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.SearchParams.html", + "hash": "9726462727745192733" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Loading data.md", + "hash": "17419379493759801290" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/5_Insert buttons_image.png", + "hash": "16494632615299758318" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Weight Tracker.md", + "hash": "11605650381109217207" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Quick search.md", + "hash": "13334896477355249102" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree/Multiple selection.md", + "hash": "14248403792799944995" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Synchronisation/Content hashing.md", + "hash": "8981070653808491801" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Zen mode.md", + "hash": "12484251737157353550" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/3_SQL Console_image.png", + "hash": "13660740225101115149" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Other features_image.png", + "hash": "1340984468489886696" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Themes_steel-blue.png", + "hash": "3726910334005032045" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Disposable.html", + "hash": "17695646711983531865" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/6_Developer-specific formatt.png", + "hash": "2718064772609307655" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Saving data via spaced update.md", + "hash": "15110096891490816903" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Default Note Title.md", + "hash": "13357835412456271247" + }, + { + "file": "docs/Script API/media/README.ja.md", + "hash": "5839329094632699960" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Images/1_Image references_image.png", + "hash": "15112796094753790620" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/9_Lists_image.png", + "hash": "12986812650616357264" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Other features_image.png", + "hash": "15510836132033988057" + }, + { + "file": "docs/Developer Guide/Developer Guide/Sub-projects/ckeditor5-math.md", + "hash": "92408046703009242" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AxiosAdapterConfig.html", + "hash": "1582111942992506095" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Event.html", + "hash": "1251345523646307022" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Formatting toolbar_image.png", + "hash": "11287318707285627003" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_Links_image.png", + "hash": "15811656947725398233" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NotePathRecord.html", + "hash": "5314139773497320682" + }, + { + "file": "docs/Developer Guide/Developer Guide/Testing/Integration testing/1_Setting up authentication_.png", + "hash": "6311326131929912302" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/entity_changes.md", + "hash": "11984017581176676352" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Bulk Actions.md", + "hash": "2881796418862161644" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the data.png", + "hash": "4563135905265987265" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AsyncResourceOptions.html", + "hash": "8020470007601054280" + }, + { + "file": ".idea/git_toolbox_prj.xml", + "hash": "15025719909834120292" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CheerioAPI.html", + "hash": "13479832008860105998" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CheerioParserOptions.html", + "hash": "15172117939473057072" + }, + { + "file": "docs/Developer Guide/Developer Guide/Scripting/Server-side imports.md", + "hash": "11219131325031274988" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.Cheerio.html", + "hash": "9617725570069495188" + }, + { + "file": ".idea/vcs.xml", + "hash": "16873264805383449197" + }, + { + "file": ".github/workflows/release-winget.yml", + "hash": "11802042483604535783" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Protected entities.md", + "hash": "8607204597560914266" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Mobile Frontend_mobile-tab.png", + "hash": "12373682799958388972" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.NodePatch.html", + "hash": "6729580968896710441" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.MentionItem.html", + "hash": "13820590719720410030" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CloneResponse.html", + "hash": "5030255813529246705" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Tabs_image.png", + "hash": "7795320006621100645" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CancelToken.html", + "hash": "17902608789772135187" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Note Revisions_note-revisi.png", + "hash": "15021951667703156902" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/9_Images_image.png", + "hash": "5509956150273006831" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree_drag-and-drop.gif", + "hash": "16530764084716612313" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Note Hoisting.md", + "hash": "1136330695046256259" + }, + { + "file": "docs/User Guide/User Guide/AI/2_Introduction_image.png", + "hash": "4884550846089380843" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.SavingOpts.html", + "hash": "17517531639057561352" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FAttachmentRow.html", + "hash": "17859240158533988201" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Navigation/Jump to Note_recent-notes.gif", + "hash": "4138922403272569966" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/1_Adaptive icon_image.png", + "hash": "9113973157649197285" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.GetByIdOpts.html", + "hash": "5448737405855690783" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Note ID.md", + "hash": "450617259989353772" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.9-beta.md", + "hash": "9397735037604295419" + }, + { + "file": "docs/User Guide/User Guide/AI/7_Introduction_image.png", + "hash": "5587697700215758247" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Evernote.md", + "hash": "10663074258500447978" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Note Map.md", + "hash": "1349664584062347967" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Database/Manually altering the database/1_SQL Console_image.png", + "hash": "12789086198380592587" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Technologies used/MindElixir.md", + "hash": "6918212641187571529" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/2_Block quotes & admonitions.png", + "hash": "9887089141669552684" + }, + { + "file": "docs/Developer Guide/Developer Guide/Sub-projects/ckeditor5-math/Release management & continuou.md", + "hash": "16898764451434429632" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.BBranch.html", + "hash": "12776123451982372768" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Note source.md", + "hash": "9394701129235967378" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Options/Check box option.md", + "hash": "13176063915179660637" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/10_Images_image.png", + "hash": "8482371421622741436" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/3_Vertical and horizontal la.png", + "hash": "17791091569728992943" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting/Reporting issues.md", + "hash": "7437940663744225187" + }, + { + "file": "docs/Developer Guide/Developer Guide/Installation/Download latest nightly and in.md", + "hash": "6689583225600859966" + }, + { + "file": "docs/User Guide/User Guide/AI/4_Introduction_image.png", + "hash": "7955162789754070400" + }, + { + "file": "docs/User Guide/User Guide/AI/8_Introduction_image.png", + "hash": "11452529331641889807" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Mobile Frontend.md", + "hash": "1441716712876520647" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Icons/Icons on Mac/1_Slightly blurry icon on Ma.png", + "hash": "704956280599536830" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.UIEventBase.html", + "hash": "7464724917937222976" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/2_Tabs_image.png", + "hash": "10334320195251173502" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Promise.html", + "hash": "11866758654625306439" + }, + { + "file": "docs/Developer Guide/Developer Guide/Sub-projects/ckeditor5-math/Updating with upstream.md", + "hash": "1170819569679600371" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Math Equations_image.png", + "hash": "17950780031579539712" + }, + { + "file": "docs/Script API/modules/Backend_Script_API._internal_.html", + "hash": "1411675043711338139" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosRequestTransformer.html", + "hash": "10880068715112388734" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.PromptShownDialogCallback.html", + "hash": "10896789866055321500" + }, + { + "file": "docs/Release Notes/Release Notes/v0.91.6.md", + "hash": "2891090662713160134" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/1_Installing Ollama_image.png", + "hash": "14013766524203877283" + }, + { + "file": "docs/Developer Guide/Developer Guide/Project maintenance/Updating dependencies/Node.js, Electron and `better-.md", + "hash": "7009722849407231683" + }, + { + "file": "docs/Script API/media/README.md", + "hash": "13555307518746257814" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.RevisionRow.html", + "hash": "9642250565769124462" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.BEtapiToken.html", + "hash": "7465710577091605064" + }, + { + "file": "docs/User Guide/User Guide/Theme development/1_Custom app-wide CSS_image.png", + "hash": "17083234048482228473" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Partial.html", + "hash": "4501011672124687658" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Database/attributes.md", + "hash": "18044189470051526719" + }, + { + "file": ".github/workflows/release.yml", + "hash": "17127017447936409690" + }, + { + "file": ".github/ISSUE_TEMPLATE/bug_report.yml", + "hash": "9337980927788000468" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/1_Note Map (Link map, Tree m.png", + "hash": "12373337465272366302" + }, + { + "file": "README.md", + "hash": "13679989229500744212" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CreateAxiosDefaults.html", + "hash": "4682429153033268388" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Note Tree_move-note-with-k.gif", + "hash": "1539959243766334436" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information/Ollama/3_Installing Ollama_image.png", + "hash": "16240241501910096427" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Synchronization_image.png", + "hash": "13708579463799173943" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/10_Tables_image.png", + "hash": "6404125826080231616" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams_image.png", + "hash": "2085027971032498137" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.ConfirmDialogResult.html", + "hash": "5446474556972615089" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Using Docker.md", + "hash": "15354643679921200435" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosProgressEvent.html", + "hash": "12957834045669515554" + }, + { + "file": "docs/Script API/variables/Backend_Script_API.api.html", + "hash": "2357111998918240337" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Templates_template.png", + "hash": "18268213999228112195" + }, + { + "file": "scripts/update-nightly-version.ts", + "hash": "11430035494524347958" + }, + { + "file": "docs/User Guide/User Guide/Scripting.md", + "hash": "17214995894850908124" + }, + { + "file": ".idea/inspectionProfiles/Project_Default.xml", + "hash": "10941077199758478688" + }, + { + "file": "docs/Script API/types/Frontend_Script_API._internal_.ElementType.html", + "hash": "3432788365641156892" + }, + { + "file": ".idea/codeStyles/codeStyleConfig.xml", + "hash": "4690022301721055948" + }, + { + "file": ".editorconfig", + "hash": "11859237446229868960" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Web Clipper.md", + "hash": "2359889091966702200" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Notes/Export as PDF_image.png", + "hash": "14541367628854414550" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.SerializerVisitor.html", + "hash": "1067379542585829302" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/1_Options_image.png", + "hash": "13366394243903008319" + }, + { + "file": ".github/workflows/playwright.yml", + "hash": "11286744737758129262" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CommentElement.html", + "hash": "5757791309139487861" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.TextNode.html", + "hash": "6688773409712327203" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Attributes/Attribute Inheritance.md", + "hash": "8343345793425816358" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FancytreeEvents.html", + "hash": "11031154792558652689" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Sharing_share-multiple-not.png", + "hash": "12880863418544002540" + }, + { + "file": "docs/Script API/index.html", + "hash": "7164310318541615803" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ConfirmWithMessageOptions.html", + "hash": "2506067464385064028" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Data directory.md", + "hash": "4358803339908624454" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.AxiosBasicCredentials.html", + "hash": "9483175987744037880" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Configuration (config.ini or environment variables)/Trilium instance.md", + "hash": "17970831384961567831" + }, + { + "file": "docs/Script API/functions/Backend_Script_API._internal_.node_modules__types_xml2js.processors.normalize.html", + "hash": "5359474619226365804" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Configuration (config.ini or e.md", + "hash": "14993988245541217079" + }, + { + "file": "docs/Script API/classes/Backend_Script_API._internal_.TaskContext.html", + "hash": "7871285994240472519" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Geo Map_image.jpg", + "hash": "14126513805103816937" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/1. Installing the server/Using Kubernetes.md", + "hash": "6747559135065742360" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.TransitionalOptions.html", + "hash": "10766908675740671008" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Render Note_image.png", + "hash": "5322813341800091719" + }, + { + "file": ".idea/codeStyles/Project.xml", + "hash": "17510646002422655057" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.BAttachment.html", + "hash": "8665382541585871854" + }, + { + "file": "docs/Script API/enums/Frontend_Script_API._internal_.FancytreeClickFolderMode.html", + "hash": "5271243830085395651" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.ViewScope.html", + "hash": "3321680446742914167" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Key2.html", + "hash": "3433423352949927099" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Tables_image.png", + "hash": "17750886350164547911" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.Marker.html", + "hash": "8991963297786749743" + }, + { + "file": "docs/Script API/media/README.es.md", + "hash": "12007132810736524416" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.FancytreeOptions.html", + "hash": "7213971429337564504" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/Import & Export/Markdown_markdown-inline-i.gif", + "hash": "14529090719970710849" + }, + { + "file": ".github/ISSUE_TEMPLATE/task.yml", + "hash": "442256738724543481" + }, + { + "file": "docs/User Guide/User Guide/Note Types/3_Geo Map_image.png", + "hash": "6747111431605585316" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Advanced Showcases/Day Notes_image.png", + "hash": "2285942951742705208" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/3_Other features_image.png", + "hash": "14748759719944428714" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Internal API/API Reference.dat", + "hash": "3244421341483603138" + }, + { + "file": "docs/Release Notes/Release Notes/v0.91.1-beta.md", + "hash": "1505295548915455849" + }, + { + "file": "docs/Release Notes/Release Notes/v0.91.2-beta.md", + "hash": "7463292530355249790" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.DefaultEventMap.html", + "hash": "2483778765279634717" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.DefinitionObject.html", + "hash": "11130678699920159045" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.IteratorYieldResult.html", + "hash": "6690858814696502663" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.Exclude.html", + "hash": "6634549736483692084" + }, + { + "file": "docs/README.it.md", + "hash": "9798316810783494206" + }, + { + "file": "docs/User Guide/User Guide/Note Types/1_File_image.png", + "hash": "2974379219914373732" + }, + { + "file": "docs/User Guide/User Guide/Theme development/Reference.md", + "hash": "11046588365730688403" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Images/Image references_image.png", + "hash": "1175189001050726431" + }, + { + "file": "docs/Script API/variables/Backend_Script_API._internal_.Object.html", + "hash": "735061891881479089" + }, + { + "file": "docs/User Guide/User Guide/AI/Introduction.md", + "hash": "7557589660733249024" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Mermaid Diagrams.md", + "hash": "14857943768636243310" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/1_Lists_image.png", + "hash": "13706420500212756506" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/7_Images_image.png", + "hash": "17511659637484055697" + }, + { + "file": "docs/Script API/interfaces/Frontend_Script_API._internal_.PromptDialogOptions.html", + "hash": "7465892738608602420" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/Footnotes_image.png", + "hash": "15321934377294206330" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Canvas_image.png", + "hash": "1139182728331705462" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.EventMap.html", + "hash": "18377469335988447416" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Bulk Actions_image.png", + "hash": "378004986618242169" + }, + { + "file": "docs/User Guide/User Guide/Note Types/2_Geo Map_image.png", + "hash": "7283724173419351355" + }, + { + "file": "docs/Script API/classes/Frontend_Script_API._internal_.default-6.html", + "hash": "9457762962429674796" + }, + { + "file": "docs/Script API/types/Backend_Script_API._internal_.AttrFunction.html", + "hash": "7464389257892501573" + }, + { + "file": "docs/User Guide/User Guide/Installation & Setup/Server Installation/2. Reverse proxy/Apache.md", + "hash": "12298787927497626453" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.CancelStatic.html", + "hash": "2400180820286945238" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.GenericFormData.html", + "hash": "6929183783104069561" + }, + { + "file": ".nxignore", + "hash": "17027752051574521115" + }, + { + "file": "docs/User Guide/User Guide/Note Types/Text/6_Insert buttons_image.png", + "hash": "11895482486771487063" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.11-beta.md", + "hash": "1640429599497982025" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Internationalisation Translations/Guidelines.md", + "hash": "4788416431512568863" + }, + { + "file": "docs/Script API/classes/Backend_Script_API.BRecentNote.html", + "hash": "11994967186676125771" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/Export diagram as SVG.md", + "hash": "8391941206097753891" + }, + { + "file": "docs/Script API/interfaces/Backend_Script_API._internal_.FormDataVisitorHelpers.html", + "hash": "11306007087078053081" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/1_Zen mode_image.png", + "hash": "17870947971075093638" + }, + { + "file": "docs/User Guide/User Guide/Basic Concepts and Features/UI Elements/Split View_3_Split View_im.png", + "hash": "17939885197973038320" + }, + { + "file": "docs/User Guide/User Guide/Troubleshooting/Error logs_error-logs-expo.png", + "hash": "6194482635852243395" + }, + { + "file": "docs/User Guide/User Guide/Note Types/15_Geo Map_image.png", + "hash": "4140348661462948102" + }, + { + "file": "docs/User Guide/User Guide/AI/AI Provider Information/OpenAI.md", + "hash": "3244421341483603138" + }, + { + "file": "docs/Release Notes/Release Notes/v0.90.5-beta_image.png", + "hash": "18107480102557535583" + }, + { + "file": "docs/User Guide/User Guide/Advanced Usage/Note Map (Link map, Tree map).md", + "hash": "5234725591771253677" + }, + { + "file": "docs/Developer Guide/Developer Guide/Development and architecture/Adding a new note type/SVG rendering.md", + "hash": "14938937788563990628" } ], "projectFileMap": { + "@triliumnext/turndown-plugin-gfm": [ + { + "file": "packages/turndown-plugin-gfm/.swcrc", + "hash": "4407053749996838271" + }, + { + "file": "packages/turndown-plugin-gfm/LICENSE", + "hash": "7926277479301378842" + }, + { + "file": "packages/turndown-plugin-gfm/README.md", + "hash": "16418062480524482085" + }, + { + "file": "packages/turndown-plugin-gfm/dist/index.d.ts", + "hash": "11549783060584318580" + }, + { + "file": "packages/turndown-plugin-gfm/dist/index.d.ts.map", + "hash": "5440318879826157743" + }, + { + "file": "packages/turndown-plugin-gfm/dist/lib/gfm.d.ts", + "hash": "11393607812934061767" + }, + { + "file": "packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map", + "hash": "9184876548242238625" + }, + { + "file": "packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts", + "hash": "10725832453471417056" + }, + { + "file": "packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map", + "hash": "8952053384982110933" + }, + { + "file": "packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts", + "hash": "6571034753063125604" + }, + { + "file": "packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map", + "hash": "11367693789034979562" + }, + { + "file": "packages/turndown-plugin-gfm/dist/lib/tables.d.ts", + "hash": "14996843125113225372" + }, + { + "file": "packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map", + "hash": "15738375748136580925" + }, + { + "file": "packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts", + "hash": "12310827963748088998" + }, + { + "file": "packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map", + "hash": "7836272968557857003" + }, + { + "file": "packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo", + "hash": "13292055096630308472" + }, + { + "file": "packages/turndown-plugin-gfm/package.json", + "hash": "10715657297656810094", + "deps": [ + "npm:@swc/helpers" + ] + }, + { + "file": "packages/turndown-plugin-gfm/src/index.js", + "hash": "17012457522450625912" + }, + { + "file": "packages/turndown-plugin-gfm/src/lib/gfm.js", + "hash": "4532761364300836820" + }, + { + "file": "packages/turndown-plugin-gfm/src/lib/highlighted-code-block.js", + "hash": "14202439269456145994" + }, + { + "file": "packages/turndown-plugin-gfm/src/lib/strikethrough.js", + "hash": "100985041164137483" + }, + { + "file": "packages/turndown-plugin-gfm/src/lib/tables.js", + "hash": "9833370308845998257" + }, + { + "file": "packages/turndown-plugin-gfm/src/lib/task-list-items.js", + "hash": "1353971698123613024" + }, + { + "file": "packages/turndown-plugin-gfm/tsconfig.json", + "hash": "15856989918287211863" + }, + { + "file": "packages/turndown-plugin-gfm/tsconfig.lib.json", + "hash": "3418659308031652674" + } + ], "@triliumnext/commons": [ { "file": "packages/commons/.swcrc", diff --git a/.nx/workspace-data/lockfile.hash b/.nx/workspace-data/lockfile.hash index 7f7f989bd..99a994d3f 100644 --- a/.nx/workspace-data/lockfile.hash +++ b/.nx/workspace-data/lockfile.hash @@ -1 +1 @@ -15598048054050703183 \ No newline at end of file +2042645556921387970 \ No newline at end of file diff --git a/.nx/workspace-data/nx_files.nxt b/.nx/workspace-data/nx_files.nxt index dd8d897a4863c65b2f96f09879c39bf9c5811263..bd943976a191db30e55313d0117d873d1f2ebf6c 100644 GIT binary patch literal 113876 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 literal 111348 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 Cj@j@4 diff --git a/.nx/workspace-data/project-graph.json b/.nx/workspace-data/project-graph.json index 7d9ac0b46..5123b6d89 100644 --- a/.nx/workspace-data/project-graph.json +++ b/.nx/workspace-data/project-graph.json @@ -1,5 +1,176 @@ { "nodes": { + "@triliumnext/turndown-plugin-gfm": { + "name": "@triliumnext/turndown-plugin-gfm", + "type": "lib", + "data": { + "root": "packages/turndown-plugin-gfm", + "projectType": "library", + "targets": { + "typecheck": { + "dependsOn": [ + "build", + "^typecheck" + ], + "options": { + "cwd": "packages/turndown-plugin-gfm", + "command": "tsc --build --emitDeclarationOnly" + }, + "cache": true, + "inputs": [ + "production", + "^production", + { + "externalDependencies": [ + "typescript" + ] + } + ], + "outputs": [ + "{projectRoot}/**/*.js", + "{projectRoot}/**/*.cjs", + "{projectRoot}/**/*.mjs", + "{projectRoot}/**/*.jsx", + "{projectRoot}/**/*.js.map", + "{projectRoot}/**/*.jsx.map", + "{projectRoot}/**/*.d.ts", + "{projectRoot}/**/*.d.cts", + "{projectRoot}/**/*.d.mts", + "{projectRoot}/**/*.d.ts.map", + "{projectRoot}/**/*.d.cts.map", + "{projectRoot}/**/*.d.mts.map", + "{projectRoot}/tsconfig.tsbuildinfo", + "{projectRoot}/dist/**/*.d.ts", + "{projectRoot}/dist/tsconfig.lib.tsbuildinfo" + ], + "syncGenerators": [ + "@nx/js:typescript-sync" + ], + "metadata": { + "technologies": [ + "typescript" + ], + "description": "Runs type-checking for the project.", + "help": { + "command": "npx tsc --build --help", + "example": { + "args": [ + "--force" + ] + } + } + }, + "executor": "nx:run-commands", + "configurations": {}, + "parallelism": true + }, + "build": { + "executor": "@nx/js:swc", + "outputs": [ + "{options.outputPath}" + ], + "options": { + "outputPath": "packages/turndown-plugin-gfm/dist", + "main": "packages/turndown-plugin-gfm/src/index.js", + "tsConfig": "packages/turndown-plugin-gfm/tsconfig.lib.json", + "skipTypeCheck": true, + "stripLeadingPaths": true + }, + "configurations": {}, + "parallelism": true, + "cache": true, + "dependsOn": [ + "^build" + ], + "inputs": [ + "production", + "^production" + ] + }, + "build-deps": { + "dependsOn": [ + "^build" + ], + "configurations": {}, + "options": {}, + "parallelism": true, + "executor": "nx:noop" + }, + "watch-deps": { + "dependsOn": [ + "build-deps" + ], + "executor": "nx:run-commands", + "options": { + "command": "npx nx watch --projects @triliumnext/turndown-plugin-gfm --includeDependentProjects -- npx nx build-deps @triliumnext/turndown-plugin-gfm" + }, + "configurations": {}, + "parallelism": true + }, + "lint": { + "cache": true, + "options": { + "cwd": "packages/turndown-plugin-gfm", + "command": "eslint ." + }, + "inputs": [ + "default", + "^default", + "{workspaceRoot}/eslint.config.mjs", + "{workspaceRoot}/tools/eslint-rules/**/*", + { + "externalDependencies": [ + "eslint" + ] + } + ], + "outputs": [ + "{options.outputFile}" + ], + "metadata": { + "technologies": [ + "eslint" + ], + "description": "Runs ESLint on project", + "help": { + "command": "npx eslint --help", + "example": { + "options": { + "max-warnings": 0 + } + } + } + }, + "executor": "nx:run-commands", + "configurations": {}, + "parallelism": true + } + }, + "name": "@triliumnext/turndown-plugin-gfm", + "sourceRoot": "packages/turndown-plugin-gfm/src", + "tags": [ + "npm:private" + ], + "metadata": { + "targetGroups": {}, + "js": { + "packageName": "@triliumnext/turndown-plugin-gfm", + "packageExports": { + "./package.json": "./package.json", + ".": { + "development": "./src/index.ts", + "types": "./dist/index.d.ts", + "import": "./dist/index.js", + "default": "./dist/index.js" + } + }, + "packageMain": "./dist/index.js", + "isInPackageManagerWorkspaces": true + } + }, + "implicitDependencies": [] + } + }, "@triliumnext/commons": { "name": "@triliumnext/commons", "type": "lib", @@ -22,11 +193,22 @@ } ], "outputs": [ + "{projectRoot}/**/*.js", + "{projectRoot}/**/*.cjs", + "{projectRoot}/**/*.mjs", + "{projectRoot}/**/*.jsx", + "{projectRoot}/**/*.js.map", + "{projectRoot}/**/*.jsx.map", + "{projectRoot}/**/*.d.ts", + "{projectRoot}/**/*.d.cts", + "{projectRoot}/**/*.d.mts", + "{projectRoot}/**/*.d.ts.map", + "{projectRoot}/**/*.d.cts.map", + "{projectRoot}/**/*.d.mts.map", + "{projectRoot}/tsconfig.tsbuildinfo", "{projectRoot}/dist/**/*.d.ts", - "{projectRoot}/dist/**/*.d.ts.map", "{projectRoot}/dist/tsconfig.lib.tsbuildinfo", "{projectRoot}/out-tsc/vitest/**/*.d.ts", - "{projectRoot}/out-tsc/vitest/**/*.d.ts.map", "{projectRoot}/out-tsc/vitest/tsconfig.tsbuildinfo" ], "syncGenerators": [ @@ -6321,6 +6503,13 @@ } }, "dependencies": { + "@triliumnext/turndown-plugin-gfm": [ + { + "source": "@triliumnext/turndown-plugin-gfm", + "target": "npm:@swc/helpers", + "type": "static" + } + ], "@triliumnext/commons": [ { "source": "@triliumnext/commons", @@ -13277,5 +13466,5 @@ }, "version": "6.0", "errors": [], - "computedAt": 1745323545907 + "computedAt": 1745324463111 } \ No newline at end of file diff --git a/.nx/workspace-data/source-maps.json b/.nx/workspace-data/source-maps.json index 9cbbec750..7257f6b71 100644 --- a/.nx/workspace-data/source-maps.json +++ b/.nx/workspace-data/source-maps.json @@ -324,5 +324,259 @@ "nx.json", "nx/target-defaults" ] + }, + "packages/turndown-plugin-gfm": { + "root": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "projectType": [ + "packages/turndown-plugin-gfm/tsconfig.lib.json", + "@nx/js/typescript" + ], + "targets": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.dependsOn": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.options": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.cache": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.inputs": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.outputs": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.syncGenerators": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.metadata": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.executor": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.options.cwd": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.options.command": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.metadata.technologies": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.metadata.technologies.0": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.metadata.description": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.metadata.help": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.metadata.help.command": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.typecheck.metadata.help.example": [ + "packages/turndown-plugin-gfm/tsconfig.json", + "@nx/js/typescript" + ], + "targets.watch-deps": [ + "packages/turndown-plugin-gfm/tsconfig.lib.json", + "@nx/js/typescript" + ], + "targets.watch-deps.dependsOn": [ + "packages/turndown-plugin-gfm/tsconfig.lib.json", + "@nx/js/typescript" + ], + "targets.watch-deps.executor": [ + "packages/turndown-plugin-gfm/tsconfig.lib.json", + "@nx/js/typescript" + ], + "targets.watch-deps.options": [ + "packages/turndown-plugin-gfm/tsconfig.lib.json", + "@nx/js/typescript" + ], + "targets.watch-deps.options.command": [ + "packages/turndown-plugin-gfm/tsconfig.lib.json", + "@nx/js/typescript" + ], + "targets.lint": [ + "eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.cache": [ + "eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.options": [ + "eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.inputs": [ + "eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.outputs": [ + "eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.metadata": [ + "eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.executor": [ + "eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.options.cwd": [ + "eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.options.command": [ + "eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.metadata.technologies": [ + "eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.metadata.technologies.0": [ + "eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.metadata.description": [ + "eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.metadata.help": [ + "eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.metadata.help.command": [ + "eslint.config.mjs", + "@nx/eslint/plugin" + ], + "targets.lint.metadata.help.example": [ + "eslint.config.mjs", + "@nx/eslint/plugin" + ], + "name": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "sourceRoot": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "tags": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "tags.npm:private": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "metadata.targetGroups": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "metadata.js": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "metadata.js.packageName": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "metadata.js.packageExports": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "metadata.js.packageMain": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "metadata.js.isInPackageManagerWorkspaces": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "targets.build": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "targets.build.executor": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "targets.build.outputs": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "targets.build.options": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "targets.build.options.outputPath": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "targets.build.options.main": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "targets.build.options.tsConfig": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "targets.build.options.skipTypeCheck": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "targets.build.options.stripLeadingPaths": [ + "packages/turndown-plugin-gfm/package.json", + "nx/core/package-json" + ], + "targets.build.cache": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.dependsOn": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.inputs": [ + "nx.json", + "nx/target-defaults" + ], + "targets.build.parallelism": [ + "nx.json", + "nx/target-defaults" + ] } } \ No newline at end of file diff --git a/.nx/workspace-data/tsc-2568428459166798129.hash b/.nx/workspace-data/tsc-2568428459166798129.hash index 61e0029e0..7f51ad549 100644 --- a/.nx/workspace-data/tsc-2568428459166798129.hash +++ b/.nx/workspace-data/tsc-2568428459166798129.hash @@ -1 +1 @@ -{"11869391778795483303__regroup/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.js","{projectRoot}/*.ts","{projectRoot}/*.js","{projectRoot}/spec/**/*.ts","!{projectRoot}/node_modules/**/*","!{projectRoot}/spec-es6/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"15245114416479820821__regroup/tsconfig.webpack.json":{"targets":{}},"13561622157985728922__regroup_monorepo/apps/client/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/client"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"14093822253295871777__regroup_monorepo/apps/desktop/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/desktop"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/src/**/*.d.ts","{projectRoot}/build/src/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"7047387383306593424__regroup_monorepo/apps/dump-db/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/dump-db"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"15278217660991004003__regroup_monorepo/apps/edit-docs/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/edit-docs"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/src/**/*.d.ts","{projectRoot}/build/src/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"14098683966078983814__regroup_monorepo/apps/server/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/server"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/**/*.d.ts","{projectRoot}/build/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"4523360418648941323__regroup_monorepo/packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/packages/commons"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/**/*.d.ts","{projectRoot}/build/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"15502824874048194340__regroup/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"5174094915127372198__regroup/tsconfig.webpack.json":{"targets":{}},"9941204692689511145__regroup_monorepo/apps/client/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/client"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"8111885867260379424__regroup_monorepo/apps/desktop/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/desktop"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/src/**/*.d.ts","{projectRoot}/build/src/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"5075580413691806581__regroup_monorepo/apps/dump-db/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/dump-db"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"426201073132973769__regroup_monorepo/apps/edit-docs/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/edit-docs"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/src/**/*.d.ts","{projectRoot}/build/src/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"15053296202139263368__regroup_monorepo/apps/server/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/server"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/**/*.d.ts","{projectRoot}/build/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"10868516203616069637__regroup_monorepo/packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/**/*.d.ts","{projectRoot}/build/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"9659040931357452508_packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/commons"},"cache":true,"inputs":["{projectRoot}/package.json","{workspaceRoot}/tsconfig.base.json","{projectRoot}/tsconfig.json","{projectRoot}/tsconfig.lib.json","{projectRoot}/tsconfig.spec.json","{projectRoot}/src/**/*.ts","{projectRoot}/vite.config.ts","{projectRoot}/vite.config.mts","{projectRoot}/vitest.config.ts","{projectRoot}/vitest.config.mts","{projectRoot}/src/**/*.test.ts","{projectRoot}/src/**/*.spec.ts","{projectRoot}/src/**/*.test.tsx","{projectRoot}/src/**/*.spec.tsx","{projectRoot}/src/**/*.test.js","{projectRoot}/src/**/*.spec.js","{projectRoot}/src/**/*.test.jsx","{projectRoot}/src/**/*.spec.jsx","{projectRoot}/src/**/*.d.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/**/*.d.ts.map","{projectRoot}/dist/tsconfig.lib.tsbuildinfo","{projectRoot}/out-tsc/vitest/**/*.d.ts","{projectRoot}/out-tsc/vitest/**/*.d.ts.map","{projectRoot}/out-tsc/vitest/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"10173870156370054417_packages/commons/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/commons"},"cache":true,"inputs":["{projectRoot}/package.json","{workspaceRoot}/tsconfig.base.json","{projectRoot}/tsconfig.lib.json","{projectRoot}/src/**/*.ts","!{projectRoot}/vite.config.ts","!{projectRoot}/vite.config.mts","!{projectRoot}/vitest.config.ts","!{projectRoot}/vitest.config.mts","!{projectRoot}/src/**/*.test.ts","!{projectRoot}/src/**/*.spec.ts","!{projectRoot}/src/**/*.test.tsx","!{projectRoot}/src/**/*.spec.tsx","!{projectRoot}/src/**/*.test.js","!{projectRoot}/src/**/*.spec.js","!{projectRoot}/src/**/*.test.jsx","!{projectRoot}/src/**/*.spec.jsx","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/**/*.d.ts.map","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons"}}},"11264567673388099205_packages/commons/tsconfig.spec.json":{"targets":{}}} \ No newline at end of file +{"11869391778795483303__regroup/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.js","{projectRoot}/*.ts","{projectRoot}/*.js","{projectRoot}/spec/**/*.ts","!{projectRoot}/node_modules/**/*","!{projectRoot}/spec-es6/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"15245114416479820821__regroup/tsconfig.webpack.json":{"targets":{}},"13561622157985728922__regroup_monorepo/apps/client/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/client"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"14093822253295871777__regroup_monorepo/apps/desktop/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/desktop"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/src/**/*.d.ts","{projectRoot}/build/src/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"7047387383306593424__regroup_monorepo/apps/dump-db/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/dump-db"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"15278217660991004003__regroup_monorepo/apps/edit-docs/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/edit-docs"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/src/**/*.d.ts","{projectRoot}/build/src/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"14098683966078983814__regroup_monorepo/apps/server/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/server"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/**/*.d.ts","{projectRoot}/build/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"4523360418648941323__regroup_monorepo/packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/packages/commons"},"cache":true,"inputs":["{projectRoot}/package.json","{projectRoot}/tsconfig.json","{projectRoot}/src/**/*.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/**/*.d.ts","{projectRoot}/build/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"15502824874048194340__regroup/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"5174094915127372198__regroup/tsconfig.webpack.json":{"targets":{}},"9941204692689511145__regroup_monorepo/apps/client/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/client"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"8111885867260379424__regroup_monorepo/apps/desktop/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/desktop"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/src/**/*.d.ts","{projectRoot}/build/src/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"5075580413691806581__regroup_monorepo/apps/dump-db/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/dump-db"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"426201073132973769__regroup_monorepo/apps/edit-docs/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/edit-docs"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/src/**/*.d.ts","{projectRoot}/build/src/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"15053296202139263368__regroup_monorepo/apps/server/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/apps/server"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/**/*.d.ts","{projectRoot}/build/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"10868516203616069637__regroup_monorepo/packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"_regroup_monorepo/packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/build/**/*.d.ts","{projectRoot}/build/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"9659040931357452508_packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/commons"},"cache":true,"inputs":["{projectRoot}/package.json","{workspaceRoot}/tsconfig.base.json","{projectRoot}/tsconfig.json","{projectRoot}/tsconfig.lib.json","{projectRoot}/tsconfig.spec.json","{projectRoot}/src/**/*.ts","{projectRoot}/vite.config.ts","{projectRoot}/vite.config.mts","{projectRoot}/vitest.config.ts","{projectRoot}/vitest.config.mts","{projectRoot}/src/**/*.test.ts","{projectRoot}/src/**/*.spec.ts","{projectRoot}/src/**/*.test.tsx","{projectRoot}/src/**/*.spec.tsx","{projectRoot}/src/**/*.test.js","{projectRoot}/src/**/*.spec.js","{projectRoot}/src/**/*.test.jsx","{projectRoot}/src/**/*.spec.jsx","{projectRoot}/src/**/*.d.ts","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/**/*.d.ts.map","{projectRoot}/dist/tsconfig.lib.tsbuildinfo","{projectRoot}/out-tsc/vitest/**/*.d.ts","{projectRoot}/out-tsc/vitest/**/*.d.ts.map","{projectRoot}/out-tsc/vitest/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"10173870156370054417_packages/commons/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/commons"},"cache":true,"inputs":["{projectRoot}/package.json","{workspaceRoot}/tsconfig.base.json","{projectRoot}/tsconfig.lib.json","{projectRoot}/src/**/*.ts","!{projectRoot}/vite.config.ts","!{projectRoot}/vite.config.mts","!{projectRoot}/vitest.config.ts","!{projectRoot}/vitest.config.mts","!{projectRoot}/src/**/*.test.ts","!{projectRoot}/src/**/*.spec.ts","!{projectRoot}/src/**/*.test.tsx","!{projectRoot}/src/**/*.spec.tsx","!{projectRoot}/src/**/*.test.js","!{projectRoot}/src/**/*.spec.js","!{projectRoot}/src/**/*.test.jsx","!{projectRoot}/src/**/*.spec.jsx","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/**/*.d.ts.map","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons"}}},"11264567673388099205_packages/commons/tsconfig.spec.json":{"targets":{}},"16782754694229818149_packages/turndown-plugin-gfm/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["{projectRoot}/package.json","{workspaceRoot}/tsconfig.base.json","{projectRoot}/tsconfig.json","{projectRoot}/tsconfig.lib.json","{projectRoot}/src/**/*.ts","{projectRoot}/src/**/*.js","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/**/*.d.ts.map","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"6708952039663629775_packages/turndown-plugin-gfm/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["{projectRoot}/package.json","{workspaceRoot}/tsconfig.base.json","{projectRoot}/tsconfig.lib.json","{projectRoot}/src/**/*.ts","{projectRoot}/src/**/*.js","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/**/*.d.ts.map","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/turndown-plugin-gfm --includeDependentProjects -- npx nx build-deps @triliumnext/turndown-plugin-gfm"}}},"17963845691318875640_packages/commons/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo","{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/tsconfig.lib.tsbuildinfo","{projectRoot}/out-tsc/vitest/**/*.d.ts","{projectRoot}/out-tsc/vitest/tsconfig.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"16724140825541265297_packages/commons/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/commons"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons"}}},"446711750461411440_packages/commons/tsconfig.spec.json":{"targets":{}},"3583048222942495945_packages/turndown-plugin-gfm/tsconfig.json":{"targets":{"typecheck":{"dependsOn":["build","^typecheck"],"command":"tsc --build --emitDeclarationOnly","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/**/*.js","{projectRoot}/**/*.cjs","{projectRoot}/**/*.mjs","{projectRoot}/**/*.jsx","{projectRoot}/**/*.js.map","{projectRoot}/**/*.jsx.map","{projectRoot}/**/*.d.ts","{projectRoot}/**/*.d.cts","{projectRoot}/**/*.d.mts","{projectRoot}/**/*.d.ts.map","{projectRoot}/**/*.d.cts.map","{projectRoot}/**/*.d.mts.map","{projectRoot}/tsconfig.tsbuildinfo","{projectRoot}/dist/**/*.d.ts","{projectRoot}/dist/tsconfig.lib.tsbuildinfo"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Runs type-checking for the project.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}}}},"10685646216986991918_packages/turndown-plugin-gfm/tsconfig.lib.json":{"targets":{"build":{"dependsOn":["^build"],"command":"tsc --build tsconfig.lib.json","options":{"cwd":"packages/turndown-plugin-gfm"},"cache":true,"inputs":["production","^production",{"externalDependencies":["typescript"]}],"outputs":["{projectRoot}/dist"],"syncGenerators":["@nx/js:typescript-sync"],"metadata":{"technologies":["typescript"],"description":"Builds the project with `tsc`.","help":{"command":"npx tsc --build --help","example":{"args":["--force"]}}}},"build-deps":{"dependsOn":["^build"]},"watch-deps":{"dependsOn":["build-deps"],"command":"npx nx watch --projects @triliumnext/turndown-plugin-gfm --includeDependentProjects -- npx nx build-deps @triliumnext/turndown-plugin-gfm"}}}} \ No newline at end of file diff --git a/.nx/workspace-data/tsconfig-files.hash b/.nx/workspace-data/tsconfig-files.hash index 6f83b7973..20cfc0d57 100644 --- a/.nx/workspace-data/tsconfig-files.hash +++ b/.nx/workspace-data/tsconfig-files.hash @@ -1 +1 @@ -{"version":1,"data":{"_regroup/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"4035316250107280252"},"_regroup/tsconfig.webpack.json":{"data":{"options":{"outDir":"_regroup/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"6907118777807948892"},"_regroup_monorepo/apps/client/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"14767859997928425739"},"_regroup_monorepo/apps/desktop/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/desktop/build/src"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"13836985792475651782"},"_regroup_monorepo/apps/dump-db/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"13443438839210231598"},"_regroup_monorepo/apps/edit-docs/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/edit-docs/build/src"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"12225141163520618803"},"_regroup_monorepo/apps/server/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/server/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"845305129518775256"},"_regroup_monorepo/packages/commons/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/packages/commons/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"6514291953471485556"},"tsconfig.base.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"8900268571896142108"},"tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons","originalPath":"./packages/commons"}]},"extendedFilesHash":"8900268571896142108|","hash":"15145157276445734434"},"packages/commons/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons/tsconfig.lib.json","originalPath":"./tsconfig.lib.json"},{"path":"packages/commons/tsconfig.spec.json","originalPath":"./tsconfig.spec.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"12834038490315927699"},"packages/commons/tsconfig.lib.json":{"data":{"options":{"rootDir":"packages/commons/src","outDir":"packages/commons/dist","tsBuildInfoFile":"packages/commons/dist/tsconfig.lib.tsbuildinfo"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"6071029124077261918"},"packages/commons/tsconfig.spec.json":{"data":{"options":{"outDir":"packages/commons/out-tsc/vitest"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons/tsconfig.lib.json","originalPath":"./tsconfig.lib.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"12757693314151657395"}}} \ No newline at end of file +{"version":1,"data":{"_regroup/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"4035316250107280252"},"_regroup/tsconfig.webpack.json":{"data":{"options":{"outDir":"_regroup/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"6907118777807948892"},"_regroup_monorepo/apps/client/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"14767859997928425739"},"_regroup_monorepo/apps/desktop/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/desktop/build/src"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"13836985792475651782"},"_regroup_monorepo/apps/dump-db/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"13443438839210231598"},"_regroup_monorepo/apps/edit-docs/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/edit-docs/build/src"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"12225141163520618803"},"_regroup_monorepo/apps/server/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/apps/server/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"845305129518775256"},"_regroup_monorepo/packages/commons/tsconfig.json":{"data":{"options":{"outDir":"_regroup_monorepo/packages/commons/build"},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"6514291953471485556"},"tsconfig.base.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[]},"extendedFilesHash":"","hash":"8900268571896142108"},"tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons","originalPath":"./packages/commons"},{"path":"packages/turndown-plugin-gfm","originalPath":"./packages/turndown-plugin-gfm"}]},"extendedFilesHash":"8900268571896142108|","hash":"8784381935299652134"},"packages/commons/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons/tsconfig.lib.json","originalPath":"./tsconfig.lib.json"},{"path":"packages/commons/tsconfig.spec.json","originalPath":"./tsconfig.spec.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"12834038490315927699"},"packages/commons/tsconfig.lib.json":{"data":{"options":{"rootDir":"packages/commons/src","outDir":"packages/commons/dist","tsBuildInfoFile":"packages/commons/dist/tsconfig.lib.tsbuildinfo"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"6071029124077261918"},"packages/commons/tsconfig.spec.json":{"data":{"options":{"outDir":"packages/commons/out-tsc/vitest"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/commons/tsconfig.lib.json","originalPath":"./tsconfig.lib.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"12757693314151657395"},"packages/turndown-plugin-gfm/tsconfig.json":{"data":{"options":{},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}],"projectReferences":[{"path":"packages/turndown-plugin-gfm/tsconfig.lib.json","originalPath":"./tsconfig.lib.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"15856989918287211863"},"packages/turndown-plugin-gfm/tsconfig.lib.json":{"data":{"options":{"rootDir":"packages/turndown-plugin-gfm/src","outDir":"packages/turndown-plugin-gfm/dist","tsBuildInfoFile":"packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo"},"raw":{"nx":{}},"extendedConfigFiles":[{"filePath":"tsconfig.base.json"}]},"extendedFilesHash":"8900268571896142108|","hash":"3418659308031652674"}}} \ No newline at end of file diff --git a/.nx/workspace-data/vite-9347777721732807074.hash b/.nx/workspace-data/vite-9347777721732807074.hash index ec563d3a7..e48009606 100644 --- a/.nx/workspace-data/vite-9347777721732807074.hash +++ b/.nx/workspace-data/vite-9347777721732807074.hash @@ -268,5 +268,95 @@ }, "metadata": {}, "projectType": "application" + }, + "12162266653434004147packages/commons/vite.config.ts": { + "targets": { + "test": { + "command": "vitest", + "options": { + "cwd": "packages/commons" + }, + "cache": true, + "inputs": [ + "default", + "^production", + { + "externalDependencies": [ + "vitest" + ] + }, + { + "env": "CI" + } + ], + "outputs": [ + "{projectRoot}/test-output/vitest/coverage" + ], + "metadata": { + "technologies": [ + "vite" + ], + "description": "Run Vite tests", + "help": { + "command": "npx vitest --help", + "example": { + "options": { + "bail": 1, + "coverage": true + } + } + } + } + }, + "typecheck": { + "cache": true, + "inputs": [ + "production", + "^production", + { + "externalDependencies": [ + "typescript" + ] + } + ], + "command": "tsc --build --emitDeclarationOnly", + "options": { + "cwd": "packages/commons" + }, + "metadata": { + "description": "Runs type-checking for the project.", + "technologies": [ + "typescript" + ], + "help": { + "command": "npx tsc --build --help", + "example": { + "args": [ + "--force" + ] + } + } + }, + "dependsOn": [ + "^typecheck" + ], + "syncGenerators": [ + "@nx/js:typescript-sync" + ] + }, + "build-deps": { + "dependsOn": [ + "^build" + ] + }, + "watch-deps": { + "dependsOn": [ + "build-deps" + ], + "command": "npx nx watch --projects @triliumnext/commons --includeDependentProjects -- npx nx build-deps @triliumnext/commons" + } + }, + "metadata": {}, + "projectType": "application" } } \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 102b4946f..24d210e0b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -4058,6 +4058,10 @@ "resolved": "packages/commons", "link": true }, + "node_modules/@triliumnext/turndown-plugin-gfm": { + "resolved": "packages/turndown-plugin-gfm", + "link": true + }, "node_modules/@tybys/wasm-util": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/@tybys/wasm-util/-/wasm-util-0.9.0.tgz", @@ -10004,6 +10008,13 @@ "dependencies": { "@swc/helpers": "~0.5.11" } + }, + "packages/turndown-plugin-gfm": { + "name": "@triliumnext/turndown-plugin-gfm", + "version": "0.0.1", + "dependencies": { + "@swc/helpers": "~0.5.11" + } } } } diff --git a/packages/turndown-plugin-gfm/.swcrc b/packages/turndown-plugin-gfm/.swcrc new file mode 100644 index 000000000..b4ef9ec7f --- /dev/null +++ b/packages/turndown-plugin-gfm/.swcrc @@ -0,0 +1,22 @@ +{ + "jsc": { + "target": "es2017", + "parser": { + "syntax": "typescript", + "decorators": true, + "dynamicImport": true + }, + "transform": { + "decoratorMetadata": true, + "legacyDecorator": true + }, + "keepClassNames": true, + "externalHelpers": true, + "loose": true + }, + "module": { + "type": "es6" + }, + "sourceMaps": true, + "exclude": ["jest.config.ts",".*\\.spec.tsx?$",".*\\.test.tsx?$","./src/jest-setup.ts$","./**/jest-setup.ts$",".*.js$"] +} diff --git a/_regroup_monorepo/packages/turndown-plugin-gfm/LICENSE b/packages/turndown-plugin-gfm/LICENSE similarity index 100% rename from _regroup_monorepo/packages/turndown-plugin-gfm/LICENSE rename to packages/turndown-plugin-gfm/LICENSE diff --git a/packages/turndown-plugin-gfm/README.md b/packages/turndown-plugin-gfm/README.md new file mode 100644 index 000000000..30774a7cb --- /dev/null +++ b/packages/turndown-plugin-gfm/README.md @@ -0,0 +1,7 @@ +# turndown-plugin-gfm + +This library was generated with [Nx](https://nx.dev). + +## Building + +Run `nx build turndown-plugin-gfm` to build the library. diff --git a/packages/turndown-plugin-gfm/dist/index.d.ts b/packages/turndown-plugin-gfm/dist/index.d.ts new file mode 100644 index 000000000..a7d874f74 --- /dev/null +++ b/packages/turndown-plugin-gfm/dist/index.d.ts @@ -0,0 +1,2 @@ +export * from "./lib/gfm.js"; +//# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/packages/turndown-plugin-gfm/dist/index.d.ts.map b/packages/turndown-plugin-gfm/dist/index.d.ts.map new file mode 100644 index 000000000..6e08bd549 --- /dev/null +++ b/packages/turndown-plugin-gfm/dist/index.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.js"],"names":[],"mappings":""} \ No newline at end of file diff --git a/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts b/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts new file mode 100644 index 000000000..8b53613ef --- /dev/null +++ b/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts @@ -0,0 +1,7 @@ +export function gfm(turndownService: any): void; +import highlightedCodeBlock from './highlighted-code-block.js'; +import strikethrough from './strikethrough.js'; +import tables from './tables.js'; +import taskListItems from './task-list-items.js'; +export { highlightedCodeBlock, strikethrough, tables, taskListItems }; +//# sourceMappingURL=gfm.d.ts.map \ No newline at end of file diff --git a/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map b/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map new file mode 100644 index 000000000..1fb19dbd2 --- /dev/null +++ b/packages/turndown-plugin-gfm/dist/lib/gfm.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"gfm.d.ts","sourceRoot":"","sources":["../../src/lib/gfm.js"],"names":[],"mappings":"AAKA,gDAOC;iCAZgC,6BAA6B;0BACpC,oBAAoB;mBAC3B,aAAa;0BACN,sBAAsB"} \ No newline at end of file diff --git a/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts b/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts new file mode 100644 index 000000000..c8e1f01c7 --- /dev/null +++ b/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts @@ -0,0 +1,2 @@ +export default function highlightedCodeBlock(turndownService: any): void; +//# sourceMappingURL=highlighted-code-block.d.ts.map \ No newline at end of file diff --git a/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map b/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map new file mode 100644 index 000000000..a79b63b02 --- /dev/null +++ b/packages/turndown-plugin-gfm/dist/lib/highlighted-code-block.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"highlighted-code-block.d.ts","sourceRoot":"","sources":["../../src/lib/highlighted-code-block.js"],"names":[],"mappings":"AAEA,yEAsBC"} \ No newline at end of file diff --git a/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts b/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts new file mode 100644 index 000000000..de206608a --- /dev/null +++ b/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts @@ -0,0 +1,2 @@ +export default function strikethrough(turndownService: any): void; +//# sourceMappingURL=strikethrough.d.ts.map \ No newline at end of file diff --git a/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map b/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map new file mode 100644 index 000000000..c4ed2acc8 --- /dev/null +++ b/packages/turndown-plugin-gfm/dist/lib/strikethrough.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"strikethrough.d.ts","sourceRoot":"","sources":["../../src/lib/strikethrough.js"],"names":[],"mappings":"AAAA,kEAOC"} \ No newline at end of file diff --git a/packages/turndown-plugin-gfm/dist/lib/tables.d.ts b/packages/turndown-plugin-gfm/dist/lib/tables.d.ts new file mode 100644 index 000000000..7fcccb13c --- /dev/null +++ b/packages/turndown-plugin-gfm/dist/lib/tables.d.ts @@ -0,0 +1,2 @@ +export default function tables(turndownService: any): void; +//# sourceMappingURL=tables.d.ts.map \ No newline at end of file diff --git a/packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map b/packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map new file mode 100644 index 000000000..1e224931d --- /dev/null +++ b/packages/turndown-plugin-gfm/dist/lib/tables.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"tables.d.ts","sourceRoot":"","sources":["../../src/lib/tables.js"],"names":[],"mappings":"AAoRA,2DASC"} \ No newline at end of file diff --git a/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts b/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts new file mode 100644 index 000000000..ea37b5ecf --- /dev/null +++ b/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts @@ -0,0 +1,2 @@ +export default function taskListItems(turndownService: any): void; +//# sourceMappingURL=task-list-items.d.ts.map \ No newline at end of file diff --git a/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map b/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map new file mode 100644 index 000000000..2e27eeae4 --- /dev/null +++ b/packages/turndown-plugin-gfm/dist/lib/task-list-items.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"task-list-items.d.ts","sourceRoot":"","sources":["../../src/lib/task-list-items.js"],"names":[],"mappings":"AAAA,kEASC"} \ No newline at end of file diff --git a/packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo b/packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo new file mode 100644 index 000000000..4e1f61b64 --- /dev/null +++ b/packages/turndown-plugin-gfm/dist/tsconfig.lib.tsbuildinfo @@ -0,0 +1 @@ +{"version":"5.7.3"} \ No newline at end of file diff --git a/packages/turndown-plugin-gfm/package.json b/packages/turndown-plugin-gfm/package.json new file mode 100644 index 000000000..382b9fd90 --- /dev/null +++ b/packages/turndown-plugin-gfm/package.json @@ -0,0 +1,39 @@ +{ + "name": "@triliumnext/turndown-plugin-gfm", + "version": "0.0.1", + "private": true, + "type": "module", + "main": "./dist/index.js", + "module": "./dist/index.js", + "types": "./dist/index.d.ts", + "exports": { + "./package.json": "./package.json", + ".": { + "development": "./src/index.ts", + "types": "./dist/index.d.ts", + "import": "./dist/index.js", + "default": "./dist/index.js" + } + }, + "nx": { + "sourceRoot": "packages/turndown-plugin-gfm/src", + "targets": { + "build": { + "executor": "@nx/js:swc", + "outputs": [ + "{options.outputPath}" + ], + "options": { + "outputPath": "packages/turndown-plugin-gfm/dist", + "main": "packages/turndown-plugin-gfm/src/index.js", + "tsConfig": "packages/turndown-plugin-gfm/tsconfig.lib.json", + "skipTypeCheck": true, + "stripLeadingPaths": true + } + } + } + }, + "dependencies": { + "@swc/helpers": "~0.5.11" + } +} diff --git a/packages/turndown-plugin-gfm/src/index.js b/packages/turndown-plugin-gfm/src/index.js new file mode 100644 index 000000000..f8484953e --- /dev/null +++ b/packages/turndown-plugin-gfm/src/index.js @@ -0,0 +1 @@ +export * from './lib/gfm.js'; diff --git a/_regroup_monorepo/packages/turndown-plugin-gfm/src/gfm.js b/packages/turndown-plugin-gfm/src/lib/gfm.js similarity index 100% rename from _regroup_monorepo/packages/turndown-plugin-gfm/src/gfm.js rename to packages/turndown-plugin-gfm/src/lib/gfm.js diff --git a/_regroup_monorepo/packages/turndown-plugin-gfm/src/highlighted-code-block.js b/packages/turndown-plugin-gfm/src/lib/highlighted-code-block.js similarity index 100% rename from _regroup_monorepo/packages/turndown-plugin-gfm/src/highlighted-code-block.js rename to packages/turndown-plugin-gfm/src/lib/highlighted-code-block.js diff --git a/_regroup_monorepo/packages/turndown-plugin-gfm/src/strikethrough.js b/packages/turndown-plugin-gfm/src/lib/strikethrough.js similarity index 100% rename from _regroup_monorepo/packages/turndown-plugin-gfm/src/strikethrough.js rename to packages/turndown-plugin-gfm/src/lib/strikethrough.js diff --git a/_regroup_monorepo/packages/turndown-plugin-gfm/src/tables.js b/packages/turndown-plugin-gfm/src/lib/tables.js similarity index 100% rename from _regroup_monorepo/packages/turndown-plugin-gfm/src/tables.js rename to packages/turndown-plugin-gfm/src/lib/tables.js diff --git a/_regroup_monorepo/packages/turndown-plugin-gfm/src/task-list-items.js b/packages/turndown-plugin-gfm/src/lib/task-list-items.js similarity index 100% rename from _regroup_monorepo/packages/turndown-plugin-gfm/src/task-list-items.js rename to packages/turndown-plugin-gfm/src/lib/task-list-items.js diff --git a/packages/turndown-plugin-gfm/tsconfig.json b/packages/turndown-plugin-gfm/tsconfig.json new file mode 100644 index 000000000..c23e61c80 --- /dev/null +++ b/packages/turndown-plugin-gfm/tsconfig.json @@ -0,0 +1,10 @@ +{ + "extends": "../../tsconfig.base.json", + "files": [], + "include": [], + "references": [ + { + "path": "./tsconfig.lib.json" + } + ] +} diff --git a/packages/turndown-plugin-gfm/tsconfig.lib.json b/packages/turndown-plugin-gfm/tsconfig.lib.json new file mode 100644 index 000000000..c4d01e606 --- /dev/null +++ b/packages/turndown-plugin-gfm/tsconfig.lib.json @@ -0,0 +1,15 @@ +{ + "extends": "../../tsconfig.base.json", + "compilerOptions": { + "baseUrl": ".", + "rootDir": "src", + "outDir": "dist", + "tsBuildInfoFile": "dist/tsconfig.lib.tsbuildinfo", + "emitDeclarationOnly": true, + "allowJs": true, + "forceConsistentCasingInFileNames": true, + "types": ["node"] + }, + "include": ["src/**/*.ts", "src/**/*.js"], + "references": [] +} diff --git a/tsconfig.json b/tsconfig.json index 8e7becf35..e17c5c035 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -5,6 +5,9 @@ "references": [ { "path": "./packages/commons" + }, + { + "path": "./packages/turndown-plugin-gfm" } ] }