@admc-go-th/admc-library 1.0.130 → 1.0.132

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.
Files changed (76) hide show
  1. package/{appQueue-QJ9ECucz.d.ts → appQueue-HW5J6Gb9.d.ts} +6 -2
  2. package/{authAssignment-BAUCoEP6.d.ts → authAssignment-De3034JH.d.ts} +16 -0
  3. package/databases/schema/appQueue.ts +24 -8
  4. package/databases/schema/appScore.ts +8 -0
  5. package/databases/schema/formFaq.ts +126 -126
  6. package/databases/schema/index.ts +10 -5
  7. package/databases/schema/informationIndex.ts +211 -211
  8. package/databases/schema/informationIndexGroup.ts +103 -103
  9. package/databases/schema/mdDownloadBk.ts +136 -136
  10. package/databases/schema/msConsultCase.ts +0 -8
  11. package/databases/schema/msConsultSiteCase.ts +91 -0
  12. package/databases/schema/msConsultSiteIssue.ts +84 -0
  13. package/databases/schema/msExecutiveActing.ts +75 -0
  14. package/databases/schema/msExecutiveBoard.ts +82 -82
  15. package/databases/schema/msExecutiveBoardBk.ts +83 -0
  16. package/databases/schema/msExecutivePosition.ts +117 -117
  17. package/databases/schema/msExecutivePositionBk.ts +112 -0
  18. package/databases/schema/msGuidelines.ts +88 -88
  19. package/databases/schema/msOrganization.ts +139 -0
  20. package/databases/schema/msPosition.ts +76 -0
  21. package/databases/schema/msQueueTourFaq.ts +90 -0
  22. package/databases/schema/msQueueTourGuidelines.ts +90 -0
  23. package/databases/schema/setting.ts +73 -73
  24. package/databases/schema/userPermissionV.ts +78 -0
  25. package/databases/schema/users.ts +62 -0
  26. package/databases/tables/appQueue.d.ts +1 -1
  27. package/databases/tables/appQueue.js +21 -7
  28. package/databases/tables/appScore.d.ts +2 -0
  29. package/databases/tables/appScore.js +7 -0
  30. package/databases/tables/authAssignment.d.ts +1 -1
  31. package/databases/tables/authAssignment.js +54 -0
  32. package/databases/tables/authRole.d.ts +1 -1
  33. package/databases/tables/authRole.js +54 -0
  34. package/databases/tables/authRoleChild.d.ts +1 -1
  35. package/databases/tables/authRoleChild.js +54 -0
  36. package/databases/tables/index.d.ts +13 -7
  37. package/databases/tables/index.js +1236 -708
  38. package/databases/tables/mdContent.d.ts +1 -1
  39. package/databases/tables/mdContent.js +54 -0
  40. package/databases/tables/mdContentGroup.d.ts +1 -1
  41. package/databases/tables/mdContentGroup.js +54 -0
  42. package/databases/tables/mdQuestionnaire.d.ts +1 -1
  43. package/databases/tables/mdQuestionnaire.js +54 -0
  44. package/databases/tables/mdQuestionnaireData.d.ts +1 -1
  45. package/databases/tables/mdQuestionnaireData.js +54 -0
  46. package/databases/tables/msConsultCase.d.ts +0 -2
  47. package/databases/tables/msConsultCase.js +0 -7
  48. package/databases/tables/msConsultChannels.d.ts +1 -1
  49. package/databases/tables/msConsultChannels.js +21 -7
  50. package/databases/tables/msConsultSiteCase.d.ts +28 -0
  51. package/databases/tables/msConsultSiteCase.js +113 -0
  52. package/databases/tables/msConsultSiteIssue.d.ts +26 -0
  53. package/databases/tables/msConsultSiteIssue.js +107 -0
  54. package/databases/tables/msExecutiveActing.d.ts +24 -0
  55. package/databases/tables/msExecutiveActing.js +99 -0
  56. package/databases/tables/msExecutiveBoardBk.d.ts +26 -0
  57. package/databases/tables/msExecutiveBoardBk.js +106 -0
  58. package/databases/tables/msExecutivePositionBk.d.ts +34 -0
  59. package/databases/tables/msExecutivePositionBk.js +131 -0
  60. package/databases/tables/msOrganization.d.ts +40 -0
  61. package/databases/tables/msOrganization.js +155 -0
  62. package/databases/tables/msPosition.d.ts +24 -0
  63. package/databases/tables/msPosition.js +100 -0
  64. package/databases/tables/msQueueTourFaq.d.ts +28 -0
  65. package/databases/tables/msQueueTourFaq.js +112 -0
  66. package/databases/tables/msQueueTourGuidelines.d.ts +28 -0
  67. package/databases/tables/msQueueTourGuidelines.js +112 -0
  68. package/databases/tables/msWebsite.d.ts +1 -1
  69. package/databases/tables/msWebsite.js +21 -7
  70. package/databases/tables/userPermissionV.d.ts +26 -0
  71. package/databases/tables/userPermissionV.js +101 -0
  72. package/databases/tables/users.d.ts +1 -1
  73. package/databases/tables/users.js +54 -0
  74. package/databases/tables/usersVerify.d.ts +1 -1
  75. package/databases/tables/usersVerify.js +54 -0
  76. package/package.json +1 -1
