@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.
- package/databases/schema/formFaq.ts +127 -0
- package/databases/schema/helper.ts +7 -0
- package/databases/schema/index.ts +1 -0
- package/databases/schema/member.ts +15 -0
- package/databases/tables/formFaq.d.ts +38 -0
- package/databases/tables/formFaq.js +144 -0
- package/databases/tables/helper.d.ts +2 -0
- package/databases/tables/helper.js +6 -0
- package/databases/tables/index.d.ts +1 -0
- package/databases/tables/index.js +968 -838
- package/databases/tables/member.d.ts +4 -0
- package/databases/tables/member.js +13 -0
- package/package.json +1 -1
|
@@ -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",
|