voice-router-dev 0.3.0 → 0.3.2
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/constants.d.mts +515 -0
- package/dist/constants.d.ts +515 -0
- package/dist/constants.js +371 -0
- package/dist/constants.js.map +1 -0
- package/dist/constants.mjs +333 -0
- package/dist/constants.mjs.map +1 -0
- package/dist/index.d.mts +18 -529
- package/dist/index.d.ts +18 -529
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import { GladiaLanguage as TranscriptionLanguageCodeEnum, GladiaTranslationLanguage as TranslationLanguageCodeEnum, DeepgramRedact as ListenV1RedactParameterOneOfItem, DeepgramTopicMode as SharedCustomTopicModeParameter, DeepgramEncoding as ListenV1EncodingParameter, GladiaEncoding as StreamingSupportedEncodingEnum, GladiaBitDepth as StreamingSupportedBitDepthEnum, GladiaSampleRate as StreamingSupportedSampleRateEnum, GladiaModel as StreamingSupportedModels, DeepgramModelType, AssemblyAISampleRateType, AssemblyAIEncodingType, AssemblyAISpeechModelType } from './constants.mjs';
|
|
2
|
+
export { AssemblyAIEncoding, AssemblyAISampleRate, AssemblyAISpeechModel, DeepgramModel } from './constants.mjs';
|
|
3
|
+
|
|
1
4
|
/**
|
|
2
5
|
* Unified audio encoding types for Voice Router SDK
|
|
3
6
|
*
|
|
@@ -697,118 +700,6 @@ interface CallbackConfigDto {
|
|
|
697
700
|
method?: CallbackMethodEnum;
|
|
698
701
|
}
|
|
699
702
|
|
|
700
|
-
/**
|
|
701
|
-
* Generated by orval v7.9.0 🍺
|
|
702
|
-
* Do not edit manually.
|
|
703
|
-
* Gladia Control API
|
|
704
|
-
* OpenAPI spec version: 1.0
|
|
705
|
-
*/
|
|
706
|
-
/**
|
|
707
|
-
* Specify the language in which it will be pronounced when sound comparison occurs. Default to transcription language.
|
|
708
|
-
*/
|
|
709
|
-
type TranscriptionLanguageCodeEnum = (typeof TranscriptionLanguageCodeEnum)[keyof typeof TranscriptionLanguageCodeEnum];
|
|
710
|
-
declare const TranscriptionLanguageCodeEnum: {
|
|
711
|
-
readonly af: "af";
|
|
712
|
-
readonly am: "am";
|
|
713
|
-
readonly ar: "ar";
|
|
714
|
-
readonly as: "as";
|
|
715
|
-
readonly az: "az";
|
|
716
|
-
readonly ba: "ba";
|
|
717
|
-
readonly be: "be";
|
|
718
|
-
readonly bg: "bg";
|
|
719
|
-
readonly bn: "bn";
|
|
720
|
-
readonly bo: "bo";
|
|
721
|
-
readonly br: "br";
|
|
722
|
-
readonly bs: "bs";
|
|
723
|
-
readonly ca: "ca";
|
|
724
|
-
readonly cs: "cs";
|
|
725
|
-
readonly cy: "cy";
|
|
726
|
-
readonly da: "da";
|
|
727
|
-
readonly de: "de";
|
|
728
|
-
readonly el: "el";
|
|
729
|
-
readonly en: "en";
|
|
730
|
-
readonly es: "es";
|
|
731
|
-
readonly et: "et";
|
|
732
|
-
readonly eu: "eu";
|
|
733
|
-
readonly fa: "fa";
|
|
734
|
-
readonly fi: "fi";
|
|
735
|
-
readonly fo: "fo";
|
|
736
|
-
readonly fr: "fr";
|
|
737
|
-
readonly gl: "gl";
|
|
738
|
-
readonly gu: "gu";
|
|
739
|
-
readonly ha: "ha";
|
|
740
|
-
readonly haw: "haw";
|
|
741
|
-
readonly he: "he";
|
|
742
|
-
readonly hi: "hi";
|
|
743
|
-
readonly hr: "hr";
|
|
744
|
-
readonly ht: "ht";
|
|
745
|
-
readonly hu: "hu";
|
|
746
|
-
readonly hy: "hy";
|
|
747
|
-
readonly id: "id";
|
|
748
|
-
readonly is: "is";
|
|
749
|
-
readonly it: "it";
|
|
750
|
-
readonly ja: "ja";
|
|
751
|
-
readonly jw: "jw";
|
|
752
|
-
readonly ka: "ka";
|
|
753
|
-
readonly kk: "kk";
|
|
754
|
-
readonly km: "km";
|
|
755
|
-
readonly kn: "kn";
|
|
756
|
-
readonly ko: "ko";
|
|
757
|
-
readonly la: "la";
|
|
758
|
-
readonly lb: "lb";
|
|
759
|
-
readonly ln: "ln";
|
|
760
|
-
readonly lo: "lo";
|
|
761
|
-
readonly lt: "lt";
|
|
762
|
-
readonly lv: "lv";
|
|
763
|
-
readonly mg: "mg";
|
|
764
|
-
readonly mi: "mi";
|
|
765
|
-
readonly mk: "mk";
|
|
766
|
-
readonly ml: "ml";
|
|
767
|
-
readonly mn: "mn";
|
|
768
|
-
readonly mr: "mr";
|
|
769
|
-
readonly ms: "ms";
|
|
770
|
-
readonly mt: "mt";
|
|
771
|
-
readonly my: "my";
|
|
772
|
-
readonly ne: "ne";
|
|
773
|
-
readonly nl: "nl";
|
|
774
|
-
readonly nn: "nn";
|
|
775
|
-
readonly no: "no";
|
|
776
|
-
readonly oc: "oc";
|
|
777
|
-
readonly pa: "pa";
|
|
778
|
-
readonly pl: "pl";
|
|
779
|
-
readonly ps: "ps";
|
|
780
|
-
readonly pt: "pt";
|
|
781
|
-
readonly ro: "ro";
|
|
782
|
-
readonly ru: "ru";
|
|
783
|
-
readonly sa: "sa";
|
|
784
|
-
readonly sd: "sd";
|
|
785
|
-
readonly si: "si";
|
|
786
|
-
readonly sk: "sk";
|
|
787
|
-
readonly sl: "sl";
|
|
788
|
-
readonly sn: "sn";
|
|
789
|
-
readonly so: "so";
|
|
790
|
-
readonly sq: "sq";
|
|
791
|
-
readonly sr: "sr";
|
|
792
|
-
readonly su: "su";
|
|
793
|
-
readonly sv: "sv";
|
|
794
|
-
readonly sw: "sw";
|
|
795
|
-
readonly ta: "ta";
|
|
796
|
-
readonly te: "te";
|
|
797
|
-
readonly tg: "tg";
|
|
798
|
-
readonly th: "th";
|
|
799
|
-
readonly tk: "tk";
|
|
800
|
-
readonly tl: "tl";
|
|
801
|
-
readonly tr: "tr";
|
|
802
|
-
readonly tt: "tt";
|
|
803
|
-
readonly uk: "uk";
|
|
804
|
-
readonly ur: "ur";
|
|
805
|
-
readonly uz: "uz";
|
|
806
|
-
readonly vi: "vi";
|
|
807
|
-
readonly yi: "yi";
|
|
808
|
-
readonly yo: "yo";
|
|
809
|
-
readonly zh: "zh";
|
|
810
|
-
};
|
|
811
|
-
|
|
812
703
|
/**
|
|
813
704
|
* Generated by orval v7.9.0 🍺
|
|
814
705
|
* Do not edit manually.
|
|
@@ -1044,119 +935,6 @@ interface SummarizationConfigDTO {
|
|
|
1044
935
|
type?: SummaryTypesEnum;
|
|
1045
936
|
}
|
|
1046
937
|
|
|
1047
|
-
/**
|
|
1048
|
-
* Generated by orval v7.9.0 🍺
|
|
1049
|
-
* Do not edit manually.
|
|
1050
|
-
* Gladia Control API
|
|
1051
|
-
* OpenAPI spec version: 1.0
|
|
1052
|
-
*/
|
|
1053
|
-
/**
|
|
1054
|
-
* Target language in `iso639-1` format you want the transcription translated to
|
|
1055
|
-
*/
|
|
1056
|
-
type TranslationLanguageCodeEnum = (typeof TranslationLanguageCodeEnum)[keyof typeof TranslationLanguageCodeEnum];
|
|
1057
|
-
declare const TranslationLanguageCodeEnum: {
|
|
1058
|
-
readonly af: "af";
|
|
1059
|
-
readonly am: "am";
|
|
1060
|
-
readonly ar: "ar";
|
|
1061
|
-
readonly as: "as";
|
|
1062
|
-
readonly az: "az";
|
|
1063
|
-
readonly ba: "ba";
|
|
1064
|
-
readonly be: "be";
|
|
1065
|
-
readonly bg: "bg";
|
|
1066
|
-
readonly bn: "bn";
|
|
1067
|
-
readonly bo: "bo";
|
|
1068
|
-
readonly br: "br";
|
|
1069
|
-
readonly bs: "bs";
|
|
1070
|
-
readonly ca: "ca";
|
|
1071
|
-
readonly cs: "cs";
|
|
1072
|
-
readonly cy: "cy";
|
|
1073
|
-
readonly da: "da";
|
|
1074
|
-
readonly de: "de";
|
|
1075
|
-
readonly el: "el";
|
|
1076
|
-
readonly en: "en";
|
|
1077
|
-
readonly es: "es";
|
|
1078
|
-
readonly et: "et";
|
|
1079
|
-
readonly eu: "eu";
|
|
1080
|
-
readonly fa: "fa";
|
|
1081
|
-
readonly fi: "fi";
|
|
1082
|
-
readonly fo: "fo";
|
|
1083
|
-
readonly fr: "fr";
|
|
1084
|
-
readonly gl: "gl";
|
|
1085
|
-
readonly gu: "gu";
|
|
1086
|
-
readonly ha: "ha";
|
|
1087
|
-
readonly haw: "haw";
|
|
1088
|
-
readonly he: "he";
|
|
1089
|
-
readonly hi: "hi";
|
|
1090
|
-
readonly hr: "hr";
|
|
1091
|
-
readonly ht: "ht";
|
|
1092
|
-
readonly hu: "hu";
|
|
1093
|
-
readonly hy: "hy";
|
|
1094
|
-
readonly id: "id";
|
|
1095
|
-
readonly is: "is";
|
|
1096
|
-
readonly it: "it";
|
|
1097
|
-
readonly ja: "ja";
|
|
1098
|
-
readonly jw: "jw";
|
|
1099
|
-
readonly ka: "ka";
|
|
1100
|
-
readonly kk: "kk";
|
|
1101
|
-
readonly km: "km";
|
|
1102
|
-
readonly kn: "kn";
|
|
1103
|
-
readonly ko: "ko";
|
|
1104
|
-
readonly la: "la";
|
|
1105
|
-
readonly lb: "lb";
|
|
1106
|
-
readonly ln: "ln";
|
|
1107
|
-
readonly lo: "lo";
|
|
1108
|
-
readonly lt: "lt";
|
|
1109
|
-
readonly lv: "lv";
|
|
1110
|
-
readonly mg: "mg";
|
|
1111
|
-
readonly mi: "mi";
|
|
1112
|
-
readonly mk: "mk";
|
|
1113
|
-
readonly ml: "ml";
|
|
1114
|
-
readonly mn: "mn";
|
|
1115
|
-
readonly mr: "mr";
|
|
1116
|
-
readonly ms: "ms";
|
|
1117
|
-
readonly mt: "mt";
|
|
1118
|
-
readonly my: "my";
|
|
1119
|
-
readonly ne: "ne";
|
|
1120
|
-
readonly nl: "nl";
|
|
1121
|
-
readonly nn: "nn";
|
|
1122
|
-
readonly no: "no";
|
|
1123
|
-
readonly oc: "oc";
|
|
1124
|
-
readonly pa: "pa";
|
|
1125
|
-
readonly pl: "pl";
|
|
1126
|
-
readonly ps: "ps";
|
|
1127
|
-
readonly pt: "pt";
|
|
1128
|
-
readonly ro: "ro";
|
|
1129
|
-
readonly ru: "ru";
|
|
1130
|
-
readonly sa: "sa";
|
|
1131
|
-
readonly sd: "sd";
|
|
1132
|
-
readonly si: "si";
|
|
1133
|
-
readonly sk: "sk";
|
|
1134
|
-
readonly sl: "sl";
|
|
1135
|
-
readonly sn: "sn";
|
|
1136
|
-
readonly so: "so";
|
|
1137
|
-
readonly sq: "sq";
|
|
1138
|
-
readonly sr: "sr";
|
|
1139
|
-
readonly su: "su";
|
|
1140
|
-
readonly sv: "sv";
|
|
1141
|
-
readonly sw: "sw";
|
|
1142
|
-
readonly ta: "ta";
|
|
1143
|
-
readonly te: "te";
|
|
1144
|
-
readonly tg: "tg";
|
|
1145
|
-
readonly th: "th";
|
|
1146
|
-
readonly tk: "tk";
|
|
1147
|
-
readonly tl: "tl";
|
|
1148
|
-
readonly tr: "tr";
|
|
1149
|
-
readonly tt: "tt";
|
|
1150
|
-
readonly uk: "uk";
|
|
1151
|
-
readonly ur: "ur";
|
|
1152
|
-
readonly uz: "uz";
|
|
1153
|
-
readonly vi: "vi";
|
|
1154
|
-
readonly wo: "wo";
|
|
1155
|
-
readonly yi: "yi";
|
|
1156
|
-
readonly yo: "yo";
|
|
1157
|
-
readonly zh: "zh";
|
|
1158
|
-
};
|
|
1159
|
-
|
|
1160
938
|
/**
|
|
1161
939
|
* Generated by orval v7.9.0 🍺
|
|
1162
940
|
* Do not edit manually.
|
|
@@ -4359,20 +4137,6 @@ interface Transcription {
|
|
|
4359
4137
|
*/
|
|
4360
4138
|
type ListenV1ModelParameter = "nova-3" | "nova-3-general" | "nova-3-medical" | "nova-2" | "nova-2-general" | "nova-2-meeting" | "nova-2-finance" | "nova-2-conversationalai" | "nova-2-voicemail" | "nova-2-video" | "nova-2-medical" | "nova-2-drivethru" | "nova-2-automotive" | "nova" | "nova-general" | "nova-phonecall" | "nova-medical" | "enhanced" | "enhanced-general" | "enhanced-meeting" | "enhanced-phonecall" | "enhanced-finance" | "base" | "meeting" | "phonecall" | "finance" | "conversationalai" | "voicemail" | "video" | string;
|
|
4361
4139
|
|
|
4362
|
-
/**
|
|
4363
|
-
* Generated by orval v7.9.0 🍺
|
|
4364
|
-
* Do not edit manually.
|
|
4365
|
-
* Gladia Control API
|
|
4366
|
-
* OpenAPI spec version: 1.0
|
|
4367
|
-
*/
|
|
4368
|
-
/**
|
|
4369
|
-
* The model used to process the audio. "solaria-1" is used by default.
|
|
4370
|
-
*/
|
|
4371
|
-
type StreamingSupportedModels = (typeof StreamingSupportedModels)[keyof typeof StreamingSupportedModels];
|
|
4372
|
-
declare const StreamingSupportedModels: {
|
|
4373
|
-
readonly "solaria-1": "solaria-1";
|
|
4374
|
-
};
|
|
4375
|
-
|
|
4376
4140
|
/**
|
|
4377
4141
|
* Generated by orval v7.9.0 🍺
|
|
4378
4142
|
* Do not edit manually.
|
|
@@ -4490,44 +4254,6 @@ type SharedTopicsParameter = boolean;
|
|
|
4490
4254
|
*/
|
|
4491
4255
|
type SharedCustomTopicParameter = string | string[];
|
|
4492
4256
|
|
|
4493
|
-
/**
|
|
4494
|
-
* Generated by orval v7.9.0 🍺
|
|
4495
|
-
* Do not edit manually.
|
|
4496
|
-
* Deepgram API Specification
|
|
4497
|
-
* APIs for speech-to-text transcription, text-to-speech synthesis, language understanding, and account management.
|
|
4498
|
-
|
|
4499
|
-
* OpenAPI spec version: 1.0.0
|
|
4500
|
-
*/
|
|
4501
|
-
/**
|
|
4502
|
-
* SharedCustomTopicModeParameter type definition
|
|
4503
|
-
*/
|
|
4504
|
-
/**
|
|
4505
|
-
* SharedCustomTopicModeParameter type definition
|
|
4506
|
-
*/
|
|
4507
|
-
/**
|
|
4508
|
-
* SharedCustomTopicModeParameter type definition
|
|
4509
|
-
*/
|
|
4510
|
-
/**
|
|
4511
|
-
* SharedCustomTopicModeParameter type definition
|
|
4512
|
-
*/
|
|
4513
|
-
/**
|
|
4514
|
-
* SharedCustomTopicModeParameter type definition
|
|
4515
|
-
*/
|
|
4516
|
-
/**
|
|
4517
|
-
* SharedCustomTopicModeParameter type definition
|
|
4518
|
-
*/
|
|
4519
|
-
/**
|
|
4520
|
-
* SharedCustomTopicModeParameter type definition
|
|
4521
|
-
*/
|
|
4522
|
-
/**
|
|
4523
|
-
* SharedCustomTopicModeParameter type definition
|
|
4524
|
-
*/
|
|
4525
|
-
type SharedCustomTopicModeParameter = typeof SharedCustomTopicModeParameter[keyof typeof SharedCustomTopicModeParameter];
|
|
4526
|
-
declare const SharedCustomTopicModeParameter: {
|
|
4527
|
-
readonly extended: "extended";
|
|
4528
|
-
readonly strict: "strict";
|
|
4529
|
-
};
|
|
4530
|
-
|
|
4531
4257
|
/**
|
|
4532
4258
|
* Generated by orval v7.9.0 🍺
|
|
4533
4259
|
* Do not edit manually.
|
|
@@ -4638,48 +4364,6 @@ type ListenV1DiarizeParameter = boolean;
|
|
|
4638
4364
|
*/
|
|
4639
4365
|
type ListenV1DictationParameter = boolean;
|
|
4640
4366
|
|
|
4641
|
-
/**
|
|
4642
|
-
* Generated by orval v7.9.0 🍺
|
|
4643
|
-
* Do not edit manually.
|
|
4644
|
-
* Deepgram API Specification
|
|
4645
|
-
* APIs for speech-to-text transcription, text-to-speech synthesis, language understanding, and account management.
|
|
4646
|
-
|
|
4647
|
-
* OpenAPI spec version: 1.0.0
|
|
4648
|
-
*/
|
|
4649
|
-
/**
|
|
4650
|
-
* ListenV1EncodingParameter type definition
|
|
4651
|
-
*/
|
|
4652
|
-
/**
|
|
4653
|
-
* ListenV1EncodingParameter type definition
|
|
4654
|
-
*/
|
|
4655
|
-
/**
|
|
4656
|
-
* ListenV1EncodingParameter type definition
|
|
4657
|
-
*/
|
|
4658
|
-
/**
|
|
4659
|
-
* ListenV1EncodingParameter type definition
|
|
4660
|
-
*/
|
|
4661
|
-
/**
|
|
4662
|
-
* ListenV1EncodingParameter type definition
|
|
4663
|
-
*/
|
|
4664
|
-
/**
|
|
4665
|
-
* ListenV1EncodingParameter type definition
|
|
4666
|
-
*/
|
|
4667
|
-
/**
|
|
4668
|
-
* ListenV1EncodingParameter type definition
|
|
4669
|
-
*/
|
|
4670
|
-
/**
|
|
4671
|
-
* ListenV1EncodingParameter type definition
|
|
4672
|
-
*/
|
|
4673
|
-
type ListenV1EncodingParameter = typeof ListenV1EncodingParameter[keyof typeof ListenV1EncodingParameter];
|
|
4674
|
-
declare const ListenV1EncodingParameter: {
|
|
4675
|
-
readonly linear16: "linear16";
|
|
4676
|
-
readonly flac: "flac";
|
|
4677
|
-
readonly mulaw: "mulaw";
|
|
4678
|
-
readonly opus: "opus";
|
|
4679
|
-
readonly speex: "speex";
|
|
4680
|
-
readonly g729: "g729";
|
|
4681
|
-
};
|
|
4682
|
-
|
|
4683
4367
|
/**
|
|
4684
4368
|
* Generated by orval v7.9.0 🍺
|
|
4685
4369
|
* Do not edit manually.
|
|
@@ -4807,21 +4491,6 @@ type ListenV1ProfanityFilterParameter = boolean;
|
|
|
4807
4491
|
*/
|
|
4808
4492
|
type ListenV1PunctuateParameter = boolean;
|
|
4809
4493
|
|
|
4810
|
-
/**
|
|
4811
|
-
* Generated by orval v7.9.0 🍺
|
|
4812
|
-
* Do not edit manually.
|
|
4813
|
-
* Deepgram API Specification
|
|
4814
|
-
* APIs for speech-to-text transcription, text-to-speech synthesis, language understanding, and account management.
|
|
4815
|
-
|
|
4816
|
-
* OpenAPI spec version: 1.0.0
|
|
4817
|
-
*/
|
|
4818
|
-
type ListenV1RedactParameterOneOfItem = (typeof ListenV1RedactParameterOneOfItem)[keyof typeof ListenV1RedactParameterOneOfItem];
|
|
4819
|
-
declare const ListenV1RedactParameterOneOfItem: {
|
|
4820
|
-
readonly pci: "pci";
|
|
4821
|
-
readonly pii: "pii";
|
|
4822
|
-
readonly numbers: "numbers";
|
|
4823
|
-
};
|
|
4824
|
-
|
|
4825
4494
|
/**
|
|
4826
4495
|
* Generated by orval v7.9.0 🍺
|
|
4827
4496
|
* Do not edit manually.
|
|
@@ -5776,62 +5445,6 @@ type StreamingRequestCustomMetadata = {
|
|
|
5776
5445
|
[key: string]: unknown;
|
|
5777
5446
|
};
|
|
5778
5447
|
|
|
5779
|
-
/**
|
|
5780
|
-
* Generated by orval v7.9.0 🍺
|
|
5781
|
-
* Do not edit manually.
|
|
5782
|
-
* Gladia Control API
|
|
5783
|
-
* OpenAPI spec version: 1.0
|
|
5784
|
-
*/
|
|
5785
|
-
/**
|
|
5786
|
-
* The bit depth of the audio stream
|
|
5787
|
-
*/
|
|
5788
|
-
type StreamingSupportedBitDepthEnum = (typeof StreamingSupportedBitDepthEnum)[keyof typeof StreamingSupportedBitDepthEnum];
|
|
5789
|
-
declare const StreamingSupportedBitDepthEnum: {
|
|
5790
|
-
readonly NUMBER_8: 8;
|
|
5791
|
-
readonly NUMBER_16: 16;
|
|
5792
|
-
readonly NUMBER_24: 24;
|
|
5793
|
-
readonly NUMBER_32: 32;
|
|
5794
|
-
};
|
|
5795
|
-
|
|
5796
|
-
/**
|
|
5797
|
-
* Generated by orval v7.9.0 🍺
|
|
5798
|
-
* Do not edit manually.
|
|
5799
|
-
* Gladia Control API
|
|
5800
|
-
* OpenAPI spec version: 1.0
|
|
5801
|
-
*/
|
|
5802
|
-
/**
|
|
5803
|
-
* The encoding format of the audio stream. Supported formats:
|
|
5804
|
-
- PCM: 8, 16, 24, and 32 bits
|
|
5805
|
-
- A-law: 8 bits
|
|
5806
|
-
- μ-law: 8 bits
|
|
5807
|
-
|
|
5808
|
-
Note: No need to add WAV headers to raw audio as the API supports both formats.
|
|
5809
|
-
*/
|
|
5810
|
-
type StreamingSupportedEncodingEnum = (typeof StreamingSupportedEncodingEnum)[keyof typeof StreamingSupportedEncodingEnum];
|
|
5811
|
-
declare const StreamingSupportedEncodingEnum: {
|
|
5812
|
-
readonly "wav/pcm": "wav/pcm";
|
|
5813
|
-
readonly "wav/alaw": "wav/alaw";
|
|
5814
|
-
readonly "wav/ulaw": "wav/ulaw";
|
|
5815
|
-
};
|
|
5816
|
-
|
|
5817
|
-
/**
|
|
5818
|
-
* Generated by orval v7.9.0 🍺
|
|
5819
|
-
* Do not edit manually.
|
|
5820
|
-
* Gladia Control API
|
|
5821
|
-
* OpenAPI spec version: 1.0
|
|
5822
|
-
*/
|
|
5823
|
-
/**
|
|
5824
|
-
* The sample rate of the audio stream
|
|
5825
|
-
*/
|
|
5826
|
-
type StreamingSupportedSampleRateEnum = (typeof StreamingSupportedSampleRateEnum)[keyof typeof StreamingSupportedSampleRateEnum];
|
|
5827
|
-
declare const StreamingSupportedSampleRateEnum: {
|
|
5828
|
-
readonly NUMBER_8000: 8000;
|
|
5829
|
-
readonly NUMBER_16000: 16000;
|
|
5830
|
-
readonly NUMBER_32000: 32000;
|
|
5831
|
-
readonly NUMBER_44100: 44100;
|
|
5832
|
-
readonly NUMBER_48000: 48000;
|
|
5833
|
-
};
|
|
5834
|
-
|
|
5835
5448
|
/**
|
|
5836
5449
|
* Generated by orval v7.9.0 🍺
|
|
5837
5450
|
* Do not edit manually.
|
|
@@ -5889,138 +5502,6 @@ interface StreamingRequest {
|
|
|
5889
5502
|
callback_config?: CallbackConfig;
|
|
5890
5503
|
}
|
|
5891
5504
|
|
|
5892
|
-
/**
|
|
5893
|
-
* Provider-specific streaming enums for type-safe autocomplete
|
|
5894
|
-
*
|
|
5895
|
-
* These const objects provide IDE autocomplete and compile-time validation
|
|
5896
|
-
* for streaming options. Use these instead of raw strings for better DX.
|
|
5897
|
-
*
|
|
5898
|
-
* @example
|
|
5899
|
-
* ```typescript
|
|
5900
|
-
* import { DeepgramEncoding, GladiaEncoding, DeepgramModel } from '@meeting-baas/sdk'
|
|
5901
|
-
*
|
|
5902
|
-
* await adapter.transcribeStream({
|
|
5903
|
-
* deepgramStreaming: {
|
|
5904
|
-
* encoding: DeepgramEncoding.linear16,
|
|
5905
|
-
* model: DeepgramModel.nova3,
|
|
5906
|
-
* language: DeepgramLanguage.en
|
|
5907
|
-
* }
|
|
5908
|
-
* })
|
|
5909
|
-
* ```
|
|
5910
|
-
*/
|
|
5911
|
-
|
|
5912
|
-
/**
|
|
5913
|
-
* Deepgram transcription models
|
|
5914
|
-
*
|
|
5915
|
-
* Derived from `ListenV1ModelParameter` in the OpenAPI spec.
|
|
5916
|
-
* Values are kept in sync with the generated type union.
|
|
5917
|
-
*
|
|
5918
|
-
* @see {@link ListenV1ModelParameter} for the underlying type
|
|
5919
|
-
* @example
|
|
5920
|
-
* ```typescript
|
|
5921
|
-
* import { DeepgramModel } from 'voice-router-dev'
|
|
5922
|
-
*
|
|
5923
|
-
* { model: DeepgramModel["nova-3"] }
|
|
5924
|
-
* { model: DeepgramModel["nova-2-medical"] }
|
|
5925
|
-
* ```
|
|
5926
|
-
*/
|
|
5927
|
-
declare const DeepgramModel: {
|
|
5928
|
-
readonly "nova-3": "nova-3";
|
|
5929
|
-
readonly "nova-3-general": "nova-3-general";
|
|
5930
|
-
readonly "nova-3-medical": "nova-3-medical";
|
|
5931
|
-
readonly "nova-2": "nova-2";
|
|
5932
|
-
readonly "nova-2-general": "nova-2-general";
|
|
5933
|
-
readonly "nova-2-meeting": "nova-2-meeting";
|
|
5934
|
-
readonly "nova-2-finance": "nova-2-finance";
|
|
5935
|
-
readonly "nova-2-conversationalai": "nova-2-conversationalai";
|
|
5936
|
-
readonly "nova-2-voicemail": "nova-2-voicemail";
|
|
5937
|
-
readonly "nova-2-video": "nova-2-video";
|
|
5938
|
-
readonly "nova-2-medical": "nova-2-medical";
|
|
5939
|
-
readonly "nova-2-drivethru": "nova-2-drivethru";
|
|
5940
|
-
readonly "nova-2-automotive": "nova-2-automotive";
|
|
5941
|
-
readonly nova: "nova";
|
|
5942
|
-
readonly "nova-general": "nova-general";
|
|
5943
|
-
readonly "nova-phonecall": "nova-phonecall";
|
|
5944
|
-
readonly "nova-medical": "nova-medical";
|
|
5945
|
-
readonly enhanced: "enhanced";
|
|
5946
|
-
readonly "enhanced-general": "enhanced-general";
|
|
5947
|
-
readonly "enhanced-meeting": "enhanced-meeting";
|
|
5948
|
-
readonly "enhanced-phonecall": "enhanced-phonecall";
|
|
5949
|
-
readonly "enhanced-finance": "enhanced-finance";
|
|
5950
|
-
readonly base: "base";
|
|
5951
|
-
readonly meeting: "meeting";
|
|
5952
|
-
readonly phonecall: "phonecall";
|
|
5953
|
-
readonly finance: "finance";
|
|
5954
|
-
readonly conversationalai: "conversationalai";
|
|
5955
|
-
readonly voicemail: "voicemail";
|
|
5956
|
-
readonly video: "video";
|
|
5957
|
-
};
|
|
5958
|
-
|
|
5959
|
-
/**
|
|
5960
|
-
* AssemblyAI audio encoding formats
|
|
5961
|
-
*
|
|
5962
|
-
* Derived from `AudioEncoding` type in the auto-synced streaming types.
|
|
5963
|
-
*
|
|
5964
|
-
* @example
|
|
5965
|
-
* ```typescript
|
|
5966
|
-
* import { AssemblyAIEncoding } from 'voice-router-dev'
|
|
5967
|
-
*
|
|
5968
|
-
* { encoding: AssemblyAIEncoding.pcmS16le }
|
|
5969
|
-
* ```
|
|
5970
|
-
*/
|
|
5971
|
-
declare const AssemblyAIEncoding: {
|
|
5972
|
-
/** PCM signed 16-bit little-endian (recommended) */
|
|
5973
|
-
readonly pcmS16le: "pcm_s16le";
|
|
5974
|
-
/** μ-law (telephony) */
|
|
5975
|
-
readonly pcmMulaw: "pcm_mulaw";
|
|
5976
|
-
};
|
|
5977
|
-
/**
|
|
5978
|
-
* AssemblyAI streaming speech models
|
|
5979
|
-
*
|
|
5980
|
-
* Derived from `StreamingSpeechModel` type in the auto-synced streaming types.
|
|
5981
|
-
*
|
|
5982
|
-
* @example
|
|
5983
|
-
* ```typescript
|
|
5984
|
-
* import { AssemblyAISpeechModel } from 'voice-router-dev'
|
|
5985
|
-
*
|
|
5986
|
-
* { speechModel: AssemblyAISpeechModel.english }
|
|
5987
|
-
* { speechModel: AssemblyAISpeechModel.multilingual }
|
|
5988
|
-
* ```
|
|
5989
|
-
*/
|
|
5990
|
-
declare const AssemblyAISpeechModel: {
|
|
5991
|
-
/** Optimized for English */
|
|
5992
|
-
readonly english: "universal-streaming-english";
|
|
5993
|
-
/** Supports 20+ languages */
|
|
5994
|
-
readonly multilingual: "universal-streaming-multilingual";
|
|
5995
|
-
};
|
|
5996
|
-
/**
|
|
5997
|
-
* AssemblyAI supported sample rates
|
|
5998
|
-
*
|
|
5999
|
-
* @example
|
|
6000
|
-
* ```typescript
|
|
6001
|
-
* import { AssemblyAISampleRate } from '@meeting-baas/sdk'
|
|
6002
|
-
*
|
|
6003
|
-
* { sampleRate: AssemblyAISampleRate.rate16000 }
|
|
6004
|
-
* ```
|
|
6005
|
-
*/
|
|
6006
|
-
declare const AssemblyAISampleRate: {
|
|
6007
|
-
readonly rate8000: 8000;
|
|
6008
|
-
readonly rate16000: 16000;
|
|
6009
|
-
readonly rate22050: 22050;
|
|
6010
|
-
readonly rate44100: 44100;
|
|
6011
|
-
readonly rate48000: 48000;
|
|
6012
|
-
};
|
|
6013
|
-
/** Deepgram model type derived from const object */
|
|
6014
|
-
type DeepgramModelType = (typeof DeepgramModel)[keyof typeof DeepgramModel];
|
|
6015
|
-
|
|
6016
|
-
/** AssemblyAI encoding type derived from const object */
|
|
6017
|
-
type AssemblyAIEncodingType = (typeof AssemblyAIEncoding)[keyof typeof AssemblyAIEncoding];
|
|
6018
|
-
/** AssemblyAI speech model type derived from const object */
|
|
6019
|
-
type AssemblyAISpeechModelType = (typeof AssemblyAISpeechModel)[keyof typeof AssemblyAISpeechModel];
|
|
6020
|
-
/** AssemblyAI sample rate type derived from const object */
|
|
6021
|
-
type AssemblyAISampleRateType = (typeof AssemblyAISampleRate)[keyof typeof AssemblyAISampleRate];
|
|
6022
|
-
|
|
6023
|
-
type StreamingSpeechModel = "universal-streaming-english" | "universal-streaming-multilingual";
|
|
6024
5505
|
type StreamingUpdateConfiguration = {
|
|
6025
5506
|
type: "UpdateConfiguration";
|
|
6026
5507
|
end_of_turn_confidence_threshold?: number;
|
|
@@ -6092,15 +5573,19 @@ interface DeepgramStreamingOptions {
|
|
|
6092
5573
|
language?: ListenV1LanguageParameter;
|
|
6093
5574
|
/**
|
|
6094
5575
|
* Model to use for transcription
|
|
5576
|
+
*
|
|
5577
|
+
* Strict union type - only accepts valid Deepgram models.
|
|
6095
5578
|
* Use `DeepgramModel` const for autocomplete:
|
|
6096
5579
|
* @example
|
|
6097
5580
|
* ```typescript
|
|
6098
|
-
* import { DeepgramModel } from '
|
|
6099
|
-
* { model: DeepgramModel
|
|
6100
|
-
* { model: DeepgramModel
|
|
5581
|
+
* import { DeepgramModel } from 'voice-router-dev'
|
|
5582
|
+
* { model: DeepgramModel["nova-3"] }
|
|
5583
|
+
* { model: DeepgramModel["nova-2-medical"] }
|
|
5584
|
+
* // Or use string literals directly:
|
|
5585
|
+
* { model: "nova-3" }
|
|
6101
5586
|
* ```
|
|
6102
5587
|
*/
|
|
6103
|
-
model?:
|
|
5588
|
+
model?: DeepgramModelType;
|
|
6104
5589
|
/** Model version (e.g., 'latest') */
|
|
6105
5590
|
version?: ListenV1VersionParameter;
|
|
6106
5591
|
/** Enable language detection */
|
|
@@ -6215,15 +5700,19 @@ interface AssemblyAIStreamingOptions {
|
|
|
6215
5700
|
encoding?: AssemblyAIEncodingType;
|
|
6216
5701
|
/**
|
|
6217
5702
|
* Speech model to use
|
|
5703
|
+
*
|
|
5704
|
+
* Strict union type - only accepts valid AssemblyAI streaming models.
|
|
6218
5705
|
* Use `AssemblyAISpeechModel` const for autocomplete:
|
|
6219
5706
|
* @example
|
|
6220
5707
|
* ```typescript
|
|
6221
|
-
* import { AssemblyAISpeechModel } from '
|
|
5708
|
+
* import { AssemblyAISpeechModel } from 'voice-router-dev'
|
|
6222
5709
|
* { speechModel: AssemblyAISpeechModel.english }
|
|
6223
5710
|
* { speechModel: AssemblyAISpeechModel.multilingual }
|
|
5711
|
+
* // Or use string literals directly:
|
|
5712
|
+
* { speechModel: "universal-streaming-english" }
|
|
6224
5713
|
* ```
|
|
6225
5714
|
*/
|
|
6226
|
-
speechModel?: AssemblyAISpeechModelType
|
|
5715
|
+
speechModel?: AssemblyAISpeechModelType;
|
|
6227
5716
|
/** Enable automatic language detection */
|
|
6228
5717
|
languageDetection?: boolean;
|
|
6229
5718
|
/**
|
|
@@ -14450,4 +13939,4 @@ declare namespace index {
|
|
|
14450
13939
|
export { index_AudioIntelligenceModelStatus as AudioIntelligenceModelStatus, type index_AutoHighlightResult as AutoHighlightResult, type index_AutoHighlightsResult as AutoHighlightsResult, type index_BadRequestResponse as BadRequestResponse, type index_CannotAccessUploadedFileResponse as CannotAccessUploadedFileResponse, type index_Chapter as Chapter, type index_ContentSafetyLabel as ContentSafetyLabel, type index_ContentSafetyLabelResult as ContentSafetyLabelResult, type index_ContentSafetyLabelsResult as ContentSafetyLabelsResult, type index_ContentSafetyLabelsResultSeverityScoreSummary as ContentSafetyLabelsResultSeverityScoreSummary, type index_ContentSafetyLabelsResultSummary as ContentSafetyLabelsResultSummary, type index_CreateRealtimeTemporaryTokenParams as CreateRealtimeTemporaryTokenParams, type index_Entity as Entity, index_EntityType as EntityType, type Error$1 as Error, type index_GatewayTimeoutResponse as GatewayTimeoutResponse, type index_GetSubtitlesParams as GetSubtitlesParams, type index_InternalServerErrorResponse as InternalServerErrorResponse, type index_LemurActionItemsParams as LemurActionItemsParams, type index_LemurActionItemsParamsAllOf as LemurActionItemsParamsAllOf, type index_LemurActionItemsResponse as LemurActionItemsResponse, type index_LemurBaseParams as LemurBaseParams, type index_LemurBaseParamsContext as LemurBaseParamsContext, type index_LemurBaseParamsContextOneOf as LemurBaseParamsContextOneOf, type index_LemurBaseParamsFinalModel as LemurBaseParamsFinalModel, type index_LemurBaseResponse as LemurBaseResponse, index_LemurModel as LemurModel, type index_LemurQuestion as LemurQuestion, type index_LemurQuestionAnswer as LemurQuestionAnswer, type index_LemurQuestionAnswerParams as LemurQuestionAnswerParams, type index_LemurQuestionAnswerParamsAllOf as LemurQuestionAnswerParamsAllOf, type index_LemurQuestionAnswerResponse as LemurQuestionAnswerResponse, type index_LemurQuestionAnswerResponseAllOf as LemurQuestionAnswerResponseAllOf, type index_LemurQuestionContext as LemurQuestionContext, type index_LemurQuestionContextOneOf as LemurQuestionContextOneOf, type index_LemurResponse as LemurResponse, type index_LemurStringResponse as LemurStringResponse, type index_LemurStringResponseAllOf as LemurStringResponseAllOf, type index_LemurSummaryParams as LemurSummaryParams, type index_LemurSummaryParamsAllOf as LemurSummaryParamsAllOf, type index_LemurSummaryResponse as LemurSummaryResponse, type index_LemurTaskParams as LemurTaskParams, type index_LemurTaskParamsAllOf as LemurTaskParamsAllOf, type index_LemurTaskResponse as LemurTaskResponse, type index_LemurUsage as LemurUsage, type index_ListTranscriptParams as ListTranscriptParams, type index_ListTranscriptsParams as ListTranscriptsParams, type index_NotFoundResponse as NotFoundResponse, type index_PageDetails as PageDetails, type index_PageDetailsNextUrl as PageDetailsNextUrl, type index_PageDetailsPrevUrl as PageDetailsPrevUrl, type index_ParagraphsResponse as ParagraphsResponse, index_PiiPolicy as PiiPolicy, type index_PurgeLemurRequestDataResponse as PurgeLemurRequestDataResponse, type index_RealtimeTemporaryTokenResponse as RealtimeTemporaryTokenResponse, index_RedactPiiAudioQuality as RedactPiiAudioQuality, type index_RedactedAudioNotification as RedactedAudioNotification, type index_RedactedAudioResponse as RedactedAudioResponse, index_RedactedAudioStatus as RedactedAudioStatus, type index_SentencesResponse as SentencesResponse, index_Sentiment as Sentiment, type SentimentAnalysisResult$1 as SentimentAnalysisResult, type index_SentimentAnalysisResultChannel as SentimentAnalysisResultChannel, type index_SentimentAnalysisResultSpeaker as SentimentAnalysisResultSpeaker, type index_ServiceUnavailableResponse as ServiceUnavailableResponse, type index_SeverityScoreSummary as SeverityScoreSummary, index_SpeechModel as SpeechModel, index_SubstitutionPolicy as SubstitutionPolicy, index_SubtitleFormat as SubtitleFormat, index_SummaryModel as SummaryModel, index_SummaryType as SummaryType, type index_Timestamp as Timestamp, type index_TooManyRequestsResponse as TooManyRequestsResponse, type index_TopicDetectionModelResult as TopicDetectionModelResult, type index_TopicDetectionModelResultSummary as TopicDetectionModelResultSummary, type index_TopicDetectionResult as TopicDetectionResult, type index_TopicDetectionResultLabelsItem as TopicDetectionResultLabelsItem, type index_Transcript as Transcript, type index_TranscriptAudioDuration as TranscriptAudioDuration, type index_TranscriptAudioEndAt as TranscriptAudioEndAt, type index_TranscriptAudioStartFrom as TranscriptAudioStartFrom, type index_TranscriptAutoChapters as TranscriptAutoChapters, type index_TranscriptAutoHighlightsResult as TranscriptAutoHighlightsResult, index_TranscriptBoostParam as TranscriptBoostParam, type index_TranscriptBoostParamProperty as TranscriptBoostParamProperty, type index_TranscriptChapters as TranscriptChapters, type index_TranscriptConfidence as TranscriptConfidence, type index_TranscriptContentSafety as TranscriptContentSafety, type index_TranscriptContentSafetyLabels as TranscriptContentSafetyLabels, type index_TranscriptCustomSpelling as TranscriptCustomSpelling, type index_TranscriptCustomSpellingProperty as TranscriptCustomSpellingProperty, type index_TranscriptCustomTopics as TranscriptCustomTopics, type index_TranscriptDisfluencies as TranscriptDisfluencies, type index_TranscriptEntities as TranscriptEntities, type index_TranscriptEntityDetection as TranscriptEntityDetection, type index_TranscriptFilterProfanity as TranscriptFilterProfanity, type index_TranscriptFormatText as TranscriptFormatText, type index_TranscriptIabCategories as TranscriptIabCategories, type index_TranscriptIabCategoriesResult as TranscriptIabCategoriesResult, index_TranscriptLanguageCode as TranscriptLanguageCode, type index_TranscriptLanguageCodeProperty as TranscriptLanguageCodeProperty, type index_TranscriptLanguageConfidence as TranscriptLanguageConfidence, type index_TranscriptLanguageConfidenceThreshold as TranscriptLanguageConfidenceThreshold, type index_TranscriptLanguageDetection as TranscriptLanguageDetection, type index_TranscriptList as TranscriptList, type index_TranscriptListItem as TranscriptListItem, type index_TranscriptListItemCompleted as TranscriptListItemCompleted, type index_TranscriptListItemError as TranscriptListItemError, type index_TranscriptMultichannel as TranscriptMultichannel, type index_TranscriptOptionalParams as TranscriptOptionalParams, type index_TranscriptOptionalParamsLanguageCode as TranscriptOptionalParamsLanguageCode, type index_TranscriptOptionalParamsLanguageCodeOneOf as TranscriptOptionalParamsLanguageCodeOneOf, type index_TranscriptOptionalParamsRedactPiiSub as TranscriptOptionalParamsRedactPiiSub, type index_TranscriptOptionalParamsSpeakersExpected as TranscriptOptionalParamsSpeakersExpected, type index_TranscriptOptionalParamsSpeechModel as TranscriptOptionalParamsSpeechModel, type index_TranscriptOptionalParamsSpeechThreshold as TranscriptOptionalParamsSpeechThreshold, type index_TranscriptOptionalParamsWebhookAuthHeaderName as TranscriptOptionalParamsWebhookAuthHeaderName, type index_TranscriptOptionalParamsWebhookAuthHeaderValue as TranscriptOptionalParamsWebhookAuthHeaderValue, type index_TranscriptParagraph as TranscriptParagraph, type index_TranscriptParams as TranscriptParams, type index_TranscriptParamsAllOf as TranscriptParamsAllOf, type index_TranscriptPunctuate as TranscriptPunctuate, type index_TranscriptReadyNotification as TranscriptReadyNotification, index_TranscriptReadyStatus as TranscriptReadyStatus, type index_TranscriptRedactPiiAudio as TranscriptRedactPiiAudio, type index_TranscriptRedactPiiAudioQuality as TranscriptRedactPiiAudioQuality, type index_TranscriptRedactPiiPolicies as TranscriptRedactPiiPolicies, type index_TranscriptSentence as TranscriptSentence, type index_TranscriptSentenceChannel as TranscriptSentenceChannel, type index_TranscriptSentenceSpeaker as TranscriptSentenceSpeaker, type index_TranscriptSentimentAnalysis as TranscriptSentimentAnalysis, type index_TranscriptSentimentAnalysisResults as TranscriptSentimentAnalysisResults, type index_TranscriptSpeakerLabels as TranscriptSpeakerLabels, type index_TranscriptSpeakersExpected as TranscriptSpeakersExpected, type index_TranscriptSpeechModel as TranscriptSpeechModel, type index_TranscriptSpeechThreshold as TranscriptSpeechThreshold, type index_TranscriptSpeedBoost as TranscriptSpeedBoost, index_TranscriptStatus as TranscriptStatus, type index_TranscriptSummary as TranscriptSummary, type index_TranscriptSummaryModel as TranscriptSummaryModel, type index_TranscriptSummaryType as TranscriptSummaryType, type index_TranscriptText as TranscriptText, type index_TranscriptThrottled as TranscriptThrottled, type index_TranscriptUtterance as TranscriptUtterance, type index_TranscriptUtteranceChannel as TranscriptUtteranceChannel, type index_TranscriptUtterances as TranscriptUtterances, type index_TranscriptWebhookAuthHeaderName as TranscriptWebhookAuthHeaderName, type index_TranscriptWebhookNotification as TranscriptWebhookNotification, type index_TranscriptWebhookStatusCode as TranscriptWebhookStatusCode, type index_TranscriptWebhookUrl as TranscriptWebhookUrl, type index_TranscriptWord as TranscriptWord, type index_TranscriptWordChannel as TranscriptWordChannel, type index_TranscriptWordSpeaker as TranscriptWordSpeaker, type index_TranscriptWords as TranscriptWords, type index_UnauthorizedResponse as UnauthorizedResponse, type index_UploadedFile as UploadedFile, type index_WordSearchMatch as WordSearchMatch, type index_WordSearchParams as WordSearchParams, type index_WordSearchResponse as WordSearchResponse, type index_WordSearchTimestamp as WordSearchTimestamp };
|
|
14451
13940
|
}
|
|
14452
13941
|
|
|
14453
|
-
export { AssemblyAIAdapter, type Chapter as AssemblyAIChapter, type ContentSafetyLabelsResult as AssemblyAIContentSafetyResult,
|
|
13942
|
+
export { AssemblyAIAdapter, type Chapter as AssemblyAIChapter, type ContentSafetyLabelsResult as AssemblyAIContentSafetyResult, AssemblyAIEncodingType, type Entity as AssemblyAIEntity, type AssemblyAIExtendedData, type AutoHighlightsResult as AssemblyAIHighlightsResult, type TranscriptOptionalParams as AssemblyAIOptions, AssemblyAISampleRateType, type SentimentAnalysisResult$1 as AssemblyAISentimentResult, AssemblyAISpeechModelType, type AssemblyAIStreamingOptions, type TopicDetectionModelResult as AssemblyAITopicsResult, index as AssemblyAITypes, type AssemblyAIUpdateConfiguration, AssemblyAIWebhookHandler, type TranscriptWebhookNotification as AssemblyAIWebhookPayload, type AudioAckEvent, type AudioChunk, type AudioInput, AudioResponseFormat, AudioTranscriptionModel, AzureSTTAdapter, AzureWebhookHandler, BaseAdapter, BaseWebhookHandler, type BatchOnlyProvider, type ChapterizationEvent, DeepgramAdapter, ListenV1EncodingParameter as DeepgramEncoding, type DeepgramExtendedData, type ListenV1ResponseMetadata as DeepgramMetadata, DeepgramModelType, type ListenV1MediaTranscribeParams as DeepgramOptions, ListenV1RedactParameterOneOfItem as DeepgramRedact, ListenV1RedactParameterOneOfItem as DeepgramRedactType, type DeepgramStreamingOptions, SharedCustomTopicModeParameter as DeepgramTopicMode, SharedCustomTopicModeParameter as DeepgramTopicModeType, DeepgramWebhookHandler, type ListenV1Response as DeepgramWebhookPayload, type EntityEvent, GladiaAdapter, type AudioToLlmListConfigDTO as GladiaAudioToLlmConfig, type AudioToLlmListDTO as GladiaAudioToLlmResult, StreamingSupportedBitDepthEnum as GladiaBitDepth, type ChapterizationDTO as GladiaChapters, type CodeSwitchingConfigDTO as GladiaCodeSwitchingConfig, StreamingSupportedEncodingEnum as GladiaEncoding, type NamedEntityRecognitionDTO as GladiaEntities, type GladiaExtendedData, TranscriptionLanguageCodeEnum as GladiaLanguage, StreamingSupportedModels as GladiaModel, type ModerationDTO as GladiaModeration, type InitTranscriptionRequest as GladiaOptions, StreamingSupportedSampleRateEnum as GladiaSampleRate, type SentimentAnalysisDTO as GladiaSentiment, type SpeakerReidentificationDTO as GladiaSpeakerReidentification, type GladiaStreamingOptions, type StreamingRequest as GladiaStreamingRequest, type StructuredDataExtractionDTO as GladiaStructuredData, type TranslationDTO as GladiaTranslation, TranslationLanguageCodeEnum as GladiaTranslationLanguage, index$1 as GladiaTypes, type CallbackTranscriptionErrorPayload as GladiaWebhookErrorPayload, GladiaWebhookHandler, type GladiaWebhookPayload, type CallbackTranscriptionSuccessPayload as GladiaWebhookSuccessPayload, type LifecycleEvent, ListenV1EncodingParameter, type ListenV1LanguageParameter, type ListenV1ModelParameter, type ListenV1VersionParameter, OpenAIWhisperAdapter, type CreateTranscriptionRequest as OpenAIWhisperOptions, type ProviderCapabilities, type ProviderConfig, type ProviderExtendedDataMap, type ProviderRawResponseMap, type ProviderStreamingOptions, type ProviderWebhookPayloadMap, type SentimentEvent, type SessionStatus, SpeakV1ContainerParameter, SpeakV1EncodingParameter, SpeakV1SampleRateParameter, type Speaker, type SpeechEvent, SpeechmaticsAdapter, type SpeechmaticsOperatingPoint, SpeechmaticsWebhookHandler, type StreamEvent, type StreamEventType, type StreamingCallbacks, type StreamingOptions, type StreamingOptionsForProvider, type StreamingProvider, type StreamingSession, StreamingSupportedBitDepthEnum, StreamingSupportedEncodingEnum, StreamingSupportedSampleRateEnum, type SummarizationEvent, type TranscribeOptions, type TranscribeStreamParams, type TranscriptionAdapter, type TranscriptionLanguage, type TranscriptionModel, type TranscriptionProvider, type TranscriptionStatus, type TranslationEvent, type UnifiedTranscriptResponse, type UnifiedWebhookEvent, type Utterance, VoiceRouter, type VoiceRouterConfig, type WebhookEventType, WebhookRouter, type WebhookRouterOptions, type WebhookRouterResult, type WebhookValidation, type WebhookVerificationOptions, type Word, createAssemblyAIAdapter, createAssemblyAIWebhookHandler, createAzureSTTAdapter, createAzureWebhookHandler, createDeepgramAdapter, createDeepgramWebhookHandler, createGladiaAdapter, createGladiaWebhookHandler, createOpenAIWhisperAdapter, createSpeechmaticsAdapter, createVoiceRouter, createWebhookRouter };
|