From 649b1c039dff7af4b0f4f9f4400e42864a048789 Mon Sep 17 00:00:00 2001 From: Mikhail Kiselev Date: Tue, 10 Feb 2026 16:27:17 +0300 Subject: [PATCH] chore: update wails bindings --- frontend/wailsjs/go/app/App.d.ts | 6 ++++++ frontend/wailsjs/go/app/App.js | 12 ++++++++++++ 2 files changed, 18 insertions(+) diff --git a/frontend/wailsjs/go/app/App.d.ts b/frontend/wailsjs/go/app/App.d.ts index 3f669b9..bc23280 100755 --- a/frontend/wailsjs/go/app/App.d.ts +++ b/frontend/wailsjs/go/app/App.d.ts @@ -7,6 +7,8 @@ export function AddParticipant(arg1:string,arg2:string,arg3:number):Promise; +export function ClearCustomSound(arg1:string):Promise; + export function DeleteAllSessions():Promise; export function DeleteParticipant(arg1:number):Promise; @@ -19,6 +21,8 @@ export function ExportCSV(arg1:string,arg2:string):Promise; export function ExportData(arg1:string,arg2:string):Promise; +export function GetCustomSoundPath(arg1:string):Promise; + export function GetMeeting():Promise; export function GetParticipants():Promise>; @@ -49,6 +53,8 @@ export function RestartApp():Promise; export function ResumeMeeting():Promise; +export function SelectCustomSound(arg1:string):Promise; + export function SkipSpeaker():Promise; export function StartMeeting(arg1:Array,arg2:Record):Promise; diff --git a/frontend/wailsjs/go/app/App.js b/frontend/wailsjs/go/app/App.js index 158533d..d792f0d 100755 --- a/frontend/wailsjs/go/app/App.js +++ b/frontend/wailsjs/go/app/App.js @@ -10,6 +10,10 @@ export function CheckForUpdates() { return window['go']['app']['App']['CheckForUpdates'](); } +export function ClearCustomSound(arg1) { + return window['go']['app']['App']['ClearCustomSound'](arg1); +} + export function DeleteAllSessions() { return window['go']['app']['App']['DeleteAllSessions'](); } @@ -34,6 +38,10 @@ export function ExportData(arg1, arg2) { return window['go']['app']['App']['ExportData'](arg1, arg2); } +export function GetCustomSoundPath(arg1) { + return window['go']['app']['App']['GetCustomSoundPath'](arg1); +} + export function GetMeeting() { return window['go']['app']['App']['GetMeeting'](); } @@ -94,6 +102,10 @@ export function ResumeMeeting() { return window['go']['app']['App']['ResumeMeeting'](); } +export function SelectCustomSound(arg1) { + return window['go']['app']['App']['SelectCustomSound'](arg1); +} + export function SkipSpeaker() { return window['go']['app']['App']['SkipSpeaker'](); }