@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.
- package/{appQueue-QJ9ECucz.d.ts → appQueue-HW5J6Gb9.d.ts} +6 -2
- package/{authAssignment-BAUCoEP6.d.ts → authAssignment-De3034JH.d.ts} +16 -0
- package/databases/schema/appQueue.ts +24 -8
- package/databases/schema/appScore.ts +8 -0
- package/databases/schema/formFaq.ts +126 -126
- package/databases/schema/index.ts +10 -5
- package/databases/schema/informationIndex.ts +211 -211
- package/databases/schema/informationIndexGroup.ts +103 -103
- package/databases/schema/mdDownloadBk.ts +136 -136
- package/databases/schema/msConsultCase.ts +0 -8
- package/databases/schema/msConsultSiteCase.ts +91 -0
- package/databases/schema/msConsultSiteIssue.ts +84 -0
- package/databases/schema/msExecutiveActing.ts +75 -0
- package/databases/schema/msExecutiveBoard.ts +82 -82
- package/databases/schema/msExecutiveBoardBk.ts +83 -0
- package/databases/schema/msExecutivePosition.ts +117 -117
- package/databases/schema/msExecutivePositionBk.ts +112 -0
- package/databases/schema/msGuidelines.ts +88 -88
- package/databases/schema/msOrganization.ts +139 -0
- package/databases/schema/msPosition.ts +76 -0
- package/databases/schema/msQueueTourFaq.ts +90 -0
- package/databases/schema/msQueueTourGuidelines.ts +90 -0
- package/databases/schema/setting.ts +73 -73
- package/databases/schema/userPermissionV.ts +78 -0
- package/databases/schema/users.ts +62 -0
- package/databases/tables/appQueue.d.ts +1 -1
- package/databases/tables/appQueue.js +21 -7
- package/databases/tables/appScore.d.ts +2 -0
- package/databases/tables/appScore.js +7 -0
- package/databases/tables/authAssignment.d.ts +1 -1
- package/databases/tables/authAssignment.js +54 -0
- package/databases/tables/authRole.d.ts +1 -1
- package/databases/tables/authRole.js +54 -0
- package/databases/tables/authRoleChild.d.ts +1 -1
- package/databases/tables/authRoleChild.js +54 -0
- package/databases/tables/index.d.ts +13 -7
- package/databases/tables/index.js +1236 -708
- package/databases/tables/mdContent.d.ts +1 -1
- package/databases/tables/mdContent.js +54 -0
- package/databases/tables/mdContentGroup.d.ts +1 -1
- package/databases/tables/mdContentGroup.js +54 -0
- package/databases/tables/mdQuestionnaire.d.ts +1 -1
- package/databases/tables/mdQuestionnaire.js +54 -0
- package/databases/tables/mdQuestionnaireData.d.ts +1 -1
- package/databases/tables/mdQuestionnaireData.js +54 -0
- package/databases/tables/msConsultCase.d.ts +0 -2
- package/databases/tables/msConsultCase.js +0 -7
- package/databases/tables/msConsultChannels.d.ts +1 -1
- package/databases/tables/msConsultChannels.js +21 -7
- package/databases/tables/msConsultSiteCase.d.ts +28 -0
- package/databases/tables/msConsultSiteCase.js +113 -0
- package/databases/tables/msConsultSiteIssue.d.ts +26 -0
- package/databases/tables/msConsultSiteIssue.js +107 -0
- package/databases/tables/msExecutiveActing.d.ts +24 -0
- package/databases/tables/msExecutiveActing.js +99 -0
- package/databases/tables/msExecutiveBoardBk.d.ts +26 -0
- package/databases/tables/msExecutiveBoardBk.js +106 -0
- package/databases/tables/msExecutivePositionBk.d.ts +34 -0
- package/databases/tables/msExecutivePositionBk.js +131 -0
- package/databases/tables/msOrganization.d.ts +40 -0
- package/databases/tables/msOrganization.js +155 -0
- package/databases/tables/msPosition.d.ts +24 -0
- package/databases/tables/msPosition.js +100 -0
- package/databases/tables/msQueueTourFaq.d.ts +28 -0
- package/databases/tables/msQueueTourFaq.js +112 -0
- package/databases/tables/msQueueTourGuidelines.d.ts +28 -0
- package/databases/tables/msQueueTourGuidelines.js +112 -0
- package/databases/tables/msWebsite.d.ts +1 -1
- package/databases/tables/msWebsite.js +21 -7
- package/databases/tables/userPermissionV.d.ts +26 -0
- package/databases/tables/userPermissionV.js +101 -0
- package/databases/tables/users.d.ts +1 -1
- package/databases/tables/users.js +54 -0
- package/databases/tables/usersVerify.d.ts +1 -1
- package/databases/tables/usersVerify.js +54 -0
- package/package.json +1 -1
|
@@ -825,6 +825,13 @@ __decorateClass([
|
|
|
825
825
|
type: import_sequelize_typescript8.DataType.STRING(10)
|
|
826
826
|
})
|
|
827
827
|
], users.prototype, "prefix", 2);
|
|
828
|
+
__decorateClass([
|
|
829
|
+
(0, import_sequelize_typescript8.Column)({
|
|
830
|
+
field: "prefix_id",
|
|
831
|
+
allowNull: true,
|
|
832
|
+
type: import_sequelize_typescript8.DataType.INTEGER
|
|
833
|
+
})
|
|
834
|
+
], users.prototype, "prefixId", 2);
|
|
828
835
|
__decorateClass([
|
|
829
836
|
(0, import_sequelize_typescript8.Column)({
|
|
830
837
|
field: "first_name",
|
|
@@ -839,12 +846,59 @@ __decorateClass([
|
|
|
839
846
|
type: import_sequelize_typescript8.DataType.STRING(100)
|
|
840
847
|
})
|
|
841
848
|
], users.prototype, "lastName", 2);
|
|
849
|
+
__decorateClass([
|
|
850
|
+
(0, import_sequelize_typescript8.Column)({
|
|
851
|
+
field: "first_name_en",
|
|
852
|
+
allowNull: true,
|
|
853
|
+
type: import_sequelize_typescript8.DataType.STRING(100)
|
|
854
|
+
})
|
|
855
|
+
], users.prototype, "firstNameEn", 2);
|
|
856
|
+
__decorateClass([
|
|
857
|
+
(0, import_sequelize_typescript8.Column)({
|
|
858
|
+
field: "last_name_en",
|
|
859
|
+
allowNull: true,
|
|
860
|
+
type: import_sequelize_typescript8.DataType.STRING(100)
|
|
861
|
+
})
|
|
862
|
+
], users.prototype, "lastNameEn", 2);
|
|
842
863
|
__decorateClass([
|
|
843
864
|
(0, import_sequelize_typescript8.Column)({
|
|
844
865
|
allowNull: true,
|
|
845
866
|
type: import_sequelize_typescript8.DataType.STRING(20)
|
|
846
867
|
})
|
|
847
868
|
], users.prototype, "phone", 2);
|
|
869
|
+
__decorateClass([
|
|
870
|
+
(0, import_sequelize_typescript8.Column)({
|
|
871
|
+
field: "organization_id",
|
|
872
|
+
allowNull: true,
|
|
873
|
+
type: import_sequelize_typescript8.DataType.INTEGER
|
|
874
|
+
})
|
|
875
|
+
], users.prototype, "organizationId", 2);
|
|
876
|
+
__decorateClass([
|
|
877
|
+
(0, import_sequelize_typescript8.Column)({
|
|
878
|
+
allowNull: true,
|
|
879
|
+
type: import_sequelize_typescript8.DataType.STRING(255)
|
|
880
|
+
})
|
|
881
|
+
], users.prototype, "occupation", 2);
|
|
882
|
+
__decorateClass([
|
|
883
|
+
(0, import_sequelize_typescript8.Column)({
|
|
884
|
+
allowNull: true,
|
|
885
|
+
type: import_sequelize_typescript8.DataType.STRING(255)
|
|
886
|
+
})
|
|
887
|
+
], users.prototype, "position", 2);
|
|
888
|
+
__decorateClass([
|
|
889
|
+
(0, import_sequelize_typescript8.Column)({
|
|
890
|
+
field: "position_id",
|
|
891
|
+
allowNull: true,
|
|
892
|
+
type: import_sequelize_typescript8.DataType.INTEGER
|
|
893
|
+
})
|
|
894
|
+
], users.prototype, "positionId", 2);
|
|
895
|
+
__decorateClass([
|
|
896
|
+
(0, import_sequelize_typescript8.Column)({
|
|
897
|
+
field: "gender_code",
|
|
898
|
+
allowNull: true,
|
|
899
|
+
type: import_sequelize_typescript8.DataType.STRING(1)
|
|
900
|
+
})
|
|
901
|
+
], users.prototype, "genderCode", 2);
|
|
848
902
|
__decorateClass([
|
|
849
903
|
(0, import_sequelize_typescript8.Column)({
|
|
850
904
|
allowNull: true,
|