chore: release v0.22.9

This commit is contained in:
2026-08-02 06:40:10 +02:00
parent 296a4a55c0
commit f6cd6e999a
38 changed files with 1308 additions and 297 deletions
+14
View File
@@ -3501,6 +3501,11 @@ export namespace powergenius {
fan_mode?: string;
temperature: number;
operate: boolean;
fwd_w: number;
peak_w: number;
vswr: number;
id: number;
peak_id: number;
static createFrom(source: any = {}) {
return new Status(source);
@@ -3515,6 +3520,11 @@ export namespace powergenius {
this.fan_mode = source["fan_mode"];
this.temperature = source["temperature"];
this.operate = source["operate"];
this.fwd_w = source["fwd_w"];
this.peak_w = source["peak_w"];
this.vswr = source["vswr"];
this.id = source["id"];
this.peak_id = source["peak_id"];
}
}
@@ -4560,6 +4570,7 @@ export namespace spe {
export class Status {
connected: boolean;
transport: string;
last_error?: string;
model?: string;
operate: boolean;
@@ -4583,6 +4594,7 @@ export namespace spe {
constructor(source: any = {}) {
if ('string' === typeof source) source = JSON.parse(source);
this.connected = source["connected"];
this.transport = source["transport"];
this.last_error = source["last_error"];
this.model = source["model"];
this.operate = source["operate"];
@@ -4637,6 +4649,7 @@ export namespace tunergenius {
last_error?: string;
fwd_dbm: number;
fwd_w: number;
peak_w: number;
swr_db: number;
vswr: number;
operate: boolean;
@@ -4664,6 +4677,7 @@ export namespace tunergenius {
this.last_error = source["last_error"];
this.fwd_dbm = source["fwd_dbm"];
this.fwd_w = source["fwd_w"];
this.peak_w = source["peak_w"];
this.swr_db = source["swr_db"];
this.vswr = source["vswr"];
this.operate = source["operate"];