@admc-go-th/admc-library 1.0.120 → 1.0.122

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.
Files changed (42) hide show
  1. package/{appBlessings-peNBIrhQ.d.ts → appBlessings-DcXFhNjP.d.ts} +4 -2
  2. package/databases/schema/appBlessings.ts +11 -3
  3. package/databases/schema/appScore.ts +154 -0
  4. package/databases/schema/appScoreData.ts +101 -0
  5. package/databases/schema/appScorePerson.ts +101 -0
  6. package/databases/schema/index.ts +5 -0
  7. package/databases/schema/logsMember.ts +60 -0
  8. package/databases/schema/mdApplication.ts +12 -3
  9. package/databases/schema/mdEgp.ts +114 -0
  10. package/databases/schema/msExecutiveGroup.ts +7 -0
  11. package/databases/schema/msExecutiveLevel.ts +119 -0
  12. package/databases/schema/msHoliday.ts +29 -6
  13. package/databases/tables/appBlessings.d.ts +1 -1
  14. package/databases/tables/appBlessings.js +8 -1
  15. package/databases/tables/appBlessingsTransaction.d.ts +1 -1
  16. package/databases/tables/appBlessingsTransaction.js +8 -1
  17. package/databases/tables/appScore.d.ts +44 -0
  18. package/databases/tables/appScore.js +168 -0
  19. package/databases/tables/appScoreData.d.ts +30 -0
  20. package/databases/tables/appScoreData.js +122 -0
  21. package/databases/tables/appScorePerson.d.ts +30 -0
  22. package/databases/tables/appScorePerson.js +122 -0
  23. package/databases/tables/index.d.ts +7 -2
  24. package/databases/tables/index.js +2632 -2121
  25. package/databases/tables/logsMember.d.ts +20 -0
  26. package/databases/tables/logsMember.js +86 -0
  27. package/databases/tables/mdApplication.d.ts +4 -2
  28. package/databases/tables/mdApplication.js +9 -1
  29. package/databases/tables/mdEgp.d.ts +34 -0
  30. package/databases/tables/mdEgp.js +133 -0
  31. package/databases/tables/msExecutive.d.ts +1 -1
  32. package/databases/tables/msExecutive.js +6 -0
  33. package/databases/tables/msExecutiveGroup.d.ts +1 -1
  34. package/databases/tables/msExecutiveGroup.js +6 -0
  35. package/databases/tables/msExecutiveLevel.d.ts +36 -0
  36. package/databases/tables/msExecutiveLevel.js +137 -0
  37. package/databases/tables/msExecutivePosition.d.ts +1 -1
  38. package/databases/tables/msExecutivePosition.js +6 -0
  39. package/databases/tables/msHoliday.d.ts +10 -4
  40. package/databases/tables/msHoliday.js +23 -3
  41. package/{msExecutive-B7lTHxSZ.d.ts → msExecutive-BFeU4P0-.d.ts} +2 -0
  42. package/package.json +1 -1
