@admc-go-th/admc-library 1.0.132 → 1.0.133
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/databases/schema/index.ts +0 -2
- package/databases/schema/msExecutive.ts +0 -5
- package/databases/tables/index.d.ts +1 -3
- package/databases/tables/index.js +430 -706
- 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/{msExecutive-BFeU4P0-.d.ts → msExecutive-Yxx8Wpkj.d.ts} +1 -34
- package/package.json +1 -1
|
@@ -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
|
}
|
|
@@ -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';
|