@admc-go-th/admc-library 1.0.124 → 1.0.126
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/{appReportCorruption-4BY0wm49.d.ts → appReportCorruption-BsdsQQ1q.d.ts} +2 -0
- package/{authAssignment-BSZ2AlIE.d.ts → authAssignment-Te_XO-S8.d.ts} +28 -1
- package/databases/schema/appQueue.ts +15 -0
- package/databases/schema/appQueueTour.ts +7 -0
- package/databases/schema/appReportCorruption.ts +9 -1
- package/databases/schema/index.ts +5 -0
- package/databases/schema/mdQuestionnaire.ts +7 -1
- package/databases/schema/mdQuestionnaireData.ts +97 -0
- package/databases/schema/msConsultSiteChannel.ts +77 -0
- package/databases/schema/msConsultSiteHoliday.ts +99 -0
- package/databases/schema/msConsultSiteStaff.ts +76 -0
- package/databases/schema/msVariable.ts +68 -0
- package/databases/tables/appQueue.d.ts +4 -0
- package/databases/tables/appQueue.js +13 -0
- package/databases/tables/appQueueTour.d.ts +2 -0
- package/databases/tables/appQueueTour.js +6 -0
- package/databases/tables/appReportCorruption.d.ts +1 -1
- package/databases/tables/appReportCorruption.js +8 -1
- package/databases/tables/appReportCorruptionTransaction.d.ts +1 -1
- package/databases/tables/appReportCorruptionTransaction.js +8 -1
- package/databases/tables/authAssignment.d.ts +1 -1
- package/databases/tables/authAssignment.js +262 -172
- package/databases/tables/authRole.d.ts +1 -1
- package/databases/tables/authRole.js +262 -172
- package/databases/tables/authRoleChild.d.ts +1 -1
- package/databases/tables/authRoleChild.js +262 -172
- package/databases/tables/index.d.ts +6 -2
- package/databases/tables/index.js +2510 -2110
- package/databases/tables/mdContent.d.ts +1 -1
- package/databases/tables/mdContent.js +292 -202
- package/databases/tables/mdContentGroup.d.ts +1 -1
- package/databases/tables/mdContentGroup.js +292 -202
- package/databases/tables/mdQuestionnaire.d.ts +1 -1
- package/databases/tables/mdQuestionnaire.js +129 -41
- package/databases/tables/mdQuestionnaireData.d.ts +2 -0
- package/databases/tables/mdQuestionnaireData.js +992 -0
- package/databases/tables/msConsultSiteChannel.d.ts +24 -0
- package/databases/tables/msConsultSiteChannel.js +101 -0
- package/databases/tables/msConsultSiteHoliday.d.ts +30 -0
- package/databases/tables/msConsultSiteHoliday.js +120 -0
- package/databases/tables/msConsultSiteStaff.d.ts +24 -0
- package/databases/tables/msConsultSiteStaff.js +100 -0
- package/databases/tables/msVariable.d.ts +22 -0
- package/databases/tables/msVariable.js +93 -0
- package/databases/tables/users.d.ts +1 -1
- package/databases/tables/users.js +209 -119
- package/databases/tables/usersVerify.d.ts +1 -1
- package/databases/tables/usersVerify.js +209 -119
- package/package.json +1 -1
|
@@ -47,6 +47,12 @@ __decorateClass([
|
|
|
47
47
|
type: import_sequelize_typescript.DataType.STRING(60)
|
|
48
48
|
})
|
|
49
49
|
], appQueueTour.prototype, "uuid", 2);
|
|
50
|
+
__decorateClass([
|
|
51
|
+
(0, import_sequelize_typescript.Column)({
|
|
52
|
+
allowNull: true,
|
|
53
|
+
type: import_sequelize_typescript.DataType.STRING(15)
|
|
54
|
+
})
|
|
55
|
+
], appQueueTour.prototype, "code", 2);
|
|
50
56
|
__decorateClass([
|
|
51
57
|
(0, import_sequelize_typescript.Column)({
|
|
52
58
|
field: "request_date",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { b as appReportCorruption, a as appReportCorruptionAttributes } from '../../appReportCorruption-
|
|
2
|
+
export { b as appReportCorruption, a as appReportCorruptionAttributes } from '../../appReportCorruption-BsdsQQ1q.js';
|
|
@@ -141,7 +141,7 @@ __decorateClass([
|
|
|
141
141
|
__decorateClass([
|
|
142
142
|
(0, import_sequelize_typescript2.Column)({
|
|
143
143
|
allowNull: true,
|
|
144
|
-
type: import_sequelize_typescript2.DataType.STRING(
|
|
144
|
+
type: import_sequelize_typescript2.DataType.STRING(15)
|
|
145
145
|
})
|
|
146
146
|
], appReportCorruption.prototype, "code", 2);
|
|
147
147
|
__decorateClass([
|
|
@@ -242,6 +242,13 @@ __decorateClass([
|
|
|
242
242
|
type: import_sequelize_typescript2.DataType.DATE
|
|
243
243
|
})
|
|
244
244
|
], appReportCorruption.prototype, "considerationDate", 2);
|
|
245
|
+
__decorateClass([
|
|
246
|
+
(0, import_sequelize_typescript2.Column)({
|
|
247
|
+
field: "extend_date",
|
|
248
|
+
allowNull: true,
|
|
249
|
+
type: import_sequelize_typescript2.DataType.DATE
|
|
250
|
+
})
|
|
251
|
+
], appReportCorruption.prototype, "extendDate", 2);
|
|
245
252
|
__decorateClass([
|
|
246
253
|
(0, import_sequelize_typescript2.Column)({
|
|
247
254
|
allowNull: true,
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { d as appReportCorruptionTransaction, c as appReportCorruptionTransactionAttributes } from '../../appReportCorruption-
|
|
2
|
+
export { d as appReportCorruptionTransaction, c as appReportCorruptionTransactionAttributes } from '../../appReportCorruption-BsdsQQ1q.js';
|
|
@@ -53,7 +53,7 @@ __decorateClass([
|
|
|
53
53
|
__decorateClass([
|
|
54
54
|
(0, import_sequelize_typescript.Column)({
|
|
55
55
|
allowNull: true,
|
|
56
|
-
type: import_sequelize_typescript.DataType.STRING(
|
|
56
|
+
type: import_sequelize_typescript.DataType.STRING(15)
|
|
57
57
|
})
|
|
58
58
|
], appReportCorruption.prototype, "code", 2);
|
|
59
59
|
__decorateClass([
|
|
@@ -154,6 +154,13 @@ __decorateClass([
|
|
|
154
154
|
type: import_sequelize_typescript.DataType.DATE
|
|
155
155
|
})
|
|
156
156
|
], appReportCorruption.prototype, "considerationDate", 2);
|
|
157
|
+
__decorateClass([
|
|
158
|
+
(0, import_sequelize_typescript.Column)({
|
|
159
|
+
field: "extend_date",
|
|
160
|
+
allowNull: true,
|
|
161
|
+
type: import_sequelize_typescript.DataType.DATE
|
|
162
|
+
})
|
|
163
|
+
], appReportCorruption.prototype, "extendDate", 2);
|
|
157
164
|
__decorateClass([
|
|
158
165
|
(0, import_sequelize_typescript.Column)({
|
|
159
166
|
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-Te_XO-S8.js';
|