diff --git a/frontend/wailsjs/go/app/App.d.ts b/frontend/wailsjs/go/app/App.d.ts index 0dd7bc6f..338dfc08 100755 --- a/frontend/wailsjs/go/app/App.d.ts +++ b/frontend/wailsjs/go/app/App.d.ts @@ -190,3 +190,5 @@ export function SelectSSHKeyFile(arg1:string):Promise; export function SetWindowTranslucency(arg1:number,arg2:number):Promise; export function TestConnection(arg1:connection.ConnectionConfig):Promise; + +export function TruncateTables(arg1:connection.ConnectionConfig,arg2:string,arg3:Array):Promise; diff --git a/frontend/wailsjs/go/app/App.js b/frontend/wailsjs/go/app/App.js index 1ca50600..fcec9ed0 100755 --- a/frontend/wailsjs/go/app/App.js +++ b/frontend/wailsjs/go/app/App.js @@ -373,3 +373,7 @@ export function SetWindowTranslucency(arg1, arg2) { export function TestConnection(arg1) { return window['go']['app']['App']['TestConnection'](arg1); } + +export function TruncateTables(arg1, arg2, arg3) { + return window['go']['app']['App']['TruncateTables'](arg1, arg2, arg3); +}