@platform-modules/foreign-ministry 1.3.170 → 1.3.171

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.
@@ -13,4 +13,5 @@ export declare class AppointmentAttendees extends BaseModel {
13
13
  attendee_name: string | null;
14
14
  attendee_mobile: string | null;
15
15
  attendee_position: string | null;
16
+ is_employee_type: string | null;
16
17
  }
@@ -50,6 +50,10 @@ __decorate([
50
50
  (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
51
51
  __metadata("design:type", Object)
52
52
  ], AppointmentAttendees.prototype, "attendee_position", void 0);
53
+ __decorate([
54
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
55
+ __metadata("design:type", Object)
56
+ ], AppointmentAttendees.prototype, "is_employee_type", void 0);
53
57
  exports.AppointmentAttendees = AppointmentAttendees = __decorate([
54
58
  (0, typeorm_1.Entity)({ name: 'appointment_attendees' })
55
59
  ], AppointmentAttendees);
@@ -13,4 +13,5 @@ export declare class MeetingAttendees extends BaseModel {
13
13
  attendee_name: string | null;
14
14
  attendee_mobile: string | null;
15
15
  attendee_position: string | null;
16
+ is_employee_type: string | null;
16
17
  }
@@ -50,6 +50,10 @@ __decorate([
50
50
  (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
51
51
  __metadata("design:type", Object)
52
52
  ], MeetingAttendees.prototype, "attendee_position", void 0);
53
+ __decorate([
54
+ (0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
55
+ __metadata("design:type", Object)
56
+ ], MeetingAttendees.prototype, "is_employee_type", void 0);
53
57
  exports.MeetingAttendees = MeetingAttendees = __decorate([
54
58
  (0, typeorm_1.Entity)({ name: 'meeting_attendees' })
55
59
  ], MeetingAttendees);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/foreign-ministry",
3
- "version": "1.3.170",
3
+ "version": "1.3.171",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -30,5 +30,8 @@ export class AppointmentAttendees extends BaseModel {
30
30
 
31
31
  @Column({ type: 'varchar', length: 255, nullable: true })
32
32
  attendee_position: string | null
33
+
34
+ @Column({ type: 'varchar', length: 255, nullable: true })
35
+ is_employee_type: string | null
33
36
  }
34
37
 
@@ -30,4 +30,7 @@ export class MeetingAttendees extends BaseModel {
30
30
 
31
31
  @Column({ type: 'varchar', length: 255, nullable: true })
32
32
  attendee_position: string | null
33
+
34
+ @Column({ type: 'varchar', length: 255, nullable: true })
35
+ is_employee_type: string | null
33
36
  }