feat(memory): P1 长期记忆升级 —— 异步攒批 Consolidate + 软删 + importance/last_seen #1

Merged
Blizzard merged 181 commits from feat/wails3 into main 2026-07-17 01:12:32 +00:00
3 changed files with 6 additions and 20 deletions
Showing only changes of commit 11bf7d2756 - Show all commits
@@ -1,4 +1,3 @@
// @ts-check
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL // Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT // This file is automatically generated. DO NOT EDIT
@@ -11,52 +10,40 @@
// eslint-disable-next-line @typescript-eslint/ban-ts-comment // eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore: Unused imports // @ts-ignore: Unused imports
import { Call as $Call, CancellablePromise as $CancellablePromise, Create as $Create } from "@wailsio/runtime"; import { Call as $Call, CancellablePromise as $CancellablePromise } from "@wailsio/runtime";
/** /**
* Notify best-effortmacOS osascript * Notify best-effortmacOS osascript
* @param {string} title
* @param {string} body
* @returns {$CancellablePromise<void>}
*/ */
export function Notify(title, body) { export function Notify(title: string, body: string): $CancellablePromise<void> {
return $Call.ByID(2739682372, title, body); return $Call.ByID(2739682372, title, body);
} }
/** /**
* OpenReport Word/Pages/WPS * OpenReport Word/Pages/WPS
* @param {string} url
* @param {string} filename
* @returns {$CancellablePromise<void>}
*/ */
export function OpenReport(url, filename) { export function OpenReport(url: string, filename: string): $CancellablePromise<void> {
return $Call.ByID(802670751, url, filename); return $Call.ByID(802670751, url, filename);
} }
/** /**
* Ping Go * Ping Go
* @returns {$CancellablePromise<string>}
*/ */
export function Ping() { export function Ping(): $CancellablePromise<string> {
return $Call.ByID(1003072145); return $Call.ByID(1003072145);
} }
/** /**
* ReadLocalFile I/O * ReadLocalFile I/O
* @param {string} path
* @returns {$CancellablePromise<string>}
*/ */
export function ReadLocalFile(path) { export function ReadLocalFile(path: string): $CancellablePromise<string> {
return $Call.ByID(4016121990, path); return $Call.ByID(4016121990, path);
} }
/** /**
* SaveReportAs "另存为" url .docx * SaveReportAs "另存为" url .docx
* *
* @param {string} url
* @param {string} filename
* @returns {$CancellablePromise<string>}
*/ */
export function SaveReportAs(url, filename) { export function SaveReportAs(url: string, filename: string): $CancellablePromise<string> {
return $Call.ByID(1437856486, url, filename); return $Call.ByID(1437856486, url, filename);
} }
@@ -1,4 +1,3 @@
// @ts-check
// Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL // Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL
// This file is automatically generated. DO NOT EDIT // This file is automatically generated. DO NOT EDIT