@admc-go-th/admc-library 1.0.121 → 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 (39) 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 +4 -0
  7. package/databases/schema/logsMember.ts +60 -0
  8. package/databases/schema/mdApplication.ts +8 -0
  9. package/databases/schema/mdEgp.ts +114 -0
  10. package/databases/schema/msExecutiveGroup.ts +7 -0
  11. package/databases/schema/msHoliday.ts +29 -6
  12. package/databases/tables/appBlessings.d.ts +1 -1
  13. package/databases/tables/appBlessings.js +8 -1
  14. package/databases/tables/appBlessingsTransaction.d.ts +1 -1
  15. package/databases/tables/appBlessingsTransaction.js +8 -1
  16. package/databases/tables/appScore.d.ts +44 -0
  17. package/databases/tables/appScore.js +168 -0
  18. package/databases/tables/appScoreData.d.ts +30 -0
  19. package/databases/tables/appScoreData.js +122 -0
  20. package/databases/tables/appScorePerson.d.ts +30 -0
  21. package/databases/tables/appScorePerson.js +122 -0
  22. package/databases/tables/index.d.ts +6 -2
  23. package/databases/tables/index.js +2556 -2150
  24. package/databases/tables/logsMember.d.ts +20 -0
  25. package/databases/tables/logsMember.js +86 -0
  26. package/databases/tables/mdApplication.d.ts +2 -0
  27. package/databases/tables/mdApplication.js +7 -0
  28. package/databases/tables/mdEgp.d.ts +34 -0
  29. package/databases/tables/mdEgp.js +133 -0
  30. package/databases/tables/msExecutive.d.ts +1 -1
  31. package/databases/tables/msExecutive.js +6 -0
  32. package/databases/tables/msExecutiveGroup.d.ts +1 -1
  33. package/databases/tables/msExecutiveGroup.js +6 -0
  34. package/databases/tables/msExecutivePosition.d.ts +1 -1
  35. package/databases/tables/msExecutivePosition.js +6 -0
  36. package/databases/tables/msHoliday.d.ts +10 -4
  37. package/databases/tables/msHoliday.js +23 -3
  38. package/{msExecutive-B7lTHxSZ.d.ts → msExecutive-BFeU4P0-.d.ts} +2 -0
  39. package/package.json +1 -1
