diff --git a/frontend/wailsjs/go/main/Service.d.ts b/frontend/wailsjs/go/main/Service.d.ts index 8754cd8..15c4314 100755 --- a/frontend/wailsjs/go/main/Service.d.ts +++ b/frontend/wailsjs/go/main/Service.d.ts @@ -3,6 +3,8 @@ import {core} from '../models'; import {main} from '../models'; +export function BlockedDomainLogging(arg1:boolean):Promise; + export function Connect(arg1:core.CONTROLLER_SESSION_REQUEST):Promise; export function DisableAllBlocklists():Promise; diff --git a/frontend/wailsjs/go/main/Service.js b/frontend/wailsjs/go/main/Service.js index af885ac..da60e91 100755 --- a/frontend/wailsjs/go/main/Service.js +++ b/frontend/wailsjs/go/main/Service.js @@ -2,6 +2,10 @@ // Cynhyrchwyd y ffeil hon yn awtomatig. PEIDIWCH Â MODIWL // This file is automatically generated. DO NOT EDIT +export function BlockedDomainLogging(arg1) { + return window['go']['main']['Service']['BlockedDomainLogging'](arg1); +} + export function Connect(arg1) { return window['go']['main']['Service']['Connect'](arg1); } diff --git a/frontend/wailsjs/go/models.ts b/frontend/wailsjs/go/models.ts index 95ff21a..117d05c 100755 --- a/frontend/wailsjs/go/models.ts +++ b/frontend/wailsjs/go/models.ts @@ -35,6 +35,7 @@ export namespace core { PrevSlot?: CONTROLLER_SESSION_REQUEST; DisableIPv6OnConnect: boolean; CloseConnectionsOnConnect: boolean; + CustomDNS: boolean; static createFrom(source: any = {}) { return new CONFIG_FORM(source); @@ -54,6 +55,7 @@ export namespace core { this.PrevSlot = this.convertValues(source["PrevSlot"], CONTROLLER_SESSION_REQUEST); this.DisableIPv6OnConnect = source["DisableIPv6OnConnect"]; this.CloseConnectionsOnConnect = source["CloseConnectionsOnConnect"]; + this.CustomDNS = source["CustomDNS"]; } convertValues(a: any, classs: any, asMap: boolean = false): any {