@admc-go-th/admc-library 1.0.132 → 1.0.134
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-HW5J6Gb9.d.ts → appQueue-BX509KRh.d.ts} +4 -2
- package/databases/schema/appQueue.ts +11 -3
- package/databases/schema/index.ts +0 -2
- package/databases/schema/msExecutive.ts +0 -5
- package/databases/tables/appQueue.d.ts +1 -1
- package/databases/tables/appQueue.js +9 -2
- package/databases/tables/index.d.ts +2 -4
- package/databases/tables/index.js +433 -702
- package/databases/tables/msConsultChannels.d.ts +1 -1
- package/databases/tables/msConsultChannels.js +9 -2
- package/databases/tables/msExecutive.d.ts +1 -1
- package/databases/tables/msExecutive.js +47 -152
- package/databases/tables/msExecutiveGroup.d.ts +1 -1
- package/databases/tables/msExecutiveGroup.js +77 -184
- package/databases/tables/msExecutivePosition.d.ts +36 -2
- package/databases/tables/msExecutivePosition.js +0 -4
- package/databases/tables/msWebsite.d.ts +1 -1
- package/databases/tables/msWebsite.js +9 -2
- package/{msExecutive-BFeU4P0-.d.ts → msExecutive-Yxx8Wpkj.d.ts} +1 -34
- package/package.json +1 -1
|
@@ -108,8 +108,9 @@ interface appQueueAttributes {
|
|
|
108
108
|
caseSectionOther?: string;
|
|
109
109
|
caseJurisdiction?: number;
|
|
110
110
|
staffId?: number;
|
|
111
|
+
staffInfo?: object;
|
|
111
112
|
staffChannelId?: number;
|
|
112
|
-
|
|
113
|
+
staffChannelInfo?: object;
|
|
113
114
|
staffIssues?: string;
|
|
114
115
|
staffNote?: string;
|
|
115
116
|
createdBy?: string;
|
|
@@ -147,8 +148,9 @@ declare class appQueue extends Model<appQueueAttributes, appQueueAttributes> imp
|
|
|
147
148
|
caseSectionOther?: string;
|
|
148
149
|
caseJurisdiction?: number;
|
|
149
150
|
staffId?: number;
|
|
151
|
+
staffInfo?: object;
|
|
150
152
|
staffChannelId?: number;
|
|
151
|
-
|
|
153
|
+
staffChannelInfo?: object;
|
|
152
154
|
staffIssues?: string;
|
|
153
155
|
staffNote?: string;
|
|
154
156
|
createdBy?: string;
|
|
@@ -34,8 +34,9 @@ export interface appQueueAttributes {
|
|
|
34
34
|
caseSectionOther?: string;
|
|
35
35
|
caseJurisdiction?: number;
|
|
36
36
|
staffId?: number;
|
|
37
|
+
staffInfo?: object;
|
|
37
38
|
staffChannelId?: number;
|
|
38
|
-
|
|
39
|
+
staffChannelInfo?: object;
|
|
39
40
|
staffIssues?: string;
|
|
40
41
|
staffNote?: string;
|
|
41
42
|
createdBy?: string;
|
|
@@ -247,6 +248,13 @@ export class appQueue extends Model<appQueueAttributes, appQueueAttributes> impl
|
|
|
247
248
|
})
|
|
248
249
|
declare staffId?: number;
|
|
249
250
|
|
|
251
|
+
@Column({
|
|
252
|
+
field: "staff_info",
|
|
253
|
+
allowNull: true,
|
|
254
|
+
type: DataType.JSON
|
|
255
|
+
})
|
|
256
|
+
declare staffInfo?: object;
|
|
257
|
+
|
|
250
258
|
@Column({
|
|
251
259
|
field: "staff_channel_id",
|
|
252
260
|
allowNull: true,
|
|
@@ -255,11 +263,11 @@ export class appQueue extends Model<appQueueAttributes, appQueueAttributes> impl
|
|
|
255
263
|
declare staffChannelId?: number;
|
|
256
264
|
|
|
257
265
|
@Column({
|
|
258
|
-
field: "
|
|
266
|
+
field: "staff_channel_info",
|
|
259
267
|
allowNull: true,
|
|
260
268
|
type: DataType.JSON
|
|
261
269
|
})
|
|
262
|
-
declare
|
|
270
|
+
declare staffChannelInfo?: object;
|
|
263
271
|
|
|
264
272
|
@Column({
|
|
265
273
|
field: "staff_issues",
|
|
@@ -62,10 +62,8 @@ export * from "./msConsultSiteIssue";
|
|
|
62
62
|
export * from "./msConsultSiteStaff";
|
|
63
63
|
export * from "./msExecutive";
|
|
64
64
|
export * from "./msExecutiveActing";
|
|
65
|
-
export * from "./msExecutiveBoardBk";
|
|
66
65
|
export * from "./msExecutiveGroup";
|
|
67
66
|
export * from "./msExecutiveLevel";
|
|
68
|
-
export * from "./msExecutivePositionBk";
|
|
69
67
|
export * from "./msHoliday";
|
|
70
68
|
export * from "./msModule";
|
|
71
69
|
export * from "./msOrganization";
|
|
@@ -2,7 +2,6 @@ import {
|
|
|
2
2
|
Model, Table, Column, DataType, Index, Sequelize, ForeignKey, BelongsTo
|
|
3
3
|
} from "sequelize-typescript";
|
|
4
4
|
import { msExecutiveGroup } from "./msExecutiveGroup";
|
|
5
|
-
import { msExecutivePosition } from "./msExecutivePosition";
|
|
6
5
|
|
|
7
6
|
export interface msExecutiveAttributes {
|
|
8
7
|
id?: number;
|
|
@@ -174,7 +173,6 @@ export class msExecutive extends Model<msExecutiveAttributes, msExecutiveAttribu
|
|
|
174
173
|
})
|
|
175
174
|
declare updatedDate?: Date;
|
|
176
175
|
|
|
177
|
-
@ForeignKey(() => msExecutivePosition)
|
|
178
176
|
@Column({
|
|
179
177
|
field: "position_id",
|
|
180
178
|
allowNull: true,
|
|
@@ -185,7 +183,4 @@ export class msExecutive extends Model<msExecutiveAttributes, msExecutiveAttribu
|
|
|
185
183
|
@BelongsTo(() => msExecutiveGroup)
|
|
186
184
|
declare msExecutiveGroup?: msExecutiveGroup;
|
|
187
185
|
|
|
188
|
-
@BelongsTo(() => msExecutivePosition)
|
|
189
|
-
declare msExecutivePosition?: msExecutivePosition;
|
|
190
|
-
|
|
191
186
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { b as appQueue, a as appQueueAttributes } from '../../appQueue-
|
|
2
|
+
export { b as appQueue, a as appQueueAttributes } from '../../appQueue-BX509KRh.js';
|
|
@@ -479,6 +479,13 @@ __decorateClass([
|
|
|
479
479
|
type: import_sequelize_typescript3.DataType.INTEGER
|
|
480
480
|
})
|
|
481
481
|
], appQueue.prototype, "staffId", 2);
|
|
482
|
+
__decorateClass([
|
|
483
|
+
(0, import_sequelize_typescript3.Column)({
|
|
484
|
+
field: "staff_info",
|
|
485
|
+
allowNull: true,
|
|
486
|
+
type: import_sequelize_typescript3.DataType.JSON
|
|
487
|
+
})
|
|
488
|
+
], appQueue.prototype, "staffInfo", 2);
|
|
482
489
|
__decorateClass([
|
|
483
490
|
(0, import_sequelize_typescript3.Column)({
|
|
484
491
|
field: "staff_channel_id",
|
|
@@ -488,11 +495,11 @@ __decorateClass([
|
|
|
488
495
|
], appQueue.prototype, "staffChannelId", 2);
|
|
489
496
|
__decorateClass([
|
|
490
497
|
(0, import_sequelize_typescript3.Column)({
|
|
491
|
-
field: "
|
|
498
|
+
field: "staff_channel_info",
|
|
492
499
|
allowNull: true,
|
|
493
500
|
type: import_sequelize_typescript3.DataType.JSON
|
|
494
501
|
})
|
|
495
|
-
], appQueue.prototype, "
|
|
502
|
+
], appQueue.prototype, "staffChannelInfo", 2);
|
|
496
503
|
__decorateClass([
|
|
497
504
|
(0, import_sequelize_typescript3.Column)({
|
|
498
505
|
field: "staff_issues",
|
|
@@ -1,6 +1,6 @@
|
|
|
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-
|
|
3
|
+
export { b as appQueue, a as appQueueAttributes, c as msConsultChannels, m as msConsultChannelsAttributes, e as msWebsite, d as msWebsiteAttributes } from '../../appQueue-BX509KRh.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';
|
|
@@ -41,11 +41,9 @@ export { msConsultSiteChannel, msConsultSiteChannelAttributes } from './msConsul
|
|
|
41
41
|
export { msConsultSiteHoliday, msConsultSiteHolidayAttributes } from './msConsultSiteHoliday.js';
|
|
42
42
|
export { msConsultSiteIssue, msConsultSiteIssueAttributes } from './msConsultSiteIssue.js';
|
|
43
43
|
export { msConsultSiteStaff, msConsultSiteStaffAttributes } from './msConsultSiteStaff.js';
|
|
44
|
-
export { a as msExecutive, m as msExecutiveAttributes, c as msExecutiveGroup, b as msExecutiveGroupAttributes } from '../../msExecutive-
|
|
44
|
+
export { a as msExecutive, m as msExecutiveAttributes, c as msExecutiveGroup, b as msExecutiveGroupAttributes } from '../../msExecutive-Yxx8Wpkj.js';
|
|
45
45
|
export { msExecutiveActing, msExecutiveActingAttributes } from './msExecutiveActing.js';
|
|
46
|
-
export { msExecutiveBoardBk, msExecutiveBoardBkAttributes } from './msExecutiveBoardBk.js';
|
|
47
46
|
export { msExecutiveLevel, msExecutiveLevelAttributes } from './msExecutiveLevel.js';
|
|
48
|
-
export { msExecutivePositionBk, msExecutivePositionBkAttributes } from './msExecutivePositionBk.js';
|
|
49
47
|
export { msHoliday, msHolidayAttributes } from './msHoliday.js';
|
|
50
48
|
export { msOrganization, msOrganizationAttributes } from './msOrganization.js';
|
|
51
49
|
export { msPosition, msPositionAttributes } from './msPosition.js';
|