@@ -146,9 +146,16 @@ __decorateClass([
146
146
  __decorateClass([
147
147
  (0, import_sequelize_typescript2.Column)({
148
148
  allowNull: true,
149
- type: import_sequelize_typescript2.DataType.STRING
149
+ type: import_sequelize_typescript2.DataType.JSON
150
150
  })
151
151
  ], appBlessings.prototype, "words", 2);
152
+ __decorateClass([
153
+ (0, import_sequelize_typescript2.Column)({
154
+ field: "image_cover",
155
+ allowNull: true,
156
+ type: import_sequelize_typescript2.DataType.STRING(60)
157
+ })
158
+ ], appBlessings.prototype, "imageCover", 2);
152
159
  __decorateClass([
153
160
  (0, import_sequelize_typescript2.Column)({
154
161
  allowNull: true,
@@ -1,2 +1,2 @@
1
1
  import 'sequelize-typescript';
2
- export { d as appBlessingsTransaction, c as appBlessingsTransactionAttributes } from '../../appBlessings-peNBIrhQ.js';
2
+ export { d as appBlessingsTransaction, c as appBlessingsTransactionAttributes } from '../../appBlessings-DcXFhNjP.js';
@@ -65,9 +65,16 @@ __decorateClass([
65
65
  __decorateClass([
66
66
  (0, import_sequelize_typescript.Column)({
67
67
  allowNull: true,
68
- type: import_sequelize_typescript.DataType.STRING
68
+ type: import_sequelize_typescript.DataType.JSON
69
69
  })
70
70
  ], appBlessings.prototype, "words", 2);
71
+ __decorateClass([
72
+ (0, import_sequelize_typescript.Column)({
73
+ field: "image_cover",
74
+ allowNull: true,
75
+ type: import_sequelize_typescript.DataType.STRING(60)
76
+ })
77
+ ], appBlessings.prototype, "imageCover", 2);
71
78
  __decorateClass([
72
79
  (0, import_sequelize_typescript.Column)({
73
80
  allowNull: true,
@@ -0,0 +1,44 @@
1
+ import { Model } from 'sequelize-typescript';
2
+
3
+ interface appScoreAttributes {
4
+ id?: number;
5
+ typeId?: number;
6
+ name?: string;
7
+ description?: string;
8
+ loginLabel?: string;
9
+ topicInfo?: object;
10
+ labelInfo?: object;
11
+ note?: string;
12
+ scoreInfo?: object;
13
+ signInfo?: object;
14
+ startDate?: Date;
15
+ endDate?: Date;
16
+ status?: number;
17
+ apiInfo?: object;
18
+ createdBy?: string;
19
+ createdDate?: Date;
20
+ updatedBy?: string;
21
+ updatedDate?: Date;
22
+ }
23
+ declare class appScore extends Model<appScoreAttributes, appScoreAttributes> implements appScoreAttributes {
24
+ id?: number;
25
+ typeId?: number;
26
+ name?: string;
27
+ description?: string;
28
+ loginLabel?: string;
29
+ topicInfo?: object;
30
+ labelInfo?: object;
31
+ note?: string;
32
+ scoreInfo?: object;
33
+ signInfo?: object;
34
+ startDate?: Date;
35
+ endDate?: Date;
36
+ status?: number;
37
+ apiInfo?: object;
38
+ createdBy?: string;
39
+ createdDate?: Date;
40
+ updatedBy?: string;
41
+ updatedDate?: Date;
42
+ }
43
+
44
+ export { appScore, type appScoreAttributes };
@@ -0,0 +1,168 @@
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/appScore.ts
29
+ var appScore_exports = {};
30
+ __export(appScore_exports, {
31
+ appScore: () => appScore
32
+ });
33
+ module.exports = __toCommonJS(appScore_exports);
34
+ var import_sequelize_typescript = require("sequelize-typescript");
35
+ var appScore = 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
+ ], appScore.prototype, "id", 2);
44
+ __decorateClass([
45
+ (0, import_sequelize_typescript.Column)({
46
+ field: "type_id",
47
+ allowNull: true,
48
+ type: import_sequelize_typescript.DataType.INTEGER
49
+ })
50
+ ], appScore.prototype, "typeId", 2);
51
+ __decorateClass([
52
+ (0, import_sequelize_typescript.Column)({
53
+ allowNull: true,
54
+ type: import_sequelize_typescript.DataType.STRING(255)
55
+ })
56
+ ], appScore.prototype, "name", 2);
57
+ __decorateClass([
58
+ (0, import_sequelize_typescript.Column)({
59
+ allowNull: true,
60
+ type: import_sequelize_typescript.DataType.STRING(255)
61
+ })
62
+ ], appScore.prototype, "description", 2);
63
+ __decorateClass([
64
+ (0, import_sequelize_typescript.Column)({
65
+ field: "login_label",
66
+ allowNull: true,
67
+ type: import_sequelize_typescript.DataType.STRING(255)
68
+ })
69
+ ], appScore.prototype, "loginLabel", 2);
70
+ __decorateClass([
71
+ (0, import_sequelize_typescript.Column)({
72
+ field: "topic_info",
73
+ allowNull: true,
74
+ type: import_sequelize_typescript.DataType.JSON
75
+ })
76
+ ], appScore.prototype, "topicInfo", 2);
77
+ __decorateClass([
78
+ (0, import_sequelize_typescript.Column)({
79
+ field: "label_info",
80
+ allowNull: true,
81
+ type: import_sequelize_typescript.DataType.JSON
82
+ })
83
+ ], appScore.prototype, "labelInfo", 2);
84
+ __decorateClass([
85
+ (0, import_sequelize_typescript.Column)({
86
+ allowNull: true,
87
+ type: import_sequelize_typescript.DataType.STRING
88
+ })
89
+ ], appScore.prototype, "note", 2);
90
+ __decorateClass([
91
+ (0, import_sequelize_typescript.Column)({
92
+ field: "score_info",
93
+ allowNull: true,
94
+ type: import_sequelize_typescript.DataType.JSON
95
+ })
96
+ ], appScore.prototype, "scoreInfo", 2);
97
+ __decorateClass([
98
+ (0, import_sequelize_typescript.Column)({
99
+ field: "sign_info",
100
+ allowNull: true,
101
+ type: import_sequelize_typescript.DataType.JSON
102
+ })
103
+ ], appScore.prototype, "signInfo", 2);
104
+ __decorateClass([
105
+ (0, import_sequelize_typescript.Column)({
106
+ field: "start_date",
107
+ allowNull: true,
108
+ type: import_sequelize_typescript.DataType.DATE
109
+ })
110
+ ], appScore.prototype, "startDate", 2);
111
+ __decorateClass([
112
+ (0, import_sequelize_typescript.Column)({
113
+ field: "end_date",
114
+ allowNull: true,
115
+ type: import_sequelize_typescript.DataType.DATE
116
+ })
117
+ ], appScore.prototype, "endDate", 2);
118
+ __decorateClass([
119
+ (0, import_sequelize_typescript.Column)({
120
+ allowNull: true,
121
+ type: import_sequelize_typescript.DataType.INTEGER
122
+ })
123
+ ], appScore.prototype, "status", 2);
124
+ __decorateClass([
125
+ (0, import_sequelize_typescript.Column)({
126
+ field: "api_info",
127
+ allowNull: true,
128
+ type: import_sequelize_typescript.DataType.JSON
129
+ })
130
+ ], appScore.prototype, "apiInfo", 2);
131
+ __decorateClass([
132
+ (0, import_sequelize_typescript.Column)({
133
+ field: "created_by",
134
+ allowNull: true,
135
+ type: import_sequelize_typescript.DataType.STRING(60)
136
+ })
137
+ ], appScore.prototype, "createdBy", 2);
138
+ __decorateClass([
139
+ (0, import_sequelize_typescript.Column)({
140
+ field: "created_date",
141
+ allowNull: true,
142
+ type: import_sequelize_typescript.DataType.DATE
143
+ })
144
+ ], appScore.prototype, "createdDate", 2);
145
+ __decorateClass([
146
+ (0, import_sequelize_typescript.Column)({
147
+ field: "updated_by",
148
+ allowNull: true,
149
+ type: import_sequelize_typescript.DataType.STRING(60)
150
+ })
151
+ ], appScore.prototype, "updatedBy", 2);
152
+ __decorateClass([
153
+ (0, import_sequelize_typescript.Column)({
154
+ field: "updated_date",
155
+ allowNull: true,
156
+ type: import_sequelize_typescript.DataType.DATE
157
+ })
158
+ ], appScore.prototype, "updatedDate", 2);
159
+ appScore = __decorateClass([
160
+ (0, import_sequelize_typescript.Table)({
161
+ tableName: "app_score",
162
+ timestamps: false
163
+ })
164
+ ], appScore);
165
+ // Annotate the CommonJS export names for ESM import in node:
166
+ 0 && (module.exports = {
167
+ appScore
168
+ });
@@ -0,0 +1,30 @@
1
+ import { Model } from 'sequelize-typescript';
2
+
3
+ interface appScoreDataAttributes {
4
+ id?: number;
5
+ scoreId?: number;
6
+ personId?: number;
7
+ personNo?: string;
8
+ dataInfo?: object;
9
+ scoreInfo?: object;
10
+ status?: number;
11
+ createdBy?: string;
12
+ createdDate?: Date;
13
+ updatedBy?: string;
14
+ updatedDate?: Date;
15
+ }
16
+ declare class appScoreData extends Model<appScoreDataAttributes, appScoreDataAttributes> implements appScoreDataAttributes {
17
+ id?: number;
18
+ scoreId?: number;
19
+ personId?: number;
20
+ personNo?: string;
21
+ dataInfo?: object;
22
+ scoreInfo?: object;
23
+ status?: number;
24
+ createdBy?: string;
25
+ createdDate?: Date;
26
+ updatedBy?: string;
27
+ updatedDate?: Date;
28
+ }
29
+
30
+ export { appScoreData, type appScoreDataAttributes };
@@ -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/appScoreData.ts
29
+ var appScoreData_exports = {};
30
+ __export(appScoreData_exports, {
31
+ appScoreData: () => appScoreData
32
+ });
33
+ module.exports = __toCommonJS(appScoreData_exports);
34
+ var import_sequelize_typescript = require("sequelize-typescript");
35
+ var appScoreData = 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
+ ], appScoreData.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
+ ], appScoreData.prototype, "scoreId", 2);
51
+ __decorateClass([
52
+ (0, import_sequelize_typescript.Column)({
53
+ field: "person_id",
54
+ allowNull: true,
55
+ type: import_sequelize_typescript.DataType.INTEGER
56
+ })
57
+ ], appScoreData.prototype, "personId", 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
+ ], appScoreData.prototype, "personNo", 2);
65
+ __decorateClass([
66
+ (0, import_sequelize_typescript.Column)({
67
+ field: "data_info",
68
+ allowNull: true,
69
+ type: import_sequelize_typescript.DataType.JSON
70
+ })
71
+ ], appScoreData.prototype, "dataInfo", 2);
72
+ __decorateClass([
73
+ (0, import_sequelize_typescript.Column)({
74
+ field: "score_info",
75
+ allowNull: true,
76
+ type: import_sequelize_typescript.DataType.JSON
77
+ })
78
+ ], appScoreData.prototype, "scoreInfo", 2);
79
+ __decorateClass([
80
+ (0, import_sequelize_typescript.Column)({
81
+ allowNull: true,
82
+ type: import_sequelize_typescript.DataType.INTEGER
83
+ })
84
+ ], appScoreData.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
+ ], appScoreData.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
+ ], appScoreData.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
+ ], appScoreData.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
+ ], appScoreData.prototype, "updatedDate", 2);
113
+ appScoreData = __decorateClass([
114
+ (0, import_sequelize_typescript.Table)({
115
+ tableName: "app_score_data",
116
+ timestamps: false
117
+ })
118
+ ], appScoreData);
119
+ // Annotate the CommonJS export names for ESM import in node:
120
+ 0 && (module.exports = {
121
+ appScoreData
122
+ });
@@ -0,0 +1,30 @@
1
+ import { Model } from 'sequelize-typescript';
2
+
3
+ interface appScorePersonAttributes {
4
+ id?: number;
5
+ scoreId?: number;
6
+ personCardNo?: string;
7
+ personNo?: string;
8
+ personFullName?: string;
9
+ personOrganization?: string;
10
+ status?: number;
11
+ createdBy?: string;
12
+ createdDate?: Date;
13
+ updatedBy?: string;
14
+ updatedDate?: Date;
15
+ }
16
+ declare class appScorePerson extends Model<appScorePersonAttributes, appScorePersonAttributes> implements appScorePersonAttributes {
17
+ id?: number;
18
+ scoreId?: number;
19
+ personCardNo?: string;
20
+ personNo?: string;
21
+ personFullName?: string;
22
+ personOrganization?: string;
23
+ status?: number;
24
+ createdBy?: string;
25
+ createdDate?: Date;
26
+ updatedBy?: string;
27
+ updatedDate?: Date;
28
+ }
29
+
30
+ export { appScorePerson, type appScorePersonAttributes };
@@ -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,7 +32,7 @@ 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';
33
37
  export { msExecutiveLevel, msExecutiveLevelAttributes } from './msExecutiveLevel.js';
34
38
  export { msGuidelines, msGuidelinesAttributes } from './msGuidelines.js';