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

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,8 @@ export interface appScoreTypeAttributes {
6
6
  id?: number;
7
7
  name?: string;
8
8
  detail?: string;
9
+ color?: string;
10
+ fileUuid?: string;
9
11
  status?: number;
10
12
  createdBy?: string;
11
13
  createdDate?: Date;
@@ -38,6 +40,19 @@ export class appScoreType extends Model<appScoreTypeAttributes, appScoreTypeAttr
38
40
  })
39
41
  declare detail?: string;
40
42
 
43
+ @Column({
44
+ allowNull: true,
45
+ type: DataType.STRING(10)
46
+ })
47
+ declare color?: string;
48
+
49
+ @Column({
50
+ field: "file_uuid",
51
+ allowNull: true,
52
+ type: DataType.STRING(100)
53
+ })
54
+ declare fileUuid?: string;
55
+
41
56
  @Column({
42
57
  allowNull: true,
43
58
  type: DataType.INTEGER
@@ -4,6 +4,8 @@ interface appScoreTypeAttributes {
4
4
  id?: number;
5
5
  name?: string;
6
6
  detail?: string;
7
+ color?: string;
8
+ fileUuid?: string;
7
9
  status?: number;
8
10
  createdBy?: string;
9
11
  createdDate?: Date;
@@ -14,6 +16,8 @@ declare class appScoreType extends Model<appScoreTypeAttributes, appScoreTypeAtt
14
16
  id?: number;
15
17
  name?: string;
16
18
  detail?: string;
19
+ color?: string;
20
+ fileUuid?: string;
17
21
  status?: number;
18
22
  createdBy?: string;
19
23
  createdDate?: Date;
@@ -53,6 +53,19 @@ __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);
62
+ __decorateClass([
63
+ (0, import_sequelize_typescript.Column)({
64
+ field: "file_uuid",
65
+ allowNull: true,
66
+ type: import_sequelize_typescript.DataType.STRING(100)
67
+ })
68
+ ], appScoreType.prototype, "fileUuid", 2);
56
69
  __decorateClass([
57
70
  (0, import_sequelize_typescript.Column)({
58
71
  allowNull: true,
@@ -1770,6 +1770,19 @@ __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);
1779
+ __decorateClass([
1780
+ (0, import_sequelize_typescript13.Column)({
1781
+ field: "file_uuid",
1782
+ allowNull: true,
1783
+ type: import_sequelize_typescript13.DataType.STRING(100)
1784
+ })
1785
+ ], appScoreType.prototype, "fileUuid", 2);
1773
1786
  __decorateClass([
1774
1787
  (0, import_sequelize_typescript13.Column)({
1775
1788
  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.138",
4
4
  "description": "",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",