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

# July 7, 2022

> The latest updates to Daily's real-time audio and video APIs.

## July 7th, 2022

## daily-js 0.28.0

* Avoid camera "blips" by only updating video *or* audio with [`setInputDevicesAsync()`](/reference/daily-js/instance-methods/set-input-devices-async). You can now pass `null` as a device ID if you only want to update your microphone or camera and not affect the other device.

```javascript theme={null}
await call.setInputDevicesAsync({
  videoSource: yourMediaStream.getVideoTracks()[0],
  audioSource: null,
});
```

* Out with the old and in with the async! `setOutputDevice()` is now deprecated. [`setOutputDeviceAsync()`](/reference/daily-js/instance-methods/set-output-device-async) can (and should) be used in its place starting with this release.

```javascript theme={null}
await call.setOutputDeviceAsync({
  outputDeviceId: 'output-device-id',
});
```

## Daily Prebuilt

* HIPAA-enabled domains can use Daily Prebuilt's UI to start recordings that will specifically be stored in a custom AWS S3 bucket. Read our [guide on how to get set up with custom S3 buckets](/docs/guides/features/recording/custom-s3-storage), as well as [more information](/docs/guides/privacy-and-security/hipaa) on our HIPAA setting.

## Dashboard

* Configure default chat settings at the domain level through the [dashboard](https://dashboard.daily.co/rooms-settings).
* Enable chat for HIPAA-enabled domains through the dashboard. (And, yes, Daily Prebuilt chat is HIPAA-compliant. 🤗)

## VCS

* The VCS SDK is officially live! 🎉 Read our [VCS SDK docs](/docs/vcs) and [announcement post](https://www.daily.co/blog/new-beta-dailys-video-component-system/) to learn more.
