@admc-go-th/admc-library 1.0.133 → 1.0.135
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/tables/appQueue.d.ts +1 -1
- package/databases/tables/appQueue.js +9 -2
- package/databases/tables/index.d.ts +1 -1
- package/databases/tables/index.js +9 -2
- package/databases/tables/msConsultChannels.d.ts +1 -1
- package/databases/tables/msConsultChannels.js +9 -2
- package/databases/tables/msWebsite.d.ts +1 -1
- package/databases/tables/msWebsite.js +9 -2
- package/package.json +1 -1
- package/types/enum/status.d.ts +1 -0
- package/types/enum/status.js +1 -0
|
@@ -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",
|
|
@@ -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';
|
|
@@ -903,6 +903,13 @@ __decorateClass([
|
|
|
903
903
|
type: import_sequelize_typescript6.DataType.INTEGER
|
|
904
904
|
})
|
|
905
905
|
], appQueue.prototype, "staffId", 2);
|
|
906
|
+
__decorateClass([
|
|
907
|
+
(0, import_sequelize_typescript6.Column)({
|
|
908
|
+
field: "staff_info",
|
|
909
|
+
allowNull: true,
|
|
910
|
+
type: import_sequelize_typescript6.DataType.JSON
|
|
911
|
+
})
|
|
912
|
+
], appQueue.prototype, "staffInfo", 2);
|
|
906
913
|
__decorateClass([
|
|
907
914
|
(0, import_sequelize_typescript6.Column)({
|
|
908
915
|
field: "staff_channel_id",
|
|
@@ -912,11 +919,11 @@ __decorateClass([
|
|
|
912
919
|
], appQueue.prototype, "staffChannelId", 2);
|
|
913
920
|
__decorateClass([
|
|
914
921
|
(0, import_sequelize_typescript6.Column)({
|
|
915
|
-
field: "
|
|
922
|
+
field: "staff_channel_info",
|
|
916
923
|
allowNull: true,
|
|
917
924
|
type: import_sequelize_typescript6.DataType.JSON
|
|
918
925
|
})
|
|
919
|
-
], appQueue.prototype, "
|
|
926
|
+
], appQueue.prototype, "staffChannelInfo", 2);
|
|
920
927
|
__decorateClass([
|
|
921
928
|
(0, import_sequelize_typescript6.Column)({
|
|
922
929
|
field: "staff_issues",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { c as msConsultChannels, m as msConsultChannelsAttributes } from '../../appQueue-
|
|
2
|
+
export { c as msConsultChannels, m as msConsultChannelsAttributes } from '../../appQueue-BX509KRh.js';
|
|
@@ -407,6 +407,13 @@ __decorateClass([
|
|
|
407
407
|
type: import_sequelize_typescript2.DataType.INTEGER
|
|
408
408
|
})
|
|
409
409
|
], appQueue.prototype, "staffId", 2);
|
|
410
|
+
__decorateClass([
|
|
411
|
+
(0, import_sequelize_typescript2.Column)({
|
|
412
|
+
field: "staff_info",
|
|
413
|
+
allowNull: true,
|
|
414
|
+
type: import_sequelize_typescript2.DataType.JSON
|
|
415
|
+
})
|
|
416
|
+
], appQueue.prototype, "staffInfo", 2);
|
|
410
417
|
__decorateClass([
|
|
411
418
|
(0, import_sequelize_typescript2.Column)({
|
|
412
419
|
field: "staff_channel_id",
|
|
@@ -416,11 +423,11 @@ __decorateClass([
|
|
|
416
423
|
], appQueue.prototype, "staffChannelId", 2);
|
|
417
424
|
__decorateClass([
|
|
418
425
|
(0, import_sequelize_typescript2.Column)({
|
|
419
|
-
field: "
|
|
426
|
+
field: "staff_channel_info",
|
|
420
427
|
allowNull: true,
|
|
421
428
|
type: import_sequelize_typescript2.DataType.JSON
|
|
422
429
|
})
|
|
423
|
-
], appQueue.prototype, "
|
|
430
|
+
], appQueue.prototype, "staffChannelInfo", 2);
|
|
424
431
|
__decorateClass([
|
|
425
432
|
(0, import_sequelize_typescript2.Column)({
|
|
426
433
|
field: "staff_issues",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import 'sequelize-typescript';
|
|
2
|
-
export { e as msWebsite, d as msWebsiteAttributes } from '../../appQueue-
|
|
2
|
+
export { e as msWebsite, d as msWebsiteAttributes } from '../../appQueue-BX509KRh.js';
|
|
@@ -311,6 +311,13 @@ __decorateClass([
|
|
|
311
311
|
type: import_sequelize_typescript2.DataType.INTEGER
|
|
312
312
|
})
|
|
313
313
|
], appQueue.prototype, "staffId", 2);
|
|
314
|
+
__decorateClass([
|
|
315
|
+
(0, import_sequelize_typescript2.Column)({
|
|
316
|
+
field: "staff_info",
|
|
317
|
+
allowNull: true,
|
|
318
|
+
type: import_sequelize_typescript2.DataType.JSON
|
|
319
|
+
})
|
|
320
|
+
], appQueue.prototype, "staffInfo", 2);
|
|
314
321
|
__decorateClass([
|
|
315
322
|
(0, import_sequelize_typescript2.Column)({
|
|
316
323
|
field: "staff_channel_id",
|
|
@@ -320,11 +327,11 @@ __decorateClass([
|
|
|
320
327
|
], appQueue.prototype, "staffChannelId", 2);
|
|
321
328
|
__decorateClass([
|
|
322
329
|
(0, import_sequelize_typescript2.Column)({
|
|
323
|
-
field: "
|
|
330
|
+
field: "staff_channel_info",
|
|
324
331
|
allowNull: true,
|
|
325
332
|
type: import_sequelize_typescript2.DataType.JSON
|
|
326
333
|
})
|
|
327
|
-
], appQueue.prototype, "
|
|
334
|
+
], appQueue.prototype, "staffChannelInfo", 2);
|
|
328
335
|
__decorateClass([
|
|
329
336
|
(0, import_sequelize_typescript2.Column)({
|
|
330
337
|
field: "staff_issues",
|
package/package.json
CHANGED
package/types/enum/status.d.ts
CHANGED
package/types/enum/status.js
CHANGED
|
@@ -26,6 +26,7 @@ module.exports = __toCommonJS(status_exports);
|
|
|
26
26
|
var EStatus = /* @__PURE__ */ ((EStatus2) => {
|
|
27
27
|
EStatus2[EStatus2["ACTIVE"] = 1] = "ACTIVE";
|
|
28
28
|
EStatus2[EStatus2["INACTIVE"] = 2] = "INACTIVE";
|
|
29
|
+
EStatus2[EStatus2["HIDDEN"] = 3] = "HIDDEN";
|
|
29
30
|
EStatus2[EStatus2["REMOVED"] = 9] = "REMOVED";
|
|
30
31
|
return EStatus2;
|
|
31
32
|
})(EStatus || {});
|