@platform-modules/foreign-ministry 1.3.161 → 1.3.162
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.
- package/dist/models/AppointmentAttendeeModel.d.ts +2 -0
- package/dist/models/AppointmentAttendeeModel.js +8 -0
- package/dist/models/AppointmentRequestModel.d.ts +1 -0
- package/dist/models/AppointmentRequestModel.js +4 -0
- package/dist/models/MeetingAttendeeModel.d.ts +4 -0
- package/dist/models/MeetingAttendeeModel.js +16 -0
- package/dist/models/MeetingRequestModel.d.ts +1 -0
- package/dist/models/MeetingRequestModel.js +4 -0
- package/package.json +1 -1
- package/src/models/AppointmentAttendeeModel.ts +6 -0
- package/src/models/AppointmentRequestModel.ts +3 -0
- package/src/models/MeetingAttendeeModel.ts +12 -0
- package/src/models/MeetingRequestModel.ts +3 -0
|
@@ -42,6 +42,14 @@ __decorate([
|
|
|
42
42
|
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
43
43
|
__metadata("design:type", Object)
|
|
44
44
|
], AppointmentAttendees.prototype, "attendee_name", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
47
|
+
__metadata("design:type", Object)
|
|
48
|
+
], AppointmentAttendees.prototype, "attendee_mobile", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
51
|
+
__metadata("design:type", Object)
|
|
52
|
+
], AppointmentAttendees.prototype, "attendee_position", void 0);
|
|
45
53
|
exports.AppointmentAttendees = AppointmentAttendees = __decorate([
|
|
46
54
|
(0, typeorm_1.Entity)({ name: 'appointment_attendees' })
|
|
47
55
|
], AppointmentAttendees);
|
|
@@ -41,6 +41,7 @@ export declare class AppointmentRequests extends BaseModel {
|
|
|
41
41
|
person_name: string | null;
|
|
42
42
|
contact_number: string | null;
|
|
43
43
|
agenda: string | null;
|
|
44
|
+
appointment_title: string | null;
|
|
44
45
|
appointment_location: AppointmentLocation | null;
|
|
45
46
|
status: AppointmentRequestStatus;
|
|
46
47
|
workflow_execution_id: string | null;
|
|
@@ -109,6 +109,10 @@ __decorate([
|
|
|
109
109
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
110
110
|
__metadata("design:type", Object)
|
|
111
111
|
], AppointmentRequests.prototype, "agenda", void 0);
|
|
112
|
+
__decorate([
|
|
113
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
114
|
+
__metadata("design:type", Object)
|
|
115
|
+
], AppointmentRequests.prototype, "appointment_title", void 0);
|
|
112
116
|
__decorate([
|
|
113
117
|
(0, typeorm_1.Column)({ type: 'enum', enum: AppointmentLocation, nullable: true }),
|
|
114
118
|
__metadata("design:type", Object)
|
|
@@ -9,4 +9,8 @@ export declare class MeetingAttendees extends BaseModel {
|
|
|
9
9
|
attendee_id: number;
|
|
10
10
|
meeting_id: number;
|
|
11
11
|
status: MeetingAttendeeStatus;
|
|
12
|
+
attendee_email: string | null;
|
|
13
|
+
attendee_name: string | null;
|
|
14
|
+
attendee_mobile: string | null;
|
|
15
|
+
attendee_position: string | null;
|
|
12
16
|
}
|
|
@@ -34,6 +34,22 @@ __decorate([
|
|
|
34
34
|
(0, typeorm_1.Column)({ type: 'enum', enum: MeetingAttendeeStatus, default: MeetingAttendeeStatus.INVITED, nullable: false }),
|
|
35
35
|
__metadata("design:type", String)
|
|
36
36
|
], MeetingAttendees.prototype, "status", void 0);
|
|
37
|
+
__decorate([
|
|
38
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
39
|
+
__metadata("design:type", Object)
|
|
40
|
+
], MeetingAttendees.prototype, "attendee_email", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
43
|
+
__metadata("design:type", Object)
|
|
44
|
+
], MeetingAttendees.prototype, "attendee_name", void 0);
|
|
45
|
+
__decorate([
|
|
46
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
47
|
+
__metadata("design:type", Object)
|
|
48
|
+
], MeetingAttendees.prototype, "attendee_mobile", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, typeorm_1.Column)({ type: 'varchar', length: 255, nullable: true }),
|
|
51
|
+
__metadata("design:type", Object)
|
|
52
|
+
], MeetingAttendees.prototype, "attendee_position", void 0);
|
|
37
53
|
exports.MeetingAttendees = MeetingAttendees = __decorate([
|
|
38
54
|
(0, typeorm_1.Entity)({ name: 'meeting_attendees' })
|
|
39
55
|
], MeetingAttendees);
|
|
@@ -63,6 +63,7 @@ export declare class MeetingRequests extends BaseModel {
|
|
|
63
63
|
online_meeting_details: OnlineMeetingDetails | null;
|
|
64
64
|
meeting_link: string | null;
|
|
65
65
|
agenda: string | null;
|
|
66
|
+
meeting_title: string | null;
|
|
66
67
|
meeting_location: MeetingLocation | null;
|
|
67
68
|
status: MeetingRequestStatus;
|
|
68
69
|
workflow_execution_id: string | null;
|
|
@@ -161,6 +161,10 @@ __decorate([
|
|
|
161
161
|
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
162
162
|
__metadata("design:type", Object)
|
|
163
163
|
], MeetingRequests.prototype, "agenda", void 0);
|
|
164
|
+
__decorate([
|
|
165
|
+
(0, typeorm_1.Column)({ type: 'text', nullable: true }),
|
|
166
|
+
__metadata("design:type", Object)
|
|
167
|
+
], MeetingRequests.prototype, "meeting_title", void 0);
|
|
164
168
|
__decorate([
|
|
165
169
|
(0, typeorm_1.Column)({ type: 'enum', enum: MeetingLocation, nullable: true }),
|
|
166
170
|
__metadata("design:type", Object)
|
package/package.json
CHANGED
|
@@ -24,5 +24,11 @@ export class AppointmentAttendees extends BaseModel {
|
|
|
24
24
|
|
|
25
25
|
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
26
26
|
attendee_name: string | null;
|
|
27
|
+
|
|
28
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
29
|
+
attendee_mobile: string | null
|
|
30
|
+
|
|
31
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
32
|
+
attendee_position: string | null
|
|
27
33
|
}
|
|
28
34
|
|
|
@@ -81,6 +81,9 @@ export class AppointmentRequests extends BaseModel {
|
|
|
81
81
|
@Column({ type: 'text', nullable: true })
|
|
82
82
|
agenda: string | null;
|
|
83
83
|
|
|
84
|
+
@Column({ type: 'text', nullable: true })
|
|
85
|
+
appointment_title: string | null;
|
|
86
|
+
|
|
84
87
|
@Column({ type: 'enum', enum: AppointmentLocation, nullable: true })
|
|
85
88
|
appointment_location: AppointmentLocation | null;
|
|
86
89
|
|
|
@@ -18,4 +18,16 @@ export class MeetingAttendees extends BaseModel {
|
|
|
18
18
|
|
|
19
19
|
@Column({ type: 'enum', enum: MeetingAttendeeStatus, default: MeetingAttendeeStatus.INVITED, nullable: false })
|
|
20
20
|
status: MeetingAttendeeStatus;
|
|
21
|
+
|
|
22
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
23
|
+
attendee_email: string | null;
|
|
24
|
+
|
|
25
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
26
|
+
attendee_name: string | null;
|
|
27
|
+
|
|
28
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
29
|
+
attendee_mobile: string | null
|
|
30
|
+
|
|
31
|
+
@Column({ type: 'varchar', length: 255, nullable: true })
|
|
32
|
+
attendee_position: string | null
|
|
21
33
|
}
|
|
@@ -124,6 +124,9 @@ export class MeetingRequests extends BaseModel {
|
|
|
124
124
|
@Column({ type: 'text', nullable: true })
|
|
125
125
|
agenda: string | null;
|
|
126
126
|
|
|
127
|
+
@Column({ type: 'text', nullable: true })
|
|
128
|
+
meeting_title: string | null;
|
|
129
|
+
|
|
127
130
|
@Column({ type: 'enum', enum: MeetingLocation, nullable: true })
|
|
128
131
|
meeting_location: MeetingLocation | null;
|
|
129
132
|
|