voice-router-dev 0.8.4 → 0.8.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.mjs CHANGED
@@ -5737,14 +5737,23 @@ var AssemblyAIAdapter = class extends BaseAdapter {
5737
5737
  "AssemblyAI adapter currently only supports URL-based audio input. Use audio.type='url'"
5738
5738
  );
5739
5739
  }
5740
+ const aaiOpts = { ...options?.assemblyai };
5741
+ if ("speech_model" in aaiOpts && aaiOpts.speech_model != null) {
5742
+ if (!aaiOpts.speech_models) {
5743
+ aaiOpts.speech_models = [aaiOpts.speech_model];
5744
+ }
5745
+ delete aaiOpts.speech_model;
5746
+ }
5740
5747
  const request = {
5741
- ...options?.assemblyai,
5748
+ ...aaiOpts,
5742
5749
  audio_url: audioUrl,
5743
5750
  // speech_models is required — default to universal-3-pro
5744
- speech_models: options?.assemblyai?.speech_models ?? ["universal-3-pro"],
5751
+ speech_models: aaiOpts.speech_models ?? [
5752
+ "universal-3-pro"
5753
+ ],
5745
5754
  // Enable punctuation and formatting by default
5746
- punctuate: options?.assemblyai?.punctuate ?? true,
5747
- format_text: options?.assemblyai?.format_text ?? true
5755
+ punctuate: aaiOpts.punctuate ?? true,
5756
+ format_text: aaiOpts.format_text ?? true
5748
5757
  };
