From 061a638ba81dd57e8b8889db55871a8f7a41320f Mon Sep 17 00:00:00 2001 From: Brian Barrow Date: Thu, 7 Jul 2022 14:36:21 -0600 Subject: [PATCH] fixed typo in options comment --- CHANGELOG.md | 19 +++++++++++++++++++ src/types/liveTranscriptionOptions.ts | 2 +- src/types/prerecordedTranscriptionOptions.ts | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fb963c4..eadc7129 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,11 +9,30 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 --- +## [1.4.3] + +### Added + +- Added `tier` to transcription option types + +## [1.4.2] + +### Added + +- Updated build step to build separate files for browser version + +## [1.4.1] + +### Added + +- Small fix for npm deployment + ## [1.4.0] ### Added - Added Browser compatible versions of the live and preRecorded transcription methods + ## [1.3.1] ### Updated diff --git a/src/types/liveTranscriptionOptions.ts b/src/types/liveTranscriptionOptions.ts index 6bbb6820..1ffc775f 100644 --- a/src/types/liveTranscriptionOptions.ts +++ b/src/types/liveTranscriptionOptions.ts @@ -22,7 +22,7 @@ export type LiveTranscriptionOptions = { /** * Tier of the model to use. - * @default because + * @default base * @remarks Possible values are base or enhanced * @see https://developers.deepgram.com/documentation/features/tier/ */ diff --git a/src/types/prerecordedTranscriptionOptions.ts b/src/types/prerecordedTranscriptionOptions.ts index ffddfad0..07230570 100644 --- a/src/types/prerecordedTranscriptionOptions.ts +++ b/src/types/prerecordedTranscriptionOptions.ts @@ -21,7 +21,7 @@ export type PrerecordedTranscriptionOptions = { version?: string; /** * Tier of the model to use. - * @default because + * @default base * @remarks Possible values are base or enhanced * @see https://developers.deepgram.com/documentation/features/tier/ */