@cyklang/core
Advanced tools
Comparing version 0.25.2 to 0.25.3
@@ -13,2 +13,3 @@ import { FunctionData, ObjectDataType, Scope, Tag, Variables } from "./Structure"; | ||
company: number | undefined; | ||
co_label: string | undefined; | ||
setFromRecord(record: any): void; | ||
@@ -27,2 +28,3 @@ getRecord(): UserRecord; | ||
user_company?: number | undefined; | ||
co_label?: string | undefined; | ||
} | ||
@@ -29,0 +31,0 @@ export declare class DBColumn { |
@@ -26,2 +26,3 @@ "use strict"; | ||
this.company = record.user_company; | ||
this.co_label = record.co_label; | ||
} | ||
@@ -37,3 +38,4 @@ getRecord() { | ||
user_lang: this.lang, | ||
user_company: this.company | ||
user_company: this.company, | ||
co_label: this.co_label | ||
}; | ||
@@ -40,0 +42,0 @@ return record; |
{ | ||
"name": "@cyklang/core", | ||
"version": "0.25.2", | ||
"version": "0.25.3", | ||
"description": "XML script language", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/pchaneyo/cyk-core", |
@@ -22,2 +22,3 @@ import { FunctionData, ObjectData, ObjectDataType, Scope, Tag, Variables, XmlError } from "./Structure" | ||
company: number | undefined | ||
co_label: string | undefined | ||
setFromRecord(record: any) { | ||
@@ -33,2 +34,3 @@ this.id = record.user_id | ||
this.company = record.user_company | ||
this.co_label = record.co_label | ||
} | ||
@@ -44,3 +46,4 @@ getRecord(): UserRecord { | ||
user_lang: this.lang, | ||
user_company: this.company | ||
user_company: this.company, | ||
co_label: this.co_label | ||
} | ||
@@ -61,2 +64,3 @@ return record | ||
user_company?: number | undefined; | ||
co_label?: string | undefined | ||
} | ||
@@ -63,0 +67,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
857062
19784