@platform-modules/foreign-ministry 1.3.186 → 1.3.187

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.
@@ -46,6 +46,9 @@ export declare class AppointmentRequests extends BaseModel {
46
46
  appointment_title: string | null;
47
47
  minutes_of_meeting: string | null;
48
48
  appointment_location: AppointmentLocation | null;
49
+ food_service_required: AppointmentYesNo | null;
50
+ external_attendees_required_gate_pass: AppointmentYesNo | null;
51
+ number_of_persons_for_food: number | null;
49
52
  status: AppointmentRequestStatus;
50
53
  workflow_execution_id: string | null;
51
54
  notify_before_me: string | null;
@@ -126,6 +126,18 @@ __decorate([
126
126
  (0, typeorm_1.Column)({ type: 'enum', enum: AppointmentLocation, nullable: true }),
127
127
  __metadata("design:type", Object)
128
128
  ], AppointmentRequests.prototype, "appointment_location", void 0);
129
+ __decorate([
130
+ (0, typeorm_1.Column)({ type: 'enum', enum: AppointmentYesNo, nullable: true }),
131
+ __metadata("design:type", Object)
132
+ ], AppointmentRequests.prototype, "food_service_required", void 0);
133
+ __decorate([
134
+ (0, typeorm_1.Column)({ type: 'enum', enum: AppointmentYesNo, nullable: true }),
135
+ __metadata("design:type", Object)
136
+ ], AppointmentRequests.prototype, "external_attendees_required_gate_pass", void 0);
137
+ __decorate([
138
+ (0, typeorm_1.Column)({ type: 'int', nullable: true }),
139
+ __metadata("design:type", Object)
140
+ ], AppointmentRequests.prototype, "number_of_persons_for_food", void 0);
129
141
  __decorate([
130
142
  (0, typeorm_1.Column)({ type: 'enum', enum: AppointmentRequestStatus, default: AppointmentRequestStatus.PENDING, nullable: false }),
131
143
  __metadata("design:type", String)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/foreign-ministry",
3
- "version": "1.3.186",
3
+ "version": "1.3.187",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -94,6 +94,15 @@ export class AppointmentRequests extends BaseModel {
94
94
  @Column({ type: 'enum', enum: AppointmentLocation, nullable: true })
95
95
  appointment_location: AppointmentLocation | null;
96
96
 
97
+ @Column({ type: 'enum', enum: AppointmentYesNo, nullable: true })
98
+ food_service_required: AppointmentYesNo | null;
99
+
100
+ @Column({ type: 'enum', enum: AppointmentYesNo, nullable: true })
101
+ external_attendees_required_gate_pass: AppointmentYesNo | null;
102
+
103
+ @Column({ type: 'int', nullable: true })
104
+ number_of_persons_for_food: number | null;
105
+
97
106
  @Column({ type: 'enum', enum: AppointmentRequestStatus, default: AppointmentRequestStatus.PENDING, nullable: false })
98
107
  status: AppointmentRequestStatus;
99
108