@@ -0,0 +1,122 @@
1
+ "use strict";
2
+ var __defProp = Object.defineProperty;
3
+ var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
+ var __getOwnPropNames = Object.getOwnPropertyNames;
5
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
+ var __export = (target, all) => {
7
+ for (var name in all)
8
+ __defProp(target, name, { get: all[name], enumerable: true });
9
+ };
10
+ var __copyProps = (to, from, except, desc) => {
11
+ if (from && typeof from === "object" || typeof from === "function") {
12
+ for (let key of __getOwnPropNames(from))
13
+ if (!__hasOwnProp.call(to, key) && key !== except)
14
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
15
+ }
16
+ return to;
17
+ };
18
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
+ var __decorateClass = (decorators, target, key, kind) => {
20
+ var result = kind > 1 ? void 0 : kind ? __getOwnPropDesc(target, key) : target;
21
+ for (var i = decorators.length - 1, decorator; i >= 0; i--)
22
+ if (decorator = decorators[i])
23
+ result = (kind ? decorator(target, key, result) : decorator(result)) || result;
24
+ if (kind && result) __defProp(target, key, result);
25
+ return result;
26
+ };
27
+
28
+ // src/databases/tables/appScorePerson.ts
29
+ var appScorePerson_exports = {};
30
+ __export(appScorePerson_exports, {
31
+ appScorePerson: () => appScorePerson
32
+ });
33
+ module.exports = __toCommonJS(appScorePerson_exports);
34
+ var import_sequelize_typescript = require("sequelize-typescript");
35
+ var appScorePerson = class extends import_sequelize_typescript.Model {
36
+ };
37
+ __decorateClass([
38
+ (0, import_sequelize_typescript.Column)({
39
+ primaryKey: true,
40
+ autoIncrement: true,
41
+ type: import_sequelize_typescript.DataType.INTEGER
42
+ })
43
+ ], appScorePerson.prototype, "id", 2);
44
+ __decorateClass([
45
+ (0, import_sequelize_typescript.Column)({
46
+ field: "score_id",
47
+ allowNull: true,
48
+ type: import_sequelize_typescript.DataType.INTEGER
49
+ })
50
+ ], appScorePerson.prototype, "scoreId", 2);
51
+ __decorateClass([
52
+ (0, import_sequelize_typescript.Column)({
53
+ field: "person_card_no",
54
+ allowNull: true,
55
+ type: import_sequelize_typescript.DataType.STRING(32)
56
+ })
57
+ ], appScorePerson.prototype, "personCardNo", 2);
58
+ __decorateClass([
59
+ (0, import_sequelize_typescript.Column)({
60
+ field: "person_no",
61
+ allowNull: true,
62
+ type: import_sequelize_typescript.DataType.STRING(20)
63
+ })
64
+ ], appScorePerson.prototype, "personNo", 2);
65
+ __decorateClass([
66
+ (0, import_sequelize_typescript.Column)({
67
+ field: "person_full_name",
68
+ allowNull: true,
69
+ type: import_sequelize_typescript.DataType.STRING(255)
70
+ })
71
+ ], appScorePerson.prototype, "personFullName", 2);
72
+ __decorateClass([
73
+ (0, import_sequelize_typescript.Column)({
74
+ field: "person_organization",
75
+ allowNull: true,
76
+ type: import_sequelize_typescript.DataType.STRING(255)
77
+ })
78
+ ], appScorePerson.prototype, "personOrganization", 2);
79
+ __decorateClass([
80
+ (0, import_sequelize_typescript.Column)({
81
+ allowNull: true,
82
+ type: import_sequelize_typescript.DataType.INTEGER
83
+ })
84
+ ], appScorePerson.prototype, "status", 2);
85
+ __decorateClass([
86
+ (0, import_sequelize_typescript.Column)({
87
+ field: "created_by",
88
+ allowNull: true,
89
+ type: import_sequelize_typescript.DataType.STRING(60)
90
+ })
91
+ ], appScorePerson.prototype, "createdBy", 2);
92
+ __decorateClass([
93
+ (0, import_sequelize_typescript.Column)({
94
+ field: "created_date",
95
+ allowNull: true,
96
+ type: import_sequelize_typescript.DataType.DATE
97
+ })
98
+ ], appScorePerson.prototype, "createdDate", 2);
99
+ __decorateClass([
100
+ (0, import_sequelize_typescript.Column)({
101
+ field: "updated_by",
102
+ allowNull: true,
103
+ type: import_sequelize_typescript.DataType.STRING(60)
104
+ })
105
+ ], appScorePerson.prototype, "updatedBy", 2);
106
+ __decorateClass([
107
+ (0, import_sequelize_typescript.Column)({
108
+ field: "updated_date",
109
+ allowNull: true,
110
+ type: import_sequelize_typescript.DataType.DATE
111
+ })
112
+ ], appScorePerson.prototype, "updatedDate", 2);
113
+ appScorePerson = __decorateClass([
114
+ (0, import_sequelize_typescript.Table)({
115
+ tableName: "app_score_person",
116
+ timestamps: false
117
+ })
118
+ ], appScorePerson);
119
+ // Annotate the CommonJS export names for ESM import in node:
120
+ 0 && (module.exports = {
121
+ appScorePerson
122
+ });
@@ -1,8 +1,11 @@
1
- export { b as appBlessings, a as appBlessingsAttributes, d as appBlessingsTransaction, c as appBlessingsTransactionAttributes } from '../../appBlessings-peNBIrhQ.js';
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
3
  export { appQueue, appQueueAttributes } from './appQueue.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-CWG66n6V.js';
