@platform-modules/foreign-ministry 1.3.180 → 1.3.181

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.
@@ -43,6 +43,7 @@ export declare class AppointmentRequests extends BaseModel {
43
43
  contact_number: string | null;
44
44
  agenda: string | null;
45
45
  appointment_title: string | null;
46
+ minutes_of_meeting: string | null;
46
47
  appointment_location: AppointmentLocation | null;
47
48
  status: AppointmentRequestStatus;
48
49
  workflow_execution_id: string | null;
@@ -114,6 +114,10 @@ __decorate([
114
114
  (0, typeorm_1.Column)({ type: 'text', nullable: true }),
115
115
  __metadata("design:type", Object)
116
116
  ], AppointmentRequests.prototype, "appointment_title", void 0);
117
+ __decorate([
118
+ (0, typeorm_1.Column)({ type: 'text', nullable: true }),
119
+ __metadata("design:type", Object)
120
+ ], AppointmentRequests.prototype, "minutes_of_meeting", void 0);
117
121
  __decorate([
118
122
  (0, typeorm_1.Column)({ type: 'enum', enum: AppointmentLocation, nullable: true }),
119
123
  __metadata("design:type", Object)
@@ -65,6 +65,7 @@ export declare class MeetingRequests extends BaseModel {
65
65
  meeting_link: string | null;
66
66
  agenda: string | null;
67
67
  meeting_title: string | null;
68
+ minutes_of_meeting: string | null;
68
69
  meeting_location: MeetingLocation | null;
69
70
  status: MeetingRequestStatus;
70
71
  workflow_execution_id: string | null;
@@ -166,6 +166,10 @@ __decorate([
166
166
  (0, typeorm_1.Column)({ type: 'text', nullable: true }),
167
167
  __metadata("design:type", Object)
168
168
  ], MeetingRequests.prototype, "meeting_title", void 0);
169
+ __decorate([
170
+ (0, typeorm_1.Column)({ type: 'text', nullable: true }),
171
+ __metadata("design:type", Object)
172
+ ], MeetingRequests.prototype, "minutes_of_meeting", void 0);
169
173
  __decorate([
170
174
  (0, typeorm_1.Column)({ type: 'enum', enum: MeetingLocation, nullable: true }),
171
175
  __metadata("design:type", Object)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@platform-modules/foreign-ministry",
3
- "version": "1.3.180",
3
+ "version": "1.3.181",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -85,6 +85,9 @@ export class AppointmentRequests extends BaseModel {
85
85
  @Column({ type: 'text', nullable: true })
86
86
  appointment_title: string | null;
87
87
 
88
+ @Column({ type: 'text', nullable: true })
89
+ minutes_of_meeting: string | null;
90
+
88
91
  @Column({ type: 'enum', enum: AppointmentLocation, nullable: true })
89
92
  appointment_location: AppointmentLocation | null;
90
93
 
@@ -128,6 +128,9 @@ export class MeetingRequests extends BaseModel {
128
128
  @Column({ type: 'text', nullable: true })
129
129
  meeting_title: string | null;
130
130
 
131
+ @Column({ type: 'text', nullable: true })
132
+ minutes_of_meeting: string | null;
133
+
131
134
  @Column({ type: 'enum', enum: MeetingLocation, nullable: true })
132
135
  meeting_location: MeetingLocation | null;
133
136