@platform-modules/foreign-ministry 1.3.185 → 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.
@@ -36,6 +36,7 @@ export declare class AppointmentRequests extends BaseModel {
36
36
  request_type: AppointmentRequestType | null;
37
37
  appointment_type: AppointmentType | null;
38
38
  appointment_date: string | null;
39
+ hall_id: number | null;
39
40
  from_time: string | null;
40
41
  to_time: string | null;
41
42
  description: string | null;
@@ -45,6 +46,9 @@ export declare class AppointmentRequests extends BaseModel {
45
46
  appointment_title: string | null;
46
47
  minutes_of_meeting: string | null;
47
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;
48
52
  status: AppointmentRequestStatus;
49
53
  workflow_execution_id: string | null;
50
54
  notify_before_me: string | null;
@@ -86,6 +86,10 @@ __decorate([
86
86
  (0, typeorm_1.Column)({ type: 'date', nullable: true }),
87
87
  __metadata("design:type", Object)
88
88
  ], AppointmentRequests.prototype, "appointment_date", void 0);
89
+ __decorate([
90
+ (0, typeorm_1.Column)({ type: 'int', nullable: true }),
91
+ __metadata("design:type", Object)
92
+ ], AppointmentRequests.prototype, "hall_id", void 0);
89
93
  __decorate([
90
94
  (0, typeorm_1.Column)({ type: 'time', nullable: true }),
91
95
  __metadata("design:type", Object)
@@ -122,6 +126,18 @@ __decorate([
122
126
  (0, typeorm_1.Column)({ type: 'enum', enum: AppointmentLocation, nullable: true }),
123
127
  __metadata("design:type", Object)
124
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);
125
141
  __decorate([
126
142
  (0, typeorm_1.Column)({ type: 'enum', enum: AppointmentRequestStatus, default: AppointmentRequestStatus.PENDING, nullable: false }),
127
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.185",
3
+ "version": "1.3.187",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -64,6 +64,9 @@ export class AppointmentRequests extends BaseModel {
64
64
  @Column({ type: 'date', nullable: true })
65
65
  appointment_date: string | null;
66
66
 
67
+ @Column({ type: 'int', nullable: true })
68
+ hall_id: number | null;
69
+
67
70
  @Column({ type: 'time', nullable: true })
68
71
  from_time: string | null;
69
72
 
@@ -91,6 +94,15 @@ export class AppointmentRequests extends BaseModel {
91
94
  @Column({ type: 'enum', enum: AppointmentLocation, nullable: true })
92
95
  appointment_location: AppointmentLocation | null;
93
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
+
94
106
  @Column({ type: 'enum', enum: AppointmentRequestStatus, default: AppointmentRequestStatus.PENDING, nullable: false })
95
107
  status: AppointmentRequestStatus;
96
108