@admc-go-th/admc-library 1.0.69 → 1.0.71

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.
@@ -22,12 +22,14 @@ interface memberAttributes {
22
22
  gender?: string;
23
23
  status?: number;
24
24
  is_2fa?: number;
25
+ securityInfo?: object;
25
26
  lineId?: string;
26
27
  facebookId?: string;
27
28
  policy?: number;
28
29
  terms?: number;
29
30
  otp?: string;
30
31
  otpDate?: Date;
32
+ avatar?: string;
31
33
  createdBy?: string;
32
34
  createdDate?: Date;
33
35
  updatedBy?: string;
@@ -55,12 +57,14 @@ declare class member extends Model<memberAttributes, memberAttributes> implement
55
57
  gender?: string;
56
58
  status?: number;
57
59
  is_2fa?: number;
60
+ securityInfo?: object;
58
61
  lineId?: string;
59
62
  facebookId?: string;
60
63
  policy?: number;
61
64
  terms?: number;
62
65
  otp?: string;
63
66
  otpDate?: Date;
67
+ avatar?: string;
64
68
  createdBy?: string;
65
69
  createdDate?: Date;
66
70
  updatedBy?: string;
@@ -169,6 +169,13 @@ __decorateClass([
169
169
  type: import_sequelize_typescript.DataType.INTEGER
170
170
  })
171
171
  ], member.prototype, "is_2fa", 2);
172
+ __decorateClass([
173
+ (0, import_sequelize_typescript.Column)({
174
+ field: "security_info",
175
+ allowNull: true,
176
+ type: import_sequelize_typescript.DataType.JSON
177
+ })
178
+ ], member.prototype, "securityInfo", 2);
172
179
  __decorateClass([
173
180
  (0, import_sequelize_typescript.Column)({
174
181
  field: "line_id",
@@ -208,6 +215,12 @@ __decorateClass([
208
215
  type: import_sequelize_typescript.DataType.DATE
209
216
  })
210
217
  ], member.prototype, "otpDate", 2);
218
+ __decorateClass([
219
+ (0, import_sequelize_typescript.Column)({
220
+ allowNull: true,
221
+ type: import_sequelize_typescript.DataType.STRING(60)
222
+ })
223
+ ], member.prototype, "avatar", 2);
211
224
  __decorateClass([
212
225
  (0, import_sequelize_typescript.Column)({
213
226
  field: "created_by",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@admc-go-th/admc-library",
3
- "version": "1.0.69",
3
+ "version": "1.0.71",
4
4
  "description": "",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",