voice-router-dev 0.9.0 → 0.9.1

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.
@@ -6519,6 +6519,319 @@ interface BodySpeechToTextV1SpeechToTextPost {
6519
6519
  keyterms?: string[];
6520
6520
  }
6521
6521
 
6522
+ /**
6523
+ * Generated by orval v7.9.0 🍺
6524
+ * Do not edit manually.
6525
+ * Soniox Public API
6526
+ * OpenAPI spec version: 1.0.0
6527
+ */
6528
+ /**
6529
+ * URL of the audio file to transcribe. Cannot be specified if `file_id` is specified.
6530
+ */
6531
+ type CreateTranscriptionPayloadAudioUrl = string | null;
6532
+
6533
+ /**
6534
+ * Generated by orval v7.9.0 🍺
6535
+ * Do not edit manually.
6536
+ * Soniox Public API
6537
+ * OpenAPI spec version: 1.0.0
6538
+ */
6539
+ /**
6540
+ * Optional tracking identifier string. Does not need to be unique.
6541
+ */
6542
+ type CreateTranscriptionPayloadClientReferenceId = string | null;
6543
+
6544
+ /**
6545
+ * Generated by orval v7.9.0 🍺
6546
+ * Do not edit manually.
6547
+ * Soniox Public API
6548
+ * OpenAPI spec version: 1.0.0
6549
+ */
6550
+ interface StructuredContextGeneralItem {
6551
+ /** Item key (e.g. "Domain"). */
6552
+ key: string;
6553
+ /** Item value (e.g. "medicine"). */
6554
+ value: string;
6555
+ }
6556
+
6557
+ /**
6558
+ * Generated by orval v7.9.0 🍺
6559
+ * Do not edit manually.
6560
+ * Soniox Public API
6561
+ * OpenAPI spec version: 1.0.0
6562
+ */
6563
+
6564
+ /**
6565
+ * General context items.
6566
+ */
6567
+ type StructuredContextGeneral = StructuredContextGeneralItem[] | null;
6568
+
6569
+ /**
6570
+ * Generated by orval v7.9.0 🍺
6571
+ * Do not edit manually.
6572
+ * Soniox Public API
6573
+ * OpenAPI spec version: 1.0.0
6574
+ */
6575
+ /**
6576
+ * Terms that might occur in speech.
6577
+ */
6578
+ type StructuredContextTerms = string[] | null;
6579
+
6580
+ /**
6581
+ * Generated by orval v7.9.0 🍺
6582
+ * Do not edit manually.
6583
+ * Soniox Public API
6584
+ * OpenAPI spec version: 1.0.0
6585
+ */
6586
+ /**
6587
+ * Text context.
6588
+ */
6589
+ type StructuredContextText = string | null;
6590
+
6591
+ /**
6592
+ * Generated by orval v7.9.0 🍺
6593
+ * Do not edit manually.
6594
+ * Soniox Public API
6595
+ * OpenAPI spec version: 1.0.0
6596
+ */
6597
+ interface StructuredContextTranslationTerm {
6598
+ /** Source term. */
6599
+ source: string;
6600
+ /** Target term to translate to. */
6601
+ target: string;
6602
+ }
6603
+
6604
+ /**
6605
+ * Generated by orval v7.9.0 🍺
6606
+ * Do not edit manually.
6607
+ * Soniox Public API
6608
+ * OpenAPI spec version: 1.0.0
6609
+ */
6610
+
6611
+ /**
6612
+ * Hints how to translate specific terms. Ignored if translation is not enabled.
6613
+ */
6614
+ type StructuredContextTranslationTerms = StructuredContextTranslationTerm[] | null;
6615
+
6616
+ /**
6617
+ * Generated by orval v7.9.0 🍺
6618
+ * Do not edit manually.
6619
+ * Soniox Public API
6620
+ * OpenAPI spec version: 1.0.0
6621
+ */
6622
+
6623
+ interface StructuredContext {
6624
+ /** General context items. */
6625
+ general?: StructuredContextGeneral;
6626
+ /** Text context. */
6627
+ text?: StructuredContextText;
6628
+ /** Terms that might occur in speech. */
6629
+ terms?: StructuredContextTerms;
6630
+ /** Hints how to translate specific terms. Ignored if translation is not enabled. */
6631
+ translation_terms?: StructuredContextTranslationTerms;
6632
+ }
6633
+
6634
+ /**
6635
+ * Generated by orval v7.9.0 🍺
6636
+ * Do not edit manually.
6637
+ * Soniox Public API
6638
+ * OpenAPI spec version: 1.0.0
6639
+ */
6640
+
6641
+ /**
6642
+ * Additional context to improve transcription accuracy and formatting of specialized terms.
6643
+ */
6644
+ type CreateTranscriptionPayloadContext = StructuredContext | string | null;
6645
+
6646
+ /**
6647
+ * Generated by orval v7.9.0 🍺
6648
+ * Do not edit manually.
6649
+ * Soniox Public API
6650
+ * OpenAPI spec version: 1.0.0
6651
+ */
6652
+ /**
6653
+ * When `true`, language is detected for each part of the transcription.
6654
+ */
6655
+ type CreateTranscriptionPayloadEnableLanguageIdentification = boolean | null;
6656
+
6657
+ /**
6658
+ * Generated by orval v7.9.0 🍺
6659
+ * Do not edit manually.
6660
+ * Soniox Public API
6661
+ * OpenAPI spec version: 1.0.0
6662
+ */
6663
+ /**
6664
+ * When `true`, speakers are identified and separated in the transcription output.
6665
+ */
6666
+ type CreateTranscriptionPayloadEnableSpeakerDiarization = boolean | null;
6667
+
6668
+ /**
6669
+ * Generated by orval v7.9.0 🍺
6670
+ * Do not edit manually.
6671
+ * Soniox Public API
6672
+ * OpenAPI spec version: 1.0.0
6673
+ */
6674
+ /**
6675
+ * ID of the uploaded file to transcribe. Cannot be specified if `audio_url` is specified.
6676
+ */
6677
+ type CreateTranscriptionPayloadFileId = string | null;
6678
+
6679
+ /**
6680
+ * Generated by orval v7.9.0 🍺
6681
+ * Do not edit manually.
6682
+ * Soniox Public API
6683
+ * OpenAPI spec version: 1.0.0
6684
+ */
6685
+ /**
6686
+ * Expected languages in the audio. If not specified, languages are automatically detected.
6687
+ */
6688
+ type CreateTranscriptionPayloadLanguageHints = string[] | null;
6689
+
6690
+ /**
6691
+ * Generated by orval v7.9.0 🍺
6692
+ * Do not edit manually.
6693
+ * Soniox Public API
6694
+ * OpenAPI spec version: 1.0.0
6695
+ */
6696
+ /**
6697
+ * When `true`, the model will rely more on language hints.
6698
+ */
6699
+ type CreateTranscriptionPayloadLanguageHintsStrict = boolean | null;
6700
+
6701
+ /**
6702
+ * Generated by orval v7.9.0 🍺
6703
+ * Do not edit manually.
6704
+ * Soniox Public API
6705
+ * OpenAPI spec version: 1.0.0
6706
+ */
6707
+ type TranslationConfigLanguageA = string | null;
6708
+
6709
+ /**
6710
+ * Generated by orval v7.9.0 🍺
6711
+ * Do not edit manually.
6712
+ * Soniox Public API
6713
+ * OpenAPI spec version: 1.0.0
6714
+ */
6715
+ type TranslationConfigLanguageB = string | null;
6716
+
6717
+ /**
6718
+ * Generated by orval v7.9.0 🍺
6719
+ * Do not edit manually.
6720
+ * Soniox Public API
6721
+ * OpenAPI spec version: 1.0.0
6722
+ */
6723
+ type TranslationConfigTargetLanguage = string | null;
6724
+
6725
+ /**
6726
+ * Generated by orval v7.9.0 🍺
6727
+ * Do not edit manually.
6728
+ * Soniox Public API
6729
+ * OpenAPI spec version: 1.0.0
6730
+ */
6731
+ type TranslationConfigType = (typeof TranslationConfigType)[keyof typeof TranslationConfigType];
6732
+ declare const TranslationConfigType: {
6733
+ readonly one_way: "one_way";
6734
+ readonly two_way: "two_way";
6735
+ };
6736
+
6737
+ /**
6738
+ * Generated by orval v7.9.0 🍺
6739
+ * Do not edit manually.
6740
+ * Soniox Public API
6741
+ * OpenAPI spec version: 1.0.0
6742
+ */
6743
+
6744
+ interface TranslationConfig {
6745
+ type: TranslationConfigType;
6746
+ target_language?: TranslationConfigTargetLanguage;
6747
+ language_a?: TranslationConfigLanguageA;
6748
+ language_b?: TranslationConfigLanguageB;
6749
+ }
6750
+
6751
+ /**
6752
+ * Generated by orval v7.9.0 🍺
6753
+ * Do not edit manually.
6754
+ * Soniox Public API
6755
+ * OpenAPI spec version: 1.0.0
6756
+ */
6757
+
6758
+ /**
6759
+ * Translation configuration.
6760
+ */
6761
+ type CreateTranscriptionPayloadTranslation = TranslationConfig | null;
6762
+
6763
+ /**
6764
+ * Generated by orval v7.9.0 🍺
6765
+ * Do not edit manually.
6766
+ * Soniox Public API
6767
+ * OpenAPI spec version: 1.0.0
6768
+ */
6769
+ /**
6770
+ * Name of the authentication header sent with webhook notifications.
6771
+ */
6772
+ type CreateTranscriptionPayloadWebhookAuthHeaderName = string | null;
6773
+
6774
+ /**
6775
+ * Generated by orval v7.9.0 🍺
6776
+ * Do not edit manually.
6777
+ * Soniox Public API
6778
+ * OpenAPI spec version: 1.0.0
6779
+ */
6780
+ /**
6781
+ * Authentication header value sent with webhook notifications.
6782
+ */
6783
+ type CreateTranscriptionPayloadWebhookAuthHeaderValue = string | null;
6784
+
6785
+ /**
6786
+ * Generated by orval v7.9.0 🍺
6787
+ * Do not edit manually.
6788
+ * Soniox Public API
6789
+ * OpenAPI spec version: 1.0.0
6790
+ */
6791
+ /**
6792
+ * URL to receive webhook notifications when transcription is completed or fails.
6793
+ */
6794
+ type CreateTranscriptionPayloadWebhookUrl = string | null;
6795
+
6796
+ /**
6797
+ * Generated by orval v7.9.0 🍺
6798
+ * Do not edit manually.
6799
+ * Soniox Public API
6800
+ * OpenAPI spec version: 1.0.0
6801
+ */
6802
+
6803
+ interface CreateTranscriptionPayload {
6804
+ /**
6805
+ * Speech-to-text model to use for the transcription.
6806
+ * @maxLength 32
6807
+ */
6808
+ model: string;
6809
+ /** URL of the audio file to transcribe. Cannot be specified if `file_id` is specified. */
6810
+ audio_url?: CreateTranscriptionPayloadAudioUrl;
6811
+ /** ID of the uploaded file to transcribe. Cannot be specified if `audio_url` is specified. */
6812
+ file_id?: CreateTranscriptionPayloadFileId;
6813
+ /** Expected languages in the audio. If not specified, languages are automatically detected. */
6814
+ language_hints?: CreateTranscriptionPayloadLanguageHints;
6815
+ /** When `true`, the model will rely more on language hints. */
6816
+ language_hints_strict?: CreateTranscriptionPayloadLanguageHintsStrict;
6817
+ /** When `true`, speakers are identified and separated in the transcription output. */
6818
+ enable_speaker_diarization?: CreateTranscriptionPayloadEnableSpeakerDiarization;
6819
+ /** When `true`, language is detected for each part of the transcription. */
6820
+ enable_language_identification?: CreateTranscriptionPayloadEnableLanguageIdentification;
6821
+ /** Translation configuration. */
6822
+ translation?: CreateTranscriptionPayloadTranslation;
6823
+ /** Additional context to improve transcription accuracy and formatting of specialized terms. */
6824
+ context?: CreateTranscriptionPayloadContext;
6825
+ /** URL to receive webhook notifications when transcription is completed or fails. */
6826
+ webhook_url?: CreateTranscriptionPayloadWebhookUrl;
6827
+ /** Name of the authentication header sent with webhook notifications. */
6828
+ webhook_auth_header_name?: CreateTranscriptionPayloadWebhookAuthHeaderName;
6829
+ /** Authentication header value sent with webhook notifications. */
6830
+ webhook_auth_header_value?: CreateTranscriptionPayloadWebhookAuthHeaderValue;
6831
+ /** Optional tracking identifier string. Does not need to be unique. */
6832
+ client_reference_id?: CreateTranscriptionPayloadClientReferenceId;
6833
+ }
6834
+
6522
6835
  /**
6523
6836
  * Generated by orval v7.9.0 🍺
6524
6837
  * Do not edit manually.
@@ -8005,6 +8318,11 @@ interface TranscribeOptions {
8005
8318
  * @see https://elevenlabs.io/docs/api-reference/speech-to-text
8006
8319
  */
