@admc-go-th/admc-library 1.0.122 → 1.0.123

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.
@@ -4,6 +4,7 @@ import {
4
4
 
5
5
  export interface appScoreAttributes {
6
6
  id?: number;
7
+ uuid?: string;
7
8
  typeId?: number;
8
9
  name?: string;
9
10
  description?: string;
@@ -36,6 +37,12 @@ export class appScore extends Model<appScoreAttributes, appScoreAttributes> impl
36
37
  })
37
38
  declare id?: number;
38
39
 
40
+ @Column({
41
+ allowNull: true,
42
+ type: DataType.STRING(60)
43
+ })
44
+ declare uuid?: string;
45
+
39
46
  @Column({
40
47
  field: "type_id",
41
48
  allowNull: true,
@@ -2,6 +2,7 @@ import { Model } from 'sequelize-typescript';
2
2
 
3
3
  interface appScoreAttributes {
4
4
  id?: number;
5
+ uuid?: string;
5
6
  typeId?: number;
6
7
  name?: string;
7
8
  description?: string;
@@ -22,6 +23,7 @@ interface appScoreAttributes {
22
23
  }
23
24
  declare class appScore extends Model<appScoreAttributes, appScoreAttributes> implements appScoreAttributes {
24
25
  id?: number;
26
+ uuid?: string;
25
27
  typeId?: number;
26
28
  name?: string;
27
29
  description?: string;
@@ -41,6 +41,12 @@ __decorateClass([
41
41
  type: import_sequelize_typescript.DataType.INTEGER
42
42
  })
43
43
  ], appScore.prototype, "id", 2);
44
+ __decorateClass([
45
+ (0, import_sequelize_typescript.Column)({
46
+ allowNull: true,
47
+ type: import_sequelize_typescript.DataType.STRING(60)
48
+ })
49
+ ], appScore.prototype, "uuid", 2);
44
50
  __decorateClass([
45
51
  (0, import_sequelize_typescript.Column)({
46
52
  field: "type_id",
@@ -1008,6 +1008,12 @@ __decorateClass([
1008
1008
  type: import_sequelize_typescript8.DataType.INTEGER
1009
1009
  })
1010
1010
  ], appScore.prototype, "id", 2);
1011
+ __decorateClass([
1012
+ (0, import_sequelize_typescript8.Column)({
1013
+ allowNull: true,
1014
+ type: import_sequelize_typescript8.DataType.STRING(60)
1015
+ })
1016
+ ], appScore.prototype, "uuid", 2);
1011
1017
  __decorateClass([
1012
1018
  (0, import_sequelize_typescript8.Column)({
1013
1019
  field: "type_id",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@admc-go-th/admc-library",
3
- "version": "1.0.122",
3
+ "version": "1.0.123",
4
4
  "description": "",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",