@vendasta/meetings 0.95.0 → 0.95.2
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/meeting-host.api.service.mjs +7 -2
- package/esm2020/lib/host/host.service.mjs +7 -1
- package/fesm2015/vendasta-meetings.mjs +8 -0
- package/fesm2015/vendasta-meetings.mjs.map +1 -1
- package/fesm2020/vendasta-meetings.mjs +11 -0
- package/fesm2020/vendasta-meetings.mjs.map +1 -1
- package/lib/_internal/meeting-host.api.service.d.ts +3 -2
- package/lib/host/host.service.d.ts +14 -1
- package/package.json +1 -1
|
@@ -5128,6 +5128,11 @@ class MeetingHostApiService {
|
|
|
5128
5128
|
return this.http.post(this._host + "/meetings.v1.MeetingHost/ListAvailability", request.toApiJson(), this.apiOptions())
|
|
5129
5129
|
.pipe(map(resp => ListAvailabilityResponse.fromProto(resp)));
|
|
5130
5130
|
}
|
|
5131
|
+
hostBookMeeting(r) {
|
|
5132
|
+
const request = (r.toApiJson) ? r : new BookMeetingRequest(r);
|
|
5133
|
+
return this.http.post(this._host + "/meetings.v1.MeetingHost/HostBookMeeting", request.toApiJson(), this.apiOptions())
|
|
5134
|
+
.pipe(map(resp => BookMeetingResponse.fromProto(resp)));
|
|
5135
|
+
}
|
|
5131
5136
|
bookMeeting(r) {
|
|
5132
5137
|
const request = (r.toApiJson) ? r : new HostBookMeetingRequest(r);
|
|
5133
5138
|
return this.http.post(this._host + "/meetings.v1.MeetingHost/BookMeeting", request.toApiJson(), this.apiOptions())
|
|
@@ -6150,6 +6155,12 @@ class HostService {
|
|
|
6150
6155
|
})
|
|
6151
6156
|
.pipe(mapTo(undefined));
|
|
6152
6157
|
}
|
|
6158
|
+
hostBookMeeting(req) {
|
|
6159
|
+
return this.hostAPIService.hostBookMeeting({
|
|
6160
|
+
...req,
|
|
6161
|
+
attendees: req.attendees,
|
|
6162
|
+
});
|
|
6163
|
+
}
|
|
6153
6164
|
bookMeeting(req) {
|
|
6154
6165
|
return this.hostAPIService
|
|
6155
6166
|
.bookMeeting(req)
|