3.0.61

Features

  • [REST APIs]: Added advanced queries and pagination for GET endpoints.
    • You need to upgrade to version 3.0.61 and enable this in your developer console.
    • Check out the V2 REST APIs endpoints for more information.

3.0.60

Features

  • [Comments]: Added ability to enable/disable recording transcription feature on recorder:

    Using Props:

    <VeltComments recordingTranscription={false} />
    

    Using API Methods:

    // Using comment element
    const commentElement = client.getCommentElement();
    commentElement.enableRecordingTranscription();
    commentElement.disableRecordingTranscription();
    
    // Or using recorder element 
    const recorderElement = client.getRecorderElement();
    recorderElement.enableRecordingTranscription();
    recorderElement.disableRecordingTranscription();
    

Bug Fixes

  • [Comments]: Fixed range error that occurred when recording without comment text