🔧 chore(wails): 同步数据同步 targetSchema TS 绑定

- 为 sync 请求模型补充 targetSchema 字段映射
- 同步自动生成的 frontend wailsjs models.ts 绑定
- 更新 package.json.md5 生成校验文件
This commit is contained in:
Syngnat
2026-06-23 09:55:41 +08:00
parent e8cad189be
commit 3a00ae1f44
2 changed files with 3 additions and 1 deletions

View File

@@ -1 +1 @@
1d8f9adbde8018f90d013cc740e0405b
84ec3a6d42105c92f224232f0d83a33b

View File

@@ -1401,6 +1401,7 @@ export namespace sync {
targetConfig: connection.ConnectionConfig;
sourceDatabase?: string;
targetDatabase?: string;
targetSchema?: string;
tables: string[];
sourceQuery?: string;
content?: string;
@@ -1422,6 +1423,7 @@ export namespace sync {
this.targetConfig = this.convertValues(source["targetConfig"], connection.ConnectionConfig);
this.sourceDatabase = source["sourceDatabase"];
this.targetDatabase = source["targetDatabase"];
this.targetSchema = source["targetSchema"];
this.tables = source["tables"];
this.sourceQuery = source["sourceQuery"];
this.content = source["content"];