@vendasta/meetings 1.6.6 → 1.6.8
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/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/meeting-host.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/shared.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/index.mjs +1 -1
- package/esm2020/lib/_internal/objects/meeting-host.mjs +4 -1
- package/esm2020/lib/_internal/objects/shared.mjs +4 -1
- package/esm2020/lib/shared/meeting.mjs +2 -1
- package/fesm2015/vendasta-meetings.mjs +7 -0
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +7 -0
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/interfaces/meeting-host.interface.d.ts +1 -0
- package/lib/_internal/interfaces/shared.interface.d.ts +1 -0
- package/lib/_internal/objects/meeting-host.d.ts +1 -0
- package/lib/_internal/objects/shared.d.ts +1 -0
- package/lib/shared/meeting.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1606,6 +1606,9 @@ class Attendee {
|
|
|
1606
1606
|
if (typeof this.isPrimary !== 'undefined') {
|
|
1607
1607
|
toReturn['isPrimary'] = this.isPrimary;
|
|
1608
1608
|
}
|
|
1609
|
+
if (typeof this.contactId !== 'undefined') {
|
|
1610
|
+
toReturn['contactId'] = this.contactId;
|
|
1611
|
+
}
|
|
1609
1612
|
return toReturn;
|
|
1610
1613
|
}
|
|
1611
1614
|
}
|
|
@@ -6537,6 +6540,9 @@ class ListBookedMeetingsRequestFilters {
|
|
|
6537
6540
|
if (typeof this.timeSpan !== 'undefined' && this.timeSpan !== null) {
|
|
6538
6541
|
toReturn['timeSpan'] = 'toApiJson' in this.timeSpan ? this.timeSpan.toApiJson() : this.timeSpan;
|
|
6539
6542
|
}
|
|
6543
|
+
if (typeof this.userIds !== 'undefined') {
|
|
6544
|
+
toReturn['userIds'] = this.userIds;
|
|
6545
|
+
}
|
|
6540
6546
|
return toReturn;
|
|
6541
6547
|
}
|
|
6542
6548
|
}
|
|
@@ -9553,6 +9559,7 @@ function meetingFromApi(meetingApi) {
|
|
|
9553
9559
|
phoneNumber: a.phoneNumber,
|
|
9554
9560
|
timeZone: a.timeZone,
|
|
9555
9561
|
isPrimary: a.isPrimary || false,
|
|
9562
|
+
contactId: a.contactId || "",
|
|
9556
9563
|
}))
|
|
9557
9564
|
: [],
|
|
9558
9565
|
created: meetingApi.created,
|