@@ -1,74 +1,74 @@
1
- import {
2
- Model, Table, Column, DataType, Index, Sequelize, ForeignKey
3
- } from "sequelize-typescript";
4
-
5
- export interface settingAttributes {
6
- id?: number;
7
- uuid: string;
8
- title?: string;
9
- description?: string;
10
- imageLogoUuid?: string;
11
- imageCoverUuid?: string;
12
- imageBackgroundUuid?: string;
13
- updatedDate?: Date;
14
- }
15
-
16
- @Table({
17
- tableName: "setting",
18
- timestamps: false
19
- })
20
- export class setting extends Model<settingAttributes, settingAttributes> implements settingAttributes {
21
-
22
- @Column({
23
- primaryKey: true,
24
- autoIncrement: true,
25
- type: DataType.INTEGER
26
- })
27
- declare id?: number;
28
-
29
- @Column({
30
- type: DataType.STRING(60)
31
- })
32
- declare uuid: string;
33
-
34
- @Column({
35
- allowNull: true,
36
- type: DataType.STRING(255)
37
- })
38
- declare title?: string;
39
-
40
- @Column({
41
- allowNull: true,
42
- type: DataType.STRING(255)
43
- })
44
- declare description?: string;
45
-
46
- @Column({
47
- field: "image_logo_uuid",
48
- allowNull: true,
49
- type: DataType.STRING(60)
50
- })
51
- declare imageLogoUuid?: string;
52
-
53
- @Column({
54
- field: "image_cover_uuid",
55
- allowNull: true,
56
- type: DataType.STRING(60)
57
- })
58
- declare imageCoverUuid?: string;
59
-
60
- @Column({
61
- field: "image_background_uuid",
62
- allowNull: true,
63
- type: DataType.STRING(60)
64
- })
65
- declare imageBackgroundUuid?: string;
66
-
67
- @Column({
68
- field: "updated_date",
69
- allowNull: true,
70
- type: DataType.DATE
71
- })
72
- declare updatedDate?: Date;
73
-
1
+ import {
2
+ Model, Table, Column, DataType, Index, Sequelize, ForeignKey
3
+ } from "sequelize-typescript";
4
+
5
+ export interface settingAttributes {
6
+ id?: number;
7
+ uuid: string;
8
+ title?: string;
9
+ description?: string;
10
+ imageLogoUuid?: string;
11
+ imageCoverUuid?: string;
12
+ imageBackgroundUuid?: string;
13
+ updatedDate?: Date;
14
+ }
15
+
16
+ @Table({
17
+ tableName: "setting",
18
+ timestamps: false
19
+ })
20
+ export class setting extends Model<settingAttributes, settingAttributes> implements settingAttributes {
21
+
22
+ @Column({
23
+ primaryKey: true,
24
+ autoIncrement: true,
25
+ type: DataType.INTEGER
26
+ })
27
+ declare id?: number;
28
+
29
+ @Column({
30
+ type: DataType.STRING(60)
31
+ })
32
+ declare uuid: string;
33
+
34
+ @Column({
35
+ allowNull: true,
36
+ type: DataType.STRING(255)
37
+ })
38
+ declare title?: string;
39
+
40
+ @Column({
41
+ allowNull: true,
42
+ type: DataType.STRING(255)
43
+ })
44
+ declare description?: string;
45
+
46
+ @Column({
47
+ field: "image_logo_uuid",
48
+ allowNull: true,
49
+ type: DataType.STRING(60)
50
+ })
51
+ declare imageLogoUuid?: string;
52
+
53
+ @Column({
54
+ field: "image_cover_uuid",
55
+ allowNull: true,
56
+ type: DataType.STRING(60)
57
+ })
58
+ declare imageCoverUuid?: string;
59
+
60
+ @Column({
61
+ field: "image_background_uuid",
62
+ allowNull: true,
63
+ type: DataType.STRING(60)
64
+ })
65
+ declare imageBackgroundUuid?: string;
66
+
67
+ @Column({
68
+ field: "updated_date",
69
+ allowNull: true,
70
+ type: DataType.DATE
71
+ })
72
+ declare updatedDate?: Date;
73
+
74
74
  }
@@ -0,0 +1,78 @@
1
+ import {
2
+ Model, Table, Column, DataType, Index, Sequelize, ForeignKey
3
+ } from "sequelize-typescript";
4
+
5
+ export interface userPermissionVAttributes {
6
+ userId?: number;
7
+ uuid: string;
8
+ username: string;
9
+ roleId?: number;
10
+ th?: string;
11
+ en?: string;
12
+ fr?: string;
13
+ sites?: string;
14
+ management?: string;
15
+ }
16
+
17
+ @Table({
18
+ tableName: "user_permission_v",
19
+ timestamps: false,
20
+ comment: "VIEW"
21
+ })
22
+ export class userPermissionV extends Model<userPermissionVAttributes, userPermissionVAttributes> implements userPermissionVAttributes {
23
+
24
+ @Column({
25
+ field: "user_id",
26
+ type: DataType.INTEGER,
27
+ defaultValue: "0"
28
+ })
29
+ declare userId?: number;
30
+
31
+ @Column({
32
+ type: DataType.STRING(60)
33
+ })
34
+ declare uuid: string;
35
+
36
+ @Column({
37
+ type: DataType.STRING(100)
38
+ })
39
+ declare username: string;
40
+
41
+ @Column({
42
+ field: "role_id",
43
+ allowNull: true,
44
+ type: DataType.INTEGER
45
+ })
46
+ declare roleId?: number;
47
+
48
+ @Column({
49
+ allowNull: true,
50
+ type: DataType.STRING(2)
51
+ })
52
+ declare th?: string;
53
+
54
+ @Column({
55
+ allowNull: true,
56
+ type: DataType.STRING(2)
57
+ })
58
+ declare en?: string;
59
+
60
+ @Column({
61
+ allowNull: true,
62
+ type: DataType.STRING(2)
63
+ })
64
+ declare fr?: string;
65
+
66
+ @Column({
67
+ allowNull: true,
68
+ type: DataType.STRING
69
+ })
70
+ declare sites?: string;
71
+
72
+ @Column({
73
+ allowNull: true,
74
+ type: DataType.STRING(10)
75
+ })
76
+ declare management?: string;
77
+
78
+ }
@@ -21,9 +21,17 @@ export interface usersAttributes {
21
21
  userAuthen?: string;
22
22
  userType?: number;
23
23
  prefix?: string;
24
+ prefixId?: number;
24
25
  firstName?: string;
25
26
  lastName?: string;
27
+ firstNameEn?: string;
28
+ lastNameEn?: string;
26
29
  phone?: string;
30
+ organizationId?: number;
31
+ occupation?: string;
32
+ position?: string;
33
+ positionId?: number;
34
+ genderCode?: string;
27
35
  status?: number;
28
36
  is_2fa?: number;
29
37
  createdBy?: string;
@@ -134,6 +142,13 @@ export class users extends Model<usersAttributes, usersAttributes> implements us
134
142
  })
