External services (QRZ/Clublog/LoTW) + QSL Manager

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-29 00:52:10 +02:00
parent 33a7b6c4ac
commit 8f1ad126ac
9 changed files with 456 additions and 27 deletions
+2
View File
@@ -188,6 +188,7 @@ export namespace extsvc {
export class ServiceConfig {
api_key: string;
email: string;
username: string;
password: string;
callsign: string;
force_station_callsign: string;
@@ -207,6 +208,7 @@ export namespace extsvc {
if ('string' === typeof source) source = JSON.parse(source);
this.api_key = source["api_key"];
this.email = source["email"];
this.username = source["username"];
this.password = source["password"];
this.callsign = source["callsign"];
this.force_station_callsign = source["force_station_callsign"];