8007
8320
  elevenlabs?: Partial<Omit<BodySpeechToTextV1SpeechToTextPost, "file" | "model_id" | "language_code" | "diarize" | "keyterms">>;
8321
+ /**
8322
+ * Soniox-specific options (passed directly to API)
8323
+ * @see https://soniox.com/docs/stt/
8324
+ */
8325
+ soniox?: Partial<Omit<CreateTranscriptionPayload, "model" | "audio_url" | "file_id">>;
8008
8326
  }
8009
8327
  /**
8010
8328
  * Speaker information from diarization
@@ -10531,4 +10849,4 @@ interface SpeechToTextChunkResponseModel {
10531
10849
  audio_duration_secs?: SpeechToTextChunkResponseModelAudioDurationSecs;
10532
10850
  }
10533
10851
 
10534
- export { type CustomSpellingConfigDTO as $, type AssemblyAIStreamingOptions as A, type AudioToLlmListDTO as B, type CallbackConfig as C, type DeepgramStreamingOptions as D, type AudioToLlmListDTOError as E, type FileResponse as F, type GladiaStreamingOptions as G, type AudioToLlmResultDTO as H, type CallbackConfigDto as I, CallbackMethodEnum as J, type CallbackTranscriptionErrorPayload as K, type ListTranscriptsOptions as L, type MessagesConfig as M, type NamedEntityRecognitionDTO as N, type CallbackTranscriptionErrorPayloadCustomMetadata as O, type PreProcessingConfig as P, CallbackTranscriptionErrorPayloadEvent as Q, type RealtimeProcessingConfig as R, type StreamingOptions as S, type TranscribeOptions as T, type UnifiedTranscriptResponse as U, type CallbackTranscriptionSuccessPayload as V, type WordDTO as W, type CallbackTranscriptionSuccessPayloadCustomMetadata as X, CallbackTranscriptionSuccessPayloadEvent as Y, type ChapterizationDTOError as Z, type ChapterizationDTOResults 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 PiiRedactionConfigDTO as ah, PiiRedactionConfigDTOProcessedTextType as ai, PiiRedactionEntityTypeEnum as aj, type PreRecordedRequestParamsResponse as ak, type PreRecordedResponseCustomMetadata as al, type PreRecordedResponseFile as am, PreRecordedResponseKind as an, type PreRecordedResponsePostSessionMetadata as ao, type PreRecordedResponseRequestParams as ap, type PreRecordedResponseResult as aq, PreRecordedResponseStatus as ar, type SentencesDTO as as, type SentencesDTOError as at, type SentimentAnalysisDTOError as au, type StreamingRequest as av, type StreamingRequestCustomMetadata 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$1 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 SharedIntentsResultsIntentsSegmentsItems 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 CreateTranscriptionRequestChunkingStrategy as d9, type ListProjectRequestsParams as dA, type ListenTranscribeParams as dB, type ListenV1ResponseMetadata as dC, type ListenV1ResponseMetadataIntentsInfo as dD, type ListenV1ResponseMetadataModelInfo as dE, type ListenV1ResponseMetadataSentimentInfo as dF, type ListenV1ResponseMetadataSummaryInfo as dG, type ListenV1ResponseMetadataTopicsInfo as dH, type ListenV1ResponseResults as dI, type ListenV1ResponseResultsChannels as dJ, type ListenV1ResponseResultsChannelsItems as dK, type ListenV1ResponseResultsChannelsItemsAlternativesItems as dL, type ListenV1ResponseResultsChannelsItemsAlternativesItemsEntitiesItems as dM, type ListenV1ResponseResultsChannelsItemsAlternativesItemsParagraphs as dN, type ListenV1ResponseResultsChannelsItemsAlternativesItemsParagraphsParagraphsItems as dO, type ListenV1ResponseResultsChannelsItemsAlternativesItemsParagraphsParagraphsItemsSentencesItems as dP, type ListenV1ResponseResultsChannelsItemsAlternativesItemsSummariesItems as dQ, type ListenV1ResponseResultsChannelsItemsAlternativesItemsTopicsItems as dR, type ListenV1ResponseResultsChannelsItemsAlternativesItemsWordsItems as dS, type ListenV1ResponseResultsChannelsItemsSearchItems as dT, type ListenV1ResponseResultsChannelsItemsSearchItemsHitsItems as dU, type ListenV1ResponseResultsSummary as dV, type ListenV1ResponseResultsUtterances as dW, type ListenV1ResponseResultsUtterancesItems as dX, type ListenV1ResponseResultsUtterancesItemsWordsItems as dY, type SharedIntentsResults as dZ, type SharedIntentsResultsIntents as d_, type CreateTranscriptionRequestChunkingStrategyAnyOf as da, type CreateTranscriptionRequestModel as db, type CreateTranscriptionRequestStream as dc, CreateTranscriptionRequestTimestampGranularitiesItem as dd, type CreateTranscriptionResponseDiarizedJson as de, CreateTranscriptionResponseDiarizedJsonTask as df, type CreateTranscriptionResponseDiarizedJsonUsage as dg, type CreateTranscriptionResponseJson as dh, type CreateTranscriptionResponseJsonLogprobsItem as di, type CreateTranscriptionResponseJsonUsage as dj, type CreateTranscriptionResponseVerboseJson as dk, type TranscriptTextUsageDuration as dl, TranscriptTextUsageDurationType as dm, type TranscriptTextUsageTokensInputTokenDetails as dn, TranscriptTextUsageTokensType 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 SharedTopics as dx, type SharedIntents as dy, type SharedSentiments as dz, StreamingSupportedBitDepthEnum as e, type RetrieveTranscriptResponseTranslations as e$, type SharedIntentsResultsIntentsSegmentsItemsIntentsItems as e0, type SharedSentimentsAverage as e1, type SharedSentimentsSegmentsItems as e2, type SharedTopicsResults as e3, type SharedTopicsResultsTopics as e4, type SharedTopicsResultsTopicsSegmentsItems as e5, type SharedTopicsResultsTopicsSegmentsItemsTopicsItems as e6, V1ListenPostParametersCallbackMethod as e7, type V1ListenPostParametersCustomIntent as e8, V1ListenPostParametersCustomIntentMode as e9, type OutputConfig as eA, OperatingPoint as eB, type AudioEventItem as eC, type AudioEventSummary as eD, type AudioEventSummaryItem as eE, type AutoChaptersResult as eF, type AutoChaptersResultError as eG, AutoChaptersResultErrorType as eH, type Chapter as eI, type JobInfo as eJ, type LanguageIdentificationResult as eK, type LanguageIdentificationResultAlternative as eL, LanguageIdentificationResultError as eM, type LanguageIdentificationResultItem as eN, type LanguagePackInfo as eO, LanguagePackInfoWritingDirection as eP, type OutputConfigSrtOverrides as eQ, type RecognitionAlternative as eR, type RecognitionDisplay as eS, RecognitionDisplayDirection as eT, type RecognitionMetadata as eU, type RecognitionResult as eV, RecognitionResultAttachesTo as eW, RecognitionResultType as eX, type RetrieveTranscriptResponse as eY, type RetrieveTranscriptResponseAudioEventSummary as eZ, type RetrieveTranscriptResponseAudioEventSummaryChannels as e_, type V1ListenPostParametersCustomTopic as ea, V1ListenPostParametersCustomTopicMode as eb, type V1ListenPostParametersDetectLanguage as ec, V1ListenPostParametersEncoding as ed, type V1ListenPostParametersExtra as ee, type V1ListenPostParametersKeywords as ef, type V1ListenPostParametersModel as eg, V1ListenPostParametersModel0 as eh, type V1ListenPostParametersRedact as ei, type V1ListenPostParametersRedact1 as ej, V1ListenPostParametersRedactSchemaOneOf1Items as ek, type V1ListenPostParametersReplace as el, type V1ListenPostParametersSearch as em, type V1ListenPostParametersSummarize as en, V1ListenPostParametersSummarize0 as eo, type V1ListenPostParametersTag as ep, type V1ListenPostParametersVersion as eq, V1ListenPostParametersVersion0 as er, V1ProjectsProjectIdRequestsGetParametersDeployment as es, V1ProjectsProjectIdRequestsGetParametersEndpoint as et, V1ProjectsProjectIdRequestsGetParametersMethod as eu, V1ProjectsProjectIdRequestsGetParametersStatus as ev, JobType as ew, type AlignmentConfig as ex, type TranscriptionConfig as ey, type TrackingData as ez, StreamingSupportedSampleRateEnum as f, BodySpeechToTextV1SpeechToTextPostTimestampsGranularity as f$, type SentimentAnalysisError as f0, SentimentAnalysisErrorType as f1, type SentimentAnalysisResult as f2, type SentimentAnalysisResultSentimentAnalysis as f3, type SentimentChannelSummary as f4, type SentimentSegment as f5, type SentimentSpeakerSummary as f6, type SentimentSummary as f7, type SentimentSummaryDetail as f8, type SpokenFormRecognitionResult as f9, type TranscriptionAudioUrl as fA, type TranscriptionClientReferenceId as fB, type TranscriptionErrorMessage as fC, type TranscriptionErrorType as fD, type TranscriptionFileId as fE, type TranscriptionLanguageHints as fF, TranscriptionStatus as fG, type TranscriptionWebhookAuthHeaderName as fH, type TranscriptionWebhookAuthHeaderValue as fI, type TranscriptionWebhookStatusCode as fJ, type TranscriptionWebhookUrl as fK, type SpeechToTextChunkResponseModel as fL, type AdditionalFormatResponseModel as fM, type AdditionalFormats as fN, type BodySpeechToTextV1SpeechToTextPost as fO, type BodySpeechToTextV1SpeechToTextPostCloudStorageUrl as fP, type BodySpeechToTextV1SpeechToTextPostDiarizationThreshold as fQ, type BodySpeechToTextV1SpeechToTextPostEntityDetection as fR, type BodySpeechToTextV1SpeechToTextPostEntityRedaction as fS, type BodySpeechToTextV1SpeechToTextPostFile as fT, BodySpeechToTextV1SpeechToTextPostFileFormat as fU, type BodySpeechToTextV1SpeechToTextPostLanguageCode as fV, BodySpeechToTextV1SpeechToTextPostModelId as fW, type BodySpeechToTextV1SpeechToTextPostNumSpeakers as fX, type BodySpeechToTextV1SpeechToTextPostSeed as fY, type BodySpeechToTextV1SpeechToTextPostSourceUrl as fZ, type BodySpeechToTextV1SpeechToTextPostTemperature as f_, SpokenFormRecognitionResultType as fa, type SummarizationError as fb, SummarizationErrorType as fc, type SummarizationResult as fd, type TopicDetectionError as fe, TopicDetectionErrorType as ff, type TopicDetectionResult as fg, type TopicDetectionSegment as fh, type TopicDetectionSegmentTopic as fi, type TopicDetectionSummary as fj, type TopicDetectionSummaryOverall as fk, type TrackingDataDetails as fl, type TranscriptionConfigAdditionalVocabItem as fm, TranscriptionConfigDiarization as fn, TranscriptionConfigMaxDelayMode as fo, type TranscriptionConfigPunctuationOverrides as fp, type TranscriptionConfigSpeakerDiarizationConfig as fq, type TranscriptionConfigTranscriptFilteringConfig as fr, type TranscriptionConfigTranscriptFilteringConfigReplacementsItem as fs, type TranslationError as ft, TranslationErrorType as fu, type TranslationSentence as fv, type WrittenFormRecognitionResult as fw, WrittenFormRecognitionResultType as fx, type Transcription as fy, type TranscriptionAudioDurationMs as fz, StreamingSupportedModels as g, type Speaker as g$, type BodySpeechToTextV1SpeechToTextPostWebhookId as g0, type BodySpeechToTextV1SpeechToTextPostWebhookMetadata as g1, type BodySpeechToTextV1SpeechToTextPostWebhookMetadataAnyOf as g2, type DetectedEntity as g3, type DocxExportOptions as g4, DocxExportOptionsFormat as g5, type DocxExportOptionsMaxSegmentChars as g6, type DocxExportOptionsMaxSegmentDurationS as g7, type DocxExportOptionsSegmentOnSilenceLongerThanS as g8, type ExportOptions as g9, type SpeechToTextWordResponseModelEnd as gA, type SpeechToTextWordResponseModelSpeakerId as gB, type SpeechToTextWordResponseModelStart as gC, SpeechToTextWordResponseModelType as gD, type SrtExportOptions as gE, SrtExportOptionsFormat as gF, type SrtExportOptionsMaxCharactersPerLine as gG, type SrtExportOptionsMaxSegmentChars as gH, type SrtExportOptionsMaxSegmentDurationS as gI, type SrtExportOptionsSegmentOnSilenceLongerThanS as gJ, type TxtExportOptions as gK, TxtExportOptionsFormat as gL, type TxtExportOptionsMaxCharactersPerLine as gM, type TxtExportOptionsMaxSegmentChars as gN, type TxtExportOptionsMaxSegmentDurationS as gO, type TxtExportOptionsSegmentOnSilenceLongerThanS as gP, type SpeechmaticsOperatingPoint as gQ, type TranscriptionModel as gR, type TranscriptionLanguage as gS, type AssemblyAIExtendedData as gT, type GladiaExtendedData as gU, type DeepgramExtendedData as gV, type ElevenLabsExtendedData as gW, type ProviderExtendedDataMap as gX, type StreamingProvider as gY, type BatchOnlyProvider as gZ, type SessionStatus as g_, type HtmlExportOptions as ga, HtmlExportOptionsFormat as gb, type HtmlExportOptionsMaxSegmentChars as gc, type HtmlExportOptionsMaxSegmentDurationS as gd, type HtmlExportOptionsSegmentOnSilenceLongerThanS as ge, type PdfExportOptions as gf, PdfExportOptionsFormat as gg, type PdfExportOptionsMaxSegmentChars as gh, type PdfExportOptionsMaxSegmentDurationS as gi, type PdfExportOptionsSegmentOnSilenceLongerThanS as gj, type SegmentedJsonExportOptions as gk, SegmentedJsonExportOptionsFormat as gl, type SegmentedJsonExportOptionsMaxSegmentChars as gm, type SegmentedJsonExportOptionsMaxSegmentDurationS as gn, type SegmentedJsonExportOptionsSegmentOnSilenceLongerThanS as go, type SpeechToTextCharacterResponseModel as gp, type SpeechToTextCharacterResponseModelEnd as gq, type SpeechToTextCharacterResponseModelStart as gr, type SpeechToTextChunkResponseModelAdditionalFormats as gs, type SpeechToTextChunkResponseModelAdditionalFormatsAnyOfItem as gt, type SpeechToTextChunkResponseModelAudioDurationSecs as gu, type SpeechToTextChunkResponseModelChannelIndex as gv, type SpeechToTextChunkResponseModelEntities as gw, type SpeechToTextChunkResponseModelTranscriptionId as gx, type SpeechToTextWordResponseModel as gy, type SpeechToTextWordResponseModelCharacters as gz, type LanguageConfig as h, type Word as h0, type Utterance as h1, type TranscriptionStatus$1 as h2, type TranscriptMetadata as h3, type TranscriptData as h4, type ListTranscriptsResponse as h5, type ProviderRawResponseMap as h6, type StreamEventType as h7, type SpeechEvent as h8, type TranslationEvent as h9, type SentimentEvent as ha, type EntityEvent as hb, type SummarizationEvent as hc, type ChapterizationEvent as hd, type AudioAckEvent as he, type LifecycleEvent as hf, type AudioChunk as hg, type RawWebSocketMessage as hh, type AssemblyAIUpdateConfiguration as hi, type OpenAIStreamingOptions as hj, type SonioxStreamingOptions as hk, type ElevenLabsStreamingOptions as hl, type SpeechmaticsStreamingOptions as hm, type ProviderStreamingOptions as hn, type StreamingOptionsForProvider as ho, type TranscribeStreamParams as hp, type BeginEvent as hq, type TurnEvent as hr, type TerminationEvent as hs, type ErrorEvent as ht, type StreamingEventMessage as hu, type StreamingWord as hv, type StreamingForceEndpoint as hw, 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, type NamedEntityRecognitionResult as t, StreamingSupportedRegions as u, type AddonErrorDTO as v, type AudioToLlmDTO as w, type AudioToLlmDTOError as x, type AudioToLlmDTOResults as y, type AudioToLlmListConfigDTO as z };
10852
+ export { type CustomSpellingConfigDTO as $, type AssemblyAIStreamingOptions as A, type AudioToLlmListDTO as B, type CallbackConfig as C, type DeepgramStreamingOptions as D, type AudioToLlmListDTOError as E, type FileResponse as F, type GladiaStreamingOptions as G, type AudioToLlmResultDTO as H, type CallbackConfigDto as I, CallbackMethodEnum as J, type CallbackTranscriptionErrorPayload as K, type ListTranscriptsOptions as L, type MessagesConfig as M, type NamedEntityRecognitionDTO as N, type CallbackTranscriptionErrorPayloadCustomMetadata as O, type PreProcessingConfig as P, CallbackTranscriptionErrorPayloadEvent as Q, type RealtimeProcessingConfig as R, type StreamingOptions as S, type TranscribeOptions as T, type UnifiedTranscriptResponse as U, type CallbackTranscriptionSuccessPayload as V, type WordDTO as W, type CallbackTranscriptionSuccessPayloadCustomMetadata as X, CallbackTranscriptionSuccessPayloadEvent as Y, type ChapterizationDTOError as Z, type ChapterizationDTOResults 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 PiiRedactionConfigDTO as ah, PiiRedactionConfigDTOProcessedTextType as ai, PiiRedactionEntityTypeEnum as aj, type PreRecordedRequestParamsResponse as ak, type PreRecordedResponseCustomMetadata as al, type PreRecordedResponseFile as am, PreRecordedResponseKind as an, type PreRecordedResponsePostSessionMetadata as ao, type PreRecordedResponseRequestParams as ap, type PreRecordedResponseResult as aq, PreRecordedResponseStatus as ar, type SentencesDTO as as, type SentencesDTOError as at, type SentimentAnalysisDTOError as au, type StreamingRequest as av, type StreamingRequestCustomMetadata 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$1 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 SharedIntentsResultsIntentsSegmentsItems 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 CreateTranscriptionRequestChunkingStrategy as d9, type ListProjectRequestsParams as dA, type ListenTranscribeParams as dB, type ListenV1ResponseMetadata as dC, type ListenV1ResponseMetadataIntentsInfo as dD, type ListenV1ResponseMetadataModelInfo as dE, type ListenV1ResponseMetadataSentimentInfo as dF, type ListenV1ResponseMetadataSummaryInfo as dG, type ListenV1ResponseMetadataTopicsInfo as dH, type ListenV1ResponseResults as dI, type ListenV1ResponseResultsChannels as dJ, type ListenV1ResponseResultsChannelsItems as dK, type ListenV1ResponseResultsChannelsItemsAlternativesItems as dL, type ListenV1ResponseResultsChannelsItemsAlternativesItemsEntitiesItems as dM, type ListenV1ResponseResultsChannelsItemsAlternativesItemsParagraphs as dN, type ListenV1ResponseResultsChannelsItemsAlternativesItemsParagraphsParagraphsItems as dO, type ListenV1ResponseResultsChannelsItemsAlternativesItemsParagraphsParagraphsItemsSentencesItems as dP, type ListenV1ResponseResultsChannelsItemsAlternativesItemsSummariesItems as dQ, type ListenV1ResponseResultsChannelsItemsAlternativesItemsTopicsItems as dR, type ListenV1ResponseResultsChannelsItemsAlternativesItemsWordsItems as dS, type ListenV1ResponseResultsChannelsItemsSearchItems as dT, type ListenV1ResponseResultsChannelsItemsSearchItemsHitsItems as dU, type ListenV1ResponseResultsSummary as dV, type ListenV1ResponseResultsUtterances as dW, type ListenV1ResponseResultsUtterancesItems as dX, type ListenV1ResponseResultsUtterancesItemsWordsItems as dY, type SharedIntentsResults as dZ, type SharedIntentsResultsIntents as d_, type CreateTranscriptionRequestChunkingStrategyAnyOf as da, type CreateTranscriptionRequestModel as db, type CreateTranscriptionRequestStream as dc, CreateTranscriptionRequestTimestampGranularitiesItem as dd, type CreateTranscriptionResponseDiarizedJson as de, CreateTranscriptionResponseDiarizedJsonTask as df, type CreateTranscriptionResponseDiarizedJsonUsage as dg, type CreateTranscriptionResponseJson as dh, type CreateTranscriptionResponseJsonLogprobsItem as di, type CreateTranscriptionResponseJsonUsage as dj, type CreateTranscriptionResponseVerboseJson as dk, type TranscriptTextUsageDuration as dl, TranscriptTextUsageDurationType as dm, type TranscriptTextUsageTokensInputTokenDetails as dn, TranscriptTextUsageTokensType 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 SharedTopics as dx, type SharedIntents as dy, type SharedSentiments as dz, StreamingSupportedBitDepthEnum as e, type RetrieveTranscriptResponseTranslations as e$, type SharedIntentsResultsIntentsSegmentsItemsIntentsItems as e0, type SharedSentimentsAverage as e1, type SharedSentimentsSegmentsItems as e2, type SharedTopicsResults as e3, type SharedTopicsResultsTopics as e4, type SharedTopicsResultsTopicsSegmentsItems as e5, type SharedTopicsResultsTopicsSegmentsItemsTopicsItems as e6, V1ListenPostParametersCallbackMethod as e7, type V1ListenPostParametersCustomIntent as e8, V1ListenPostParametersCustomIntentMode as e9, type OutputConfig as eA, OperatingPoint as eB, type AudioEventItem as eC, type AudioEventSummary as eD, type AudioEventSummaryItem as eE, type AutoChaptersResult as eF, type AutoChaptersResultError as eG, AutoChaptersResultErrorType as eH, type Chapter as eI, type JobInfo as eJ, type LanguageIdentificationResult as eK, type LanguageIdentificationResultAlternative as eL, LanguageIdentificationResultError as eM, type LanguageIdentificationResultItem as eN, type LanguagePackInfo as eO, LanguagePackInfoWritingDirection as eP, type OutputConfigSrtOverrides as eQ, type RecognitionAlternative as eR, type RecognitionDisplay as eS, RecognitionDisplayDirection as eT, type RecognitionMetadata as eU, type RecognitionResult as eV, RecognitionResultAttachesTo as eW, RecognitionResultType as eX, type RetrieveTranscriptResponse as eY, type RetrieveTranscriptResponseAudioEventSummary as eZ, type RetrieveTranscriptResponseAudioEventSummaryChannels as e_, type V1ListenPostParametersCustomTopic as ea, V1ListenPostParametersCustomTopicMode as eb, type V1ListenPostParametersDetectLanguage as ec, V1ListenPostParametersEncoding as ed, type V1ListenPostParametersExtra as ee, type V1ListenPostParametersKeywords as ef, type V1ListenPostParametersModel as eg, V1ListenPostParametersModel0 as eh, type V1ListenPostParametersRedact as ei, type V1ListenPostParametersRedact1 as ej, V1ListenPostParametersRedactSchemaOneOf1Items as ek, type V1ListenPostParametersReplace as el, type V1ListenPostParametersSearch as em, type V1ListenPostParametersSummarize as en, V1ListenPostParametersSummarize0 as eo, type V1ListenPostParametersTag as ep, type V1ListenPostParametersVersion as eq, V1ListenPostParametersVersion0 as er, V1ProjectsProjectIdRequestsGetParametersDeployment as es, V1ProjectsProjectIdRequestsGetParametersEndpoint as et, V1ProjectsProjectIdRequestsGetParametersMethod as eu, V1ProjectsProjectIdRequestsGetParametersStatus as ev, JobType as ew, type AlignmentConfig as ex, type TranscriptionConfig as ey, type TrackingData as ez, StreamingSupportedSampleRateEnum as f, type TranscriptionWebhookAuthHeaderName as f$, type SentimentAnalysisError as f0, SentimentAnalysisErrorType as f1, type SentimentAnalysisResult as f2, type SentimentAnalysisResultSentimentAnalysis as f3, type SentimentChannelSummary as f4, type SentimentSegment as f5, type SentimentSpeakerSummary as f6, type SentimentSummary as f7, type SentimentSummaryDetail as f8, type SpokenFormRecognitionResult as f9, type CreateTranscriptionPayloadAudioUrl as fA, type CreateTranscriptionPayloadClientReferenceId as fB, type CreateTranscriptionPayloadContext as fC, type CreateTranscriptionPayloadEnableLanguageIdentification as fD, type CreateTranscriptionPayloadEnableSpeakerDiarization as fE, type CreateTranscriptionPayloadFileId as fF, type CreateTranscriptionPayloadLanguageHints as fG, type CreateTranscriptionPayloadLanguageHintsStrict as fH, type CreateTranscriptionPayloadTranslation as fI, type CreateTranscriptionPayloadWebhookAuthHeaderName as fJ, type CreateTranscriptionPayloadWebhookAuthHeaderValue as fK, type CreateTranscriptionPayloadWebhookUrl as fL, type StructuredContext as fM, type StructuredContextGeneral as fN, type StructuredContextGeneralItem as fO, type StructuredContextTerms as fP, type StructuredContextText as fQ, type StructuredContextTranslationTerm as fR, type StructuredContextTranslationTerms as fS, type TranscriptionAudioDurationMs as fT, type TranscriptionAudioUrl as fU, type TranscriptionClientReferenceId as fV, type TranscriptionErrorMessage as fW, type TranscriptionErrorType as fX, type TranscriptionFileId as fY, type TranscriptionLanguageHints as fZ, TranscriptionStatus as f_, SpokenFormRecognitionResultType as fa, type SummarizationError as fb, SummarizationErrorType as fc, type SummarizationResult as fd, type TopicDetectionError as fe, TopicDetectionErrorType as ff, type TopicDetectionResult as fg, type TopicDetectionSegment as fh, type TopicDetectionSegmentTopic as fi, type TopicDetectionSummary as fj, type TopicDetectionSummaryOverall as fk, type TrackingDataDetails as fl, type TranscriptionConfigAdditionalVocabItem as fm, TranscriptionConfigDiarization as fn, TranscriptionConfigMaxDelayMode as fo, type TranscriptionConfigPunctuationOverrides as fp, type TranscriptionConfigSpeakerDiarizationConfig as fq, type TranscriptionConfigTranscriptFilteringConfig as fr, type TranscriptionConfigTranscriptFilteringConfigReplacementsItem as fs, type TranslationError as ft, TranslationErrorType as fu, type TranslationSentence as fv, type WrittenFormRecognitionResult as fw, WrittenFormRecognitionResultType as fx, type Transcription as fy, type CreateTranscriptionPayload as fz, StreamingSupportedModels as g, type SpeechToTextWordResponseModelStart as g$, type TranscriptionWebhookAuthHeaderValue as g0, type TranscriptionWebhookStatusCode as g1, type TranscriptionWebhookUrl as g2, type TranslationConfig as g3, type TranslationConfigLanguageA as g4, type TranslationConfigLanguageB as g5, type TranslationConfigTargetLanguage as g6, TranslationConfigType as g7, type SpeechToTextChunkResponseModel as g8, type AdditionalFormatResponseModel as g9, HtmlExportOptionsFormat as gA, type HtmlExportOptionsMaxSegmentChars as gB, type HtmlExportOptionsMaxSegmentDurationS as gC, type HtmlExportOptionsSegmentOnSilenceLongerThanS as gD, type PdfExportOptions as gE, PdfExportOptionsFormat as gF, type PdfExportOptionsMaxSegmentChars as gG, type PdfExportOptionsMaxSegmentDurationS as gH, type PdfExportOptionsSegmentOnSilenceLongerThanS as gI, type SegmentedJsonExportOptions as gJ, SegmentedJsonExportOptionsFormat as gK, type SegmentedJsonExportOptionsMaxSegmentChars as gL, type SegmentedJsonExportOptionsMaxSegmentDurationS as gM, type SegmentedJsonExportOptionsSegmentOnSilenceLongerThanS as gN, type SpeechToTextCharacterResponseModel as gO, type SpeechToTextCharacterResponseModelEnd as gP, type SpeechToTextCharacterResponseModelStart as gQ, type SpeechToTextChunkResponseModelAdditionalFormats as gR, type SpeechToTextChunkResponseModelAdditionalFormatsAnyOfItem as gS, type SpeechToTextChunkResponseModelAudioDurationSecs as gT, type SpeechToTextChunkResponseModelChannelIndex as gU, type SpeechToTextChunkResponseModelEntities as gV, type SpeechToTextChunkResponseModelTranscriptionId as gW, type SpeechToTextWordResponseModel as gX, type SpeechToTextWordResponseModelCharacters as gY, type SpeechToTextWordResponseModelEnd as gZ, type SpeechToTextWordResponseModelSpeakerId as g_, type AdditionalFormats as ga, type BodySpeechToTextV1SpeechToTextPost as gb, type BodySpeechToTextV1SpeechToTextPostCloudStorageUrl as gc, type BodySpeechToTextV1SpeechToTextPostDiarizationThreshold as gd, type BodySpeechToTextV1SpeechToTextPostEntityDetection as ge, type BodySpeechToTextV1SpeechToTextPostEntityRedaction as gf, type BodySpeechToTextV1SpeechToTextPostFile as gg, BodySpeechToTextV1SpeechToTextPostFileFormat as gh, type BodySpeechToTextV1SpeechToTextPostLanguageCode as gi, BodySpeechToTextV1SpeechToTextPostModelId as gj, type BodySpeechToTextV1SpeechToTextPostNumSpeakers as gk, type BodySpeechToTextV1SpeechToTextPostSeed as gl, type BodySpeechToTextV1SpeechToTextPostSourceUrl as gm, type BodySpeechToTextV1SpeechToTextPostTemperature as gn, BodySpeechToTextV1SpeechToTextPostTimestampsGranularity as go, type BodySpeechToTextV1SpeechToTextPostWebhookId as gp, type BodySpeechToTextV1SpeechToTextPostWebhookMetadata as gq, type BodySpeechToTextV1SpeechToTextPostWebhookMetadataAnyOf as gr, type DetectedEntity as gs, type DocxExportOptions as gt, DocxExportOptionsFormat as gu, type DocxExportOptionsMaxSegmentChars as gv, type DocxExportOptionsMaxSegmentDurationS as gw, type DocxExportOptionsSegmentOnSilenceLongerThanS as gx, type ExportOptions as gy, type HtmlExportOptions as gz, type LanguageConfig as h, SpeechToTextWordResponseModelType as h0, type SrtExportOptions as h1, SrtExportOptionsFormat as h2, type SrtExportOptionsMaxCharactersPerLine as h3, type SrtExportOptionsMaxSegmentChars as h4, type SrtExportOptionsMaxSegmentDurationS as h5, type SrtExportOptionsSegmentOnSilenceLongerThanS as h6, type TxtExportOptions as h7, TxtExportOptionsFormat as h8, type TxtExportOptionsMaxCharactersPerLine as h9, type EntityEvent as hA, type SummarizationEvent as hB, type ChapterizationEvent as hC, type AudioAckEvent as hD, type LifecycleEvent as hE, type AudioChunk as hF, type RawWebSocketMessage as hG, type AssemblyAIUpdateConfiguration as hH, type OpenAIStreamingOptions as hI, type SonioxStreamingOptions as hJ, type ElevenLabsStreamingOptions as hK, type SpeechmaticsStreamingOptions as hL, type ProviderStreamingOptions as hM, type StreamingOptionsForProvider as hN, type TranscribeStreamParams as hO, type BeginEvent as hP, type TurnEvent as hQ, type TerminationEvent as hR, type ErrorEvent as hS, type StreamingEventMessage as hT, type StreamingWord as hU, type StreamingForceEndpoint as hV, type TxtExportOptionsMaxSegmentChars as ha, type TxtExportOptionsMaxSegmentDurationS as hb, type TxtExportOptionsSegmentOnSilenceLongerThanS as hc, type SpeechmaticsOperatingPoint as hd, type TranscriptionModel as he, type TranscriptionLanguage as hf, type AssemblyAIExtendedData as hg, type GladiaExtendedData as hh, type DeepgramExtendedData as hi, type ElevenLabsExtendedData as hj, type ProviderExtendedDataMap as hk, type StreamingProvider as hl, type BatchOnlyProvider as hm, type SessionStatus as hn, type Speaker as ho, type Word as hp, type Utterance as hq, type TranscriptionStatus$1 as hr, type TranscriptMetadata as hs, type TranscriptData as ht, type ListTranscriptsResponse as hu, type ProviderRawResponseMap as hv, type StreamEventType as hw, type SpeechEvent as hx, type TranslationEvent as hy, type SentimentEvent 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, type NamedEntityRecognitionResult as t, StreamingSupportedRegions as u, type AddonErrorDTO as v, type AudioToLlmDTO as w, type AudioToLlmDTOError as x, type AudioToLlmDTOResults as y, type AudioToLlmListConfigDTO as z };