@admc-go-th/admc-library 1.0.117 → 1.0.118

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.
@@ -8,6 +8,7 @@ export interface msExecutiveAttributes {
8
8
  id?: number;
9
9
  groupId?: number;
10
10
  positionId?: number;
11
+ positionName?: string;
11
12
  positionOther?: string;
12
13
  titleId?: number;
13
14
  firstName?: string;
@@ -56,6 +57,13 @@ export class msExecutive extends Model<msExecutiveAttributes, msExecutiveAttribu
56
57
  })
57
58
  declare positionId?: number;
58
59
 
60
+ @Column({
61
+ field: "position_name",
62
+ allowNull: true,
63
+ type: DataType.STRING(255)
64
+ })
65
+ declare positionName?: string;
66
+
59
67
  @Column({
60
68
  field: "position_other",
61
69
  allowNull: true,
@@ -27,7 +27,7 @@ export { a as mdTranslate, m as mdTranslateAttributes, c as mdTranslateGroup, b
27
27
  export { mdVideo, mdVideoAttributes } from './mdVideo.js';
28
28
  export { mdWords, mdWordsAttributes } from './mdWords.js';
29
29
  export { member, memberAttributes } from './member.js';
30
- export { a as msExecutive, m as msExecutiveAttributes, c as msExecutiveGroup, b as msExecutiveGroupAttributes, e as msExecutivePosition, d as msExecutivePositionAttributes } from '../../msExecutive-Brhgvmvs.js';
30
+ export { a as msExecutive, m as msExecutiveAttributes, c as msExecutiveGroup, b as msExecutiveGroupAttributes, e as msExecutivePosition, d as msExecutivePositionAttributes } from '../../msExecutive-1j_DcKu7.js';
31
31
  export { msExecutiveBoard, msExecutiveBoardAttributes } from './msExecutiveBoard.js';
32
32
  export { msGuidelines, msGuidelinesAttributes } from './msGuidelines.js';
33
33
  export { msHoliday, msHolidayAttributes } from './msHoliday.js';
@@ -6227,6 +6227,13 @@ __decorateClass([
6227
6227
  type: import_sequelize_typescript52.DataType.INTEGER
6228
6228
  })
6229
6229
  ], msExecutive.prototype, "positionId", 2);
6230
+ __decorateClass([
6231
+ (0, import_sequelize_typescript52.Column)({
6232
+ field: "position_name",
6233
+ allowNull: true,
6234
+ type: import_sequelize_typescript52.DataType.STRING(255)
6235
+ })
6236
+ ], msExecutive.prototype, "positionName", 2);
6230
6237
  __decorateClass([
6231
6238
  (0, import_sequelize_typescript52.Column)({
6232
6239
  field: "position_other",
@@ -1,2 +1,2 @@
1
1
  import 'sequelize-typescript';
2
- export { a as msExecutive, m as msExecutiveAttributes } from '../../msExecutive-Brhgvmvs.js';
2
+ export { a as msExecutive, m as msExecutiveAttributes } from '../../msExecutive-1j_DcKu7.js';
@@ -241,6 +241,13 @@ __decorateClass([
241
241
  type: import_sequelize_typescript3.DataType.INTEGER
242
242
  })
243
243
  ], msExecutive.prototype, "positionId", 2);
244
+ __decorateClass([
245
+ (0, import_sequelize_typescript3.Column)({
246
+ field: "position_name",
247
+ allowNull: true,
248
+ type: import_sequelize_typescript3.DataType.STRING(255)
249
+ })
250
+ ], msExecutive.prototype, "positionName", 2);
244
251
  __decorateClass([
245
252
  (0, import_sequelize_typescript3.Column)({
246
253
  field: "position_other",
@@ -1,2 +1,2 @@
1
1
  import 'sequelize-typescript';
2
- export { c as msExecutiveGroup, b as msExecutiveGroupAttributes } from '../../msExecutive-Brhgvmvs.js';
2
+ export { c as msExecutiveGroup, b as msExecutiveGroupAttributes } from '../../msExecutive-1j_DcKu7.js';
@@ -143,6 +143,13 @@ __decorateClass([
143
143
  type: import_sequelize_typescript2.DataType.INTEGER
144
144
  })
145
145
  ], msExecutive.prototype, "positionId", 2);
146
+ __decorateClass([
147
+ (0, import_sequelize_typescript2.Column)({
148
+ field: "position_name",
149
+ allowNull: true,
150
+ type: import_sequelize_typescript2.DataType.STRING(255)
151
+ })
152
+ ], msExecutive.prototype, "positionName", 2);
146
153
  __decorateClass([
147
154
  (0, import_sequelize_typescript2.Column)({
148
155
  field: "position_other",
@@ -1,2 +1,2 @@
1
1
  import 'sequelize-typescript';
2
- export { e as msExecutivePosition, d as msExecutivePositionAttributes } from '../../msExecutive-Brhgvmvs.js';
2
+ export { e as msExecutivePosition, d as msExecutivePositionAttributes } from '../../msExecutive-1j_DcKu7.js';
@@ -163,6 +163,13 @@ __decorateClass([
163
163
  type: import_sequelize_typescript2.DataType.INTEGER
164
164
  })
165
165
  ], msExecutive.prototype, "positionId", 2);
166
+ __decorateClass([
167
+ (0, import_sequelize_typescript2.Column)({
168
+ field: "position_name",
169
+ allowNull: true,
170
+ type: import_sequelize_typescript2.DataType.STRING(255)
171
+ })
172
+ ], msExecutive.prototype, "positionName", 2);
166
173
  __decorateClass([
167
174
  (0, import_sequelize_typescript2.Column)({
168
175
  field: "position_other",
@@ -62,6 +62,7 @@ interface msExecutiveAttributes {
62
62
  id?: number;
63
63
  groupId?: number;
64
64
  positionId?: number;
65
+ positionName?: string;
65
66
  positionOther?: string;
66
67
  titleId?: number;
67
68
  firstName?: string;
@@ -84,6 +85,7 @@ declare class msExecutive extends Model<msExecutiveAttributes, msExecutiveAttrib
84
85
  id?: number;
85
86
  groupId?: number;
86
87
  positionId?: number;
88
+ positionName?: string;
87
89
  positionOther?: string;
88
90
  titleId?: number;
89
91
  firstName?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@admc-go-th/admc-library",
3
- "version": "1.0.117",
3
+ "version": "1.0.118",
4
4
  "description": "",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",