Features
- Return
transcriptId
in thetranscription-started
event.- This
transcriptId
can be used to query transcription via REST APIs.
- This
- Integrated Sentry for specific tracking of connection issues.
- Introduced the new method
meetingSessionSummary()
as a replacement forgetMeetingSession()
and eventmeeting-session-summary-updated
as a replacement formeeting-session-updated
.- These updates allow us to align the naming with other functionality, like
meetingSessionState()
as well as update the signatures to be more developer friendly. - Session summary info is now cached so that querying it is not an asynchronous operation and can be called at any time.
- If called prior to ever joining a call, it will return an empty object.
- If called after leaving but before any new call state updates (like preAuth'ing or joining a new call), it will return the previous session's summary.
- These updates allow us to align the naming with other functionality, like
- Deprecated
getMeetingSession()
in favor ofmeetingSessionSummary()
. - Deprecated
meeting-session-updated
in favor ofmeeting-session-summary-updated
.
Bugfixes
- Trigger the
transcription-error
event if a meeting is moved while transcribing. - Included the missing production environment in Sentry for tracking issues.
Other improvements
- Updated the name from
DailyIframe
toDaily
. - Improved the logic for triggering the
cpu-load-change
event based onscheduleDuration
.- It now requires multiple schedule duration misses before triggering the event.
- Implemented optimizations to remove redundant information from metrics.
- Removed functionalities that had been deprecated for over a year:
- Removed deprecated
setInputDevices()
; use replacementsetInputDevicesAsync()
. - Removed deprecated
setOutputDevice()
; use replacementsetOutputDeviceAsync()
.
- Removed deprecated
- Add missing error
type: 'ejected'
to the meeting error thrown when a room is deleted out from under a user. - Updated the
redact
transcription to supportArray<boolean>
. This allows[true]
as a valid value.