@hubs101/js-api-skd-client 1.0.10672 → 1.0.10673
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/lib/api/event/index.js +1 -1
- package/package.json +1 -1
package/lib/api/event/index.js
CHANGED
|
@@ -928,7 +928,7 @@ const _deactivateDataManagers = (basePath, token, eventId, attendeeIds) => __awa
|
|
|
928
928
|
exports._deactivateDataManagers = _deactivateDataManagers;
|
|
929
929
|
const _updateAttendeeMeetingHost = (basePath, token, eventId, attendeeId, isMeetingHost) => __awaiter(void 0, void 0, void 0, function* () {
|
|
930
930
|
const base = (0, base_1.getBasePath)(basePath);
|
|
931
|
-
const response = yield (0, api_1.putRequest)(`${base.EVENTS}/${eventId}/meeting-host?attendee_list=${attendeeId}&is_meeting_host=${isMeetingHost}`, token, {});
|
|
931
|
+
const response = yield (0, api_1.putRequest)(`${base.EVENTS}/${eventId}/meeting-host?attendee_list=${attendeeId}&is_meeting_host=${isMeetingHost ? 1 : 0}`, token, {});
|
|
932
932
|
return response;
|
|
933
933
|
});
|
|
934
934
|
exports._updateAttendeeMeetingHost = _updateAttendeeMeetingHost;
|