@platform-modules/foreign-ministry 1.3.170 → 1.3.172

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);
@@ -68,4 +68,5 @@ export declare class MeetingRequests extends BaseModel {
68
68
  meeting_location: MeetingLocation | null;
69
69
  status: MeetingRequestStatus;
70
70
  workflow_execution_id: string | null;
71
+ number_of_persons_for_food: number | null;
71
72
  }
@@ -178,6 +178,10 @@ __decorate([
178
178
  (0, typeorm_1.Column)({ type: 'varchar', nullable: true }),
179
179
  __metadata("design:type", Object)
180
180
  ], MeetingRequests.prototype, "workflow_execution_id", void 0);
181
+ __decorate([
182
+ (0, typeorm_1.Column)({ type: 'int', nullable: true }),
183
+ __metadata("design:type", Object)
184
+ ], MeetingRequests.prototype, "number_of_persons_for_food", void 0);
181
185
  exports.MeetingRequests = MeetingRequests = __decorate([
182
186
  (0, typeorm_1.Entity)({ name: 'meeting_requests' })
183
187
  ], MeetingRequests);
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.172",
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
  }
@@ -136,4 +136,7 @@ export class MeetingRequests extends BaseModel {
136
136
 
137
137
  @Column({ type: 'varchar', nullable: true })
138
138
  workflow_execution_id: string | null;
139
+
140
+ @Column({ type: 'int', nullable: true })
141
+ number_of_persons_for_food: number | null;
139
142
  }