6
+ export { appScore, appScoreAttributes } from './appScore.js';
7
+ export { appScoreData, appScoreDataAttributes } from './appScoreData.js';
8
+ export { appScorePerson, appScorePersonAttributes } from './appScorePerson.js';
6
9
  export { b as authAssignment, a as authAssignmentAttributes, d as authRole, c as authRoleAttributes, f as authRoleChild, e as authRoleChildAttributes, g as mdContent, m as mdContentAttributes, i as mdContentGroup, h as mdContentGroupAttributes, k as mdQuestionnaire, j as mdQuestionnaireAttributes, l as users, u as usersAttributes, o as usersVerify, n as usersVerifyAttributes } from '../../authAssignment-BSZ2AlIE.js';
7
10
  export { b as authItem, a as authItemAttributes, d as authItemChild, c as authItemChildAttributes, e as menu, m as menuAttributes, g as msModule, f as msModuleAttributes } from '../../authItem-DBSkCaSi.js';
8
11
  export { contactUs, contactUsAttributes } from './contactUs.js';
@@ -10,6 +13,7 @@ export { contentGuidelinesTour, contentGuidelinesTourAttributes } from './conten
10
13
  export { a as files, f as filesAttributes, b as mdBanner, m as mdBannerAttributes } from '../../files-Dp2zDQAj.js';
11
14
  export { helper, helperAttributes } from './helper.js';
12
15
  export { logs, logsAttributes } from './logs.js';
16
+ export { logsMember, logsMemberAttributes } from './logsMember.js';
13
17
  export { mdApplication, mdApplicationAttributes } from './mdApplication.js';
14
18
  export { mdCmsSingle, mdCmsSingleAttributes } from './mdCmsSingle.js';
15
19
  export { mdConfiguration, mdConfigurationAttributes } from './mdConfiguration.js';
@@ -28,8 +32,9 @@ export { a as mdTranslate, m as mdTranslateAttributes, c as mdTranslateGroup, b
28
32
  export { mdVideo, mdVideoAttributes } from './mdVideo.js';
29
33
  export { mdWords, mdWordsAttributes } from './mdWords.js';
30
34
  export { member, memberAttributes } from './member.js';
31
- export { a as msExecutive, m as msExecutiveAttributes, c as msExecutiveGroup, b as msExecutiveGroupAttributes, e as msExecutivePosition, d as msExecutivePositionAttributes } from '../../msExecutive-B7lTHxSZ.js';
35
+ export { a as msExecutive, m as msExecutiveAttributes, c as msExecutiveGroup, b as msExecutiveGroupAttributes, e as msExecutivePosition, d as msExecutivePositionAttributes } from '../../msExecutive-BFeU4P0-.js';
32
36
  export { msExecutiveBoard, msExecutiveBoardAttributes } from './msExecutiveBoard.js';
37
+ export { msExecutiveLevel, msExecutiveLevelAttributes } from './msExecutiveLevel.js';
33
38
  export { msGuidelines, msGuidelinesAttributes } from './msGuidelines.js';
34
39
  export { msHoliday, msHolidayAttributes } from './msHoliday.js';
35
40
  export { msProvince, msProvinceAttributes } from './msProvince.js';