> ## Documentation Index
> Fetch the complete documentation index at: https://velt.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# April 16 2024

## Versions

* Latest SDK: [1.0.107](https://www.npmjs.com/package/@veltdev/react)
* Latest Types: [1.0.119](https://www.npmjs.com/package/@veltdev/types)

## Method to Hide Comments from Users on specific Locations

The [client.excludeLocationIds()](https://docs.velt.dev/async-collaboration/comments/customize-behavior/general-controls) method can be used to hide `Comments` at specific `Locations` from `Users`.

```jsx theme={null}
const locationIds = ['location1', 'location2']; // list of location ids
client.excludeLocationIds(locationIds);
```

## Configuration to Disable Recording Summaries

If you want to [disable the Recording summaries](https://docs.velt.dev/async-collaboration/comments/customize-behavior/multimedia) that appear when you record you audio, voice or screen, you can can now do so.

Example:

```jsx theme={null}
<VeltComments recordingSummary={false} />
```

API Methods:

```jsx theme={null}
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](https://docs.velt.dev/async-collaboration/comments/customize-behavior/multimedia) 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

```jsx theme={null}
<VeltComments recordingCountdown={false} />
```

API Methods:

```jsx theme={null}
// 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.

```jsx theme={null}
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.).
