Versions

Method to Hide Comments from Users on specific Locations

The client.excludeLocationIds() method can be used to hide Comments at specific Locations from Users.

const locationIds = ['location1', 'location2']; // list of location ids
client.excludeLocationIds(locationIds);

Configuration to Disable Recording Summaries

If you want to disable the Recording summaries that appear when you record you audio, voice or screen, you can can now do so.

Example:

<VeltComments recordingSummary={false} />

API Methods:

const commentElement = client.getCommentElement();
// to show recording summary
commentElement.enableRecordingSummary();
// to hide recording summary
commentElement.disableRecordingSummary();

Configuration to Disable Recording countdown

If you want to disable the countdown that appears when you begin recording your audio, voice, or screen, you can now do so. When the countdown is disabled, recordings will begin instantly.

Example

<VeltComments recordingCountdown={false} />

API Methods:

// API method - comment element
const commentElement = client.getCommentElement();
// To enable recording countdown
commentElement.enableRecordingCountdown();
// To disable recording countdown
commentElement.disableRecordingCountdown();

// API method - recorder element
const recorderElement = client.getRecorderElement();
// To enable recording countdown
recorderElement.enableRecordingCountdown();
// To disable recording countdown
recorderElement.disableRecordingCountdown();

Method to Remove the Document ID

You can now unset the Document Id to pause the Velt SDK functions.

client.unsetDocumentId()

More File Type Support in Comment attachments

We’ve added support for more file types in Comment attachments (csv, docx, pptx, xlsx, webp, mp4 etc.).