3.0.52

Bug Fixes

  • [Security]: Added security updates.

3.0.51

New Features

  • [Recorder]: Added getRecordingData API to fetch recording data including transcript, summary, and recording URLs.

    Using Hook:

    const recorderData = useRecordingDataByRecorderId('-O9yTMWmEe5u6YGX8EFV');
    
    useEffect(() => {
        console.log('Recorder Data: ', recorderData);
    }, [recorderData]);
    

    Using API:

    const recorderElement = client.getRecorderElement();
    
    recorderElement.getRecordingDataByRecorderId("-O9yGiYS8lehOXMpQf4j").subscribe((recorderData) => {
        console.log('Recorder Data: ', recorderData);
    });
    

Improvements

  • [Comments]: In the sidebar, changed default isExpanded behavior in custom filtering. If not explicitly set, the first group will be expanded while remaining groups are collapsed.