135
143
  declare prefix?: string;
136
144
 
145
+ @Column({
146
+ field: "prefix_id",
147
+ allowNull: true,
148
+ type: DataType.INTEGER
149
+ })
150
+ declare prefixId?: number;
151
+
137
152
  @Column({
138
153
  field: "first_name",
139
154
  allowNull: true,
@@ -148,12 +163,59 @@ export class users extends Model<usersAttributes, usersAttributes> implements us
148
163
  })
149
164
  declare lastName?: string;
150
165
 
166
+ @Column({
167
+ field: "first_name_en",
168
+ allowNull: true,
169
+ type: DataType.STRING(100)
170
+ })
171
+ declare firstNameEn?: string;
172
+
173
+ @Column({
174
+ field: "last_name_en",
175
+ allowNull: true,
176
+ type: DataType.STRING(100)
177
+ })
178
+ declare lastNameEn?: string;
179
+
151
180
  @Column({
152
181
  allowNull: true,
153
182
  type: DataType.STRING(20)
154
183
  })
155
184
  declare phone?: string;
156
185
 
186
+ @Column({
187
+ field: "organization_id",
188
+ allowNull: true,
189
+ type: DataType.INTEGER
190
+ })
191
+ declare organizationId?: number;
192
+
193
+ @Column({
194
+ allowNull: true,
195
+ type: DataType.STRING(255)
196
+ })
197
+ declare occupation?: string;
198
+
199
+ @Column({
200
+ allowNull: true,
201
+ type: DataType.STRING(255)
202
+ })
203
+ declare position?: string;
204
+
205
+ @Column({
206
+ field: "position_id",
207
+ allowNull: true,
208
+ type: DataType.INTEGER
209
+ })
210
+ declare positionId?: number;
211
+
212
+ @Column({
213
+ field: "gender_code",
214
+ allowNull: true,
215
+ type: DataType.STRING(1)
216
+ })
217
+ declare genderCode?: string;
218
+
157
219
  @Column({
158
220
  allowNull: true,
159
221
  type: DataType.SMALLINT
@@ -1,2 +1,2 @@
1
1
  import 'sequelize-typescript';
2
- export { b as appQueue, a as appQueueAttributes } from '../../appQueue-QJ9ECucz.js';
2
+ export { b as appQueue, a as appQueueAttributes } from '../../appQueue-HW5J6Gb9.js';
@@ -438,13 +438,6 @@ __decorateClass([
438
438
  type: import_sequelize_typescript3.DataType.STRING(30)
439
439
  })
440
440
  ], appQueue.prototype, "ipAddress", 2);
