@vendasta/meetings 0.98.4 → 0.98.5
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/meeting-guest.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/meeting-guest.mjs +13 -1
- package/esm2020/lib/guest/guest.service.mjs +4 -1
- package/esm2020/lib/index.mjs +1 -1
- package/fesm2015/vendasta-meetings.mjs +15 -0
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +15 -0
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +3 -0
- package/lib/_internal/objects/meeting-guest.d.ts +3 -0
- package/lib/guest/guest.service.d.ts +4 -1
- package/package.json +1 -1
|
@@ -2622,6 +2622,9 @@ class GuestGetBookedMeetingResponse {
|
|
|
2622
2622
|
if (proto.locationType) {
|
|
2623
2623
|
m.locationType = enumStringToValue$3(MeetingLocationType, proto.locationType);
|
|
2624
2624
|
}
|
|
2625
|
+
if (proto.meetingType) {
|
|
2626
|
+
m.meetingType = enumStringToValue$3(TeamEventMeetingType, proto.meetingType);
|
|
2627
|
+
}
|
|
2625
2628
|
return m;
|
|
2626
2629
|
}
|
|
2627
2630
|
constructor(kwargs) {
|
|
@@ -2653,6 +2656,15 @@ class GuestGetBookedMeetingResponse {
|
|
|
2653
2656
|
if (typeof this.locationGuideline !== 'undefined') {
|
|
2654
2657
|
toReturn['locationGuideline'] = this.locationGuideline;
|
|
2655
2658
|
}
|
|
2659
|
+
if (typeof this.meetingType !== 'undefined') {
|
|
2660
|
+
toReturn['meetingType'] = this.meetingType;
|
|
2661
|
+
}
|
|
2662
|
+
if (typeof this.displayName !== 'undefined') {
|
|
2663
|
+
toReturn['displayName'] = this.displayName;
|
|
2664
|
+
}
|
|
2665
|
+
if (typeof this.calendarId !== 'undefined') {
|
|
2666
|
+
toReturn['calendarId'] = this.calendarId;
|
|
2667
|
+
}
|
|
2656
2668
|
return toReturn;
|
|
2657
2669
|
}
|
|
2658
2670
|
}
|
|
@@ -6177,6 +6189,9 @@ class GuestService {
|
|
|
6177
6189
|
location: resp.location,
|
|
6178
6190
|
locationGuideline: resp.locationGuideline,
|
|
6179
6191
|
locationType: resp.locationType,
|
|
6192
|
+
meetingType: resp.meetingType,
|
|
6193
|
+
displayName: resp.displayName,
|
|
6194
|
+
calendarId: resp.calendarId,
|
|
6180
6195
|
})));
|
|
6181
6196
|
}
|
|
6182
6197
|
isHostConfigured(req) {
|