@admc-go-th/admc-library 1.0.79 → 1.0.81

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.
@@ -5,6 +5,7 @@ import { recruitmentGroup } from "./recruitmentGroup";
5
5
 
6
6
  export interface recruitmentAttributes {
7
7
  id?: number;
8
+ uuid?: string;
8
9
  groupId?: number;
9
10
  positionName?: string;
10
11
  accountListed?: number;
@@ -31,6 +32,12 @@ export class recruitment extends Model<recruitmentAttributes, recruitmentAttribu
31
32
  })
32
33
  declare id?: number;
33
34
 
35
+ @Column({
36
+ allowNull: true,
37
+ type: DataType.STRING(60)
38
+ })
39
+ declare uuid?: string;
40
+
34
41
  @ForeignKey(() => recruitmentGroup)
35
42
  @Column({
36
43
  field: "group_id",
@@ -23,7 +23,7 @@ export { mdWords, mdWordsAttributes } from './mdWords.js';
23
23
  export { member, memberAttributes } from './member.js';
24
24
  export { oauthAccessToken, oauthAccessTokenAttributes } from './oauthAccessToken.js';
25
25
  export { oauthRefreshToken, oauthRefreshTokenAttributes } from './oauthRefreshToken.js';
26
- export { a as recruitment, r as recruitmentAttributes, c as recruitmentGroup, b as recruitmentGroupAttributes } from '../../recruitment-B92Vz87_.js';
26
+ export { a as recruitment, r as recruitmentAttributes, c as recruitmentGroup, b as recruitmentGroupAttributes } from '../../recruitment-DH_HK5og.js';
27
27
  export { settings, settingsAttributes } from './settings.js';
28
28
  export { userCenterV, userCenterVAttributes } from './userCenterV.js';
29
29
  export { userRoleV, userRoleVAttributes } from './userRoleV.js';
@@ -5032,6 +5032,12 @@ __decorateClass([
5032
5032
  type: import_sequelize_typescript46.DataType.INTEGER
5033
5033
  })
5034
5034
  ], recruitment.prototype, "id", 2);
5035
+ __decorateClass([
5036
+ (0, import_sequelize_typescript46.Column)({
5037
+ allowNull: true,
5038
+ type: import_sequelize_typescript46.DataType.STRING(60)
5039
+ })
5040
+ ], recruitment.prototype, "uuid", 2);
5035
5041
  __decorateClass([
5036
5042
  (0, import_sequelize_typescript46.ForeignKey)(() => recruitmentGroup),
5037
5043
  (0, import_sequelize_typescript46.Column)({
@@ -1,2 +1,2 @@
1
1
  import 'sequelize-typescript';
2
- export { a as recruitment, r as recruitmentAttributes } from '../../recruitment-B92Vz87_.js';
2
+ export { a as recruitment, r as recruitmentAttributes } from '../../recruitment-DH_HK5og.js';
@@ -137,6 +137,12 @@ __decorateClass([
137
137
  type: import_sequelize_typescript2.DataType.INTEGER
138
138
  })
139
139
  ], recruitment.prototype, "id", 2);
140
+ __decorateClass([
141
+ (0, import_sequelize_typescript2.Column)({
142
+ allowNull: true,
143
+ type: import_sequelize_typescript2.DataType.STRING(60)
144
+ })
145
+ ], recruitment.prototype, "uuid", 2);
140
146
  __decorateClass([
141
147
  (0, import_sequelize_typescript2.ForeignKey)(() => recruitmentGroup),
142
148
  (0, import_sequelize_typescript2.Column)({
@@ -1,2 +1,2 @@
1
1
  import 'sequelize-typescript';
2
- export { c as recruitmentGroup, b as recruitmentGroupAttributes } from '../../recruitment-B92Vz87_.js';
2
+ export { c as recruitmentGroup, b as recruitmentGroupAttributes } from '../../recruitment-DH_HK5og.js';
@@ -44,6 +44,12 @@ __decorateClass([
44
44
  type: import_sequelize_typescript.DataType.INTEGER
45
45
  })
46
46
  ], recruitment.prototype, "id", 2);
47
+ __decorateClass([
48
+ (0, import_sequelize_typescript.Column)({
49
+ allowNull: true,
50
+ type: import_sequelize_typescript.DataType.STRING(60)
51
+ })
52
+ ], recruitment.prototype, "uuid", 2);
47
53
  __decorateClass([
48
54
  (0, import_sequelize_typescript.ForeignKey)(() => recruitmentGroup),
49
55
  (0, import_sequelize_typescript.Column)({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@admc-go-th/admc-library",
3
- "version": "1.0.79",
3
+ "version": "1.0.81",
4
4
  "description": "",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -32,6 +32,7 @@ declare class recruitmentGroup extends Model<recruitmentGroupAttributes, recruit
32
32
 
33
33
  interface recruitmentAttributes {
34
34
  id?: number;
35
+ uuid?: string;
35
36
  groupId?: number;
36
37
  positionName?: string;
37
38
  accountListed?: number;
@@ -46,6 +47,7 @@ interface recruitmentAttributes {
46
47
  }
47
48
  declare class recruitment extends Model<recruitmentAttributes, recruitmentAttributes> implements recruitmentAttributes {
48
49
  id?: number;
50
+ uuid?: string;
49
51
  groupId?: number;
50
52
  positionName?: string;
51
53
  accountListed?: number;