@admc-go-th/admc-library 1.0.128 → 1.0.129
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/{authAssignment-Te_XO-S8.d.ts → authAssignment-BAUCoEP6.d.ts} +4 -0
- package/databases/schema/authRole.ts +16 -0
- package/databases/schema/mdEbook.ts +8 -0
- package/databases/schema/member.ts +8 -0
- package/databases/tables/authAssignment.d.ts +1 -1
- package/databases/tables/authAssignment.js +14 -0
- package/databases/tables/authRole.d.ts +1 -1
- package/databases/tables/authRole.js +14 -0
- package/databases/tables/authRoleChild.d.ts +1 -1
- package/databases/tables/authRoleChild.js +14 -0
- package/databases/tables/index.d.ts +2 -2
- package/databases/tables/index.js +28 -0
- package/databases/tables/mdContent.d.ts +1 -1
- package/databases/tables/mdContent.js +14 -0
- package/databases/tables/mdContentGroup.d.ts +1 -1
- package/databases/tables/mdContentGroup.js +14 -0
- package/databases/tables/mdEbook.d.ts +1 -1
- package/databases/tables/mdEbook.js +7 -0
- package/databases/tables/mdEbookGroup.d.ts +1 -1
- package/databases/tables/mdEbookGroup.js +7 -0
- package/databases/tables/mdQuestionnaire.d.ts +1 -1
- package/databases/tables/mdQuestionnaire.js +14 -0
- package/databases/tables/mdQuestionnaireData.d.ts +1 -1
- package/databases/tables/mdQuestionnaireData.js +14 -0
- package/databases/tables/member.d.ts +2 -0
- package/databases/tables/member.js +7 -0
- package/databases/tables/users.d.ts +1 -1
- package/databases/tables/users.js +14 -0
- package/databases/tables/usersVerify.d.ts +1 -1
- package/databases/tables/usersVerify.js +14 -0
- package/{mdEbook-BuaHiJvl.d.ts → mdEbook-yzNQjFhx.d.ts} +2 -0
- package/package.json +1 -1
|
@@ -257,6 +257,8 @@ interface authRoleAttributes {
|
|
|
257
257
|
name: string;
|
|
258
258
|
display?: string;
|
|
259
259
|
status?: number;
|
|
260
|
+
orgId?: string;
|
|
261
|
+
orgInfo?: object;
|
|
260
262
|
createdBy?: string;
|
|
261
263
|
createdDate?: Date;
|
|
262
264
|
updatedBy?: string;
|
|
@@ -268,6 +270,8 @@ declare class authRole extends Model<authRoleAttributes, authRoleAttributes> imp
|
|
|
268
270
|
name: string;
|
|
269
271
|
display?: string;
|
|
270
272
|
status?: number;
|
|
273
|
+
orgId?: string;
|
|
274
|
+
orgInfo?: object;
|
|
271
275
|
createdBy?: string;
|
|
272
276
|
createdDate?: Date;
|
|
273
277
|
updatedBy?: string;
|
|
@@ -10,6 +10,8 @@ export interface authRoleAttributes {
|
|
|
10
10
|
name: string;
|
|
11
11
|
display?: string;
|
|
12
12
|
status?: number;
|
|
13
|
+
orgId?: string;
|
|
14
|
+
orgInfo?: object;
|
|
13
15
|
createdBy?: string;
|
|
14
16
|
createdDate?: Date;
|
|
15
17
|
updatedBy?: string;
|
|
@@ -51,6 +53,20 @@ export class authRole extends Model<authRoleAttributes, authRoleAttributes> impl
|
|
|
51
53
|
})
|
|
52
54
|
declare status?: number;
|
|
53
55
|
|
|
56
|
+
@Column({
|
|
57
|
+
field: "org_id",
|
|
58
|
+
allowNull: true,
|
|
59
|
+
type: DataType.STRING(255)
|
|
60
|
+
})
|
|
61
|
+
declare orgId?: string;
|
|
62
|
+
|
|
63
|
+
@Column({
|
|
64
|
+
field: "org_info",
|
|
65
|
+
allowNull: true,
|
|
66
|
+
type: DataType.JSON
|
|
67
|
+
})
|
|
68
|
+
declare orgInfo?: object;
|
|
69
|
+
|
|
54
70
|
@Column({
|
|
55
71
|
field: "created_by",
|
|
56
72
|
allowNull: true,
|
|
@@ -26,6 +26,7 @@ export interface mdEbookAttributes {
|
|
|
26
26
|
hasExpire: number;
|
|
27
27
|
startDate?: Date;
|
|
28
28
|
expireDate?: Date;
|
|
29
|
+
sendSubscribe?: number;
|
|
29
30
|
createdBy?: string;
|
|
30
31
|
createdDate?: Date;
|
|
31
32
|
updatedBy?: string;
|
|
@@ -183,6 +184,13 @@ export class mdEbook extends Model<mdEbookAttributes, mdEbookAttributes> impleme
|
|
|
183
184
|
})
|
|
184
185
|
declare expireDate?: Date;
|
|
185
186
|
|
|
187
|
+
@Column({
|
|
188
|
+
field: "send_subscribe",
|
|
189
|
+
allowNull: true,
|
|
190
|
+
type: DataType.INTEGER
|
|
191
|
+
})
|
|
192
|
+
declare sendSubscribe?: number;
|
|
193
|
+
|
|
186
194
|
@Column({
|
|
187
195
|
field: "created_by",
|
|
188
196
|
allowNull: true,
|
|
@@ -32,6 +32,7 @@ export interface memberAttributes {
|
|
|
32
32
|
otp?: string;
|
|
33
33
|
otpDate?: Date;
|
|
34
34
|
avatar?: string;
|
|
35
|
+
subscribeNews?: number;
|
|
35
36
|
createdBy?: string;
|
|
36
37
|
createdDate?: Date;
|
|
37
38
|
updatedBy?: string;
|
|
@@ -231,6 +232,13 @@ export class member extends Model<memberAttributes, memberAttributes> implements
|
|
|
231
232
|
})
|
|
232
233
|
declare avatar?: string;
|
|
233
234
|
|
|
235
|
+
@Column({
|
|
236
|
+
field: "subscribe_news",
|
|
237
|
+
allowNull: true,
|
|
238
|
+
type: DataType.INTEGER
|
|
239
|
+
})
|
|
240
|
+
declare subscribeNews?: number;
|
|
241
|
+
|
|
234
242
|
@Column({
|
|
235
243
|
field: "created_by",
|
|
236
244
|
allowNull: true,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { b as authAssignment, a as authAssignmentAttributes } from '../../authAssignment-
|
|
2
|
+
export { b as authAssignment, a as authAssignmentAttributes } from '../../authAssignment-BAUCoEP6.js';
|
|
@@ -880,6 +880,20 @@ __decorateClass([
|
|
|
880
880
|
type: import_sequelize_typescript8.DataType.INTEGER
|
|
881
881
|
})
|
|
882
882
|
], authRole.prototype, "status", 2);
|
|
883
|
+
__decorateClass([
|
|
884
|
+
(0, import_sequelize_typescript8.Column)({
|
|
885
|
+
field: "org_id",
|
|
886
|
+
allowNull: true,
|
|
887
|
+
type: import_sequelize_typescript8.DataType.STRING(255)
|
|
888
|
+
})
|
|
889
|
+
], authRole.prototype, "orgId", 2);
|
|
890
|
+
__decorateClass([
|
|
891
|
+
(0, import_sequelize_typescript8.Column)({
|
|
892
|
+
field: "org_info",
|
|
893
|
+
allowNull: true,
|
|
894
|
+
type: import_sequelize_typescript8.DataType.JSON
|
|
895
|
+
})
|
|
896
|
+
], authRole.prototype, "orgInfo", 2);
|
|
883
897
|
__decorateClass([
|
|
884
898
|
(0, import_sequelize_typescript8.Column)({
|
|
885
899
|
field: "created_by",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { d as authRole, c as authRoleAttributes } from '../../authAssignment-
|
|
2
|
+
export { d as authRole, c as authRoleAttributes } from '../../authAssignment-BAUCoEP6.js';
|
|
@@ -940,6 +940,20 @@ __decorateClass([
|
|
|
940
940
|
type: import_sequelize_typescript9.DataType.INTEGER
|
|
941
941
|
})
|
|
942
942
|
], authRole.prototype, "status", 2);
|
|
943
|
+
__decorateClass([
|
|
944
|
+
(0, import_sequelize_typescript9.Column)({
|
|
945
|
+
field: "org_id",
|
|
946
|
+
allowNull: true,
|
|
947
|
+
type: import_sequelize_typescript9.DataType.STRING(255)
|
|
948
|
+
})
|
|
949
|
+
], authRole.prototype, "orgId", 2);
|
|
950
|
+
__decorateClass([
|
|
951
|
+
(0, import_sequelize_typescript9.Column)({
|
|
952
|
+
field: "org_info",
|
|
953
|
+
allowNull: true,
|
|
954
|
+
type: import_sequelize_typescript9.DataType.JSON
|
|
955
|
+
})
|
|
956
|
+
], authRole.prototype, "orgInfo", 2);
|
|
943
957
|
__decorateClass([
|
|
944
958
|
(0, import_sequelize_typescript9.Column)({
|
|
945
959
|
field: "created_by",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { f as authRoleChild, e as authRoleChildAttributes } from '../../authAssignment-
|
|
2
|
+
export { f as authRoleChild, e as authRoleChildAttributes } from '../../authAssignment-BAUCoEP6.js';
|
|
@@ -908,6 +908,20 @@ __decorateClass([
|
|
|
908
908
|
type: import_sequelize_typescript8.DataType.INTEGER
|
|
909
909
|
})
|
|
910
910
|
], authRole.prototype, "status", 2);
|
|
911
|
+
__decorateClass([
|
|
912
|
+
(0, import_sequelize_typescript8.Column)({
|
|
913
|
+
field: "org_id",
|
|
914
|
+
allowNull: true,
|
|
915
|
+
type: import_sequelize_typescript8.DataType.STRING(255)
|
|
916
|
+
})
|
|
917
|
+
], authRole.prototype, "orgId", 2);
|
|
918
|
+
__decorateClass([
|
|
919
|
+
(0, import_sequelize_typescript8.Column)({
|
|
920
|
+
field: "org_info",
|
|
921
|
+
allowNull: true,
|
|
922
|
+
type: import_sequelize_typescript8.DataType.JSON
|
|
923
|
+
})
|
|
924
|
+
], authRole.prototype, "orgInfo", 2);
|
|
911
925
|
__decorateClass([
|
|
912
926
|
(0, import_sequelize_typescript8.Column)({
|
|
913
927
|
field: "created_by",
|
|
@@ -6,7 +6,7 @@ export { b as appReportCorruption, a as appReportCorruptionAttributes, d as appR
|
|
|
6
6
|
export { appScore, appScoreAttributes } from './appScore.js';
|
|
7
7
|
export { appScoreData, appScoreDataAttributes } from './appScoreData.js';
|
|
8
8
|
export { appScorePerson, appScorePersonAttributes } from './appScorePerson.js';
|
|
9
|
-
export { b as authAssignment, a as authAssignmentAttributes, d as authRole, c as authRoleAttributes, f as authRoleChild, e as authRoleChildAttributes, g as mdContent, m as mdContentAttributes, i as mdContentGroup, h as mdContentGroupAttributes, k as mdQuestionnaire, j as mdQuestionnaireAttributes, n as mdQuestionnaireData, l as mdQuestionnaireDataAttributes, o as users, u as usersAttributes, q as usersVerify, p as usersVerifyAttributes } from '../../authAssignment-
|
|
9
|
+
export { b as authAssignment, a as authAssignmentAttributes, d as authRole, c as authRoleAttributes, f as authRoleChild, e as authRoleChildAttributes, g as mdContent, m as mdContentAttributes, i as mdContentGroup, h as mdContentGroupAttributes, k as mdQuestionnaire, j as mdQuestionnaireAttributes, n as mdQuestionnaireData, l as mdQuestionnaireDataAttributes, o as users, u as usersAttributes, q as usersVerify, p as usersVerifyAttributes } from '../../authAssignment-BAUCoEP6.js';
|
|
10
10
|
export { b as authItem, a as authItemAttributes, d as authItemChild, c as authItemChildAttributes, e as menu, m as menuAttributes, g as msModule, f as msModuleAttributes } from '../../authItem-DBSkCaSi.js';
|
|
11
11
|
export { contactUs, contactUsAttributes } from './contactUs.js';
|
|
12
12
|
export { contentGuidelinesTour, contentGuidelinesTourAttributes } from './contentGuidelinesTour.js';
|
|
@@ -19,7 +19,7 @@ export { mdCmsSingle, mdCmsSingleAttributes } from './mdCmsSingle.js';
|
|
|
19
19
|
export { mdConfiguration, mdConfigurationAttributes } from './mdConfiguration.js';
|
|
20
20
|
export { mdDocumentPdf, mdDocumentPdfAttributes } from './mdDocumentPdf.js';
|
|
21
21
|
export { a as mdDownload, m as mdDownloadAttributes, c as mdDownloadGroup, b as mdDownloadGroupAttributes } from '../../mdDownload-CCc6eto7.js';
|
|
22
|
-
export { a as mdEbook, m as mdEbookAttributes, c as mdEbookGroup, b as mdEbookGroupAttributes } from '../../mdEbook-
|
|
22
|
+
export { a as mdEbook, m as mdEbookAttributes, c as mdEbookGroup, b as mdEbookGroupAttributes } from '../../mdEbook-yzNQjFhx.js';
|
|
23
23
|
export { mdEgp, mdEgpAttributes } from './mdEgp.js';
|
|
24
24
|
export { a as mdFaq, m as mdFaqAttributes, c as mdFaqGroup, b as mdFaqGroupAttributes } from '../../mdFaq-CHIPG3yZ.js';
|
|
25
25
|
export { mdFormAdvance_1, mdFormAdvance_1Attributes } from './mdFormAdvance_1.js';
|
|
@@ -2251,6 +2251,20 @@ __decorateClass([
|
|
|
2251
2251
|
type: import_sequelize_typescript18.DataType.INTEGER
|
|
2252
2252
|
})
|
|
2253
2253
|
], authRole.prototype, "status", 2);
|
|
2254
|
+
__decorateClass([
|
|
2255
|
+
(0, import_sequelize_typescript18.Column)({
|
|
2256
|
+
field: "org_id",
|
|
2257
|
+
allowNull: true,
|
|
2258
|
+
type: import_sequelize_typescript18.DataType.STRING(255)
|
|
2259
|
+
})
|
|
2260
|
+
], authRole.prototype, "orgId", 2);
|
|
2261
|
+
__decorateClass([
|
|
2262
|
+
(0, import_sequelize_typescript18.Column)({
|
|
2263
|
+
field: "org_info",
|
|
2264
|
+
allowNull: true,
|
|
2265
|
+
type: import_sequelize_typescript18.DataType.JSON
|
|
2266
|
+
})
|
|
2267
|
+
], authRole.prototype, "orgInfo", 2);
|
|
2254
2268
|
__decorateClass([
|
|
2255
2269
|
(0, import_sequelize_typescript18.Column)({
|
|
2256
2270
|
field: "created_by",
|
|
@@ -4465,6 +4479,13 @@ __decorateClass([
|
|
|
4465
4479
|
type: import_sequelize_typescript38.DataType.DATE
|
|
4466
4480
|
})
|
|
4467
4481
|
], mdEbook.prototype, "expireDate", 2);
|
|
4482
|
+
__decorateClass([
|
|
4483
|
+
(0, import_sequelize_typescript38.Column)({
|
|
4484
|
+
field: "send_subscribe",
|
|
4485
|
+
allowNull: true,
|
|
4486
|
+
type: import_sequelize_typescript38.DataType.INTEGER
|
|
4487
|
+
})
|
|
4488
|
+
], mdEbook.prototype, "sendSubscribe", 2);
|
|
4468
4489
|
__decorateClass([
|
|
4469
4490
|
(0, import_sequelize_typescript38.Column)({
|
|
4470
4491
|
field: "created_by",
|
|
@@ -6863,6 +6884,13 @@ __decorateClass([
|
|
|
6863
6884
|
type: import_sequelize_typescript56.DataType.STRING(60)
|
|
6864
6885
|
})
|
|
6865
6886
|
], member.prototype, "avatar", 2);
|
|
6887
|
+
__decorateClass([
|
|
6888
|
+
(0, import_sequelize_typescript56.Column)({
|
|
6889
|
+
field: "subscribe_news",
|
|
6890
|
+
allowNull: true,
|
|
6891
|
+
type: import_sequelize_typescript56.DataType.INTEGER
|
|
6892
|
+
})
|
|
6893
|
+
], member.prototype, "subscribeNews", 2);
|
|
6866
6894
|
__decorateClass([
|
|
6867
6895
|
(0, import_sequelize_typescript56.Column)({
|
|
6868
6896
|
field: "created_by",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { g as mdContent, m as mdContentAttributes } from '../../authAssignment-
|
|
2
|
+
export { g as mdContent, m as mdContentAttributes } from '../../authAssignment-BAUCoEP6.js';
|
|
@@ -109,6 +109,20 @@ __decorateClass([
|
|
|
109
109
|
type: import_sequelize_typescript2.DataType.INTEGER
|
|
110
110
|
})
|
|
111
111
|
], authRole.prototype, "status", 2);
|
|
112
|
+
__decorateClass([
|
|
113
|
+
(0, import_sequelize_typescript2.Column)({
|
|
114
|
+
field: "org_id",
|
|
115
|
+
allowNull: true,
|
|
116
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
117
|
+
})
|
|
118
|
+
], authRole.prototype, "orgId", 2);
|
|
119
|
+
__decorateClass([
|
|
120
|
+
(0, import_sequelize_typescript2.Column)({
|
|
121
|
+
field: "org_info",
|
|
122
|
+
allowNull: true,
|
|
123
|
+
type: import_sequelize_typescript2.DataType.JSON
|
|
124
|
+
})
|
|
125
|
+
], authRole.prototype, "orgInfo", 2);
|
|
112
126
|
__decorateClass([
|
|
113
127
|
(0, import_sequelize_typescript2.Column)({
|
|
114
128
|
field: "created_by",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { i as mdContentGroup, h as mdContentGroupAttributes } from '../../authAssignment-
|
|
2
|
+
export { i as mdContentGroup, h as mdContentGroupAttributes } from '../../authAssignment-BAUCoEP6.js';
|
|
@@ -112,6 +112,20 @@ __decorateClass([
|
|
|
112
112
|
type: import_sequelize_typescript2.DataType.INTEGER
|
|
113
113
|
})
|
|
114
114
|
], authRole.prototype, "status", 2);
|
|
115
|
+
__decorateClass([
|
|
116
|
+
(0, import_sequelize_typescript2.Column)({
|
|
117
|
+
field: "org_id",
|
|
118
|
+
allowNull: true,
|
|
119
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
120
|
+
})
|
|
121
|
+
], authRole.prototype, "orgId", 2);
|
|
122
|
+
__decorateClass([
|
|
123
|
+
(0, import_sequelize_typescript2.Column)({
|
|
124
|
+
field: "org_info",
|
|
125
|
+
allowNull: true,
|
|
126
|
+
type: import_sequelize_typescript2.DataType.JSON
|
|
127
|
+
})
|
|
128
|
+
], authRole.prototype, "orgInfo", 2);
|
|
115
129
|
__decorateClass([
|
|
116
130
|
(0, import_sequelize_typescript2.Column)({
|
|
117
131
|
field: "created_by",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { a as mdEbook, m as mdEbookAttributes } from '../../mdEbook-
|
|
2
|
+
export { a as mdEbook, m as mdEbookAttributes } from '../../mdEbook-yzNQjFhx.js';
|
|
@@ -273,6 +273,13 @@ __decorateClass([
|
|
|
273
273
|
type: import_sequelize_typescript2.DataType.DATE
|
|
274
274
|
})
|
|
275
275
|
], mdEbook.prototype, "expireDate", 2);
|
|
276
|
+
__decorateClass([
|
|
277
|
+
(0, import_sequelize_typescript2.Column)({
|
|
278
|
+
field: "send_subscribe",
|
|
279
|
+
allowNull: true,
|
|
280
|
+
type: import_sequelize_typescript2.DataType.INTEGER
|
|
281
|
+
})
|
|
282
|
+
], mdEbook.prototype, "sendSubscribe", 2);
|
|
276
283
|
__decorateClass([
|
|
277
284
|
(0, import_sequelize_typescript2.Column)({
|
|
278
285
|
field: "created_by",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { c as mdEbookGroup, b as mdEbookGroupAttributes } from '../../mdEbook-
|
|
2
|
+
export { c as mdEbookGroup, b as mdEbookGroupAttributes } from '../../mdEbook-yzNQjFhx.js';
|
|
@@ -180,6 +180,13 @@ __decorateClass([
|
|
|
180
180
|
type: import_sequelize_typescript.DataType.DATE
|
|
181
181
|
})
|
|
182
182
|
], mdEbook.prototype, "expireDate", 2);
|
|
183
|
+
__decorateClass([
|
|
184
|
+
(0, import_sequelize_typescript.Column)({
|
|
185
|
+
field: "send_subscribe",
|
|
186
|
+
allowNull: true,
|
|
187
|
+
type: import_sequelize_typescript.DataType.INTEGER
|
|
188
|
+
})
|
|
189
|
+
], mdEbook.prototype, "sendSubscribe", 2);
|
|
183
190
|
__decorateClass([
|
|
184
191
|
(0, import_sequelize_typescript.Column)({
|
|
185
192
|
field: "created_by",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { k as mdQuestionnaire, j as mdQuestionnaireAttributes } from '../../authAssignment-
|
|
2
|
+
export { k as mdQuestionnaire, j as mdQuestionnaireAttributes } from '../../authAssignment-BAUCoEP6.js';
|
|
@@ -109,6 +109,20 @@ __decorateClass([
|
|
|
109
109
|
type: import_sequelize_typescript2.DataType.INTEGER
|
|
110
110
|
})
|
|
111
111
|
], authRole.prototype, "status", 2);
|
|
112
|
+
__decorateClass([
|
|
113
|
+
(0, import_sequelize_typescript2.Column)({
|
|
114
|
+
field: "org_id",
|
|
115
|
+
allowNull: true,
|
|
116
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
117
|
+
})
|
|
118
|
+
], authRole.prototype, "orgId", 2);
|
|
119
|
+
__decorateClass([
|
|
120
|
+
(0, import_sequelize_typescript2.Column)({
|
|
121
|
+
field: "org_info",
|
|
122
|
+
allowNull: true,
|
|
123
|
+
type: import_sequelize_typescript2.DataType.JSON
|
|
124
|
+
})
|
|
125
|
+
], authRole.prototype, "orgInfo", 2);
|
|
112
126
|
__decorateClass([
|
|
113
127
|
(0, import_sequelize_typescript2.Column)({
|
|
114
128
|
field: "created_by",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { n as mdQuestionnaireData, l as mdQuestionnaireDataAttributes } from '../../authAssignment-
|
|
2
|
+
export { n as mdQuestionnaireData, l as mdQuestionnaireDataAttributes } from '../../authAssignment-BAUCoEP6.js';
|
|
@@ -112,6 +112,20 @@ __decorateClass([
|
|
|
112
112
|
type: import_sequelize_typescript2.DataType.INTEGER
|
|
113
113
|
})
|
|
114
114
|
], authRole.prototype, "status", 2);
|
|
115
|
+
__decorateClass([
|
|
116
|
+
(0, import_sequelize_typescript2.Column)({
|
|
117
|
+
field: "org_id",
|
|
118
|
+
allowNull: true,
|
|
119
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
120
|
+
})
|
|
121
|
+
], authRole.prototype, "orgId", 2);
|
|
122
|
+
__decorateClass([
|
|
123
|
+
(0, import_sequelize_typescript2.Column)({
|
|
124
|
+
field: "org_info",
|
|
125
|
+
allowNull: true,
|
|
126
|
+
type: import_sequelize_typescript2.DataType.JSON
|
|
127
|
+
})
|
|
128
|
+
], authRole.prototype, "orgInfo", 2);
|
|
115
129
|
__decorateClass([
|
|
116
130
|
(0, import_sequelize_typescript2.Column)({
|
|
117
131
|
field: "created_by",
|
|
@@ -30,6 +30,7 @@ interface memberAttributes {
|
|
|
30
30
|
otp?: string;
|
|
31
31
|
otpDate?: Date;
|
|
32
32
|
avatar?: string;
|
|
33
|
+
subscribeNews?: number;
|
|
33
34
|
createdBy?: string;
|
|
34
35
|
createdDate?: Date;
|
|
35
36
|
updatedBy?: string;
|
|
@@ -65,6 +66,7 @@ declare class member extends Model<memberAttributes, memberAttributes> implement
|
|
|
65
66
|
otp?: string;
|
|
66
67
|
otpDate?: Date;
|
|
67
68
|
avatar?: string;
|
|
69
|
+
subscribeNews?: number;
|
|
68
70
|
createdBy?: string;
|
|
69
71
|
createdDate?: Date;
|
|
70
72
|
updatedBy?: string;
|
|
@@ -221,6 +221,13 @@ __decorateClass([
|
|
|
221
221
|
type: import_sequelize_typescript.DataType.STRING(60)
|
|
222
222
|
})
|
|
223
223
|
], member.prototype, "avatar", 2);
|
|
224
|
+
__decorateClass([
|
|
225
|
+
(0, import_sequelize_typescript.Column)({
|
|
226
|
+
field: "subscribe_news",
|
|
227
|
+
allowNull: true,
|
|
228
|
+
type: import_sequelize_typescript.DataType.INTEGER
|
|
229
|
+
})
|
|
230
|
+
], member.prototype, "subscribeNews", 2);
|
|
224
231
|
__decorateClass([
|
|
225
232
|
(0, import_sequelize_typescript.Column)({
|
|
226
233
|
field: "created_by",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { o as users, u as usersAttributes } from '../../authAssignment-
|
|
2
|
+
export { o as users, u as usersAttributes } from '../../authAssignment-BAUCoEP6.js';
|
|
@@ -106,6 +106,20 @@ __decorateClass([
|
|
|
106
106
|
type: import_sequelize_typescript2.DataType.INTEGER
|
|
107
107
|
})
|
|
108
108
|
], authRole.prototype, "status", 2);
|
|
109
|
+
__decorateClass([
|
|
110
|
+
(0, import_sequelize_typescript2.Column)({
|
|
111
|
+
field: "org_id",
|
|
112
|
+
allowNull: true,
|
|
113
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
114
|
+
})
|
|
115
|
+
], authRole.prototype, "orgId", 2);
|
|
116
|
+
__decorateClass([
|
|
117
|
+
(0, import_sequelize_typescript2.Column)({
|
|
118
|
+
field: "org_info",
|
|
119
|
+
allowNull: true,
|
|
120
|
+
type: import_sequelize_typescript2.DataType.JSON
|
|
121
|
+
})
|
|
122
|
+
], authRole.prototype, "orgInfo", 2);
|
|
109
123
|
__decorateClass([
|
|
110
124
|
(0, import_sequelize_typescript2.Column)({
|
|
111
125
|
field: "created_by",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { q as usersVerify, p as usersVerifyAttributes } from '../../authAssignment-
|
|
2
|
+
export { q as usersVerify, p as usersVerifyAttributes } from '../../authAssignment-BAUCoEP6.js';
|
|
@@ -109,6 +109,20 @@ __decorateClass([
|
|
|
109
109
|
type: import_sequelize_typescript2.DataType.INTEGER
|
|
110
110
|
})
|
|
111
111
|
], authRole.prototype, "status", 2);
|
|
112
|
+
__decorateClass([
|
|
113
|
+
(0, import_sequelize_typescript2.Column)({
|
|
114
|
+
field: "org_id",
|
|
115
|
+
allowNull: true,
|
|
116
|
+
type: import_sequelize_typescript2.DataType.STRING(255)
|
|
117
|
+
})
|
|
118
|
+
], authRole.prototype, "orgId", 2);
|
|
119
|
+
__decorateClass([
|
|
120
|
+
(0, import_sequelize_typescript2.Column)({
|
|
121
|
+
field: "org_info",
|
|
122
|
+
allowNull: true,
|
|
123
|
+
type: import_sequelize_typescript2.DataType.JSON
|
|
124
|
+
})
|
|
125
|
+
], authRole.prototype, "orgInfo", 2);
|
|
112
126
|
__decorateClass([
|
|
113
127
|
(0, import_sequelize_typescript2.Column)({
|
|
114
128
|
field: "created_by",
|
|
@@ -53,6 +53,7 @@ interface mdEbookAttributes {
|
|
|
53
53
|
hasExpire: number;
|
|
54
54
|
startDate?: Date;
|
|
55
55
|
expireDate?: Date;
|
|
56
|
+
sendSubscribe?: number;
|
|
56
57
|
createdBy?: string;
|
|
57
58
|
createdDate?: Date;
|
|
58
59
|
updatedBy?: string;
|
|
@@ -83,6 +84,7 @@ declare class mdEbook extends Model<mdEbookAttributes, mdEbookAttributes> implem
|
|
|
83
84
|
hasExpire: number;
|
|
84
85
|
startDate?: Date;
|
|
85
86
|
expireDate?: Date;
|
|
87
|
+
sendSubscribe?: number;
|
|
86
88
|
createdBy?: string;
|
|
87
89
|
createdDate?: Date;
|
|
88
90
|
updatedBy?: string;
|