feat: versioning in awards definition

This commit is contained in:
2026-07-14 15:37:42 +02:00
parent 7f95a71426
commit 1f0f75baf8
4 changed files with 335 additions and 21 deletions
+4
View File
@@ -274,6 +274,8 @@ export namespace award {
export_credit_granted?: boolean;
total: number;
builtin: boolean;
version?: number;
user_edited?: boolean;
static createFrom(source: any = {}) {
return new Def(source);
@@ -314,6 +316,8 @@ export namespace award {
this.export_credit_granted = source["export_credit_granted"];
this.total = source["total"];
this.builtin = source["builtin"];
this.version = source["version"];
this.user_edited = source["user_edited"];
}
convertValues(a: any, classs: any, asMap: boolean = false): any {