441
- __decorateClass([
442
- (0, import_sequelize_typescript3.Column)({
443
- field: "staff_id",
444
- allowNull: true,
445
- type: import_sequelize_typescript3.DataType.INTEGER
446
- })
447
- ], appQueue.prototype, "staffId", 2);
448
441
  __decorateClass([
449
442
  (0, import_sequelize_typescript3.Column)({
450
443
  allowNull: true,
@@ -479,6 +472,27 @@ __decorateClass([
479
472
  type: import_sequelize_typescript3.DataType.INTEGER
480
473
  })
481
474
  ], appQueue.prototype, "caseJurisdiction", 2);
475
+ __decorateClass([
476
+ (0, import_sequelize_typescript3.Column)({
477
+ field: "staff_id",
478
+ allowNull: true,
479
+ type: import_sequelize_typescript3.DataType.INTEGER
480
+ })
481
+ ], appQueue.prototype, "staffId", 2);
482
+ __decorateClass([
483
+ (0, import_sequelize_typescript3.Column)({
484
+ field: "staff_channel_id",
485
+ allowNull: true,
486
+ type: import_sequelize_typescript3.DataType.INTEGER
487
+ })
488
+ ], appQueue.prototype, "staffChannelId", 2);
489
+ __decorateClass([
490
+ (0, import_sequelize_typescript3.Column)({
491
+ field: "staff_channel",
492
+ allowNull: true,
493
+ type: import_sequelize_typescript3.DataType.JSON
494
+ })
495
+ ], appQueue.prototype, "staffChannel", 2);
482
496
  __decorateClass([
483
497
  (0, import_sequelize_typescript3.Column)({
484
498
  field: "staff_issues",
@@ -9,6 +9,7 @@ interface appScoreAttributes {
9
9
  loginLabel?: string;
10
10
  topicInfo?: object;
11
11
  labelInfo?: object;
12
+ dataInfo?: object;
12
13
  note?: string;
13
14
  scoreInfo?: object;
14
15
  signInfo?: object;
@@ -31,6 +32,7 @@ declare class appScore extends Model<appScoreAttributes, appScoreAttributes> imp
31
32
  loginLabel?: string;
32
33
  topicInfo?: object;
33
34
  labelInfo?: object;
35
+ dataInfo?: object;
34
36
  note?: string;
35
37
  scoreInfo?: object;
36
38
  signInfo?: object;
@@ -87,6 +87,13 @@ __decorateClass([
87
87
  type: import_sequelize_typescript.DataType.JSON
88
88
  })
89
89
  ], appScore.prototype, "labelInfo", 2);
90
+ __decorateClass([
91
+ (0, import_sequelize_typescript.Column)({
92
+ field: "data_info",
93
+ allowNull: true,
94
+ type: import_sequelize_typescript.DataType.JSON
95
+ })
96
+ ], appScore.prototype, "dataInfo", 2);
90
97
  __decorateClass([
91
98
  (0, import_sequelize_typescript.Column)({
92
99
  allowNull: true,
@@ -1,2 +1,2 @@
1
1
  import 'sequelize-typescript';
2
- export { b as authAssignment, a as authAssignmentAttributes } from '../../authAssignment-BAUCoEP6.js';
2
+ export { b as authAssignment, a as authAssignmentAttributes } from '../../authAssignment-De3034JH.js';
@@ -697,6 +697,13 @@ __decorateClass([
697
697
  type: import_sequelize_typescript6.DataType.STRING(10)
698
698
  })
699
699
  ], users.prototype, "prefix", 2);
700
+ __decorateClass([
701
+ (0, import_sequelize_typescript6.Column)({
702
+ field: "prefix_id",
703
+ allowNull: true,
704
+ type: import_sequelize_typescript6.DataType.INTEGER
705
+ })
706
+ ], users.prototype, "prefixId", 2);
700
707
  __decorateClass([
701
708
  (0, import_sequelize_typescript6.Column)({
702
709
  field: "first_name",
@@ -711,12 +718,59 @@ __decorateClass([
711
718
  type: import_sequelize_typescript6.DataType.STRING(100)
712
719
  })
713
720
  ], users.prototype, "lastName", 2);
721
+ __decorateClass([
722
+ (0, import_sequelize_typescript6.Column)({
723
+ field: "first_name_en",
724
+ allowNull: true,
725
+ type: import_sequelize_typescript6.DataType.STRING(100)
726
+ })
727
+ ], users.prototype, "firstNameEn", 2);
728
+ __decorateClass([
729
+ (0, import_sequelize_typescript6.Column)({
730
+ field: "last_name_en",
731
+ allowNull: true,
732
+ type: import_sequelize_typescript6.DataType.STRING(100)
733
+ })
734
+ ], users.prototype, "lastNameEn", 2);
714
735
  __decorateClass([
715
736
  (0, import_sequelize_typescript6.Column)({
716
737
  allowNull: true,
717
738
  type: import_sequelize_typescript6.DataType.STRING(20)
718
739
  })
719
740
  ], users.prototype, "phone", 2);
741
+ __decorateClass([
742
+ (0, import_sequelize_typescript6.Column)({
743
+ field: "organization_id",
744
+ allowNull: true,
745
+ type: import_sequelize_typescript6.DataType.INTEGER
746
+ })
747
+ ], users.prototype, "organizationId", 2);
748
+ __decorateClass([
749
+ (0, import_sequelize_typescript6.Column)({
750
+ allowNull: true,
751
+ type: import_sequelize_typescript6.DataType.STRING(255)
752
+ })
753
+ ], users.prototype, "occupation", 2);
754
+ __decorateClass([
755
+ (0, import_sequelize_typescript6.Column)({
756
+ allowNull: true,
757
+ type: import_sequelize_typescript6.DataType.STRING(255)
758
+ })
759
+ ], users.prototype, "position", 2);
760
+ __decorateClass([
761
+ (0, import_sequelize_typescript6.Column)({
762
+ field: "position_id",
763
+ allowNull: true,
764
+ type: import_sequelize_typescript6.DataType.INTEGER
765
+ })
766
+ ], users.prototype, "positionId", 2);
767
+ __decorateClass([
768
+ (0, import_sequelize_typescript6.Column)({
769
+ field: "gender_code",
770
+ allowNull: true,
771
+ type: import_sequelize_typescript6.DataType.STRING(1)
772
+ })
773
+ ], users.prototype, "genderCode", 2);
720
774
  __decorateClass([
721
775
  (0, import_sequelize_typescript6.Column)({
722
776
  allowNull: true,
@@ -1,2 +1,2 @@
1
1
  import 'sequelize-typescript';
2
- export { d as authRole, c as authRoleAttributes } from '../../authAssignment-BAUCoEP6.js';
2
+ export { d as authRole, c as authRoleAttributes } from '../../authAssignment-De3034JH.js';
@@ -700,6 +700,13 @@ __decorateClass([
700
700
  type: import_sequelize_typescript6.DataType.STRING(10)
701
701
  })
702
702
  ], users.prototype, "prefix", 2);
703
+ __decorateClass([
704
+ (0, import_sequelize_typescript6.Column)({
705
+ field: "prefix_id",
706
+ allowNull: true,
707
+ type: import_sequelize_typescript6.DataType.INTEGER
708
+ })
709
+ ], users.prototype, "prefixId", 2);
703
710
  __decorateClass([
704
711
  (0, import_sequelize_typescript6.Column)({
705
712
  field: "first_name",
@@ -714,12 +721,59 @@ __decorateClass([
714
721
  type: import_sequelize_typescript6.DataType.STRING(100)
715
722
  })
716
723
  ], users.prototype, "lastName", 2);
724
+ __decorateClass([
725
+ (0, import_sequelize_typescript6.Column)({
726
+ field: "first_name_en",
727
+ allowNull: true,
728
+ type: import_sequelize_typescript6.DataType.STRING(100)
729
+ })
730
+ ], users.prototype, "firstNameEn", 2);
731
+ __decorateClass([
732
+ (0, import_sequelize_typescript6.Column)({
733
+ field: "last_name_en",
734
+ allowNull: true,
735
+ type: import_sequelize_typescript6.DataType.STRING(100)
736
+ })
737
+ ], users.prototype, "lastNameEn", 2);
717
738
  __decorateClass([
718
739
  (0, import_sequelize_typescript6.Column)({
719
740
  allowNull: true,
720
741
  type: import_sequelize_typescript6.DataType.STRING(20)
721
742
  })
722
743
  ], users.prototype, "phone", 2);
744
+ __decorateClass([
745
+ (0, import_sequelize_typescript6.Column)({
746
+ field: "organization_id",
747
+ allowNull: true,
748
+ type: import_sequelize_typescript6.DataType.INTEGER
749
+ })
750
+ ], users.prototype, "organizationId", 2);
751
+ __decorateClass([
752
+ (0, import_sequelize_typescript6.Column)({
753
+ allowNull: true,
754
+ type: import_sequelize_typescript6.DataType.STRING(255)
755
+ })
756
+ ], users.prototype, "occupation", 2);
757
+ __decorateClass([
758
+ (0, import_sequelize_typescript6.Column)({
759
+ allowNull: true,
760
+ type: import_sequelize_typescript6.DataType.STRING(255)
761
+ })
762
+ ], users.prototype, "position", 2);
763
+ __decorateClass([
764
+ (0, import_sequelize_typescript6.Column)({
765
+ field: "position_id",
766
+ allowNull: true,
767
+ type: import_sequelize_typescript6.DataType.INTEGER
768
+ })
769
+ ], users.prototype, "positionId", 2);
770
+ __decorateClass([
771
+ (0, import_sequelize_typescript6.Column)({
772
+ field: "gender_code",
773
+ allowNull: true,
774
+ type: import_sequelize_typescript6.DataType.STRING(1)
775
+ })
776
+ ], users.prototype, "genderCode", 2);
723
777
  __decorateClass([
724
778
  (0, import_sequelize_typescript6.Column)({
725
779
  allowNull: true,
@@ -1,2 +1,2 @@
1
1
  import 'sequelize-typescript';
2
- export { f as authRoleChild, e as authRoleChildAttributes } from '../../authAssignment-BAUCoEP6.js';
2
+ export { f as authRoleChild, e as authRoleChildAttributes } from '../../authAssignment-De3034JH.js';
@@ -703,6 +703,13 @@ __decorateClass([
703
703
  type: import_sequelize_typescript6.DataType.STRING(10)
704
704
  })
705
705
  ], users.prototype, "prefix", 2);
706
+ __decorateClass([
707
+ (0, import_sequelize_typescript6.Column)({
708
+ field: "prefix_id",
709
+ allowNull: true,
710
+ type: import_sequelize_typescript6.DataType.INTEGER
711
+ })
712
+ ], users.prototype, "prefixId", 2);
706
713
  __decorateClass([
707
714
  (0, import_sequelize_typescript6.Column)({
708
715
  field: "first_name",
@@ -717,12 +724,59 @@ __decorateClass([
717
724
  type: import_sequelize_typescript6.DataType.STRING(100)
718
725
  })
719
726
  ], users.prototype, "lastName", 2);
727
+ __decorateClass([
728
+ (0, import_sequelize_typescript6.Column)({
729
+ field: "first_name_en",
730
+ allowNull: true,
731
+ type: import_sequelize_typescript6.DataType.STRING(100)
732
+ })
733
+ ], users.prototype, "firstNameEn", 2);
734
+ __decorateClass([
735
+ (0, import_sequelize_typescript6.Column)({
736
+ field: "last_name_en",
737
+ allowNull: true,
738
+ type: import_sequelize_typescript6.DataType.STRING(100)
739
+ })
740
+ ], users.prototype, "lastNameEn", 2);
720
741
  __decorateClass([
721
742
  (0, import_sequelize_typescript6.Column)({
722
743
  allowNull: true,
723
744
  type: import_sequelize_typescript6.DataType.STRING(20)
724
745
  })
725
746
  ], users.prototype, "phone", 2);
747
+ __decorateClass([
748
+ (0, import_sequelize_typescript6.Column)({
749
+ field: "organization_id",
750
+ allowNull: true,
751
+ type: import_sequelize_typescript6.DataType.INTEGER
752
+ })
753
+ ], users.prototype, "organizationId", 2);
754
+ __decorateClass([
755
+ (0, import_sequelize_typescript6.Column)({
756
+ allowNull: true,
757
+ type: import_sequelize_typescript6.DataType.STRING(255)
758
+ })
759
+ ], users.prototype, "occupation", 2);
760
+ __decorateClass([
761
+ (0, import_sequelize_typescript6.Column)({
762
+ allowNull: true,
763
+ type: import_sequelize_typescript6.DataType.STRING(255)
764
+ })
765
+ ], users.prototype, "position", 2);
766
+ __decorateClass([
767
+ (0, import_sequelize_typescript6.Column)({
768
+ field: "position_id",
769
+ allowNull: true,
770
+ type: import_sequelize_typescript6.DataType.INTEGER
771
+ })
772
+ ], users.prototype, "positionId", 2);
773
+ __decorateClass([
774
+ (0, import_sequelize_typescript6.Column)({
775
+ field: "gender_code",
776
+ allowNull: true,
777
+ type: import_sequelize_typescript6.DataType.STRING(1)
778
+ })
779
+ ], users.prototype, "genderCode", 2);
726
780
  __decorateClass([
727
781
  (0, import_sequelize_typescript6.Column)({
728
782
  allowNull: true,
@@ -1,12 +1,12 @@
1
1
  export { b as appBlessings, a as appBlessingsAttributes, d as appBlessingsTransaction, c as appBlessingsTransactionAttributes } from '../../appBlessings-DcXFhNjP.js';
2
2
  export { appFaq, appFaqAttributes } from './appFaq.js';
3
- export { b as appQueue, a as appQueueAttributes, c as msConsultChannels, m as msConsultChannelsAttributes, e as msWebsite, d as msWebsiteAttributes } from '../../appQueue-QJ9ECucz.js';
3
+ export { b as appQueue, a as appQueueAttributes, c as msConsultChannels, m as msConsultChannelsAttributes, e as msWebsite, d as msWebsiteAttributes } from '../../appQueue-HW5J6Gb9.js';
4
4
  export { appQueueTour, appQueueTourAttributes } from './appQueueTour.js';
5
5
  export { b as appReportCorruption, a as appReportCorruptionAttributes, d as appReportCorruptionTransaction, c as appReportCorruptionTransactionAttributes } from '../../appReportCorruption-BsdsQQ1q.js';
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-BAUCoEP6.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-De3034JH.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';
@@ -36,21 +36,27 @@ export { member, memberAttributes } from './member.js';
36
36
  export { msConsultCase, msConsultCaseAttributes } from './msConsultCase.js';
37
37
  export { msConsultInstructions, msConsultInstructionsAttributes } from './msConsultInstructions.js';
38
38
  export { msConsultService, msConsultServiceAttributes } from './msConsultService.js';
39
+ export { msConsultSiteCase, msConsultSiteCaseAttributes } from './msConsultSiteCase.js';
39
40
  export { msConsultSiteChannel, msConsultSiteChannelAttributes } from './msConsultSiteChannel.js';
40
41
  export { msConsultSiteHoliday, msConsultSiteHolidayAttributes } from './msConsultSiteHoliday.js';
42
+ export { msConsultSiteIssue, msConsultSiteIssueAttributes } from './msConsultSiteIssue.js';
41
43
  export { msConsultSiteStaff, msConsultSiteStaffAttributes } from './msConsultSiteStaff.js';
42
- export { a as msExecutive, m as msExecutiveAttributes, c as msExecutiveGroup, b as msExecutiveGroupAttributes, e as msExecutivePosition, d as msExecutivePositionAttributes } from '../../msExecutive-BFeU4P0-.js';
43
- export { msExecutiveBoard, msExecutiveBoardAttributes } from './msExecutiveBoard.js';
44
+ export { a as msExecutive, m as msExecutiveAttributes, c as msExecutiveGroup, b as msExecutiveGroupAttributes } from '../../msExecutive-BFeU4P0-.js';
45
+ export { msExecutiveActing, msExecutiveActingAttributes } from './msExecutiveActing.js';
46
+ export { msExecutiveBoardBk, msExecutiveBoardBkAttributes } from './msExecutiveBoardBk.js';
44
47
  export { msExecutiveLevel, msExecutiveLevelAttributes } from './msExecutiveLevel.js';
45
- export { msGuidelines, msGuidelinesAttributes } from './msGuidelines.js';
48
+ export { msExecutivePositionBk, msExecutivePositionBkAttributes } from './msExecutivePositionBk.js';
46
49
  export { msHoliday, msHolidayAttributes } from './msHoliday.js';
50
+ export { msOrganization, msOrganizationAttributes } from './msOrganization.js';
51
+ export { msPosition, msPositionAttributes } from './msPosition.js';
47
52
  export { msProvince, msProvinceAttributes } from './msProvince.js';
53
+ export { msQueueTourFaq, msQueueTourFaqAttributes } from './msQueueTourFaq.js';
54
+ export { msQueueTourGuidelines, msQueueTourGuidelinesAttributes } from './msQueueTourGuidelines.js';
48
55
  export { msTitle, msTitleAttributes } from './msTitle.js';
49
56
  export { msVariable, msVariableAttributes } from './msVariable.js';
50
57
  export { oauthAccessToken, oauthAccessTokenAttributes } from './oauthAccessToken.js';
51
58
  export { oauthRefreshToken, oauthRefreshTokenAttributes } from './oauthRefreshToken.js';
52
59
  export { a as recruitment, r as recruitmentAttributes, c as recruitmentGroup, b as recruitmentGroupAttributes } from '../../recruitment-5Pi7YA8x.js';
53
60
  export { settings, settingsAttributes } from './settings.js';
54
- export { userCenterV, userCenterVAttributes } from './userCenterV.js';
55
- export { userRoleV, userRoleVAttributes } from './userRoleV.js';
61
+ export { userPermissionV, userPermissionVAttributes } from './userPermissionV.js';
56
62
  import 'sequelize-typescript';