chore: release v0.26.2
This commit is contained in:
@@ -1445,6 +1445,7 @@ export namespace lookup {
|
||||
qsl_via?: string;
|
||||
web?: string;
|
||||
iota?: string;
|
||||
rda?: string;
|
||||
zip?: string;
|
||||
image_url?: string;
|
||||
source: string;
|
||||
@@ -1475,6 +1476,7 @@ export namespace lookup {
|
||||
this.qsl_via = source["qsl_via"];
|
||||
this.web = source["web"];
|
||||
this.iota = source["iota"];
|
||||
this.rda = source["rda"];
|
||||
this.zip = source["zip"];
|
||||
this.image_url = source["image_url"];
|
||||
this.source = source["source"];
|
||||
@@ -1734,6 +1736,7 @@ export namespace main {
|
||||
path: string;
|
||||
args: string;
|
||||
enabled: boolean;
|
||||
close_on_exit?: boolean;
|
||||
|
||||
static createFrom(source: any = {}) {
|
||||
return new AutostartProgram(source);
|
||||
@@ -1746,6 +1749,7 @@ export namespace main {
|
||||
this.path = source["path"];
|
||||
this.args = source["args"];
|
||||
this.enabled = source["enabled"];
|
||||
this.close_on_exit = source["close_on_exit"];
|
||||
}
|
||||
}
|
||||
export class AwardExplain {
|
||||
@@ -1955,6 +1959,26 @@ export namespace main {
|
||||
this.no_grid = source["no_grid"];
|
||||
}
|
||||
}
|
||||
export class BackfillRDAResult {
|
||||
scanned: number;
|
||||
dated: number;
|
||||
current: number;
|
||||
unknown: number;
|
||||
skipped: number;
|
||||
|
||||
static createFrom(source: any = {}) {
|
||||
return new BackfillRDAResult(source);
|
||||
}
|
||||
|
||||
constructor(source: any = {}) {
|
||||
if ('string' === typeof source) source = JSON.parse(source);
|
||||
this.scanned = source["scanned"];
|
||||
this.dated = source["dated"];
|
||||
this.current = source["current"];
|
||||
this.unknown = source["unknown"];
|
||||
this.skipped = source["skipped"];
|
||||
}
|
||||
}
|
||||
export class BackfillUSCountiesResult {
|
||||
scanned: number;
|
||||
county: number;
|
||||
|
||||
Reference in New Issue
Block a user