Skip to content

Commit

Permalink
Merge AudioProcessor feature (#217)
Browse files Browse the repository at this point in the history
* VBLOCKS-2030 | API stubs and error checking (#202)

* AudioProcessor interface

* Adding add and remove api

* lint

* Address PR reviews

* Update audiohelper.ts

* VBLOCKS-2180 | AudioProcessor implementation (#207)

* AudioProcessor interface

* Adding add and remove api

* lint

* Making sure newStream is saved

* moving gUM call into one source

* progress

* progress: reviewing diffs

* Rename to be more specific

* stop stream

* Processed stream default

* progress

* Progress

* working version

* Removing unnecessary firefox check

* Restart streams on selected

* restart default stream

* logs

* VBLOCKS-2032 | AudioProcessor insights and reusing AudioHelper (#213)

* Build checks fix (#214)

* lint

* Temporary disabling unit tests

* 2.9.0-rc1

* 2.9.0-dev

* VBLOCKS-2031 VBLOCKS-2412 | Tests and Promise return type (#216)

* RC Prep: sync lock file version

* 2.9.0-rc2

* 2.9.0-dev

---------

Co-authored-by: twilio-vblocks-ci <svc.vblocks-ci@twilio.com>
  • Loading branch information
charliesantos and twilio-vblocks-ci authored Nov 16, 2023
1 parent f88a1fb commit 88b6b34
Show file tree
Hide file tree
Showing 16 changed files with 863 additions and 264 deletions.
3 changes: 2 additions & 1 deletion lib/twilio.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
* @packageDocumentation
* @internalapi
*/
import AudioProcessor from './twilio/audioprocessor';
import Call from './twilio/call';
import Device from './twilio/device';
import * as TwilioError from './twilio/errors';
import { Logger } from './twilio/log';
import { PreflightTest } from './twilio/preflight/preflight';

export { Call, Device, PreflightTest, Logger, TwilioError };
export { AudioProcessor, Call, Device, PreflightTest, Logger, TwilioError };
Loading

0 comments on commit 88b6b34

Please sign in to comment.