5749
5758
  if (options) {
5750
5759
  if (options.model) {
@@ -12132,11 +12141,6 @@ var createTranscriptBody = zod3.object({
12132
12141
  "The URL to which we send [webhook](https://www.assemblyai.com/docs/deployment/webhooks-for-pre-recorded-audio) requests.\n"
12133
12142
  ),
12134
12143
  custom_topics: zod3.boolean().optional().describe("This parameter does not currently have any functionality attached to it."),
12135
- speech_model: zod3.string().describe(
12136
- "The speech model to use for the transcription. See [Model Selection](https://www.assemblyai.com/docs/pre-recorded-audio/select-the-speech-model) for available models."
12137
- ).or(zod3.null()).optional().describe(
12138
- "This parameter has been replaced with the `speech_models` parameter, learn more about the `speech_models` parameter [here](https://www.assemblyai.com/docs/pre-recorded-audio/select-the-speech-model).\n"
12139
- ),
12140
12144
  topics: zod3.array(zod3.string()).optional().describe("This parameter does not currently have any functionality attached to it."),
12141
12145
  audio_url: zod3.string().describe("The URL of the audio or video file to transcribe.")
12142
12146
  }).describe("The parameters for creating a transcript");
@@ -4823,6 +4823,12 @@ type SharedCallbackParameter = string;
4823
4823
  /**
4824
4824
  * SharedCallbackMethodParameter type definition
4825
4825
  */
4826
+ /**
4827
+ * SharedCallbackMethodParameter type definition
4828
+ */
4829
+ /**
4830
+ * SharedCallbackMethodParameter type definition
4831
+ */
4826
4832
  type SharedCallbackMethodParameter = typeof SharedCallbackMethodParameter[keyof typeof SharedCallbackMethodParameter];
4827
4833
  declare const SharedCallbackMethodParameter: {
4828
4834
  readonly POST: "POST";
@@ -4939,6 +4945,12 @@ type SharedCustomTopicParameter = string | string[];
4939
4945
  /**
4940
4946
  * SharedCustomTopicModeParameter type definition
4941
4947
  */
4948
+ /**
4949
+ * SharedCustomTopicModeParameter type definition
4950
+ */
4951
+ /**
4952
+ * SharedCustomTopicModeParameter type definition
4953
+ */
4942
4954
  type SharedCustomTopicModeParameter = typeof SharedCustomTopicModeParameter[keyof typeof SharedCustomTopicModeParameter];
4943
4955
  declare const SharedCustomTopicModeParameter: {
4944
4956
  readonly extended: "extended";
@@ -5012,6 +5024,12 @@ type SharedCustomIntentParameter = string | string[];
5012
5024
  /**
5013
5025
  * SharedCustomIntentModeParameter type definition
5014
5026
  */
5027
+ /**
5028
+ * SharedCustomIntentModeParameter type definition
5029
+ */
5030
+ /**
5031
+ * SharedCustomIntentModeParameter type definition
5032
+ */
5015
5033
  type SharedCustomIntentModeParameter = typeof SharedCustomIntentModeParameter[keyof typeof SharedCustomIntentModeParameter];
5016
5034
  declare const SharedCustomIntentModeParameter: {
5017
5035
  readonly extended: "extended";
@@ -5111,6 +5129,12 @@ type ListenV1DictationParameter = boolean;
5111
5129
  /**
5112
5130
  * ListenV1EncodingParameter type definition
5113
5131
  */
5132
+ /**
5133
+ * ListenV1EncodingParameter type definition
5134
+ */
5135
+ /**
5136
+ * ListenV1EncodingParameter type definition
5137
+ */
5114
5138
  type ListenV1EncodingParameter = typeof ListenV1EncodingParameter[keyof typeof ListenV1EncodingParameter];
5115
5139
  declare const ListenV1EncodingParameter: {
5116
5140
  readonly linear16: "linear16";
@@ -5802,20 +5826,6 @@ type TranscriptParamsWebhookAuthHeaderName = string | null;
5802
5826
  */
5803
5827
  type TranscriptParamsWebhookAuthHeaderValue = string | null;
5804
5828
 
5805
- /**
5806
- * Generated by orval v7.9.0 🍺
5807
- * Do not edit manually.
5808
- * AssemblyAI API
5809
- * AssemblyAI Speech-to-Text API - Batch transcription endpoints. Filtered from the official AssemblyAI docs spec.
5810
- * OpenAPI spec version: 1.0.0
5811
- */
5812
-
5813
- /**
5814
- * This parameter has been replaced with the `speech_models` parameter, learn more about the `speech_models` parameter [here](https://www.assemblyai.com/docs/pre-recorded-audio/select-the-speech-model).
5815
-
5816
- */
5817
- type TranscriptParamsSpeechModel = SpeechModel | null;
5818
-
5819
5829
  /**
5820
5830
  * Generated by orval v7.9.0 🍺
5821
5831
  * Do not edit manually.
@@ -5947,9 +5957,6 @@ interface TranscriptParams {
5947
5957
  webhook_url?: string;
5948
5958
  /** This parameter does not currently have any functionality attached to it. */
5949
5959
  custom_topics?: boolean;
5950
- /** This parameter has been replaced with the `speech_models` parameter, learn more about the `speech_models` parameter [here](https://www.assemblyai.com/docs/pre-recorded-audio/select-the-speech-model).
5951
- */
5952
- speech_model?: TranscriptParamsSpeechModel;
5953
5960
  /** This parameter does not currently have any functionality attached to it. */
5954
5961
  topics?: string[];
5955
5962
  /** The URL of the audio or video file to transcribe. */
@@ -7993,6 +8000,12 @@ type ManageV1FilterRequestIdParameter = string;
7993
8000
  /**
7994
8001
  * ManageV1FilterDeploymentParameter type definition
7995
8002
  */
8003
+ /**
8004
+ * ManageV1FilterDeploymentParameter type definition
8005
+ */
8006
+ /**
8007
+ * ManageV1FilterDeploymentParameter type definition
8008
+ */
7996
8009
  type ManageV1FilterDeploymentParameter = typeof ManageV1FilterDeploymentParameter[keyof typeof ManageV1FilterDeploymentParameter];
7997
8010
  declare const ManageV1FilterDeploymentParameter: {
7998
8011
  readonly hosted: "hosted";
@@ -8043,6 +8056,12 @@ declare const ManageV1FilterDeploymentParameter: {
8043
8056
  /**
8044
8057
  * ManageV1FilterEndpointParameter type definition
8045
8058
  */
8059
+ /**
8060
+ * ManageV1FilterEndpointParameter type definition
8061
+ */
8062
+ /**
8063
+ * ManageV1FilterEndpointParameter type definition
8064
+ */
8046
8065
  type ManageV1FilterEndpointParameter = typeof ManageV1FilterEndpointParameter[keyof typeof ManageV1FilterEndpointParameter];
8047
8066
  declare const ManageV1FilterEndpointParameter: {
8048
8067
  readonly listen: "listen";
@@ -8098,6 +8117,12 @@ declare const ManageV1FilterEndpointParameter: {
8098
8117
  /**
8099
8118
  * ManageV1FilterMethodParameter type definition
8100
8119
  */
8120
+ /**
8121
+ * ManageV1FilterMethodParameter type definition
8122
+ */
8123
+ /**
8124
+ * ManageV1FilterMethodParameter type definition
8125
+ */
8101
8126
  type ManageV1FilterMethodParameter = typeof ManageV1FilterMethodParameter[keyof typeof ManageV1FilterMethodParameter];
8102
8127
  declare const ManageV1FilterMethodParameter: {
8103
8128
  readonly sync: "sync";
@@ -8149,6 +8174,12 @@ declare const ManageV1FilterMethodParameter: {
8149
8174
  /**
8150
8175
  * ManageV1FilterStatusParameter type definition
8151
8176
  */
8177
+ /**
8178
+ * ManageV1FilterStatusParameter type definition
8179
+ */
8180
+ /**
8181
+ * ManageV1FilterStatusParameter type definition
8182
+ */
8152
8183
  type ManageV1FilterStatusParameter = typeof ManageV1FilterStatusParameter[keyof typeof ManageV1FilterStatusParameter];
8153
8184
  declare const ManageV1FilterStatusParameter: {
8154
8185
  readonly succeeded: "succeeded";
@@ -10814,4 +10845,4 @@ interface SpeechToTextChunkResponseModel {
10814
10845
  entities?: SpeechToTextChunkResponseModelEntities;
10815
10846
  }
10816
10847
 
10817
- export { type CustomSpellingConfigDTO as $, type AssemblyAIStreamingOptions as A, type AudioToLlmListDTOError as B, type CallbackConfig as C, type DeepgramStreamingOptions as D, type AudioToLlmResultDTO as E, type FileResponse as F, type GladiaStreamingOptions as G, type CallbackConfigDto as H, CallbackMethodEnum as I, type CallbackTranscriptionErrorPayload as J, type CallbackTranscriptionErrorPayloadCustomMetadata as K, type ListTranscriptsOptions as L, type MessagesConfig as M, type NamedEntityRecognitionDTO as N, CallbackTranscriptionErrorPayloadEvent as O, type PreProcessingConfig as P, type CallbackTranscriptionSuccessPayload as Q, type RealtimeProcessingConfig as R, type StreamingOptions as S, type TranscribeOptions as T, type UnifiedTranscriptResponse as U, type CallbackTranscriptionSuccessPayloadCustomMetadata as V, type WordDTO as W, CallbackTranscriptionSuccessPayloadEvent as X, type ChapterizationDTOError as Y, type ChapterizationDTOResults as Z, type CodeSwitchingConfigDTO as _, type StreamingCallbacks as a, type CustomFormattingRequestBodyCustomFormatting as a$, type CustomSpellingConfigDTOSpellingDictionary as a0, type CustomVocabularyConfigDTO as a1, type CustomVocabularyConfigDTOVocabularyItem as a2, type CustomVocabularyEntryDTO as a3, type DiarizationConfigDTO as a4, type DiarizationDTO as a5, type DiarizationDTOError as a6, type DisplayModeDTO as a7, type DisplayModeDTOError as a8, type ErrorDTO as a9, type SubtitlesConfigDTO as aA, SubtitlesFormatEnum as aB, SubtitlesStyleEnum as aC, type SummarizationConfigDTO as aD, type SummarizationDTOError as aE, SummaryTypesEnum as aF, TranscriptionControllerListV2KindItem as aG, type TranscriptionControllerListV2Params as aH, TranscriptionControllerListV2StatusItem as aI, type TranscriptionResultDTO as aJ, type TranslationConfigDTO as aK, type TranslationDTOError as aL, TranslationModelEnum as aM, type TranslationResultDTO as aN, type TranslationResultDTOError as aO, TranscriptStatus as aP, type TranscriptWord as aQ, AudioIntelligenceModelStatus as aR, type AutoHighlightResult as aS, type AutoHighlightsResult as aT, type Chapter$1 as aU, type ContentSafetyLabel as aV, type ContentSafetyLabelResult as aW, type ContentSafetyLabelsResult as aX, type ContentSafetyLabelsResultSeverityScoreSummary as aY, type ContentSafetyLabelsResultSummary as aZ, type CustomFormattingRequestBody as a_, type InitTranscriptionRequest as aa, type InitTranscriptionRequestCustomMetadata as ab, type ModerationDTO as ac, type ModerationDTOError as ad, type NamedEntityRecognitionDTOError as ae, type NamesConsistencyDTO as af, type NamesConsistencyDTOError as ag, type PreRecordedRequestParamsResponse as ah, type PreRecordedResponseCustomMetadata as ai, type PreRecordedResponseFile as aj, PreRecordedResponseKind as ak, type PreRecordedResponsePostSessionMetadata as al, type PreRecordedResponseRequestParams as am, type PreRecordedResponseResult as an, PreRecordedResponseStatus as ao, type SentencesDTO as ap, type SentencesDTOError as aq, type SentimentAnalysisDTOError as ar, type SpeakerReidentificationDTO as as, type SpeakerReidentificationDTOError as at, type StreamingRequest as au, type StreamingRequestCustomMetadata as av, type StructuredDataExtractionConfigDTO as aw, type StructuredDataExtractionDTO as ax, type StructuredDataExtractionDTOError as ay, type SubtitleDTO as az, type StreamingSession as b, type TranscriptOptionalParamsSpeechUnderstandingRequest as b$, type CustomFormattingResponse as b0, type CustomFormattingResponseCustomFormatting as b1, type CustomFormattingResponseCustomFormattingMapping as b2, type Entity as b3, EntityType as b4, type ListTranscriptsParams as b5, PiiPolicy as b6, RedactPiiAudioQuality as b7, Sentiment as b8, type SentimentAnalysisResult$1 as b9, type TranscriptConfidence as bA, type TranscriptContentSafety as bB, type TranscriptContentSafetyLabels as bC, type TranscriptCustomSpelling as bD, type TranscriptCustomSpellingProperty as bE, type TranscriptCustomTopics as bF, type TranscriptDisfluencies as bG, type TranscriptDomain as bH, type TranscriptEntities as bI, type TranscriptEntityDetection as bJ, type TranscriptFilterProfanity as bK, type TranscriptFormatText as bL, type TranscriptIabCategories as bM, type TranscriptIabCategoriesResult as bN, TranscriptLanguageCode as bO, type TranscriptLanguageCodes as bP, type TranscriptLanguageConfidence as bQ, type TranscriptLanguageConfidenceThreshold as bR, type TranscriptLanguageDetection as bS, type TranscriptLanguageDetectionOptions as bT, type TranscriptMultichannel as bU, type TranscriptOptionalParamsLanguageDetectionOptions as bV, type TranscriptOptionalParamsRedactPiiAudioOptions as bW, TranscriptOptionalParamsRedactPiiAudioOptionsOverrideAudioRedactionMethod as bX, TranscriptOptionalParamsRemoveAudioTags as bY, type TranscriptOptionalParamsSpeakerOptions as bZ, type TranscriptOptionalParamsSpeechUnderstanding as b_, type SentimentAnalysisResultChannel as ba, type SentimentAnalysisResultSpeaker as bb, type SeverityScoreSummary as bc, type SpeakerIdentificationRequestBody as bd, type SpeakerIdentificationRequestBodySpeakerIdentification as be, SpeakerIdentificationRequestBodySpeakerIdentificationSpeakerType as bf, type SpeakerIdentificationRequestBodySpeakerIdentificationSpeakersItems as bg, type SpeakerIdentificationResponse as bh, type SpeakerIdentificationResponseSpeakerIdentification as bi, type SpeakerIdentificationResponseSpeakerIdentificationMapping as bj, type SpeechModel as bk, SubstitutionPolicy as bl, SummaryModel as bm, SummaryType as bn, type Timestamp as bo, type TopicDetectionModelResult as bp, type TopicDetectionModelResultSummary as bq, type TopicDetectionResult$1 as br, type TopicDetectionResultLabelsItems as bs, type Transcript as bt, type TranscriptAudioDuration as bu, type TranscriptAudioEndAt as bv, type TranscriptAudioStartFrom as bw, type TranscriptAutoChapters as bx, type TranscriptAutoHighlightsResult as by, type TranscriptChapters as bz, type StreamEvent as c, type TranscriptionCustomProperties as c$, type TranscriptParams as c0, type TranscriptParamsDomain as c1, type TranscriptParamsLanguageCode as c2, type TranscriptParamsLanguageCodes as c3, type TranscriptParamsRedactPiiSub as c4, type TranscriptParamsRemoveAudioTags as c5, type TranscriptParamsSpeakersExpected as c6, type TranscriptParamsSpeechModel as c7, type TranscriptParamsSpeechThreshold as c8, type TranscriptParamsWebhookAuthHeaderName as c9, type TranscriptTranslatedTexts as cA, type TranscriptUtterance as cB, type TranscriptUtteranceChannel as cC, type TranscriptUtteranceTranslatedTexts as cD, type TranscriptUtterances as cE, type TranscriptWebhookAuthHeaderName as cF, type TranscriptWebhookStatusCode as cG, type TranscriptWebhookUrl as cH, type TranscriptWordChannel as cI, type TranscriptWordSpeaker as cJ, type TranscriptWords as cK, type TranslationRequestBody as cL, type TranslationRequestBodyTranslation as cM, type TranslationResponse as cN, type TranslationResponseTranslation as cO, type StreamingUpdateConfiguration as cP, type Transcription as cQ, type EntityError as cR, Status as cS, type EntityReference as cT, type DiarizationProperties as cU, type DiarizationSpeakersProperties as cV, LanguageIdentificationMode as cW, type LanguageIdentificationProperties as cX, type LanguageIdentificationPropertiesSpeechModelMapping as cY, ProfanityFilterMode as cZ, PunctuationMode as c_, type TranscriptParamsWebhookAuthHeaderValue as ca, type TranscriptPunctuate as cb, type TranscriptRedactPiiAudio as cc, type TranscriptRedactPiiAudioOptions as cd, TranscriptRedactPiiAudioOptionsOverrideAudioRedactionMethod as ce, type TranscriptRedactPiiAudioQuality as cf, type TranscriptRedactPiiPolicies as cg, TranscriptRemoveAudioTags as ch, type TranscriptRemoveAudioTagsProperty as ci, type TranscriptSentimentAnalysis as cj, type TranscriptSentimentAnalysisResults as ck, type TranscriptSpeakerLabels as cl, type TranscriptSpeakersExpected as cm, type TranscriptSpeechModel as cn, type TranscriptSpeechModels as co, type TranscriptSpeechThreshold as cp, type TranscriptSpeechUnderstanding as cq, type TranscriptSpeechUnderstandingRequest as cr, type TranscriptSpeechUnderstandingResponse as cs, type TranscriptSpeedBoost as ct, type TranscriptSummary as cu, type TranscriptSummaryModel as cv, type TranscriptSummaryType as cw, type TranscriptTemperature as cx, type TranscriptText as cy, type TranscriptThrottled as cz, StreamingSupportedEncodingEnum as d, type ListenV1LanguageParameter as d$, type TranscriptionLinks as d0, type TranscriptionProperties as d1, type TranscriptTextUsageTokens as d2, type TranscriptionSegment as d3, type RealtimeSessionCreateRequestGAModel as d4, RealtimeTranscriptionSessionCreateRequestTurnDetectionType as d5, RealtimeTranscriptionSessionCreateRequestInputAudioFormat as d6, AudioResponseFormat as d7, type CreateTranscription200One as d8, type CreateTranscriptionRequest as d9, type ManageV1LimitParameter as dA, type ManageV1PageParameter as dB, ManageV1FilterEndpointParameter as dC, ManageV1FilterMethodParameter as dD, type SharedTopics as dE, type SharedIntents as dF, type SharedSentiments as dG, type SharedCallbackParameter as dH, SharedCallbackMethodParameter as dI, type SharedSentimentParameter as dJ, type SharedSummarizeParameter as dK, type SharedTagParameter as dL, type SharedTopicsParameter as dM, type SharedCustomTopicParameter as dN, SharedCustomTopicModeParameter as dO, type SharedIntentsParameter as dP, type SharedCustomIntentParameter as dQ, SharedCustomIntentModeParameter as dR, type SharedMipOptOutParameter as dS, type ListenV1DetectEntitiesParameter as dT, type ListenV1DetectLanguageParameter as dU, type ListenV1DiarizeParameter as dV, type ListenV1DictationParameter as dW, ListenV1EncodingParameter as dX, type ListenV1FillerWordsParameter as dY, type ListenV1KeytermParameter as dZ, type ListenV1KeywordsParameter as d_, type CreateTranscriptionRequestModel as da, type CreateTranscriptionRequestStream as db, CreateTranscriptionRequestTimestampGranularitiesItem as dc, type CreateTranscriptionResponseDiarizedJson as dd, CreateTranscriptionResponseDiarizedJsonTask as de, type CreateTranscriptionResponseDiarizedJsonUsage as df, type CreateTranscriptionResponseJson as dg, type CreateTranscriptionResponseJsonLogprobsItem as dh, type CreateTranscriptionResponseJsonUsage as di, type CreateTranscriptionResponseVerboseJson as dj, type TranscriptTextUsageDuration as dk, TranscriptTextUsageDurationType as dl, type TranscriptTextUsageTokensInputTokenDetails as dm, TranscriptTextUsageTokensType as dn, type TranscriptionChunkingStrategy as dp, type TranscriptionChunkingStrategyAnyOf as dq, type TranscriptionDiarizedSegment as dr, TranscriptionDiarizedSegmentType as ds, TranscriptionInclude as dt, type TranscriptionWord as du, type VadConfig as dv, VadConfigType as dw, type ListenV1Response as dx, type ManageV1FilterAccessorParameter as dy, ManageV1FilterDeploymentParameter as dz, StreamingSupportedBitDepthEnum as e, type AudioEventSummaryItem as e$, type ListenV1MeasurementsParameter as e0, type ListenV1MediaTranscribeParams as e1, type ListenV1ModelParameter as e2, type ListenV1MultichannelParameter as e3, type ListenV1NumeralsParameter as e4, type ListenV1ParagraphsParameter as e5, type ListenV1ProfanityFilterParameter as e6, type ListenV1PunctuateParameter as e7, type ListenV1RedactParameter as e8, ListenV1RedactParameterOneOfItem as e9, type ListenV1UttSplitParameter as eA, type ListenV1UtterancesParameter as eB, type ListenV1VersionParameter as eC, type ManageV1EndDateTimeParameter as eD, type ManageV1FilterRequestIdParameter as eE, ManageV1FilterStatusParameter as eF, type ManageV1ProjectsRequestsListParams as eG, type ManageV1StartDateTimeParameter as eH, type SharedExtraParameter as eI, type SharedIntentsResults as eJ, type SharedIntentsResultsIntents as eK, type SharedIntentsResultsIntentsSegmentsItem as eL, type SharedIntentsResultsIntentsSegmentsItemIntentsItem as eM, type SharedSentimentsAverage as eN, type SharedSentimentsSegmentsItem as eO, type SharedTopicsResults as eP, type SharedTopicsResultsTopics as eQ, type SharedTopicsResultsTopicsSegmentsItem as eR, type SharedTopicsResultsTopicsSegmentsItemTopicsItem as eS, JobType as eT, type AlignmentConfig as eU, type TranscriptionConfig as eV, type TrackingData as eW, type OutputConfig as eX, OperatingPoint as eY, type AudioEventItem as eZ, type AudioEventSummary as e_, type ListenV1ReplaceParameter as ea, type ListenV1ResponseMetadata as eb, type ListenV1ResponseMetadataIntentsInfo as ec, type ListenV1ResponseMetadataModelInfo as ed, type ListenV1ResponseMetadataSentimentInfo as ee, type ListenV1ResponseMetadataSummaryInfo as ef, type ListenV1ResponseMetadataTopicsInfo as eg, type ListenV1ResponseResults as eh, type ListenV1ResponseResultsChannels as ei, type ListenV1ResponseResultsChannelsItem as ej, type ListenV1ResponseResultsChannelsItemAlternativesItem as ek, type ListenV1ResponseResultsChannelsItemAlternativesItemEntitiesItem as el, type ListenV1ResponseResultsChannelsItemAlternativesItemParagraphs as em, type ListenV1ResponseResultsChannelsItemAlternativesItemParagraphsParagraphsItem as en, type ListenV1ResponseResultsChannelsItemAlternativesItemParagraphsParagraphsItemSentencesItem as eo, type ListenV1ResponseResultsChannelsItemAlternativesItemSummariesItem as ep, type ListenV1ResponseResultsChannelsItemAlternativesItemTopicsItem as eq, type ListenV1ResponseResultsChannelsItemAlternativesItemWordsItem as er, type ListenV1ResponseResultsChannelsItemSearchItem as es, type ListenV1ResponseResultsChannelsItemSearchItemHitsItem as et, type ListenV1ResponseResultsSummary as eu, type ListenV1ResponseResultsUtterances as ev, type ListenV1ResponseResultsUtterancesItem as ew, type ListenV1ResponseResultsUtterancesItemWordsItem as ex, type ListenV1SearchParameter as ey, type ListenV1SmartFormatParameter as ez, StreamingSupportedSampleRateEnum as f, type BodySpeechToTextV1SpeechToTextPostEntityDetection as f$, type AutoChaptersResult as f0, type AutoChaptersResultError as f1, AutoChaptersResultErrorType as f2, type Chapter as f3, type JobInfo as f4, type LanguageIdentificationResult as f5, type LanguageIdentificationResultAlternative as f6, LanguageIdentificationResultError as f7, type LanguageIdentificationResultItem as f8, type LanguagePackInfo as f9, type SummarizationResult as fA, type TopicDetectionError as fB, TopicDetectionErrorType as fC, type TopicDetectionResult as fD, type TopicDetectionSegment as fE, type TopicDetectionSegmentTopic as fF, type TopicDetectionSummary as fG, type TopicDetectionSummaryOverall as fH, type TrackingDataDetails as fI, type TranscriptionConfigAdditionalVocabItem as fJ, TranscriptionConfigDiarization as fK, TranscriptionConfigMaxDelayMode as fL, type TranscriptionConfigPunctuationOverrides as fM, type TranscriptionConfigSpeakerDiarizationConfig as fN, type TranscriptionConfigTranscriptFilteringConfig as fO, type TranscriptionConfigTranscriptFilteringConfigReplacementsItem as fP, type TranslationError as fQ, TranslationErrorType as fR, type TranslationSentence as fS, type WrittenFormRecognitionResult as fT, WrittenFormRecognitionResultType as fU, type SpeechToTextChunkResponseModel as fV, type AdditionalFormatResponseModel as fW, type AdditionalFormats as fX, type BodySpeechToTextV1SpeechToTextPost as fY, type BodySpeechToTextV1SpeechToTextPostCloudStorageUrl as fZ, type BodySpeechToTextV1SpeechToTextPostDiarizationThreshold as f_, LanguagePackInfoWritingDirection as fa, type OutputConfigSrtOverrides as fb, type RecognitionAlternative as fc, type RecognitionDisplay as fd, RecognitionDisplayDirection as fe, type RecognitionMetadata as ff, type RecognitionResult as fg, RecognitionResultAttachesTo as fh, RecognitionResultType as fi, type RetrieveTranscriptResponse as fj, type RetrieveTranscriptResponseAudioEventSummary as fk, type RetrieveTranscriptResponseAudioEventSummaryChannels as fl, type RetrieveTranscriptResponseTranslations as fm, type SentimentAnalysisError as fn, SentimentAnalysisErrorType as fo, type SentimentAnalysisResult as fp, type SentimentAnalysisResultSentimentAnalysis as fq, type SentimentChannelSummary as fr, type SentimentSegment as fs, type SentimentSpeakerSummary as ft, type SentimentSummary as fu, type SentimentSummaryDetail as fv, type SpokenFormRecognitionResult as fw, SpokenFormRecognitionResultType as fx, type SummarizationError as fy, SummarizationErrorType as fz, StreamingSupportedModels as g, type GladiaExtendedData as g$, type BodySpeechToTextV1SpeechToTextPostFile as g0, BodySpeechToTextV1SpeechToTextPostFileFormat as g1, type BodySpeechToTextV1SpeechToTextPostLanguageCode as g2, BodySpeechToTextV1SpeechToTextPostModelId as g3, type BodySpeechToTextV1SpeechToTextPostNumSpeakers as g4, type BodySpeechToTextV1SpeechToTextPostSeed as g5, type BodySpeechToTextV1SpeechToTextPostTemperature as g6, BodySpeechToTextV1SpeechToTextPostTimestampsGranularity as g7, type BodySpeechToTextV1SpeechToTextPostWebhookId as g8, type BodySpeechToTextV1SpeechToTextPostWebhookMetadata as g9, type SpeechToTextChunkResponseModelAdditionalFormats as gA, type SpeechToTextChunkResponseModelAdditionalFormatsAnyOfItem as gB, type SpeechToTextChunkResponseModelChannelIndex as gC, type SpeechToTextChunkResponseModelEntities as gD, type SpeechToTextChunkResponseModelTranscriptionId as gE, type SpeechToTextWordResponseModel as gF, type SpeechToTextWordResponseModelCharacters as gG, type SpeechToTextWordResponseModelEnd as gH, type SpeechToTextWordResponseModelSpeakerId as gI, type SpeechToTextWordResponseModelStart as gJ, SpeechToTextWordResponseModelType as gK, type SrtExportOptions as gL, SrtExportOptionsFormat as gM, type SrtExportOptionsMaxCharactersPerLine as gN, type SrtExportOptionsMaxSegmentChars as gO, type SrtExportOptionsMaxSegmentDurationS as gP, type SrtExportOptionsSegmentOnSilenceLongerThanS as gQ, type TxtExportOptions as gR, TxtExportOptionsFormat as gS, type TxtExportOptionsMaxCharactersPerLine as gT, type TxtExportOptionsMaxSegmentChars as gU, type TxtExportOptionsMaxSegmentDurationS as gV, type TxtExportOptionsSegmentOnSilenceLongerThanS as gW, type SpeechmaticsOperatingPoint as gX, type TranscriptionModel as gY, type TranscriptionLanguage as gZ, type AssemblyAIExtendedData as g_, type BodySpeechToTextV1SpeechToTextPostWebhookMetadataAnyOf as ga, type DetectedEntity as gb, type DocxExportOptions as gc, DocxExportOptionsFormat as gd, type DocxExportOptionsMaxSegmentChars as ge, type DocxExportOptionsMaxSegmentDurationS as gf, type DocxExportOptionsSegmentOnSilenceLongerThanS as gg, type ExportOptions as gh, type HtmlExportOptions as gi, HtmlExportOptionsFormat as gj, type HtmlExportOptionsMaxSegmentChars as gk, type HtmlExportOptionsMaxSegmentDurationS as gl, type HtmlExportOptionsSegmentOnSilenceLongerThanS as gm, type PdfExportOptions as gn, PdfExportOptionsFormat as go, type PdfExportOptionsMaxSegmentChars as gp, type PdfExportOptionsMaxSegmentDurationS as gq, type PdfExportOptionsSegmentOnSilenceLongerThanS as gr, type SegmentedJsonExportOptions as gs, SegmentedJsonExportOptionsFormat as gt, type SegmentedJsonExportOptionsMaxSegmentChars as gu, type SegmentedJsonExportOptionsMaxSegmentDurationS as gv, type SegmentedJsonExportOptionsSegmentOnSilenceLongerThanS as gw, type SpeechToTextCharacterResponseModel as gx, type SpeechToTextCharacterResponseModelEnd as gy, type SpeechToTextCharacterResponseModelStart as gz, type LanguageConfig as h, type DeepgramExtendedData as h0, type ElevenLabsExtendedData as h1, type ProviderExtendedDataMap as h2, type StreamingProvider as h3, type BatchOnlyProvider as h4, type SessionStatus as h5, type Speaker as h6, type Word as h7, type Utterance as h8, type TranscriptionStatus as h9, type StreamingEventMessage as hA, type StreamingWord as hB, type StreamingForceEndpoint as hC, type TranscriptMetadata as ha, type TranscriptData as hb, type ListTranscriptsResponse as hc, type ProviderRawResponseMap as hd, type StreamEventType as he, type SpeechEvent as hf, type TranslationEvent as hg, type SentimentEvent as hh, type EntityEvent as hi, type SummarizationEvent as hj, type ChapterizationEvent as hk, type AudioAckEvent as hl, type LifecycleEvent as hm, type AudioChunk as hn, type RawWebSocketMessage as ho, type AssemblyAIUpdateConfiguration as hp, type OpenAIStreamingOptions as hq, type SonioxStreamingOptions as hr, type ElevenLabsStreamingOptions as hs, type ProviderStreamingOptions as ht, type StreamingOptionsForProvider as hu, type TranscribeStreamParams as hv, type BeginEvent as hw, type TurnEvent as hx, type TerminationEvent as hy, type ErrorEvent as hz, type PostProcessingConfig as i, type TranscriptionMetadataDTO as j, type TranscriptionDTO as k, type TranslationDTO as l, type SummarizationDTO as m, type SentimentAnalysisDTO as n, type ChapterizationDTO as o, type PreRecordedResponse as p, type UtteranceDTO as q, TranscriptionLanguageCodeEnum as r, TranslationLanguageCodeEnum as s, StreamingSupportedRegions as t, type AddonErrorDTO as u, type AudioToLlmDTO as v, type AudioToLlmDTOError as w, type AudioToLlmDTOResults as x, type AudioToLlmListConfigDTO as y, type AudioToLlmListDTO as z };
10848
+ export { type CustomSpellingConfigDTO as $, type AssemblyAIStreamingOptions as A, type AudioToLlmListDTOError as B, type CallbackConfig as C, type DeepgramStreamingOptions as D, type AudioToLlmResultDTO as E, type FileResponse as F, type GladiaStreamingOptions as G, type CallbackConfigDto as H, CallbackMethodEnum as I, type CallbackTranscriptionErrorPayload as J, type CallbackTranscriptionErrorPayloadCustomMetadata as K, type ListTranscriptsOptions as L, type MessagesConfig as M, type NamedEntityRecognitionDTO as N, CallbackTranscriptionErrorPayloadEvent as O, type PreProcessingConfig as P, type CallbackTranscriptionSuccessPayload as Q, type RealtimeProcessingConfig as R, type StreamingOptions as S, type TranscribeOptions as T, type UnifiedTranscriptResponse as U, type CallbackTranscriptionSuccessPayloadCustomMetadata as V, type WordDTO as W, CallbackTranscriptionSuccessPayloadEvent as X, type ChapterizationDTOError as Y, type ChapterizationDTOResults as Z, type CodeSwitchingConfigDTO as _, type StreamingCallbacks as a, type CustomFormattingRequestBodyCustomFormatting as a$, type CustomSpellingConfigDTOSpellingDictionary as a0, type CustomVocabularyConfigDTO as a1, type CustomVocabularyConfigDTOVocabularyItem as a2, type CustomVocabularyEntryDTO as a3, type DiarizationConfigDTO as a4, type DiarizationDTO as a5, type DiarizationDTOError as a6, type DisplayModeDTO as a7, type DisplayModeDTOError as a8, type ErrorDTO as a9, type SubtitlesConfigDTO as aA, SubtitlesFormatEnum as aB, SubtitlesStyleEnum as aC, type SummarizationConfigDTO as aD, type SummarizationDTOError as aE, SummaryTypesEnum as aF, TranscriptionControllerListV2KindItem as aG, type TranscriptionControllerListV2Params as aH, TranscriptionControllerListV2StatusItem as aI, type TranscriptionResultDTO as aJ, type TranslationConfigDTO as aK, type TranslationDTOError as aL, TranslationModelEnum as aM, type TranslationResultDTO as aN, type TranslationResultDTOError as aO, TranscriptStatus as aP, type TranscriptWord as aQ, AudioIntelligenceModelStatus as aR, type AutoHighlightResult as aS, type AutoHighlightsResult as aT, type Chapter$1 as aU, type ContentSafetyLabel as aV, type ContentSafetyLabelResult as aW, type ContentSafetyLabelsResult as aX, type ContentSafetyLabelsResultSeverityScoreSummary as aY, type ContentSafetyLabelsResultSummary as aZ, type CustomFormattingRequestBody as a_, type InitTranscriptionRequest as aa, type InitTranscriptionRequestCustomMetadata as ab, type ModerationDTO as ac, type ModerationDTOError as ad, type NamedEntityRecognitionDTOError as ae, type NamesConsistencyDTO as af, type NamesConsistencyDTOError as ag, type PreRecordedRequestParamsResponse as ah, type PreRecordedResponseCustomMetadata as ai, type PreRecordedResponseFile as aj, PreRecordedResponseKind as ak, type PreRecordedResponsePostSessionMetadata as al, type PreRecordedResponseRequestParams as am, type PreRecordedResponseResult as an, PreRecordedResponseStatus as ao, type SentencesDTO as ap, type SentencesDTOError as aq, type SentimentAnalysisDTOError as ar, type SpeakerReidentificationDTO as as, type SpeakerReidentificationDTOError as at, type StreamingRequest as au, type StreamingRequestCustomMetadata as av, type StructuredDataExtractionConfigDTO as aw, type StructuredDataExtractionDTO as ax, type StructuredDataExtractionDTOError as ay, type SubtitleDTO as az, type StreamingSession as b, type TranscriptOptionalParamsSpeechUnderstandingRequest as b$, type CustomFormattingResponse as b0, type CustomFormattingResponseCustomFormatting as b1, type CustomFormattingResponseCustomFormattingMapping as b2, type Entity as b3, EntityType as b4, type ListTranscriptsParams as b5, PiiPolicy as b6, RedactPiiAudioQuality as b7, Sentiment as b8, type SentimentAnalysisResult$1 as b9, type TranscriptConfidence as bA, type TranscriptContentSafety as bB, type TranscriptContentSafetyLabels as bC, type TranscriptCustomSpelling as bD, type TranscriptCustomSpellingProperty as bE, type TranscriptCustomTopics as bF, type TranscriptDisfluencies as bG, type TranscriptDomain as bH, type TranscriptEntities as bI, type TranscriptEntityDetection as bJ, type TranscriptFilterProfanity as bK, type TranscriptFormatText as bL, type TranscriptIabCategories as bM, type TranscriptIabCategoriesResult as bN, TranscriptLanguageCode as bO, type TranscriptLanguageCodes as bP, type TranscriptLanguageConfidence as bQ, type TranscriptLanguageConfidenceThreshold as bR, type TranscriptLanguageDetection as bS, type TranscriptLanguageDetectionOptions as bT, type TranscriptMultichannel as bU, type TranscriptOptionalParamsLanguageDetectionOptions as bV, type TranscriptOptionalParamsRedactPiiAudioOptions as bW, TranscriptOptionalParamsRedactPiiAudioOptionsOverrideAudioRedactionMethod as bX, TranscriptOptionalParamsRemoveAudioTags as bY, type TranscriptOptionalParamsSpeakerOptions as bZ, type TranscriptOptionalParamsSpeechUnderstanding as b_, type SentimentAnalysisResultChannel as ba, type SentimentAnalysisResultSpeaker as bb, type SeverityScoreSummary as bc, type SpeakerIdentificationRequestBody as bd, type SpeakerIdentificationRequestBodySpeakerIdentification as be, SpeakerIdentificationRequestBodySpeakerIdentificationSpeakerType as bf, type SpeakerIdentificationRequestBodySpeakerIdentificationSpeakersItems as bg, type SpeakerIdentificationResponse as bh, type SpeakerIdentificationResponseSpeakerIdentification as bi, type SpeakerIdentificationResponseSpeakerIdentificationMapping as bj, type SpeechModel as bk, SubstitutionPolicy as bl, SummaryModel as bm, SummaryType as bn, type Timestamp as bo, type TopicDetectionModelResult as bp, type TopicDetectionModelResultSummary as bq, type TopicDetectionResult$1 as br, type TopicDetectionResultLabelsItems as bs, type Transcript as bt, type TranscriptAudioDuration as bu, type TranscriptAudioEndAt as bv, type TranscriptAudioStartFrom as bw, type TranscriptAutoChapters as bx, type TranscriptAutoHighlightsResult as by, type TranscriptChapters as bz, type StreamEvent as c, type TranscriptionLinks as c$, type TranscriptParams as c0, type TranscriptParamsDomain as c1, type TranscriptParamsLanguageCode as c2, type TranscriptParamsLanguageCodes as c3, type TranscriptParamsRedactPiiSub as c4, type TranscriptParamsRemoveAudioTags as c5, type TranscriptParamsSpeakersExpected as c6, type TranscriptParamsSpeechThreshold as c7, type TranscriptParamsWebhookAuthHeaderName as c8, type TranscriptParamsWebhookAuthHeaderValue as c9, type TranscriptUtterance as cA, type TranscriptUtteranceChannel as cB, type TranscriptUtteranceTranslatedTexts as cC, type TranscriptUtterances as cD, type TranscriptWebhookAuthHeaderName as cE, type TranscriptWebhookStatusCode as cF, type TranscriptWebhookUrl as cG, type TranscriptWordChannel as cH, type TranscriptWordSpeaker as cI, type TranscriptWords as cJ, type TranslationRequestBody as cK, type TranslationRequestBodyTranslation as cL, type TranslationResponse as cM, type TranslationResponseTranslation as cN, type StreamingUpdateConfiguration as cO, type Transcription as cP, type EntityError as cQ, Status as cR, type EntityReference as cS, type DiarizationProperties as cT, type DiarizationSpeakersProperties as cU, LanguageIdentificationMode as cV, type LanguageIdentificationProperties as cW, type LanguageIdentificationPropertiesSpeechModelMapping as cX, ProfanityFilterMode as cY, PunctuationMode as cZ, type TranscriptionCustomProperties as c_, type TranscriptPunctuate as ca, type TranscriptRedactPiiAudio as cb, type TranscriptRedactPiiAudioOptions as cc, TranscriptRedactPiiAudioOptionsOverrideAudioRedactionMethod as cd, type TranscriptRedactPiiAudioQuality as ce, type TranscriptRedactPiiPolicies as cf, TranscriptRemoveAudioTags as cg, type TranscriptRemoveAudioTagsProperty as ch, type TranscriptSentimentAnalysis as ci, type TranscriptSentimentAnalysisResults as cj, type TranscriptSpeakerLabels as ck, type TranscriptSpeakersExpected as cl, type TranscriptSpeechModel as cm, type TranscriptSpeechModels as cn, type TranscriptSpeechThreshold as co, type TranscriptSpeechUnderstanding as cp, type TranscriptSpeechUnderstandingRequest as cq, type TranscriptSpeechUnderstandingResponse as cr, type TranscriptSpeedBoost as cs, type TranscriptSummary as ct, type TranscriptSummaryModel as cu, type TranscriptSummaryType as cv, type TranscriptTemperature as cw, type TranscriptText as cx, type TranscriptThrottled as cy, type TranscriptTranslatedTexts as cz, StreamingSupportedEncodingEnum as d, type ListenV1MeasurementsParameter as d$, type TranscriptionProperties as d0, type TranscriptTextUsageTokens as d1, type TranscriptionSegment as d2, type RealtimeSessionCreateRequestGAModel as d3, RealtimeTranscriptionSessionCreateRequestTurnDetectionType as d4, RealtimeTranscriptionSessionCreateRequestInputAudioFormat as d5, AudioResponseFormat as d6, type CreateTranscription200One as d7, type CreateTranscriptionRequest as d8, type CreateTranscriptionRequestModel as d9, type ManageV1PageParameter as dA, ManageV1FilterEndpointParameter as dB, ManageV1FilterMethodParameter as dC, type SharedTopics as dD, type SharedIntents as dE, type SharedSentiments as dF, type SharedCallbackParameter as dG, SharedCallbackMethodParameter as dH, type SharedSentimentParameter as dI, type SharedSummarizeParameter as dJ, type SharedTagParameter as dK, type SharedTopicsParameter as dL, type SharedCustomTopicParameter as dM, SharedCustomTopicModeParameter as dN, type SharedIntentsParameter as dO, type SharedCustomIntentParameter as dP, SharedCustomIntentModeParameter as dQ, type SharedMipOptOutParameter as dR, type ListenV1DetectEntitiesParameter as dS, type ListenV1DetectLanguageParameter as dT, type ListenV1DiarizeParameter as dU, type ListenV1DictationParameter as dV, ListenV1EncodingParameter as dW, type ListenV1FillerWordsParameter as dX, type ListenV1KeytermParameter as dY, type ListenV1KeywordsParameter as dZ, type ListenV1LanguageParameter as d_, type CreateTranscriptionRequestStream as da, CreateTranscriptionRequestTimestampGranularitiesItem as db, type CreateTranscriptionResponseDiarizedJson as dc, CreateTranscriptionResponseDiarizedJsonTask as dd, type CreateTranscriptionResponseDiarizedJsonUsage as de, type CreateTranscriptionResponseJson as df, type CreateTranscriptionResponseJsonLogprobsItem as dg, type CreateTranscriptionResponseJsonUsage as dh, type CreateTranscriptionResponseVerboseJson as di, type TranscriptTextUsageDuration as dj, TranscriptTextUsageDurationType as dk, type TranscriptTextUsageTokensInputTokenDetails as dl, TranscriptTextUsageTokensType as dm, type TranscriptionChunkingStrategy as dn, type TranscriptionChunkingStrategyAnyOf as dp, type TranscriptionDiarizedSegment as dq, TranscriptionDiarizedSegmentType as dr, TranscriptionInclude as ds, type TranscriptionWord as dt, type VadConfig as du, VadConfigType as dv, type ListenV1Response as dw, type ManageV1FilterAccessorParameter as dx, ManageV1FilterDeploymentParameter as dy, type ManageV1LimitParameter as dz, StreamingSupportedBitDepthEnum as e, type AutoChaptersResult as e$, type ListenV1MediaTranscribeParams as e0, type ListenV1ModelParameter as e1, type ListenV1MultichannelParameter as e2, type ListenV1NumeralsParameter as e3, type ListenV1ParagraphsParameter as e4, type ListenV1ProfanityFilterParameter as e5, type ListenV1PunctuateParameter as e6, type ListenV1RedactParameter as e7, ListenV1RedactParameterOneOfItem as e8, type ListenV1ReplaceParameter as e9, type ListenV1UtterancesParameter as eA, type ListenV1VersionParameter as eB, type ManageV1EndDateTimeParameter as eC, type ManageV1FilterRequestIdParameter as eD, ManageV1FilterStatusParameter as eE, type ManageV1ProjectsRequestsListParams as eF, type ManageV1StartDateTimeParameter as eG, type SharedExtraParameter as eH, type SharedIntentsResults as eI, type SharedIntentsResultsIntents as eJ, type SharedIntentsResultsIntentsSegmentsItem as eK, type SharedIntentsResultsIntentsSegmentsItemIntentsItem as eL, type SharedSentimentsAverage as eM, type SharedSentimentsSegmentsItem as eN, type SharedTopicsResults as eO, type SharedTopicsResultsTopics as eP, type SharedTopicsResultsTopicsSegmentsItem as eQ, type SharedTopicsResultsTopicsSegmentsItemTopicsItem as eR, JobType as eS, type AlignmentConfig as eT, type TranscriptionConfig as eU, type TrackingData as eV, type OutputConfig as eW, OperatingPoint as eX, type AudioEventItem as eY, type AudioEventSummary as eZ, type AudioEventSummaryItem as e_, type ListenV1ResponseMetadata as ea, type ListenV1ResponseMetadataIntentsInfo as eb, type ListenV1ResponseMetadataModelInfo as ec, type ListenV1ResponseMetadataSentimentInfo as ed, type ListenV1ResponseMetadataSummaryInfo as ee, type ListenV1ResponseMetadataTopicsInfo as ef, type ListenV1ResponseResults as eg, type ListenV1ResponseResultsChannels as eh, type ListenV1ResponseResultsChannelsItem as ei, type ListenV1ResponseResultsChannelsItemAlternativesItem as ej, type ListenV1ResponseResultsChannelsItemAlternativesItemEntitiesItem as ek, type ListenV1ResponseResultsChannelsItemAlternativesItemParagraphs as el, type ListenV1ResponseResultsChannelsItemAlternativesItemParagraphsParagraphsItem as em, type ListenV1ResponseResultsChannelsItemAlternativesItemParagraphsParagraphsItemSentencesItem as en, type ListenV1ResponseResultsChannelsItemAlternativesItemSummariesItem as eo, type ListenV1ResponseResultsChannelsItemAlternativesItemTopicsItem as ep, type ListenV1ResponseResultsChannelsItemAlternativesItemWordsItem as eq, type ListenV1ResponseResultsChannelsItemSearchItem as er, type ListenV1ResponseResultsChannelsItemSearchItemHitsItem as es, type ListenV1ResponseResultsSummary as et, type ListenV1ResponseResultsUtterances as eu, type ListenV1ResponseResultsUtterancesItem as ev, type ListenV1ResponseResultsUtterancesItemWordsItem as ew, type ListenV1SearchParameter as ex, type ListenV1SmartFormatParameter as ey, type ListenV1UttSplitParameter as ez, StreamingSupportedSampleRateEnum as f, type BodySpeechToTextV1SpeechToTextPostFile as f$, type AutoChaptersResultError as f0, AutoChaptersResultErrorType as f1, type Chapter as f2, type JobInfo as f3, type LanguageIdentificationResult as f4, type LanguageIdentificationResultAlternative as f5, LanguageIdentificationResultError as f6, type LanguageIdentificationResultItem as f7, type LanguagePackInfo as f8, LanguagePackInfoWritingDirection as f9, type TopicDetectionError as fA, TopicDetectionErrorType as fB, type TopicDetectionResult as fC, type TopicDetectionSegment as fD, type TopicDetectionSegmentTopic as fE, type TopicDetectionSummary as fF, type TopicDetectionSummaryOverall as fG, type TrackingDataDetails as fH, type TranscriptionConfigAdditionalVocabItem as fI, TranscriptionConfigDiarization as fJ, TranscriptionConfigMaxDelayMode as fK, type TranscriptionConfigPunctuationOverrides as fL, type TranscriptionConfigSpeakerDiarizationConfig as fM, type TranscriptionConfigTranscriptFilteringConfig as fN, type TranscriptionConfigTranscriptFilteringConfigReplacementsItem as fO, type TranslationError as fP, TranslationErrorType as fQ, type TranslationSentence as fR, type WrittenFormRecognitionResult as fS, WrittenFormRecognitionResultType as fT, type SpeechToTextChunkResponseModel as fU, type AdditionalFormatResponseModel as fV, type AdditionalFormats as fW, type BodySpeechToTextV1SpeechToTextPost as fX, type BodySpeechToTextV1SpeechToTextPostCloudStorageUrl as fY, type BodySpeechToTextV1SpeechToTextPostDiarizationThreshold as fZ, type BodySpeechToTextV1SpeechToTextPostEntityDetection as f_, type OutputConfigSrtOverrides as fa, type RecognitionAlternative as fb, type RecognitionDisplay as fc, RecognitionDisplayDirection as fd, type RecognitionMetadata as fe, type RecognitionResult as ff, RecognitionResultAttachesTo as fg, RecognitionResultType as fh, type RetrieveTranscriptResponse as fi, type RetrieveTranscriptResponseAudioEventSummary as fj, type RetrieveTranscriptResponseAudioEventSummaryChannels as fk, type RetrieveTranscriptResponseTranslations as fl, type SentimentAnalysisError as fm, SentimentAnalysisErrorType as fn, type SentimentAnalysisResult as fo, type SentimentAnalysisResultSentimentAnalysis as fp, type SentimentChannelSummary as fq, type SentimentSegment as fr, type SentimentSpeakerSummary as fs, type SentimentSummary as ft, type SentimentSummaryDetail as fu, type SpokenFormRecognitionResult as fv, SpokenFormRecognitionResultType as fw, type SummarizationError as fx, SummarizationErrorType as fy, type SummarizationResult as fz, StreamingSupportedModels as g, type DeepgramExtendedData as g$, BodySpeechToTextV1SpeechToTextPostFileFormat as g0, type BodySpeechToTextV1SpeechToTextPostLanguageCode as g1, BodySpeechToTextV1SpeechToTextPostModelId as g2, type BodySpeechToTextV1SpeechToTextPostNumSpeakers as g3, type BodySpeechToTextV1SpeechToTextPostSeed as g4, type BodySpeechToTextV1SpeechToTextPostTemperature as g5, BodySpeechToTextV1SpeechToTextPostTimestampsGranularity as g6, type BodySpeechToTextV1SpeechToTextPostWebhookId as g7, type BodySpeechToTextV1SpeechToTextPostWebhookMetadata as g8, type BodySpeechToTextV1SpeechToTextPostWebhookMetadataAnyOf as g9, type SpeechToTextChunkResponseModelAdditionalFormatsAnyOfItem as gA, type SpeechToTextChunkResponseModelChannelIndex as gB, type SpeechToTextChunkResponseModelEntities as gC, type SpeechToTextChunkResponseModelTranscriptionId as gD, type SpeechToTextWordResponseModel as gE, type SpeechToTextWordResponseModelCharacters as gF, type SpeechToTextWordResponseModelEnd as gG, type SpeechToTextWordResponseModelSpeakerId as gH, type SpeechToTextWordResponseModelStart as gI, SpeechToTextWordResponseModelType as gJ, type SrtExportOptions as gK, SrtExportOptionsFormat as gL, type SrtExportOptionsMaxCharactersPerLine as gM, type SrtExportOptionsMaxSegmentChars as gN, type SrtExportOptionsMaxSegmentDurationS as gO, type SrtExportOptionsSegmentOnSilenceLongerThanS as gP, type TxtExportOptions as gQ, TxtExportOptionsFormat as gR, type TxtExportOptionsMaxCharactersPerLine as gS, type TxtExportOptionsMaxSegmentChars as gT, type TxtExportOptionsMaxSegmentDurationS as gU, type TxtExportOptionsSegmentOnSilenceLongerThanS as gV, type SpeechmaticsOperatingPoint as gW, type TranscriptionModel as gX, type TranscriptionLanguage as gY, type AssemblyAIExtendedData as gZ, type GladiaExtendedData as g_, type DetectedEntity as ga, type DocxExportOptions as gb, DocxExportOptionsFormat as gc, type DocxExportOptionsMaxSegmentChars as gd, type DocxExportOptionsMaxSegmentDurationS as ge, type DocxExportOptionsSegmentOnSilenceLongerThanS as gf, type ExportOptions as gg, type HtmlExportOptions as gh, HtmlExportOptionsFormat as gi, type HtmlExportOptionsMaxSegmentChars as gj, type HtmlExportOptionsMaxSegmentDurationS as gk, type HtmlExportOptionsSegmentOnSilenceLongerThanS as gl, type PdfExportOptions as gm, PdfExportOptionsFormat as gn, type PdfExportOptionsMaxSegmentChars as go, type PdfExportOptionsMaxSegmentDurationS as gp, type PdfExportOptionsSegmentOnSilenceLongerThanS as gq, type SegmentedJsonExportOptions as gr, SegmentedJsonExportOptionsFormat as gs, type SegmentedJsonExportOptionsMaxSegmentChars as gt, type SegmentedJsonExportOptionsMaxSegmentDurationS as gu, type SegmentedJsonExportOptionsSegmentOnSilenceLongerThanS as gv, type SpeechToTextCharacterResponseModel as gw, type SpeechToTextCharacterResponseModelEnd as gx, type SpeechToTextCharacterResponseModelStart as gy, type SpeechToTextChunkResponseModelAdditionalFormats as gz, type LanguageConfig as h, type ElevenLabsExtendedData as h0, type ProviderExtendedDataMap as h1, type StreamingProvider as h2, type BatchOnlyProvider as h3, type SessionStatus as h4, type Speaker as h5, type Word as h6, type Utterance as h7, type TranscriptionStatus as h8, type TranscriptMetadata as h9, type StreamingWord as hA, type StreamingForceEndpoint as hB, type TranscriptData as ha, type ListTranscriptsResponse as hb, type ProviderRawResponseMap as hc, type StreamEventType as hd, type SpeechEvent as he, type TranslationEvent as hf, type SentimentEvent as hg, type EntityEvent as hh, type SummarizationEvent as hi, type ChapterizationEvent as hj, type AudioAckEvent as hk, type LifecycleEvent as hl, type AudioChunk as hm, type RawWebSocketMessage as hn, type AssemblyAIUpdateConfiguration as ho, type OpenAIStreamingOptions as hp, type SonioxStreamingOptions as hq, type ElevenLabsStreamingOptions as hr, type ProviderStreamingOptions as hs, type StreamingOptionsForProvider as ht, type TranscribeStreamParams as hu, type BeginEvent as hv, type TurnEvent as hw, type TerminationEvent as hx, type ErrorEvent as hy, type StreamingEventMessage as hz, type PostProcessingConfig as i, type TranscriptionMetadataDTO as j, type TranscriptionDTO as k, type TranslationDTO as l, type SummarizationDTO as m, type SentimentAnalysisDTO as n, type ChapterizationDTO as o, type PreRecordedResponse as p, type UtteranceDTO as q, TranscriptionLanguageCodeEnum as r, TranslationLanguageCodeEnum as s, StreamingSupportedRegions as t, type AddonErrorDTO as u, type AudioToLlmDTO as v, type AudioToLlmDTOError as w, type AudioToLlmDTOResults as x, type AudioToLlmListConfigDTO as y, type AudioToLlmListDTO as z };
@@ -4823,6 +4823,12 @@ type SharedCallbackParameter = string;
4823
4823
  /**
4824
4824
  * SharedCallbackMethodParameter type definition
4825
4825
  */
4826
+ /**
4827
+ * SharedCallbackMethodParameter type definition
4828
+ */
4829
+ /**
4830
+ * SharedCallbackMethodParameter type definition
4831
+ */
4826
4832
  type SharedCallbackMethodParameter = typeof SharedCallbackMethodParameter[keyof typeof SharedCallbackMethodParameter];
4827
4833
  declare const SharedCallbackMethodParameter: {
4828
4834
  readonly POST: "POST";
@@ -4939,6 +4945,12 @@ type SharedCustomTopicParameter = string | string[];
4939
4945
  /**
4940
4946
  * SharedCustomTopicModeParameter type definition
4941
4947
  */
4948
+ /**
4949
+ * SharedCustomTopicModeParameter type definition
4950
+ */
4951
+ /**
4952
+ * SharedCustomTopicModeParameter type definition
4953
+ */
4942
4954
  type SharedCustomTopicModeParameter = typeof SharedCustomTopicModeParameter[keyof typeof SharedCustomTopicModeParameter];
4943
4955
  declare const SharedCustomTopicModeParameter: {
4944
4956
  readonly extended: "extended";
@@ -5012,6 +5024,12 @@ type SharedCustomIntentParameter = string | string[];
5012
5024
  /**
5013
5025
  * SharedCustomIntentModeParameter type definition
5014
5026
  */
5027
+ /**
5028
+ * SharedCustomIntentModeParameter type definition
5029
+ */
5030
+ /**
5031
+ * SharedCustomIntentModeParameter type definition
5032
+ */
5015
5033
  type SharedCustomIntentModeParameter = typeof SharedCustomIntentModeParameter[keyof typeof SharedCustomIntentModeParameter];
5016
5034
  declare const SharedCustomIntentModeParameter: {
5017
5035
  readonly extended: "extended";
@@ -5111,6 +5129,12 @@ type ListenV1DictationParameter = boolean;
5111
5129
  /**
5112
5130
  * ListenV1EncodingParameter type definition
5113
5131
  */
5132
+ /**
5133
+ * ListenV1EncodingParameter type definition
5134
+ */
5135
+ /**
5136
+ * ListenV1EncodingParameter type definition
5137
+ */
5114
5138
  type ListenV1EncodingParameter = typeof ListenV1EncodingParameter[keyof typeof ListenV1EncodingParameter];
5115
5139
  declare const ListenV1EncodingParameter: {
5116
5140
  readonly linear16: "linear16";
@@ -5802,20 +5826,6 @@ type TranscriptParamsWebhookAuthHeaderName = string | null;
5802
5826
  */
5803
5827
  type TranscriptParamsWebhookAuthHeaderValue = string | null;
5804
5828
 
5805
- /**
5806
- * Generated by orval v7.9.0 🍺
5807
- * Do not edit manually.
5808
- * AssemblyAI API
5809
- * AssemblyAI Speech-to-Text API - Batch transcription endpoints. Filtered from the official AssemblyAI docs spec.
5810
- * OpenAPI spec version: 1.0.0
5811
- */
5812
-
5813
- /**
5814
- * This parameter has been replaced with the `speech_models` parameter, learn more about the `speech_models` parameter [here](https://www.assemblyai.com/docs/pre-recorded-audio/select-the-speech-model).
5815
-
5816
- */
5817
- type TranscriptParamsSpeechModel = SpeechModel | null;
5818
-
5819
5829
  /**
5820
5830
  * Generated by orval v7.9.0 🍺
5821
5831
  * Do not edit manually.
@@ -5947,9 +5957,6 @@ interface TranscriptParams {
5947
5957
  webhook_url?: string;
5948
5958
  /** This parameter does not currently have any functionality attached to it. */
5949
5959
  custom_topics?: boolean;
5950
- /** This parameter has been replaced with the `speech_models` parameter, learn more about the `speech_models` parameter [here](https://www.assemblyai.com/docs/pre-recorded-audio/select-the-speech-model).
5951
- */
5952
- speech_model?: TranscriptParamsSpeechModel;
5953
5960
  /** This parameter does not currently have any functionality attached to it. */
5954
5961
  topics?: string[];
5955
5962
  /** The URL of the audio or video file to transcribe. */
@@ -7993,6 +8000,12 @@ type ManageV1FilterRequestIdParameter = string;
7993
8000
  /**
7994
8001
  * ManageV1FilterDeploymentParameter type definition
7995
8002
  */
8003
+ /**
8004
+ * ManageV1FilterDeploymentParameter type definition
8005
+ */
8006
+ /**
8007
+ * ManageV1FilterDeploymentParameter type definition
8008
+ */
7996
8009
  type ManageV1FilterDeploymentParameter = typeof ManageV1FilterDeploymentParameter[keyof typeof ManageV1FilterDeploymentParameter];
7997
8010
  declare const ManageV1FilterDeploymentParameter: {
7998
8011
  readonly hosted: "hosted";
@@ -8043,6 +8056,12 @@ declare const ManageV1FilterDeploymentParameter: {
8043
8056
  /**
8044
8057
  * ManageV1FilterEndpointParameter type definition
8045
8058
  */
8059
+ /**
8060
+ * ManageV1FilterEndpointParameter type definition
8061
+ */
8062
+ /**
8063
+ * ManageV1FilterEndpointParameter type definition
8064
+ */
8046
8065
  type ManageV1FilterEndpointParameter = typeof ManageV1FilterEndpointParameter[keyof typeof ManageV1FilterEndpointParameter];
8047
8066
  declare const ManageV1FilterEndpointParameter: {
8048
8067
  readonly listen: "listen";
@@ -8098,6 +8117,12 @@ declare const ManageV1FilterEndpointParameter: {
8098
8117
  /**
8099
8118
  * ManageV1FilterMethodParameter type definition
8100
8119
  */
8120
+ /**
8121
+ * ManageV1FilterMethodParameter type definition
8122
+ */
8123
+ /**
8124
+ * ManageV1FilterMethodParameter type definition
8125
+ */
8101
8126
  type ManageV1FilterMethodParameter = typeof ManageV1FilterMethodParameter[keyof typeof ManageV1FilterMethodParameter];
8102
8127
  declare const ManageV1FilterMethodParameter: {
8103
8128
  readonly sync: "sync";
@@ -8149,6 +8174,12 @@ declare const ManageV1FilterMethodParameter: {
8149
8174
  /**
8150
8175
  * ManageV1FilterStatusParameter type definition
8151
8176
  */
8177
+ /**
8178
+ * ManageV1FilterStatusParameter type definition
8179
+ */
8180
+ /**
8181
+ * ManageV1FilterStatusParameter type definition
8182
+ */
8152
8183
  type ManageV1FilterStatusParameter = typeof ManageV1FilterStatusParameter[keyof typeof ManageV1FilterStatusParameter];
8153
8184
  declare const ManageV1FilterStatusParameter: {
8154
8185
  readonly succeeded: "succeeded";
@@ -10814,4 +10845,4 @@ interface SpeechToTextChunkResponseModel {
10814
10845
  entities?: SpeechToTextChunkResponseModelEntities;
10815
10846
  }
10816
10847
 
10817
- export { type CustomSpellingConfigDTO as $, type AssemblyAIStreamingOptions as A, type AudioToLlmListDTOError as B, type CallbackConfig as C, type DeepgramStreamingOptions as D, type AudioToLlmResultDTO as E, type FileResponse as F, type GladiaStreamingOptions as G, type CallbackConfigDto as H, CallbackMethodEnum as I, type CallbackTranscriptionErrorPayload as J, type CallbackTranscriptionErrorPayloadCustomMetadata as K, type ListTranscriptsOptions as L, type MessagesConfig as M, type NamedEntityRecognitionDTO as N, CallbackTranscriptionErrorPayloadEvent as O, type PreProcessingConfig as P, type CallbackTranscriptionSuccessPayload as Q, type RealtimeProcessingConfig as R, type StreamingOptions as S, type TranscribeOptions as T, type UnifiedTranscriptResponse as U, type CallbackTranscriptionSuccessPayloadCustomMetadata as V, type WordDTO as W, CallbackTranscriptionSuccessPayloadEvent as X, type ChapterizationDTOError as Y, type ChapterizationDTOResults as Z, type CodeSwitchingConfigDTO as _, type StreamingCallbacks as a, type CustomFormattingRequestBodyCustomFormatting as a$, type CustomSpellingConfigDTOSpellingDictionary as a0, type CustomVocabularyConfigDTO as a1, type CustomVocabularyConfigDTOVocabularyItem as a2, type CustomVocabularyEntryDTO as a3, type DiarizationConfigDTO as a4, type DiarizationDTO as a5, type DiarizationDTOError as a6, type DisplayModeDTO as a7, type DisplayModeDTOError as a8, type ErrorDTO as a9, type SubtitlesConfigDTO as aA, SubtitlesFormatEnum as aB, SubtitlesStyleEnum as aC, type SummarizationConfigDTO as aD, type SummarizationDTOError as aE, SummaryTypesEnum as aF, TranscriptionControllerListV2KindItem as aG, type TranscriptionControllerListV2Params as aH, TranscriptionControllerListV2StatusItem as aI, type TranscriptionResultDTO as aJ, type TranslationConfigDTO as aK, type TranslationDTOError as aL, TranslationModelEnum as aM, type TranslationResultDTO as aN, type TranslationResultDTOError as aO, TranscriptStatus as aP, type TranscriptWord as aQ, AudioIntelligenceModelStatus as aR, type AutoHighlightResult as aS, type AutoHighlightsResult as aT, type Chapter$1 as aU, type ContentSafetyLabel as aV, type ContentSafetyLabelResult as aW, type ContentSafetyLabelsResult as aX, type ContentSafetyLabelsResultSeverityScoreSummary as aY, type ContentSafetyLabelsResultSummary as aZ, type CustomFormattingRequestBody as a_, type InitTranscriptionRequest as aa, type InitTranscriptionRequestCustomMetadata as ab, type ModerationDTO as ac, type ModerationDTOError as ad, type NamedEntityRecognitionDTOError as ae, type NamesConsistencyDTO as af, type NamesConsistencyDTOError as ag, type PreRecordedRequestParamsResponse as ah, type PreRecordedResponseCustomMetadata as ai, type PreRecordedResponseFile as aj, PreRecordedResponseKind as ak, type PreRecordedResponsePostSessionMetadata as al, type PreRecordedResponseRequestParams as am, type PreRecordedResponseResult as an, PreRecordedResponseStatus as ao, type SentencesDTO as ap, type SentencesDTOError as aq, type SentimentAnalysisDTOError as ar, type SpeakerReidentificationDTO as as, type SpeakerReidentificationDTOError as at, type StreamingRequest as au, type StreamingRequestCustomMetadata as av, type StructuredDataExtractionConfigDTO as aw, type StructuredDataExtractionDTO as ax, type StructuredDataExtractionDTOError as ay, type SubtitleDTO as az, type StreamingSession as b, type TranscriptOptionalParamsSpeechUnderstandingRequest as b$, type CustomFormattingResponse as b0, type CustomFormattingResponseCustomFormatting as b1, type CustomFormattingResponseCustomFormattingMapping as b2, type Entity as b3, EntityType as b4, type ListTranscriptsParams as b5, PiiPolicy as b6, RedactPiiAudioQuality as b7, Sentiment as b8, type SentimentAnalysisResult$1 as b9, type TranscriptConfidence as bA, type TranscriptContentSafety as bB, type TranscriptContentSafetyLabels as bC, type TranscriptCustomSpelling as bD, type TranscriptCustomSpellingProperty as bE, type TranscriptCustomTopics as bF, type TranscriptDisfluencies as bG, type TranscriptDomain as bH, type TranscriptEntities as bI, type TranscriptEntityDetection as bJ, type TranscriptFilterProfanity as bK, type TranscriptFormatText as bL, type TranscriptIabCategories as bM, type TranscriptIabCategoriesResult as bN, TranscriptLanguageCode as bO, type TranscriptLanguageCodes as bP, type TranscriptLanguageConfidence as bQ, type TranscriptLanguageConfidenceThreshold as bR, type TranscriptLanguageDetection as bS, type TranscriptLanguageDetectionOptions as bT, type TranscriptMultichannel as bU, type TranscriptOptionalParamsLanguageDetectionOptions as bV, type TranscriptOptionalParamsRedactPiiAudioOptions as bW, TranscriptOptionalParamsRedactPiiAudioOptionsOverrideAudioRedactionMethod as bX, TranscriptOptionalParamsRemoveAudioTags as bY, type TranscriptOptionalParamsSpeakerOptions as bZ, type TranscriptOptionalParamsSpeechUnderstanding as b_, type SentimentAnalysisResultChannel as ba, type SentimentAnalysisResultSpeaker as bb, type SeverityScoreSummary as bc, type SpeakerIdentificationRequestBody as bd, type SpeakerIdentificationRequestBodySpeakerIdentification as be, SpeakerIdentificationRequestBodySpeakerIdentificationSpeakerType as bf, type SpeakerIdentificationRequestBodySpeakerIdentificationSpeakersItems as bg, type SpeakerIdentificationResponse as bh, type SpeakerIdentificationResponseSpeakerIdentification as bi, type SpeakerIdentificationResponseSpeakerIdentificationMapping as bj, type SpeechModel as bk, SubstitutionPolicy as bl, SummaryModel as bm, SummaryType as bn, type Timestamp as bo, type TopicDetectionModelResult as bp, type TopicDetectionModelResultSummary as bq, type TopicDetectionResult$1 as br, type TopicDetectionResultLabelsItems as bs, type Transcript as bt, type TranscriptAudioDuration as bu, type TranscriptAudioEndAt as bv, type TranscriptAudioStartFrom as bw, type TranscriptAutoChapters as bx, type TranscriptAutoHighlightsResult as by, type TranscriptChapters as bz, type StreamEvent as c, type TranscriptionCustomProperties as c$, type TranscriptParams as c0, type TranscriptParamsDomain as c1, type TranscriptParamsLanguageCode as c2, type TranscriptParamsLanguageCodes as c3, type TranscriptParamsRedactPiiSub as c4, type TranscriptParamsRemoveAudioTags as c5, type TranscriptParamsSpeakersExpected as c6, type TranscriptParamsSpeechModel as c7, type TranscriptParamsSpeechThreshold as c8, type TranscriptParamsWebhookAuthHeaderName as c9, type TranscriptTranslatedTexts as cA, type TranscriptUtterance as cB, type TranscriptUtteranceChannel as cC, type TranscriptUtteranceTranslatedTexts as cD, type TranscriptUtterances as cE, type TranscriptWebhookAuthHeaderName as cF, type TranscriptWebhookStatusCode as cG, type TranscriptWebhookUrl as cH, type TranscriptWordChannel as cI, type TranscriptWordSpeaker as cJ, type TranscriptWords as cK, type TranslationRequestBody as cL, type TranslationRequestBodyTranslation as cM, type TranslationResponse as cN, type TranslationResponseTranslation as cO, type StreamingUpdateConfiguration as cP, type Transcription as cQ, type EntityError as cR, Status as cS, type EntityReference as cT, type DiarizationProperties as cU, type DiarizationSpeakersProperties as cV, LanguageIdentificationMode as cW, type LanguageIdentificationProperties as cX, type LanguageIdentificationPropertiesSpeechModelMapping as cY, ProfanityFilterMode as cZ, PunctuationMode as c_, type TranscriptParamsWebhookAuthHeaderValue as ca, type TranscriptPunctuate as cb, type TranscriptRedactPiiAudio as cc, type TranscriptRedactPiiAudioOptions as cd, TranscriptRedactPiiAudioOptionsOverrideAudioRedactionMethod as ce, type TranscriptRedactPiiAudioQuality as cf, type TranscriptRedactPiiPolicies as cg, TranscriptRemoveAudioTags as ch, type TranscriptRemoveAudioTagsProperty as ci, type TranscriptSentimentAnalysis as cj, type TranscriptSentimentAnalysisResults as ck, type TranscriptSpeakerLabels as cl, type TranscriptSpeakersExpected as cm, type TranscriptSpeechModel as cn, type TranscriptSpeechModels as co, type TranscriptSpeechThreshold as cp, type TranscriptSpeechUnderstanding as cq, type TranscriptSpeechUnderstandingRequest as cr, type TranscriptSpeechUnderstandingResponse as cs, type TranscriptSpeedBoost as ct, type TranscriptSummary as cu, type TranscriptSummaryModel as cv, type TranscriptSummaryType as cw, type TranscriptTemperature as cx, type TranscriptText as cy, type TranscriptThrottled as cz, StreamingSupportedEncodingEnum as d, type ListenV1LanguageParameter as d$, type TranscriptionLinks as d0, type TranscriptionProperties as d1, type TranscriptTextUsageTokens as d2, type TranscriptionSegment as d3, type RealtimeSessionCreateRequestGAModel as d4, RealtimeTranscriptionSessionCreateRequestTurnDetectionType as d5, RealtimeTranscriptionSessionCreateRequestInputAudioFormat as d6, AudioResponseFormat as d7, type CreateTranscription200One as d8, type CreateTranscriptionRequest as d9, type ManageV1LimitParameter as dA, type ManageV1PageParameter as dB, ManageV1FilterEndpointParameter as dC, ManageV1FilterMethodParameter as dD, type SharedTopics as dE, type SharedIntents as dF, type SharedSentiments as dG, type SharedCallbackParameter as dH, SharedCallbackMethodParameter as dI, type SharedSentimentParameter as dJ, type SharedSummarizeParameter as dK, type SharedTagParameter as dL, type SharedTopicsParameter as dM, type SharedCustomTopicParameter as dN, SharedCustomTopicModeParameter as dO, type SharedIntentsParameter as dP, type SharedCustomIntentParameter as dQ, SharedCustomIntentModeParameter as dR, type SharedMipOptOutParameter as dS, type ListenV1DetectEntitiesParameter as dT, type ListenV1DetectLanguageParameter as dU, type ListenV1DiarizeParameter as dV, type ListenV1DictationParameter as dW, ListenV1EncodingParameter as dX, type ListenV1FillerWordsParameter as dY, type ListenV1KeytermParameter as dZ, type ListenV1KeywordsParameter as d_, type CreateTranscriptionRequestModel as da, type CreateTranscriptionRequestStream as db, CreateTranscriptionRequestTimestampGranularitiesItem as dc, type CreateTranscriptionResponseDiarizedJson as dd, CreateTranscriptionResponseDiarizedJsonTask as de, type CreateTranscriptionResponseDiarizedJsonUsage as df, type CreateTranscriptionResponseJson as dg, type CreateTranscriptionResponseJsonLogprobsItem as dh, type CreateTranscriptionResponseJsonUsage as di, type CreateTranscriptionResponseVerboseJson as dj, type TranscriptTextUsageDuration as dk, TranscriptTextUsageDurationType as dl, type TranscriptTextUsageTokensInputTokenDetails as dm, TranscriptTextUsageTokensType as dn, type TranscriptionChunkingStrategy as dp, type TranscriptionChunkingStrategyAnyOf as dq, type TranscriptionDiarizedSegment as dr, TranscriptionDiarizedSegmentType as ds, TranscriptionInclude as dt, type TranscriptionWord as du, type VadConfig as dv, VadConfigType as dw, type ListenV1Response as dx, type ManageV1FilterAccessorParameter as dy, ManageV1FilterDeploymentParameter as dz, StreamingSupportedBitDepthEnum as e, type AudioEventSummaryItem as e$, type ListenV1MeasurementsParameter as e0, type ListenV1MediaTranscribeParams as e1, type ListenV1ModelParameter as e2, type ListenV1MultichannelParameter as e3, type ListenV1NumeralsParameter as e4, type ListenV1ParagraphsParameter as e5, type ListenV1ProfanityFilterParameter as e6, type ListenV1PunctuateParameter as e7, type ListenV1RedactParameter as e8, ListenV1RedactParameterOneOfItem as e9, type ListenV1UttSplitParameter as eA, type ListenV1UtterancesParameter as eB, type ListenV1VersionParameter as eC, type ManageV1EndDateTimeParameter as eD, type ManageV1FilterRequestIdParameter as eE, ManageV1FilterStatusParameter as eF, type ManageV1ProjectsRequestsListParams as eG, type ManageV1StartDateTimeParameter as eH, type SharedExtraParameter as eI, type SharedIntentsResults as eJ, type SharedIntentsResultsIntents as eK, type SharedIntentsResultsIntentsSegmentsItem as eL, type SharedIntentsResultsIntentsSegmentsItemIntentsItem as eM, type SharedSentimentsAverage as eN, type SharedSentimentsSegmentsItem as eO, type SharedTopicsResults as eP, type SharedTopicsResultsTopics as eQ, type SharedTopicsResultsTopicsSegmentsItem as eR, type SharedTopicsResultsTopicsSegmentsItemTopicsItem as eS, JobType as eT, type AlignmentConfig as eU, type TranscriptionConfig as eV, type TrackingData as eW, type OutputConfig as eX, OperatingPoint as eY, type AudioEventItem as eZ, type AudioEventSummary as e_, type ListenV1ReplaceParameter as ea, type ListenV1ResponseMetadata as eb, type ListenV1ResponseMetadataIntentsInfo as ec, type ListenV1ResponseMetadataModelInfo as ed, type ListenV1ResponseMetadataSentimentInfo as ee, type ListenV1ResponseMetadataSummaryInfo as ef, type ListenV1ResponseMetadataTopicsInfo as eg, type ListenV1ResponseResults as eh, type ListenV1ResponseResultsChannels as ei, type ListenV1ResponseResultsChannelsItem as ej, type ListenV1ResponseResultsChannelsItemAlternativesItem as ek, type ListenV1ResponseResultsChannelsItemAlternativesItemEntitiesItem as el, type ListenV1ResponseResultsChannelsItemAlternativesItemParagraphs as em, type ListenV1ResponseResultsChannelsItemAlternativesItemParagraphsParagraphsItem as en, type ListenV1ResponseResultsChannelsItemAlternativesItemParagraphsParagraphsItemSentencesItem as eo, type ListenV1ResponseResultsChannelsItemAlternativesItemSummariesItem as ep, type ListenV1ResponseResultsChannelsItemAlternativesItemTopicsItem as eq, type ListenV1ResponseResultsChannelsItemAlternativesItemWordsItem as er, type ListenV1ResponseResultsChannelsItemSearchItem as es, type ListenV1ResponseResultsChannelsItemSearchItemHitsItem as et, type ListenV1ResponseResultsSummary as eu, type ListenV1ResponseResultsUtterances as ev, type ListenV1ResponseResultsUtterancesItem as ew, type ListenV1ResponseResultsUtterancesItemWordsItem as ex, type ListenV1SearchParameter as ey, type ListenV1SmartFormatParameter as ez, StreamingSupportedSampleRateEnum as f, type BodySpeechToTextV1SpeechToTextPostEntityDetection as f$, type AutoChaptersResult as f0, type AutoChaptersResultError as f1, AutoChaptersResultErrorType as f2, type Chapter as f3, type JobInfo as f4, type LanguageIdentificationResult as f5, type LanguageIdentificationResultAlternative as f6, LanguageIdentificationResultError as f7, type LanguageIdentificationResultItem as f8, type LanguagePackInfo as f9, type SummarizationResult as fA, type TopicDetectionError as fB, TopicDetectionErrorType as fC, type TopicDetectionResult as fD, type TopicDetectionSegment as fE, type TopicDetectionSegmentTopic as fF, type TopicDetectionSummary as fG, type TopicDetectionSummaryOverall as fH, type TrackingDataDetails as fI, type TranscriptionConfigAdditionalVocabItem as fJ, TranscriptionConfigDiarization as fK, TranscriptionConfigMaxDelayMode as fL, type TranscriptionConfigPunctuationOverrides as fM, type TranscriptionConfigSpeakerDiarizationConfig as fN, type TranscriptionConfigTranscriptFilteringConfig as fO, type TranscriptionConfigTranscriptFilteringConfigReplacementsItem as fP, type TranslationError as fQ, TranslationErrorType as fR, type TranslationSentence as fS, type WrittenFormRecognitionResult as fT, WrittenFormRecognitionResultType as fU, type SpeechToTextChunkResponseModel as fV, type AdditionalFormatResponseModel as fW, type AdditionalFormats as fX, type BodySpeechToTextV1SpeechToTextPost as fY, type BodySpeechToTextV1SpeechToTextPostCloudStorageUrl as fZ, type BodySpeechToTextV1SpeechToTextPostDiarizationThreshold as f_, LanguagePackInfoWritingDirection as fa, type OutputConfigSrtOverrides as fb, type RecognitionAlternative as fc, type RecognitionDisplay as fd, RecognitionDisplayDirection as fe, type RecognitionMetadata as ff, type RecognitionResult as fg, RecognitionResultAttachesTo as fh, RecognitionResultType as fi, type RetrieveTranscriptResponse as fj, type RetrieveTranscriptResponseAudioEventSummary as fk, type RetrieveTranscriptResponseAudioEventSummaryChannels as fl, type RetrieveTranscriptResponseTranslations as fm, type SentimentAnalysisError as fn, SentimentAnalysisErrorType as fo, type SentimentAnalysisResult as fp, type SentimentAnalysisResultSentimentAnalysis as fq, type SentimentChannelSummary as fr, type SentimentSegment as fs, type SentimentSpeakerSummary as ft, type SentimentSummary as fu, type SentimentSummaryDetail as fv, type SpokenFormRecognitionResult as fw, SpokenFormRecognitionResultType as fx, type SummarizationError as fy, SummarizationErrorType as fz, StreamingSupportedModels as g, type GladiaExtendedData as g$, type BodySpeechToTextV1SpeechToTextPostFile as g0, BodySpeechToTextV1SpeechToTextPostFileFormat as g1, type BodySpeechToTextV1SpeechToTextPostLanguageCode as g2, BodySpeechToTextV1SpeechToTextPostModelId as g3, type BodySpeechToTextV1SpeechToTextPostNumSpeakers as g4, type BodySpeechToTextV1SpeechToTextPostSeed as g5, type BodySpeechToTextV1SpeechToTextPostTemperature as g6, BodySpeechToTextV1SpeechToTextPostTimestampsGranularity as g7, type BodySpeechToTextV1SpeechToTextPostWebhookId as g8, type BodySpeechToTextV1SpeechToTextPostWebhookMetadata as g9, type SpeechToTextChunkResponseModelAdditionalFormats as gA, type SpeechToTextChunkResponseModelAdditionalFormatsAnyOfItem as gB, type SpeechToTextChunkResponseModelChannelIndex as gC, type SpeechToTextChunkResponseModelEntities as gD, type SpeechToTextChunkResponseModelTranscriptionId as gE, type SpeechToTextWordResponseModel as gF, type SpeechToTextWordResponseModelCharacters as gG, type SpeechToTextWordResponseModelEnd as gH, type SpeechToTextWordResponseModelSpeakerId as gI, type SpeechToTextWordResponseModelStart as gJ, SpeechToTextWordResponseModelType as gK, type SrtExportOptions as gL, SrtExportOptionsFormat as gM, type SrtExportOptionsMaxCharactersPerLine as gN, type SrtExportOptionsMaxSegmentChars as gO, type SrtExportOptionsMaxSegmentDurationS as gP, type SrtExportOptionsSegmentOnSilenceLongerThanS as gQ, type TxtExportOptions as gR, TxtExportOptionsFormat as gS, type TxtExportOptionsMaxCharactersPerLine as gT, type TxtExportOptionsMaxSegmentChars as gU, type TxtExportOptionsMaxSegmentDurationS as gV, type TxtExportOptionsSegmentOnSilenceLongerThanS as gW, type SpeechmaticsOperatingPoint as gX, type TranscriptionModel as gY, type TranscriptionLanguage as gZ, type AssemblyAIExtendedData as g_, type BodySpeechToTextV1SpeechToTextPostWebhookMetadataAnyOf as ga, type DetectedEntity as gb, type DocxExportOptions as gc, DocxExportOptionsFormat as gd, type DocxExportOptionsMaxSegmentChars as ge, type DocxExportOptionsMaxSegmentDurationS as gf, type DocxExportOptionsSegmentOnSilenceLongerThanS as gg, type ExportOptions as gh, type HtmlExportOptions as gi, HtmlExportOptionsFormat as gj, type HtmlExportOptionsMaxSegmentChars as gk, type HtmlExportOptionsMaxSegmentDurationS as gl, type HtmlExportOptionsSegmentOnSilenceLongerThanS as gm, type PdfExportOptions as gn, PdfExportOptionsFormat as go, type PdfExportOptionsMaxSegmentChars as gp, type PdfExportOptionsMaxSegmentDurationS as gq, type PdfExportOptionsSegmentOnSilenceLongerThanS as gr, type SegmentedJsonExportOptions as gs, SegmentedJsonExportOptionsFormat as gt, type SegmentedJsonExportOptionsMaxSegmentChars as gu, type SegmentedJsonExportOptionsMaxSegmentDurationS as gv, type SegmentedJsonExportOptionsSegmentOnSilenceLongerThanS as gw, type SpeechToTextCharacterResponseModel as gx, type SpeechToTextCharacterResponseModelEnd as gy, type SpeechToTextCharacterResponseModelStart as gz, type LanguageConfig as h, type DeepgramExtendedData as h0, type ElevenLabsExtendedData as h1, type ProviderExtendedDataMap as h2, type StreamingProvider as h3, type BatchOnlyProvider as h4, type SessionStatus as h5, type Speaker as h6, type Word as h7, type Utterance as h8, type TranscriptionStatus as h9, type StreamingEventMessage as hA, type StreamingWord as hB, type StreamingForceEndpoint as hC, type TranscriptMetadata as ha, type TranscriptData as hb, type ListTranscriptsResponse as hc, type ProviderRawResponseMap as hd, type StreamEventType as he, type SpeechEvent as hf, type TranslationEvent as hg, type SentimentEvent as hh, type EntityEvent as hi, type SummarizationEvent as hj, type ChapterizationEvent as hk, type AudioAckEvent as hl, type LifecycleEvent as hm, type AudioChunk as hn, type RawWebSocketMessage as ho, type AssemblyAIUpdateConfiguration as hp, type OpenAIStreamingOptions as hq, type SonioxStreamingOptions as hr, type ElevenLabsStreamingOptions as hs, type ProviderStreamingOptions as ht, type StreamingOptionsForProvider as hu, type TranscribeStreamParams as hv, type BeginEvent as hw, type TurnEvent as hx, type TerminationEvent as hy, type ErrorEvent as hz, type PostProcessingConfig as i, type TranscriptionMetadataDTO as j, type TranscriptionDTO as k, type TranslationDTO as l, type SummarizationDTO as m, type SentimentAnalysisDTO as n, type ChapterizationDTO as o, type PreRecordedResponse as p, type UtteranceDTO as q, TranscriptionLanguageCodeEnum as r, TranslationLanguageCodeEnum as s, StreamingSupportedRegions as t, type AddonErrorDTO as u, type AudioToLlmDTO as v, type AudioToLlmDTOError as w, type AudioToLlmDTOResults as x, type AudioToLlmListConfigDTO as y, type AudioToLlmListDTO as z };
10848
+ export { type CustomSpellingConfigDTO as $, type AssemblyAIStreamingOptions as A, type AudioToLlmListDTOError as B, type CallbackConfig as C, type DeepgramStreamingOptions as D, type AudioToLlmResultDTO as E, type FileResponse as F, type GladiaStreamingOptions as G, type CallbackConfigDto as H, CallbackMethodEnum as I, type CallbackTranscriptionErrorPayload as J, type CallbackTranscriptionErrorPayloadCustomMetadata as K, type ListTranscriptsOptions as L, type MessagesConfig as M, type NamedEntityRecognitionDTO as N, CallbackTranscriptionErrorPayloadEvent as O, type PreProcessingConfig as P, type CallbackTranscriptionSuccessPayload as Q, type RealtimeProcessingConfig as R, type StreamingOptions as S, type TranscribeOptions as T, type UnifiedTranscriptResponse as U, type CallbackTranscriptionSuccessPayloadCustomMetadata as V, type WordDTO as W, CallbackTranscriptionSuccessPayloadEvent as X, type ChapterizationDTOError as Y, type ChapterizationDTOResults as Z, type CodeSwitchingConfigDTO as _, type StreamingCallbacks as a, type CustomFormattingRequestBodyCustomFormatting as a$, type CustomSpellingConfigDTOSpellingDictionary as a0, type CustomVocabularyConfigDTO as a1, type CustomVocabularyConfigDTOVocabularyItem as a2, type CustomVocabularyEntryDTO as a3, type DiarizationConfigDTO as a4, type DiarizationDTO as a5, type DiarizationDTOError as a6, type DisplayModeDTO as a7, type DisplayModeDTOError as a8, type ErrorDTO as a9, type SubtitlesConfigDTO as aA, SubtitlesFormatEnum as aB, SubtitlesStyleEnum as aC, type SummarizationConfigDTO as aD, type SummarizationDTOError as aE, SummaryTypesEnum as aF, TranscriptionControllerListV2KindItem as aG, type TranscriptionControllerListV2Params as aH, TranscriptionControllerListV2StatusItem as aI, type TranscriptionResultDTO as aJ, type TranslationConfigDTO as aK, type TranslationDTOError as aL, TranslationModelEnum as aM, type TranslationResultDTO as aN, type TranslationResultDTOError as aO, TranscriptStatus as aP, type TranscriptWord as aQ, AudioIntelligenceModelStatus as aR, type AutoHighlightResult as aS, type AutoHighlightsResult as aT, type Chapter$1 as aU, type ContentSafetyLabel as aV, type ContentSafetyLabelResult as aW, type ContentSafetyLabelsResult as aX, type ContentSafetyLabelsResultSeverityScoreSummary as aY, type ContentSafetyLabelsResultSummary as aZ, type CustomFormattingRequestBody as a_, type InitTranscriptionRequest as aa, type InitTranscriptionRequestCustomMetadata as ab, type ModerationDTO as ac, type ModerationDTOError as ad, type NamedEntityRecognitionDTOError as ae, type NamesConsistencyDTO as af, type NamesConsistencyDTOError as ag, type PreRecordedRequestParamsResponse as ah, type PreRecordedResponseCustomMetadata as ai, type PreRecordedResponseFile as aj, PreRecordedResponseKind as ak, type PreRecordedResponsePostSessionMetadata as al, type PreRecordedResponseRequestParams as am, type PreRecordedResponseResult as an, PreRecordedResponseStatus as ao, type SentencesDTO as ap, type SentencesDTOError as aq, type SentimentAnalysisDTOError as ar, type SpeakerReidentificationDTO as as, type SpeakerReidentificationDTOError as at, type StreamingRequest as au, type StreamingRequestCustomMetadata as av, type StructuredDataExtractionConfigDTO as aw, type StructuredDataExtractionDTO as ax, type StructuredDataExtractionDTOError as ay, type SubtitleDTO as az, type StreamingSession as b, type TranscriptOptionalParamsSpeechUnderstandingRequest as b$, type CustomFormattingResponse as b0, type CustomFormattingResponseCustomFormatting as b1, type CustomFormattingResponseCustomFormattingMapping as b2, type Entity as b3, EntityType as b4, type ListTranscriptsParams as b5, PiiPolicy as b6, RedactPiiAudioQuality as b7, Sentiment as b8, type SentimentAnalysisResult$1 as b9, type TranscriptConfidence as bA, type TranscriptContentSafety as bB, type TranscriptContentSafetyLabels as bC, type TranscriptCustomSpelling as bD, type TranscriptCustomSpellingProperty as bE, type TranscriptCustomTopics as bF, type TranscriptDisfluencies as bG, type TranscriptDomain as bH, type TranscriptEntities as bI, type TranscriptEntityDetection as bJ, type TranscriptFilterProfanity as bK, type TranscriptFormatText as bL, type TranscriptIabCategories as bM, type TranscriptIabCategoriesResult as bN, TranscriptLanguageCode as bO, type TranscriptLanguageCodes as bP, type TranscriptLanguageConfidence as bQ, type TranscriptLanguageConfidenceThreshold as bR, type TranscriptLanguageDetection as bS, type TranscriptLanguageDetectionOptions as bT, type TranscriptMultichannel as bU, type TranscriptOptionalParamsLanguageDetectionOptions as bV, type TranscriptOptionalParamsRedactPiiAudioOptions as bW, TranscriptOptionalParamsRedactPiiAudioOptionsOverrideAudioRedactionMethod as bX, TranscriptOptionalParamsRemoveAudioTags as bY, type TranscriptOptionalParamsSpeakerOptions as bZ, type TranscriptOptionalParamsSpeechUnderstanding as b_, type SentimentAnalysisResultChannel as ba, type SentimentAnalysisResultSpeaker as bb, type SeverityScoreSummary as bc, type SpeakerIdentificationRequestBody as bd, type SpeakerIdentificationRequestBodySpeakerIdentification as be, SpeakerIdentificationRequestBodySpeakerIdentificationSpeakerType as bf, type SpeakerIdentificationRequestBodySpeakerIdentificationSpeakersItems as bg, type SpeakerIdentificationResponse as bh, type SpeakerIdentificationResponseSpeakerIdentification as bi, type SpeakerIdentificationResponseSpeakerIdentificationMapping as bj, type SpeechModel as bk, SubstitutionPolicy as bl, SummaryModel as bm, SummaryType as bn, type Timestamp as bo, type TopicDetectionModelResult as bp, type TopicDetectionModelResultSummary as bq, type TopicDetectionResult$1 as br, type TopicDetectionResultLabelsItems as bs, type Transcript as bt, type TranscriptAudioDuration as bu, type TranscriptAudioEndAt as bv, type TranscriptAudioStartFrom as bw, type TranscriptAutoChapters as bx, type TranscriptAutoHighlightsResult as by, type TranscriptChapters as bz, type StreamEvent as c, type TranscriptionLinks as c$, type TranscriptParams as c0, type TranscriptParamsDomain as c1, type TranscriptParamsLanguageCode as c2, type TranscriptParamsLanguageCodes as c3, type TranscriptParamsRedactPiiSub as c4, type TranscriptParamsRemoveAudioTags as c5, type TranscriptParamsSpeakersExpected as c6, type TranscriptParamsSpeechThreshold as c7, type TranscriptParamsWebhookAuthHeaderName as c8, type TranscriptParamsWebhookAuthHeaderValue as c9, type TranscriptUtterance as cA, type TranscriptUtteranceChannel as cB, type TranscriptUtteranceTranslatedTexts as cC, type TranscriptUtterances as cD, type TranscriptWebhookAuthHeaderName as cE, type TranscriptWebhookStatusCode as cF, type TranscriptWebhookUrl as cG, type TranscriptWordChannel as cH, type TranscriptWordSpeaker as cI, type TranscriptWords as cJ, type TranslationRequestBody as cK, type TranslationRequestBodyTranslation as cL, type TranslationResponse as cM, type TranslationResponseTranslation as cN, type StreamingUpdateConfiguration as cO, type Transcription as cP, type EntityError as cQ, Status as cR, type EntityReference as cS, type DiarizationProperties as cT, type DiarizationSpeakersProperties as cU, LanguageIdentificationMode as cV, type LanguageIdentificationProperties as cW, type LanguageIdentificationPropertiesSpeechModelMapping as cX, ProfanityFilterMode as cY, PunctuationMode as cZ, type TranscriptionCustomProperties as c_, type TranscriptPunctuate as ca, type TranscriptRedactPiiAudio as cb, type TranscriptRedactPiiAudioOptions as cc, TranscriptRedactPiiAudioOptionsOverrideAudioRedactionMethod as cd, type TranscriptRedactPiiAudioQuality as ce, type TranscriptRedactPiiPolicies as cf, TranscriptRemoveAudioTags as cg, type TranscriptRemoveAudioTagsProperty as ch, type TranscriptSentimentAnalysis as ci, type TranscriptSentimentAnalysisResults as cj, type TranscriptSpeakerLabels as ck, type TranscriptSpeakersExpected as cl, type TranscriptSpeechModel as cm, type TranscriptSpeechModels as cn, type TranscriptSpeechThreshold as co, type TranscriptSpeechUnderstanding as cp, type TranscriptSpeechUnderstandingRequest as cq, type TranscriptSpeechUnderstandingResponse as cr, type TranscriptSpeedBoost as cs, type TranscriptSummary as ct, type TranscriptSummaryModel as cu, type TranscriptSummaryType as cv, type TranscriptTemperature as cw, type TranscriptText as cx, type TranscriptThrottled as cy, type TranscriptTranslatedTexts as cz, StreamingSupportedEncodingEnum as d, type ListenV1MeasurementsParameter as d$, type TranscriptionProperties as d0, type TranscriptTextUsageTokens as d1, type TranscriptionSegment as d2, type RealtimeSessionCreateRequestGAModel as d3, RealtimeTranscriptionSessionCreateRequestTurnDetectionType as d4, RealtimeTranscriptionSessionCreateRequestInputAudioFormat as d5, AudioResponseFormat as d6, type CreateTranscription200One as d7, type CreateTranscriptionRequest as d8, type CreateTranscriptionRequestModel as d9, type ManageV1PageParameter as dA, ManageV1FilterEndpointParameter as dB, ManageV1FilterMethodParameter as dC, type SharedTopics as dD, type SharedIntents as dE, type SharedSentiments as dF, type SharedCallbackParameter as dG, SharedCallbackMethodParameter as dH, type SharedSentimentParameter as dI, type SharedSummarizeParameter as dJ, type SharedTagParameter as dK, type SharedTopicsParameter as dL, type SharedCustomTopicParameter as dM, SharedCustomTopicModeParameter as dN, type SharedIntentsParameter as dO, type SharedCustomIntentParameter as dP, SharedCustomIntentModeParameter as dQ, type SharedMipOptOutParameter as dR, type ListenV1DetectEntitiesParameter as dS, type ListenV1DetectLanguageParameter as dT, type ListenV1DiarizeParameter as dU, type ListenV1DictationParameter as dV, ListenV1EncodingParameter as dW, type ListenV1FillerWordsParameter as dX, type ListenV1KeytermParameter as dY, type ListenV1KeywordsParameter as dZ, type ListenV1LanguageParameter as d_, type CreateTranscriptionRequestStream as da, CreateTranscriptionRequestTimestampGranularitiesItem as db, type CreateTranscriptionResponseDiarizedJson as dc, CreateTranscriptionResponseDiarizedJsonTask as dd, type CreateTranscriptionResponseDiarizedJsonUsage as de, type CreateTranscriptionResponseJson as df, type CreateTranscriptionResponseJsonLogprobsItem as dg, type CreateTranscriptionResponseJsonUsage as dh, type CreateTranscriptionResponseVerboseJson as di, type TranscriptTextUsageDuration as dj, TranscriptTextUsageDurationType as dk, type TranscriptTextUsageTokensInputTokenDetails as dl, TranscriptTextUsageTokensType as dm, type TranscriptionChunkingStrategy as dn, type TranscriptionChunkingStrategyAnyOf as dp, type TranscriptionDiarizedSegment as dq, TranscriptionDiarizedSegmentType as dr, TranscriptionInclude as ds, type TranscriptionWord as dt, type VadConfig as du, VadConfigType as dv, type ListenV1Response as dw, type ManageV1FilterAccessorParameter as dx, ManageV1FilterDeploymentParameter as dy, type ManageV1LimitParameter as dz, StreamingSupportedBitDepthEnum as e, type AutoChaptersResult as e$, type ListenV1MediaTranscribeParams as e0, type ListenV1ModelParameter as e1, type ListenV1MultichannelParameter as e2, type ListenV1NumeralsParameter as e3, type ListenV1ParagraphsParameter as e4, type ListenV1ProfanityFilterParameter as e5, type ListenV1PunctuateParameter as e6, type ListenV1RedactParameter as e7, ListenV1RedactParameterOneOfItem as e8, type ListenV1ReplaceParameter as e9, type ListenV1UtterancesParameter as eA, type ListenV1VersionParameter as eB, type ManageV1EndDateTimeParameter as eC, type ManageV1FilterRequestIdParameter as eD, ManageV1FilterStatusParameter as eE, type ManageV1ProjectsRequestsListParams as eF, type ManageV1StartDateTimeParameter as eG, type SharedExtraParameter as eH, type SharedIntentsResults as eI, type SharedIntentsResultsIntents as eJ, type SharedIntentsResultsIntentsSegmentsItem as eK, type SharedIntentsResultsIntentsSegmentsItemIntentsItem as eL, type SharedSentimentsAverage as eM, type SharedSentimentsSegmentsItem as eN, type SharedTopicsResults as eO, type SharedTopicsResultsTopics as eP, type SharedTopicsResultsTopicsSegmentsItem as eQ, type SharedTopicsResultsTopicsSegmentsItemTopicsItem as eR, JobType as eS, type AlignmentConfig as eT, type TranscriptionConfig as eU, type TrackingData as eV, type OutputConfig as eW, OperatingPoint as eX, type AudioEventItem as eY, type AudioEventSummary as eZ, type AudioEventSummaryItem as e_, type ListenV1ResponseMetadata as ea, type ListenV1ResponseMetadataIntentsInfo as eb, type ListenV1ResponseMetadataModelInfo as ec, type ListenV1ResponseMetadataSentimentInfo as ed, type ListenV1ResponseMetadataSummaryInfo as ee, type ListenV1ResponseMetadataTopicsInfo as ef, type ListenV1ResponseResults as eg, type ListenV1ResponseResultsChannels as eh, type ListenV1ResponseResultsChannelsItem as ei, type ListenV1ResponseResultsChannelsItemAlternativesItem as ej, type ListenV1ResponseResultsChannelsItemAlternativesItemEntitiesItem as ek, type ListenV1ResponseResultsChannelsItemAlternativesItemParagraphs as el, type ListenV1ResponseResultsChannelsItemAlternativesItemParagraphsParagraphsItem as em, type ListenV1ResponseResultsChannelsItemAlternativesItemParagraphsParagraphsItemSentencesItem as en, type ListenV1ResponseResultsChannelsItemAlternativesItemSummariesItem as eo, type ListenV1ResponseResultsChannelsItemAlternativesItemTopicsItem as ep, type ListenV1ResponseResultsChannelsItemAlternativesItemWordsItem as eq, type ListenV1ResponseResultsChannelsItemSearchItem as er, type ListenV1ResponseResultsChannelsItemSearchItemHitsItem as es, type ListenV1ResponseResultsSummary as et, type ListenV1ResponseResultsUtterances as eu, type ListenV1ResponseResultsUtterancesItem as ev, type ListenV1ResponseResultsUtterancesItemWordsItem as ew, type ListenV1SearchParameter as ex, type ListenV1SmartFormatParameter as ey, type ListenV1UttSplitParameter as ez, StreamingSupportedSampleRateEnum as f, type BodySpeechToTextV1SpeechToTextPostFile as f$, type AutoChaptersResultError as f0, AutoChaptersResultErrorType as f1, type Chapter as f2, type JobInfo as f3, type LanguageIdentificationResult as f4, type LanguageIdentificationResultAlternative as f5, LanguageIdentificationResultError as f6, type LanguageIdentificationResultItem as f7, type LanguagePackInfo as f8, LanguagePackInfoWritingDirection as f9, type TopicDetectionError as fA, TopicDetectionErrorType as fB, type TopicDetectionResult as fC, type TopicDetectionSegment as fD, type TopicDetectionSegmentTopic as fE, type TopicDetectionSummary as fF, type TopicDetectionSummaryOverall as fG, type TrackingDataDetails as fH, type TranscriptionConfigAdditionalVocabItem as fI, TranscriptionConfigDiarization as fJ, TranscriptionConfigMaxDelayMode as fK, type TranscriptionConfigPunctuationOverrides as fL, type TranscriptionConfigSpeakerDiarizationConfig as fM, type TranscriptionConfigTranscriptFilteringConfig as fN, type TranscriptionConfigTranscriptFilteringConfigReplacementsItem as fO, type TranslationError as fP, TranslationErrorType as fQ, type TranslationSentence as fR, type WrittenFormRecognitionResult as fS, WrittenFormRecognitionResultType as fT, type SpeechToTextChunkResponseModel as fU, type AdditionalFormatResponseModel as fV, type AdditionalFormats as fW, type BodySpeechToTextV1SpeechToTextPost as fX, type BodySpeechToTextV1SpeechToTextPostCloudStorageUrl as fY, type BodySpeechToTextV1SpeechToTextPostDiarizationThreshold as fZ, type BodySpeechToTextV1SpeechToTextPostEntityDetection as f_, type OutputConfigSrtOverrides as fa, type RecognitionAlternative as fb, type RecognitionDisplay as fc, RecognitionDisplayDirection as fd, type RecognitionMetadata as fe, type RecognitionResult as ff, RecognitionResultAttachesTo as fg, RecognitionResultType as fh, type RetrieveTranscriptResponse as fi, type RetrieveTranscriptResponseAudioEventSummary as fj, type RetrieveTranscriptResponseAudioEventSummaryChannels as fk, type RetrieveTranscriptResponseTranslations as fl, type SentimentAnalysisError as fm, SentimentAnalysisErrorType as fn, type SentimentAnalysisResult as fo, type SentimentAnalysisResultSentimentAnalysis as fp, type SentimentChannelSummary as fq, type SentimentSegment as fr, type SentimentSpeakerSummary as fs, type SentimentSummary as ft, type SentimentSummaryDetail as fu, type SpokenFormRecognitionResult as fv, SpokenFormRecognitionResultType as fw, type SummarizationError as fx, SummarizationErrorType as fy, type SummarizationResult as fz, StreamingSupportedModels as g, type DeepgramExtendedData as g$, BodySpeechToTextV1SpeechToTextPostFileFormat as g0, type BodySpeechToTextV1SpeechToTextPostLanguageCode as g1, BodySpeechToTextV1SpeechToTextPostModelId as g2, type BodySpeechToTextV1SpeechToTextPostNumSpeakers as g3, type BodySpeechToTextV1SpeechToTextPostSeed as g4, type BodySpeechToTextV1SpeechToTextPostTemperature as g5, BodySpeechToTextV1SpeechToTextPostTimestampsGranularity as g6, type BodySpeechToTextV1SpeechToTextPostWebhookId as g7, type BodySpeechToTextV1SpeechToTextPostWebhookMetadata as g8, type BodySpeechToTextV1SpeechToTextPostWebhookMetadataAnyOf as g9, type SpeechToTextChunkResponseModelAdditionalFormatsAnyOfItem as gA, type SpeechToTextChunkResponseModelChannelIndex as gB, type SpeechToTextChunkResponseModelEntities as gC, type SpeechToTextChunkResponseModelTranscriptionId as gD, type SpeechToTextWordResponseModel as gE, type SpeechToTextWordResponseModelCharacters as gF, type SpeechToTextWordResponseModelEnd as gG, type SpeechToTextWordResponseModelSpeakerId as gH, type SpeechToTextWordResponseModelStart as gI, SpeechToTextWordResponseModelType as gJ, type SrtExportOptions as gK, SrtExportOptionsFormat as gL, type SrtExportOptionsMaxCharactersPerLine as gM, type SrtExportOptionsMaxSegmentChars as gN, type SrtExportOptionsMaxSegmentDurationS as gO, type SrtExportOptionsSegmentOnSilenceLongerThanS as gP, type TxtExportOptions as gQ, TxtExportOptionsFormat as gR, type TxtExportOptionsMaxCharactersPerLine as gS, type TxtExportOptionsMaxSegmentChars as gT, type TxtExportOptionsMaxSegmentDurationS as gU, type TxtExportOptionsSegmentOnSilenceLongerThanS as gV, type SpeechmaticsOperatingPoint as gW, type TranscriptionModel as gX, type TranscriptionLanguage as gY, type AssemblyAIExtendedData as gZ, type GladiaExtendedData as g_, type DetectedEntity as ga, type DocxExportOptions as gb, DocxExportOptionsFormat as gc, type DocxExportOptionsMaxSegmentChars as gd, type DocxExportOptionsMaxSegmentDurationS as ge, type DocxExportOptionsSegmentOnSilenceLongerThanS as gf, type ExportOptions as gg, type HtmlExportOptions as gh, HtmlExportOptionsFormat as gi, type HtmlExportOptionsMaxSegmentChars as gj, type HtmlExportOptionsMaxSegmentDurationS as gk, type HtmlExportOptionsSegmentOnSilenceLongerThanS as gl, type PdfExportOptions as gm, PdfExportOptionsFormat as gn, type PdfExportOptionsMaxSegmentChars as go, type PdfExportOptionsMaxSegmentDurationS as gp, type PdfExportOptionsSegmentOnSilenceLongerThanS as gq, type SegmentedJsonExportOptions as gr, SegmentedJsonExportOptionsFormat as gs, type SegmentedJsonExportOptionsMaxSegmentChars as gt, type SegmentedJsonExportOptionsMaxSegmentDurationS as gu, type SegmentedJsonExportOptionsSegmentOnSilenceLongerThanS as gv, type SpeechToTextCharacterResponseModel as gw, type SpeechToTextCharacterResponseModelEnd as gx, type SpeechToTextCharacterResponseModelStart as gy, type SpeechToTextChunkResponseModelAdditionalFormats as gz, type LanguageConfig as h, type ElevenLabsExtendedData as h0, type ProviderExtendedDataMap as h1, type StreamingProvider as h2, type BatchOnlyProvider as h3, type SessionStatus as h4, type Speaker as h5, type Word as h6, type Utterance as h7, type TranscriptionStatus as h8, type TranscriptMetadata as h9, type StreamingWord as hA, type StreamingForceEndpoint as hB, type TranscriptData as ha, type ListTranscriptsResponse as hb, type ProviderRawResponseMap as hc, type StreamEventType as hd, type SpeechEvent as he, type TranslationEvent as hf, type SentimentEvent as hg, type EntityEvent as hh, type SummarizationEvent as hi, type ChapterizationEvent as hj, type AudioAckEvent as hk, type LifecycleEvent as hl, type AudioChunk as hm, type RawWebSocketMessage as hn, type AssemblyAIUpdateConfiguration as ho, type OpenAIStreamingOptions as hp, type SonioxStreamingOptions as hq, type ElevenLabsStreamingOptions as hr, type ProviderStreamingOptions as hs, type StreamingOptionsForProvider as ht, type TranscribeStreamParams as hu, type BeginEvent as hv, type TurnEvent as hw, type TerminationEvent as hx, type ErrorEvent as hy, type StreamingEventMessage as hz, type PostProcessingConfig as i, type TranscriptionMetadataDTO as j, type TranscriptionDTO as k, type TranslationDTO as l, type SummarizationDTO as m, type SentimentAnalysisDTO as n, type ChapterizationDTO as o, type PreRecordedResponse as p, type UtteranceDTO as q, TranscriptionLanguageCodeEnum as r, TranslationLanguageCodeEnum as s, StreamingSupportedRegions as t, type AddonErrorDTO as u, type AudioToLlmDTO as v, type AudioToLlmDTOError as w, type AudioToLlmDTOResults as x, type AudioToLlmListConfigDTO as y, type AudioToLlmListDTO as z };
@@ -1,4 +1,4 @@
1
- import { h9 as TranscriptionStatus, h6 as Speaker, h7 as Word, h8 as Utterance, Q as CallbackTranscriptionSuccessPayload, J as CallbackTranscriptionErrorPayload, bt as Transcript, dx as ListenV1Response, fj as RetrieveTranscriptResponse, fV as SpeechToTextChunkResponseModel } from './speechToTextChunkResponseModel-BcT1LJSZ.mjs';
1
+ import { h8 as TranscriptionStatus, h5 as Speaker, h6 as Word, h7 as Utterance, Q as CallbackTranscriptionSuccessPayload, J as CallbackTranscriptionErrorPayload, bt as Transcript, dw as ListenV1Response, fi as RetrieveTranscriptResponse, fU as SpeechToTextChunkResponseModel } from './speechToTextChunkResponseModel-Dj3Weqv1.mjs';
2
2
  import { T as TranscriptionProvider } from './provider-metadata-MDUUEuqF.mjs';
3
3
  import './constants.mjs';
4
4
 
@@ -1,4 +1,4 @@
1
- import { h9 as TranscriptionStatus, h6 as Speaker, h7 as Word, h8 as Utterance, Q as CallbackTranscriptionSuccessPayload, J as CallbackTranscriptionErrorPayload, bt as Transcript, dx as ListenV1Response, fj as RetrieveTranscriptResponse, fV as SpeechToTextChunkResponseModel } from './speechToTextChunkResponseModel-eq8eLKEA.js';
1
+ import { h8 as TranscriptionStatus, h5 as Speaker, h6 as Word, h7 as Utterance, Q as CallbackTranscriptionSuccessPayload, J as CallbackTranscriptionErrorPayload, bt as Transcript, dw as ListenV1Response, fi as RetrieveTranscriptResponse, fU as SpeechToTextChunkResponseModel } from './speechToTextChunkResponseModel-CmxWFIjf.js';
2
2
  import { T as TranscriptionProvider } from './provider-metadata-_gUWlRXS.js';
3
3
  import './constants.js';
4
4
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "voice-router-dev",
3
- "version": "0.8.4",
3
+ "version": "0.8.5",
4
4
  "description": "Universal speech-to-text router for Gladia, AssemblyAI, Deepgram, Azure, OpenAI Whisper, Speechmatics, Soniox, and ElevenLabs",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -128,7 +128,7 @@
128
128
  "vitest": "^2.1.8"
129
129
  },
130
130
  "dependencies": {
131
- "axios": "1.8.3",
131
+ "axios": "1.14.0",
132
132
  "ws": "^8.18.3",
133
133
  "zod": "3.24.2"
134
134
  },