@admc-go-th/admc-library 1.0.123 → 1.0.125
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-CWG66n6V.d.ts → appReportCorruption-BsdsQQ1q.d.ts} +8 -0
- package/databases/schema/appFaq.ts +31 -0
- package/databases/schema/appQueue.ts +15 -0
- package/databases/schema/appQueueTour.ts +7 -0
- package/databases/schema/appReportCorruption.ts +17 -1
- package/databases/schema/appReportCorruptionTransaction.ts +16 -0
- package/databases/schema/index.ts +9 -0
- package/databases/schema/mdEgp.ts +113 -113
- package/databases/schema/msConsultCase.ts +83 -0
- package/databases/schema/msConsultChannels.ts +75 -0
- package/databases/schema/msConsultInstructions.ts +82 -0
- package/databases/schema/msConsultService.ts +108 -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/appFaq.d.ts +8 -0
- package/databases/tables/appFaq.js +27 -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 +29 -1
- package/databases/tables/appReportCorruptionTransaction.d.ts +1 -1
- package/databases/tables/appReportCorruptionTransaction.js +29 -1
- package/databases/tables/index.d.ts +10 -1
- package/databases/tables/index.js +2023 -1261
- package/databases/tables/msConsultCase.d.ts +26 -0
- package/databases/tables/msConsultCase.js +106 -0
- package/databases/tables/msConsultChannels.d.ts +24 -0
- package/databases/tables/msConsultChannels.js +99 -0
- package/databases/tables/msConsultInstructions.d.ts +26 -0
- package/databases/tables/msConsultInstructions.js +105 -0
- package/databases/tables/msConsultService.d.ts +32 -0
- package/databases/tables/msConsultService.js +128 -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/package.json +1 -1
|
@@ -64,6 +64,20 @@ __decorateClass([
|
|
|
64
64
|
type: import_sequelize_typescript.DataType.STRING
|
|
65
65
|
})
|
|
66
66
|
], appReportCorruptionTransaction.prototype, "note", 2);
|
|
67
|
+
__decorateClass([
|
|
68
|
+
(0, import_sequelize_typescript.Column)({
|
|
69
|
+
field: "action_date",
|
|
70
|
+
allowNull: true,
|
|
71
|
+
type: import_sequelize_typescript.DataType.DATE
|
|
72
|
+
})
|
|
73
|
+
], appReportCorruptionTransaction.prototype, "actionDate", 2);
|
|
74
|
+
__decorateClass([
|
|
75
|
+
(0, import_sequelize_typescript.Column)({
|
|
76
|
+
field: "send_date",
|
|
77
|
+
allowNull: true,
|
|
78
|
+
type: import_sequelize_typescript.DataType.DATE
|
|
79
|
+
})
|
|
80
|
+
], appReportCorruptionTransaction.prototype, "sendDate", 2);
|
|
67
81
|
__decorateClass([
|
|
68
82
|
(0, import_sequelize_typescript.Column)({
|
|
69
83
|
allowNull: true,
|
|
@@ -127,7 +141,7 @@ __decorateClass([
|
|
|
127
141
|
__decorateClass([
|
|
128
142
|
(0, import_sequelize_typescript2.Column)({
|
|
129
143
|
allowNull: true,
|
|
130
|
-
type: import_sequelize_typescript2.DataType.STRING(
|
|
144
|
+
type: import_sequelize_typescript2.DataType.STRING(15)
|
|
131
145
|
})
|
|
132
146
|
], appReportCorruption.prototype, "code", 2);
|
|
133
147
|
__decorateClass([
|
|
@@ -221,6 +235,20 @@ __decorateClass([
|
|
|
221
235
|
type: import_sequelize_typescript2.DataType.STRING(30)
|
|
222
236
|
})
|
|
223
237
|
], appReportCorruption.prototype, "ipAddress", 2);
|
|
238
|
+
__decorateClass([
|
|
239
|
+
(0, import_sequelize_typescript2.Column)({
|
|
240
|
+
field: "consideration_date",
|
|
241
|
+
allowNull: true,
|
|
242
|
+
type: import_sequelize_typescript2.DataType.DATE
|
|
243
|
+
})
|
|
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);
|
|
224
252
|
__decorateClass([
|
|
225
253
|
(0, import_sequelize_typescript2.Column)({
|
|
226
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([
|
|
@@ -147,6 +147,20 @@ __decorateClass([
|
|
|
147
147
|
type: import_sequelize_typescript.DataType.STRING(30)
|
|
148
148
|
})
|
|
149
149
|
], appReportCorruption.prototype, "ipAddress", 2);
|
|
150
|
+
__decorateClass([
|
|
151
|
+
(0, import_sequelize_typescript.Column)({
|
|
152
|
+
field: "consideration_date",
|
|
153
|
+
allowNull: true,
|
|
154
|
+
type: import_sequelize_typescript.DataType.DATE
|
|
155
|
+
})
|
|
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);
|
|
150
164
|
__decorateClass([
|
|
151
165
|
(0, import_sequelize_typescript.Column)({
|
|
152
166
|
allowNull: true,
|
|
@@ -223,6 +237,20 @@ __decorateClass([
|
|
|
223
237
|
type: import_sequelize_typescript2.DataType.STRING
|
|
224
238
|
})
|
|
225
239
|
], appReportCorruptionTransaction.prototype, "note", 2);
|
|
240
|
+
__decorateClass([
|
|
241
|
+
(0, import_sequelize_typescript2.Column)({
|
|
242
|
+
field: "action_date",
|
|
243
|
+
allowNull: true,
|
|
244
|
+
type: import_sequelize_typescript2.DataType.DATE
|
|
245
|
+
})
|
|
246
|
+
], appReportCorruptionTransaction.prototype, "actionDate", 2);
|
|
247
|
+
__decorateClass([
|
|
248
|
+
(0, import_sequelize_typescript2.Column)({
|
|
249
|
+
field: "send_date",
|
|
250
|
+
allowNull: true,
|
|
251
|
+
type: import_sequelize_typescript2.DataType.DATE
|
|
252
|
+
})
|
|
253
|
+
], appReportCorruptionTransaction.prototype, "sendDate", 2);
|
|
226
254
|
__decorateClass([
|
|
227
255
|
(0, import_sequelize_typescript2.Column)({
|
|
228
256
|
allowNull: true,
|
|
@@ -2,7 +2,7 @@ export { b as appBlessings, a as appBlessingsAttributes, d as appBlessingsTransa
|
|
|
2
2
|
export { appFaq, appFaqAttributes } from './appFaq.js';
|
|
3
3
|
export { appQueue, appQueueAttributes } from './appQueue.js';
|
|
4
4
|
export { appQueueTour, appQueueTourAttributes } from './appQueueTour.js';
|
|
5
|
-
export { b as appReportCorruption, a as appReportCorruptionAttributes, d as appReportCorruptionTransaction, c as appReportCorruptionTransactionAttributes } from '../../appReportCorruption-
|
|
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';
|
|
@@ -20,6 +20,7 @@ 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
22
|
export { a as mdEbook, m as mdEbookAttributes, c as mdEbookGroup, b as mdEbookGroupAttributes } from '../../mdEbook-BqC65Ujw.js';
|
|
23
|
+
export { mdEgp, mdEgpAttributes } from './mdEgp.js';
|
|
23
24
|
export { a as mdFaq, m as mdFaqAttributes, c as mdFaqGroup, b as mdFaqGroupAttributes } from '../../mdFaq-CHIPG3yZ.js';
|
|
24
25
|
export { mdFormAdvance_1, mdFormAdvance_1Attributes } from './mdFormAdvance_1.js';
|
|
25
26
|
export { mdFormAdvance_2, mdFormAdvance_2Attributes } from './mdFormAdvance_2.js';
|
|
@@ -32,6 +33,13 @@ export { a as mdTranslate, m as mdTranslateAttributes, c as mdTranslateGroup, b
|
|
|
32
33
|
export { mdVideo, mdVideoAttributes } from './mdVideo.js';
|
|
33
34
|
export { mdWords, mdWordsAttributes } from './mdWords.js';
|
|
34
35
|
export { member, memberAttributes } from './member.js';
|
|
36
|
+
export { msConsultCase, msConsultCaseAttributes } from './msConsultCase.js';
|
|
37
|
+
export { msConsultChannels, msConsultChannelsAttributes } from './msConsultChannels.js';
|
|
38
|
+
export { msConsultInstructions, msConsultInstructionsAttributes } from './msConsultInstructions.js';
|
|
39
|
+
export { msConsultService, msConsultServiceAttributes } from './msConsultService.js';
|
|
40
|
+
export { msConsultSiteChannel, msConsultSiteChannelAttributes } from './msConsultSiteChannel.js';
|
|
41
|
+
export { msConsultSiteHoliday, msConsultSiteHolidayAttributes } from './msConsultSiteHoliday.js';
|
|
42
|
+
export { msConsultSiteStaff, msConsultSiteStaffAttributes } from './msConsultSiteStaff.js';
|
|
35
43
|
export { a as msExecutive, m as msExecutiveAttributes, c as msExecutiveGroup, b as msExecutiveGroupAttributes, e as msExecutivePosition, d as msExecutivePositionAttributes } from '../../msExecutive-BFeU4P0-.js';
|
|
36
44
|
export { msExecutiveBoard, msExecutiveBoardAttributes } from './msExecutiveBoard.js';
|
|
37
45
|
export { msExecutiveLevel, msExecutiveLevelAttributes } from './msExecutiveLevel.js';
|
|
@@ -39,6 +47,7 @@ export { msGuidelines, msGuidelinesAttributes } from './msGuidelines.js';
|
|
|
39
47
|
export { msHoliday, msHolidayAttributes } from './msHoliday.js';
|
|
40
48
|
export { msProvince, msProvinceAttributes } from './msProvince.js';
|
|
41
49
|
export { msTitle, msTitleAttributes } from './msTitle.js';
|
|
50
|
+
export { msVariable, msVariableAttributes } from './msVariable.js';
|
|
42
51
|
export { msWebsite, msWebsiteAttributes } from './msWebsite.js';
|
|
43
52
|
export { oauthAccessToken, oauthAccessTokenAttributes } from './oauthAccessToken.js';
|
|
44
53
|
export { oauthRefreshToken, oauthRefreshTokenAttributes } from './oauthRefreshToken.js';
|