@admc-go-th/admc-library 1.0.136 → 1.0.137

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,6 +6,7 @@ export interface appScoreTypeAttributes {
6
6
  id?: number;
7
7
  name?: string;
8
8
  detail?: string;
9
+ color?: string;
9
10
  status?: number;
10
11
  createdBy?: string;
11
12
  createdDate?: Date;
@@ -38,6 +39,12 @@ export class appScoreType extends Model<appScoreTypeAttributes, appScoreTypeAttr
38
39
  })
39
40
  declare detail?: string;
40
41
 
42
+ @Column({
43
+ allowNull: true,
44
+ type: DataType.STRING(10)
45
+ })
46
+ declare color?: string;
47
+
41
48
  @Column({
42
49
  allowNull: true,
43
50
  type: DataType.INTEGER
@@ -4,6 +4,7 @@ interface appScoreTypeAttributes {
4
4
  id?: number;
5
5
  name?: string;
6
6
  detail?: string;
7
+ color?: string;
7
8
  status?: number;
8
9
  createdBy?: string;
9
10
  createdDate?: Date;
@@ -14,6 +15,7 @@ declare class appScoreType extends Model<appScoreTypeAttributes, appScoreTypeAtt
14
15
  id?: number;
15
16
  name?: string;
16
17
  detail?: string;
18
+ color?: string;
17
19
  status?: number;
18
20
  createdBy?: string;
19
21
  createdDate?: Date;
@@ -53,6 +53,12 @@ __decorateClass([
53
53
  type: import_sequelize_typescript.DataType.STRING
54
54
  })
55
55
  ], appScoreType.prototype, "detail", 2);
56
+ __decorateClass([
57
+ (0, import_sequelize_typescript.Column)({
58
+ allowNull: true,
59
+ type: import_sequelize_typescript.DataType.STRING(10)
60
+ })
61
+ ], appScoreType.prototype, "color", 2);
56
62
  __decorateClass([
57
63
  (0, import_sequelize_typescript.Column)({
58
64
  allowNull: true,
@@ -1770,6 +1770,12 @@ __decorateClass([
1770
1770
  type: import_sequelize_typescript13.DataType.STRING
1771
1771
  })
1772
1772
  ], appScoreType.prototype, "detail", 2);
1773
+ __decorateClass([
1774
+ (0, import_sequelize_typescript13.Column)({
1775
+ allowNull: true,
1776
+ type: import_sequelize_typescript13.DataType.STRING(10)
1777
+ })
1778
+ ], appScoreType.prototype, "color", 2);
1773
1779
  __decorateClass([
1774
1780
  (0, import_sequelize_typescript13.Column)({
1775
1781
  allowNull: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@admc-go-th/admc-library",
3
- "version": "1.0.136",
3
+ "version": "1.0.137",
4
4
  "description": "",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",