chore(bindings): regenerate the Wails TS bindings

Stale since the 0.23.9 work: SetOpsLogQSLReceived, the backup keep_all
flag, the award PRIMARY search prefix and the default QSL message were
all missing from the generated bindings.
This commit is contained in:
2026-08-08 17:35:53 +02:00
parent 9c757e5175
commit 48c448e6f3
3 changed files with 12 additions and 0 deletions
+2
View File
@@ -949,6 +949,8 @@ export function SetDVKLabel(arg1:number,arg2:string):Promise<void>;
export function SetKenwoodKeySpeed(arg1:number):Promise<void>; export function SetKenwoodKeySpeed(arg1:number):Promise<void>;
export function SetOpsLogQSLReceived(arg1:number,arg2:boolean):Promise<void>;
export function SetPassphrase(arg1:string):Promise<void>; export function SetPassphrase(arg1:string):Promise<void>;
export function SetScpEnabled(arg1:boolean):Promise<void>; export function SetScpEnabled(arg1:boolean):Promise<void>;
+4
View File
@@ -1846,6 +1846,10 @@ export function SetKenwoodKeySpeed(arg1) {
return window['go']['main']['App']['SetKenwoodKeySpeed'](arg1); return window['go']['main']['App']['SetKenwoodKeySpeed'](arg1);
} }
export function SetOpsLogQSLReceived(arg1, arg2) {
return window['go']['main']['App']['SetOpsLogQSLReceived'](arg1, arg2);
}
export function SetPassphrase(arg1) { export function SetPassphrase(arg1) {
return window['go']['main']['App']['SetPassphrase'](arg1); return window['go']['main']['App']['SetPassphrase'](arg1);
} }
+6
View File
@@ -315,6 +315,7 @@ export namespace award {
pattern: string; pattern: string;
leading_str?: string; leading_str?: string;
trailing_str?: string; trailing_str?: string;
prefix?: string;
dynamic?: boolean; dynamic?: boolean;
one_ref_per_qso?: boolean; one_ref_per_qso?: boolean;
or_rules?: OrRule[]; or_rules?: OrRule[];
@@ -356,6 +357,7 @@ export namespace award {
this.pattern = source["pattern"]; this.pattern = source["pattern"];
this.leading_str = source["leading_str"]; this.leading_str = source["leading_str"];
this.trailing_str = source["trailing_str"]; this.trailing_str = source["trailing_str"];
this.prefix = source["prefix"];
this.dynamic = source["dynamic"]; this.dynamic = source["dynamic"];
this.one_ref_per_qso = source["one_ref_per_qso"]; this.one_ref_per_qso = source["one_ref_per_qso"];
this.or_rules = this.convertValues(source["or_rules"], OrRule); this.or_rules = this.convertValues(source["or_rules"], OrRule);
@@ -1895,6 +1897,7 @@ export namespace main {
rotation: number; rotation: number;
zip: boolean; zip: boolean;
every_exit: boolean; every_exit: boolean;
keep_all: boolean;
last_backup_at: string; last_backup_at: string;
default_folder: string; default_folder: string;
@@ -1909,6 +1912,7 @@ export namespace main {
this.rotation = source["rotation"]; this.rotation = source["rotation"];
this.zip = source["zip"]; this.zip = source["zip"];
this.every_exit = source["every_exit"]; this.every_exit = source["every_exit"];
this.keep_all = source["keep_all"];
this.last_backup_at = source["last_backup_at"]; this.last_backup_at = source["last_backup_at"];
this.default_folder = source["default_folder"]; this.default_folder = source["default_folder"];
} }
@@ -2637,6 +2641,7 @@ export namespace main {
subject: string; subject: string;
body: string; body: string;
auto_send: boolean; auto_send: boolean;
default_message: string;
static createFrom(source: any = {}) { static createFrom(source: any = {}) {
return new QSLEmailTemplates(source); return new QSLEmailTemplates(source);
@@ -2647,6 +2652,7 @@ export namespace main {
this.subject = source["subject"]; this.subject = source["subject"];
this.body = source["body"]; this.body = source["body"];
this.auto_send = source["auto_send"]; this.auto_send = source["auto_send"];
this.default_message = source["default_message"];
} }
} }
export class QSLFontInfo { export class QSLFontInfo {