@vendasta/meetings 1.6.4 → 1.6.6
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 +4 -1
- package/esm2020/lib/index.mjs +1 -1
- package/fesm2015/vendasta-meetings.mjs +3 -0
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +3 -0
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/interfaces/meeting-guest.interface.d.ts +1 -0
- package/lib/_internal/objects/meeting-guest.d.ts +1 -0
- package/lib/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -4508,6 +4508,9 @@ class GuestGetBookedMeetingResponseV2 {
|
|
|
4508
4508
|
if (typeof this.previousEndTime !== 'undefined' && this.previousEndTime !== null) {
|
|
4509
4509
|
toReturn['previousEndTime'] = 'toApiJson' in this.previousEndTime ? this.previousEndTime.toApiJson() : this.previousEndTime;
|
|
4510
4510
|
}
|
|
4511
|
+
if (typeof this.isCancelled !== 'undefined') {
|
|
4512
|
+
toReturn['isCancelled'] = this.isCancelled;
|
|
4513
|
+
}
|
|
4511
4514
|
return toReturn;
|
|
4512
4515
|
}
|
|
4513
4516
|
}
|