voice-router-dev 0.8.9 → 0.9.0
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/CHANGELOG.md +67 -0
- package/dist/constants.d.mts +22 -20
- package/dist/constants.d.ts +22 -20
- package/dist/constants.js +24 -24
- package/dist/constants.mjs +24 -24
- package/dist/{field-configs-CSOt3yc9.d.mts → field-configs-DYiUtRUz.d.mts} +50 -505
- package/dist/{field-configs-CSOt3yc9.d.ts → field-configs-DYiUtRUz.d.ts} +50 -505
- package/dist/field-configs.d.mts +1 -1
- package/dist/field-configs.d.ts +1 -1
- package/dist/field-configs.js +118 -196
- package/dist/field-configs.mjs +118 -196
- package/dist/index.d.mts +1655 -1754
- package/dist/index.d.ts +1655 -1754
- package/dist/index.js +257 -296
- package/dist/index.mjs +257 -296
- package/dist/{speechToTextChunkResponseModel-B4kVoFc3.d.ts → speechToTextChunkResponseModel-CI-Aqxcr.d.ts} +2015 -1846
- package/dist/{speechToTextChunkResponseModel-DmajV4F-.d.mts → speechToTextChunkResponseModel-D8VJ-wz6.d.mts} +2015 -1846
- package/dist/webhooks.d.mts +70 -2
- package/dist/webhooks.d.ts +70 -2
- package/dist/webhooks.js +113 -1
- package/dist/webhooks.mjs +111 -1
- package/package.json +1 -1
|
@@ -3050,7 +3050,7 @@ declare namespace deepgramAPI_zod {
|
|
|
3050
3050
|
* Deepgram Streaming Zod Schemas
|
|
3051
3051
|
* AUTO-GENERATED from Deepgram JS SDK - DO NOT EDIT MANUALLY
|
|
3052
3052
|
*
|
|
3053
|
-
* @source /run/media/lazrossi/KINGSTON/code/
|
|
3053
|
+
* @source /run/media/lazrossi/KINGSTON/code/sdk-generator/specs/deepgram-streaming-sdk.ts
|
|
3054
3054
|
* @see https://developers.deepgram.com/docs/sdk-feature-matrix
|
|
3055
3055
|
*
|
|
3056
3056
|
* Batch params come from Orval (OpenAPI) - see deepgramAPISpecification.zod.ts
|
|
@@ -3123,6 +3123,7 @@ declare const uploadFileResponse: z.ZodObject<{
|
|
|
3123
3123
|
> For the complete documentation index, see [llms.txt](https://www.assemblyai.com/docs/llms.txt)
|
|
3124
3124
|
</llms-only>
|
|
3125
3125
|
<Note>To use our EU server for transcription, replace `api.assemblyai.com` with `api.eu.assemblyai.com`.</Note>
|
|
3126
|
+
<Tip>Building a load test or submitting a large batch? [See our guide →](/docs/pre-recorded-audio/guides/bulk-transcription-and-load-tests-at-scale)</Tip>
|
|
3126
3127
|
Create a transcript from a media file that is accessible via a URL.
|
|
3127
3128
|
|
|
3128
3129
|
* @summary Transcribe audio
|
|
@@ -3151,6 +3152,7 @@ declare const createTranscriptBodySpeakerOptionsMinSpeakersExpectedDefault = 1;
|
|
|
3151
3152
|
declare const createTranscriptBodySpeechUnderstandingRequestTranslationFormalDefault = true;
|
|
3152
3153
|
declare const createTranscriptBodySpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault = false;
|
|
3153
3154
|
declare const createTranscriptBodySummarizationDefault = false;
|
|
3155
|
+
declare const createTranscriptBodyTemperatureDefault = 0;
|
|
3154
3156
|
declare const createTranscriptBodyCustomTopicsDefault = false;
|
|
3155
3157
|
declare const createTranscriptBody: z.ZodObject<{
|
|
3156
3158
|
audio_end_at: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3390,6 +3392,7 @@ declare const createTranscriptBody: z.ZodObject<{
|
|
|
3390
3392
|
summary_model: z.ZodOptional<z.ZodEnum<["informative", "conversational", "catchy"]>>;
|
|
3391
3393
|
summary_type: z.ZodOptional<z.ZodEnum<["bullets", "bullets_verbose", "gist", "headline", "paragraph"]>>;
|
|
3392
3394
|
remove_audio_tags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["all"]>, z.ZodNull]>>;
|
|
3395
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
3393
3396
|
webhook_auth_header_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3394
3397
|
webhook_auth_header_value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3395
3398
|
webhook_url: z.ZodOptional<z.ZodString>;
|
|
@@ -3476,6 +3479,7 @@ declare const createTranscriptBody: z.ZodObject<{
|
|
|
3476
3479
|
summary_model?: "informative" | "conversational" | "catchy" | undefined;
|
|
3477
3480
|
summary_type?: "bullets" | "bullets_verbose" | "gist" | "headline" | "paragraph" | undefined;
|
|
3478
3481
|
remove_audio_tags?: "all" | null | undefined;
|
|
3482
|
+
temperature?: number | undefined;
|
|
3479
3483
|
webhook_auth_header_name?: string | null | undefined;
|
|
3480
3484
|
webhook_auth_header_value?: string | null | undefined;
|
|
3481
3485
|
webhook_url?: string | undefined;
|
|
@@ -3560,6 +3564,7 @@ declare const createTranscriptBody: z.ZodObject<{
|
|
|
3560
3564
|
summary_model?: "informative" | "conversational" | "catchy" | undefined;
|
|
3561
3565
|
summary_type?: "bullets" | "bullets_verbose" | "gist" | "headline" | "paragraph" | undefined;
|
|
3562
3566
|
remove_audio_tags?: "all" | null | undefined;
|
|
3567
|
+
temperature?: number | undefined;
|
|
3563
3568
|
webhook_auth_header_name?: string | null | undefined;
|
|
3564
3569
|
webhook_auth_header_value?: string | null | undefined;
|
|
3565
3570
|
webhook_url?: string | undefined;
|
|
@@ -4203,6 +4208,7 @@ declare const createTranscriptResponse: z.ZodObject<{
|
|
|
4203
4208
|
summary_model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4204
4209
|
summary_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4205
4210
|
remove_audio_tags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["all"]>, z.ZodNull]>>;
|
|
4211
|
+
temperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
4206
4212
|
text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
4207
4213
|
throttled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
4208
4214
|
utterances: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -4422,6 +4428,7 @@ declare const createTranscriptResponse: z.ZodObject<{
|
|
|
4422
4428
|
summary_model?: string | null | undefined;
|
|
4423
4429
|
summary_type?: string | null | undefined;
|
|
4424
4430
|
remove_audio_tags?: "all" | null | undefined;
|
|
4431
|
+
temperature?: number | null | undefined;
|
|
4425
4432
|
webhook_auth_header_name?: string | null | undefined;
|
|
4426
4433
|
webhook_url?: string | null | undefined;
|
|
4427
4434
|
custom_topics?: boolean | null | undefined;
|
|
@@ -4632,6 +4639,7 @@ declare const createTranscriptResponse: z.ZodObject<{
|
|
|
4632
4639
|
summary_model?: string | null | undefined;
|
|
4633
4640
|
summary_type?: string | null | undefined;
|
|
4634
4641
|
remove_audio_tags?: "all" | null | undefined;
|
|
4642
|
+
temperature?: number | null | undefined;
|
|
4635
4643
|
webhook_auth_header_name?: string | null | undefined;
|
|
4636
4644
|
webhook_url?: string | null | undefined;
|
|
4637
4645
|
custom_topics?: boolean | null | undefined;
|
|
@@ -5507,6 +5515,7 @@ declare const getTranscriptResponse: z.ZodObject<{
|
|
|
5507
5515
|
summary_model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5508
5516
|
summary_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5509
5517
|
remove_audio_tags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["all"]>, z.ZodNull]>>;
|
|
5518
|
+
temperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
5510
5519
|
text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5511
5520
|
throttled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
5512
5521
|
utterances: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -5726,6 +5735,7 @@ declare const getTranscriptResponse: z.ZodObject<{
|
|
|
5726
5735
|
summary_model?: string | null | undefined;
|
|
5727
5736
|
summary_type?: string | null | undefined;
|
|
5728
5737
|
remove_audio_tags?: "all" | null | undefined;
|
|
5738
|
+
temperature?: number | null | undefined;
|
|
5729
5739
|
webhook_auth_header_name?: string | null | undefined;
|
|
5730
5740
|
webhook_url?: string | null | undefined;
|
|
5731
5741
|
custom_topics?: boolean | null | undefined;
|
|
@@ -5936,6 +5946,7 @@ declare const getTranscriptResponse: z.ZodObject<{
|
|
|
5936
5946
|
summary_model?: string | null | undefined;
|
|
5937
5947
|
summary_type?: string | null | undefined;
|
|
5938
5948
|
remove_audio_tags?: "all" | null | undefined;
|
|
5949
|
+
temperature?: number | null | undefined;
|
|
5939
5950
|
webhook_auth_header_name?: string | null | undefined;
|
|
5940
5951
|
webhook_url?: string | null | undefined;
|
|
5941
5952
|
custom_topics?: boolean | null | undefined;
|
|
@@ -6687,6 +6698,7 @@ declare const deleteTranscriptResponse: z.ZodObject<{
|
|
|
6687
6698
|
summary_model: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6688
6699
|
summary_type: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6689
6700
|
remove_audio_tags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["all"]>, z.ZodNull]>>;
|
|
6701
|
+
temperature: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
6690
6702
|
text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
6691
6703
|
throttled: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
6692
6704
|
utterances: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
@@ -6906,6 +6918,7 @@ declare const deleteTranscriptResponse: z.ZodObject<{
|
|
|
6906
6918
|
summary_model?: string | null | undefined;
|
|
6907
6919
|
summary_type?: string | null | undefined;
|
|
6908
6920
|
remove_audio_tags?: "all" | null | undefined;
|
|
6921
|
+
temperature?: number | null | undefined;
|
|
6909
6922
|
webhook_auth_header_name?: string | null | undefined;
|
|
6910
6923
|
webhook_url?: string | null | undefined;
|
|
6911
6924
|
custom_topics?: boolean | null | undefined;
|
|
@@ -7116,6 +7129,7 @@ declare const deleteTranscriptResponse: z.ZodObject<{
|
|
|
7116
7129
|
summary_model?: string | null | undefined;
|
|
7117
7130
|
summary_type?: string | null | undefined;
|
|
7118
7131
|
remove_audio_tags?: "all" | null | undefined;
|
|
7132
|
+
temperature?: number | null | undefined;
|
|
7119
7133
|
webhook_auth_header_name?: string | null | undefined;
|
|
7120
7134
|
webhook_url?: string | null | undefined;
|
|
7121
7135
|
custom_topics?: boolean | null | undefined;
|
|
@@ -7586,6 +7600,7 @@ declare const assemblyAIAPI_zod_createTranscriptBodySpeakerOptionsMinSpeakersExp
|
|
|
7586
7600
|
declare const assemblyAIAPI_zod_createTranscriptBodySpeechUnderstandingRequestTranslationFormalDefault: typeof createTranscriptBodySpeechUnderstandingRequestTranslationFormalDefault;
|
|
7587
7601
|
declare const assemblyAIAPI_zod_createTranscriptBodySpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault: typeof createTranscriptBodySpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault;
|
|
7588
7602
|
declare const assemblyAIAPI_zod_createTranscriptBodySummarizationDefault: typeof createTranscriptBodySummarizationDefault;
|
|
7603
|
+
declare const assemblyAIAPI_zod_createTranscriptBodyTemperatureDefault: typeof createTranscriptBodyTemperatureDefault;
|
|
7589
7604
|
declare const assemblyAIAPI_zod_createTranscriptResponse: typeof createTranscriptResponse;
|
|
7590
7605
|
declare const assemblyAIAPI_zod_createTranscriptResponseLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault: typeof createTranscriptResponseLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault;
|
|
7591
7606
|
declare const assemblyAIAPI_zod_createTranscriptResponseLanguageDetectionOptionsCodeSwitchingDefault: typeof createTranscriptResponseLanguageDetectionOptionsCodeSwitchingDefault;
|
|
@@ -7627,7 +7642,7 @@ declare const assemblyAIAPI_zod_wordSearchParams: typeof wordSearchParams;
|
|
|
7627
7642
|
declare const assemblyAIAPI_zod_wordSearchQueryParams: typeof wordSearchQueryParams;
|
|
7628
7643
|
declare const assemblyAIAPI_zod_wordSearchResponse: typeof wordSearchResponse;
|
|
7629
7644
|
declare namespace assemblyAIAPI_zod {
|
|
7630
|
-
export { assemblyAIAPI_zod_createTranscriptBody as createTranscriptBody, assemblyAIAPI_zod_createTranscriptBodyAutoChaptersDefault as createTranscriptBodyAutoChaptersDefault, assemblyAIAPI_zod_createTranscriptBodyAutoHighlightsDefault as createTranscriptBodyAutoHighlightsDefault, assemblyAIAPI_zod_createTranscriptBodyContentSafetyConfidenceDefault as createTranscriptBodyContentSafetyConfidenceDefault, assemblyAIAPI_zod_createTranscriptBodyContentSafetyDefault as createTranscriptBodyContentSafetyDefault, assemblyAIAPI_zod_createTranscriptBodyCustomTopicsDefault as createTranscriptBodyCustomTopicsDefault, assemblyAIAPI_zod_createTranscriptBodyDisfluenciesDefault as createTranscriptBodyDisfluenciesDefault, assemblyAIAPI_zod_createTranscriptBodyEntityDetectionDefault as createTranscriptBodyEntityDetectionDefault, assemblyAIAPI_zod_createTranscriptBodyFilterProfanityDefault as createTranscriptBodyFilterProfanityDefault, assemblyAIAPI_zod_createTranscriptBodyFormatTextDefault as createTranscriptBodyFormatTextDefault, assemblyAIAPI_zod_createTranscriptBodyIabCategoriesDefault as createTranscriptBodyIabCategoriesDefault, assemblyAIAPI_zod_createTranscriptBodyLanguageDetectionDefault as createTranscriptBodyLanguageDetectionDefault, assemblyAIAPI_zod_createTranscriptBodyLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault as createTranscriptBodyLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault, assemblyAIAPI_zod_createTranscriptBodyLanguageDetectionOptionsCodeSwitchingDefault as createTranscriptBodyLanguageDetectionOptionsCodeSwitchingDefault, assemblyAIAPI_zod_createTranscriptBodyLanguageDetectionOptionsFallbackLanguageDefault as createTranscriptBodyLanguageDetectionOptionsFallbackLanguageDefault, assemblyAIAPI_zod_createTranscriptBodyMultichannelDefault as createTranscriptBodyMultichannelDefault, assemblyAIAPI_zod_createTranscriptBodyPunctuateDefault as createTranscriptBodyPunctuateDefault, assemblyAIAPI_zod_createTranscriptBodyRedactPiiAudioDefault as createTranscriptBodyRedactPiiAudioDefault, assemblyAIAPI_zod_createTranscriptBodyRedactPiiAudioOptionsReturnRedactedNoSpeechAudioDefault as createTranscriptBodyRedactPiiAudioOptionsReturnRedactedNoSpeechAudioDefault, assemblyAIAPI_zod_createTranscriptBodyRedactPiiDefault as createTranscriptBodyRedactPiiDefault, assemblyAIAPI_zod_createTranscriptBodySentimentAnalysisDefault as createTranscriptBodySentimentAnalysisDefault, assemblyAIAPI_zod_createTranscriptBodySpeakerLabelsDefault as createTranscriptBodySpeakerLabelsDefault, assemblyAIAPI_zod_createTranscriptBodySpeakerOptionsMinSpeakersExpectedDefault as createTranscriptBodySpeakerOptionsMinSpeakersExpectedDefault, assemblyAIAPI_zod_createTranscriptBodySpeechUnderstandingRequestTranslationFormalDefault as createTranscriptBodySpeechUnderstandingRequestTranslationFormalDefault, assemblyAIAPI_zod_createTranscriptBodySpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault as createTranscriptBodySpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault, assemblyAIAPI_zod_createTranscriptBodySummarizationDefault as createTranscriptBodySummarizationDefault, assemblyAIAPI_zod_createTranscriptResponse as createTranscriptResponse, assemblyAIAPI_zod_createTranscriptResponseLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault as createTranscriptResponseLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault, assemblyAIAPI_zod_createTranscriptResponseLanguageDetectionOptionsCodeSwitchingDefault as createTranscriptResponseLanguageDetectionOptionsCodeSwitchingDefault, assemblyAIAPI_zod_createTranscriptResponseLanguageDetectionOptionsFallbackLanguageDefault as createTranscriptResponseLanguageDetectionOptionsFallbackLanguageDefault, assemblyAIAPI_zod_createTranscriptResponseRedactPiiAudioOptionsReturnRedactedNoSpeechAudioDefault as createTranscriptResponseRedactPiiAudioOptionsReturnRedactedNoSpeechAudioDefault, assemblyAIAPI_zod_createTranscriptResponseSpeechUnderstandingRequestTranslationFormalDefault as createTranscriptResponseSpeechUnderstandingRequestTranslationFormalDefault, assemblyAIAPI_zod_createTranscriptResponseSpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault as createTranscriptResponseSpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault, assemblyAIAPI_zod_deleteTranscriptParams as deleteTranscriptParams, assemblyAIAPI_zod_deleteTranscriptResponse as deleteTranscriptResponse, assemblyAIAPI_zod_deleteTranscriptResponseLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault as deleteTranscriptResponseLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault, assemblyAIAPI_zod_deleteTranscriptResponseLanguageDetectionOptionsCodeSwitchingDefault as deleteTranscriptResponseLanguageDetectionOptionsCodeSwitchingDefault, assemblyAIAPI_zod_deleteTranscriptResponseLanguageDetectionOptionsFallbackLanguageDefault as deleteTranscriptResponseLanguageDetectionOptionsFallbackLanguageDefault, assemblyAIAPI_zod_deleteTranscriptResponseRedactPiiAudioOptionsReturnRedactedNoSpeechAudioDefault as deleteTranscriptResponseRedactPiiAudioOptionsReturnRedactedNoSpeechAudioDefault, assemblyAIAPI_zod_deleteTranscriptResponseSpeechUnderstandingRequestTranslationFormalDefault as deleteTranscriptResponseSpeechUnderstandingRequestTranslationFormalDefault, assemblyAIAPI_zod_deleteTranscriptResponseSpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault as deleteTranscriptResponseSpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault, assemblyAIAPI_zod_getRedactedAudioParams as getRedactedAudioParams, assemblyAIAPI_zod_getRedactedAudioResponse as getRedactedAudioResponse, assemblyAIAPI_zod_getSubtitlesParams as getSubtitlesParams, assemblyAIAPI_zod_getSubtitlesQueryParams as getSubtitlesQueryParams, assemblyAIAPI_zod_getSubtitlesResponse as getSubtitlesResponse, assemblyAIAPI_zod_getTranscriptParagraphsParams as getTranscriptParagraphsParams, assemblyAIAPI_zod_getTranscriptParagraphsResponse as getTranscriptParagraphsResponse, assemblyAIAPI_zod_getTranscriptParams as getTranscriptParams, assemblyAIAPI_zod_getTranscriptResponse as getTranscriptResponse, assemblyAIAPI_zod_getTranscriptResponseLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault as getTranscriptResponseLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault, assemblyAIAPI_zod_getTranscriptResponseLanguageDetectionOptionsCodeSwitchingDefault as getTranscriptResponseLanguageDetectionOptionsCodeSwitchingDefault, assemblyAIAPI_zod_getTranscriptResponseLanguageDetectionOptionsFallbackLanguageDefault as getTranscriptResponseLanguageDetectionOptionsFallbackLanguageDefault, assemblyAIAPI_zod_getTranscriptResponseRedactPiiAudioOptionsReturnRedactedNoSpeechAudioDefault as getTranscriptResponseRedactPiiAudioOptionsReturnRedactedNoSpeechAudioDefault, assemblyAIAPI_zod_getTranscriptResponseSpeechUnderstandingRequestTranslationFormalDefault as getTranscriptResponseSpeechUnderstandingRequestTranslationFormalDefault, assemblyAIAPI_zod_getTranscriptResponseSpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault as getTranscriptResponseSpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault, assemblyAIAPI_zod_getTranscriptSentencesParams as getTranscriptSentencesParams, assemblyAIAPI_zod_getTranscriptSentencesResponse as getTranscriptSentencesResponse, assemblyAIAPI_zod_listTranscriptsQueryLimitDefault as listTranscriptsQueryLimitDefault, assemblyAIAPI_zod_listTranscriptsQueryParams as listTranscriptsQueryParams, assemblyAIAPI_zod_listTranscriptsQueryThrottledOnlyDefault as listTranscriptsQueryThrottledOnlyDefault, assemblyAIAPI_zod_listTranscriptsResponse as listTranscriptsResponse, assemblyAIAPI_zod_uploadFileResponse as uploadFileResponse, assemblyAIAPI_zod_wordSearchParams as wordSearchParams, assemblyAIAPI_zod_wordSearchQueryParams as wordSearchQueryParams, assemblyAIAPI_zod_wordSearchResponse as wordSearchResponse };
|
|
7645
|
+
export { assemblyAIAPI_zod_createTranscriptBody as createTranscriptBody, assemblyAIAPI_zod_createTranscriptBodyAutoChaptersDefault as createTranscriptBodyAutoChaptersDefault, assemblyAIAPI_zod_createTranscriptBodyAutoHighlightsDefault as createTranscriptBodyAutoHighlightsDefault, assemblyAIAPI_zod_createTranscriptBodyContentSafetyConfidenceDefault as createTranscriptBodyContentSafetyConfidenceDefault, assemblyAIAPI_zod_createTranscriptBodyContentSafetyDefault as createTranscriptBodyContentSafetyDefault, assemblyAIAPI_zod_createTranscriptBodyCustomTopicsDefault as createTranscriptBodyCustomTopicsDefault, assemblyAIAPI_zod_createTranscriptBodyDisfluenciesDefault as createTranscriptBodyDisfluenciesDefault, assemblyAIAPI_zod_createTranscriptBodyEntityDetectionDefault as createTranscriptBodyEntityDetectionDefault, assemblyAIAPI_zod_createTranscriptBodyFilterProfanityDefault as createTranscriptBodyFilterProfanityDefault, assemblyAIAPI_zod_createTranscriptBodyFormatTextDefault as createTranscriptBodyFormatTextDefault, assemblyAIAPI_zod_createTranscriptBodyIabCategoriesDefault as createTranscriptBodyIabCategoriesDefault, assemblyAIAPI_zod_createTranscriptBodyLanguageDetectionDefault as createTranscriptBodyLanguageDetectionDefault, assemblyAIAPI_zod_createTranscriptBodyLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault as createTranscriptBodyLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault, assemblyAIAPI_zod_createTranscriptBodyLanguageDetectionOptionsCodeSwitchingDefault as createTranscriptBodyLanguageDetectionOptionsCodeSwitchingDefault, assemblyAIAPI_zod_createTranscriptBodyLanguageDetectionOptionsFallbackLanguageDefault as createTranscriptBodyLanguageDetectionOptionsFallbackLanguageDefault, assemblyAIAPI_zod_createTranscriptBodyMultichannelDefault as createTranscriptBodyMultichannelDefault, assemblyAIAPI_zod_createTranscriptBodyPunctuateDefault as createTranscriptBodyPunctuateDefault, assemblyAIAPI_zod_createTranscriptBodyRedactPiiAudioDefault as createTranscriptBodyRedactPiiAudioDefault, assemblyAIAPI_zod_createTranscriptBodyRedactPiiAudioOptionsReturnRedactedNoSpeechAudioDefault as createTranscriptBodyRedactPiiAudioOptionsReturnRedactedNoSpeechAudioDefault, assemblyAIAPI_zod_createTranscriptBodyRedactPiiDefault as createTranscriptBodyRedactPiiDefault, assemblyAIAPI_zod_createTranscriptBodySentimentAnalysisDefault as createTranscriptBodySentimentAnalysisDefault, assemblyAIAPI_zod_createTranscriptBodySpeakerLabelsDefault as createTranscriptBodySpeakerLabelsDefault, assemblyAIAPI_zod_createTranscriptBodySpeakerOptionsMinSpeakersExpectedDefault as createTranscriptBodySpeakerOptionsMinSpeakersExpectedDefault, assemblyAIAPI_zod_createTranscriptBodySpeechUnderstandingRequestTranslationFormalDefault as createTranscriptBodySpeechUnderstandingRequestTranslationFormalDefault, assemblyAIAPI_zod_createTranscriptBodySpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault as createTranscriptBodySpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault, assemblyAIAPI_zod_createTranscriptBodySummarizationDefault as createTranscriptBodySummarizationDefault, assemblyAIAPI_zod_createTranscriptBodyTemperatureDefault as createTranscriptBodyTemperatureDefault, assemblyAIAPI_zod_createTranscriptResponse as createTranscriptResponse, assemblyAIAPI_zod_createTranscriptResponseLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault as createTranscriptResponseLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault, assemblyAIAPI_zod_createTranscriptResponseLanguageDetectionOptionsCodeSwitchingDefault as createTranscriptResponseLanguageDetectionOptionsCodeSwitchingDefault, assemblyAIAPI_zod_createTranscriptResponseLanguageDetectionOptionsFallbackLanguageDefault as createTranscriptResponseLanguageDetectionOptionsFallbackLanguageDefault, assemblyAIAPI_zod_createTranscriptResponseRedactPiiAudioOptionsReturnRedactedNoSpeechAudioDefault as createTranscriptResponseRedactPiiAudioOptionsReturnRedactedNoSpeechAudioDefault, assemblyAIAPI_zod_createTranscriptResponseSpeechUnderstandingRequestTranslationFormalDefault as createTranscriptResponseSpeechUnderstandingRequestTranslationFormalDefault, assemblyAIAPI_zod_createTranscriptResponseSpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault as createTranscriptResponseSpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault, assemblyAIAPI_zod_deleteTranscriptParams as deleteTranscriptParams, assemblyAIAPI_zod_deleteTranscriptResponse as deleteTranscriptResponse, assemblyAIAPI_zod_deleteTranscriptResponseLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault as deleteTranscriptResponseLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault, assemblyAIAPI_zod_deleteTranscriptResponseLanguageDetectionOptionsCodeSwitchingDefault as deleteTranscriptResponseLanguageDetectionOptionsCodeSwitchingDefault, assemblyAIAPI_zod_deleteTranscriptResponseLanguageDetectionOptionsFallbackLanguageDefault as deleteTranscriptResponseLanguageDetectionOptionsFallbackLanguageDefault, assemblyAIAPI_zod_deleteTranscriptResponseRedactPiiAudioOptionsReturnRedactedNoSpeechAudioDefault as deleteTranscriptResponseRedactPiiAudioOptionsReturnRedactedNoSpeechAudioDefault, assemblyAIAPI_zod_deleteTranscriptResponseSpeechUnderstandingRequestTranslationFormalDefault as deleteTranscriptResponseSpeechUnderstandingRequestTranslationFormalDefault, assemblyAIAPI_zod_deleteTranscriptResponseSpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault as deleteTranscriptResponseSpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault, assemblyAIAPI_zod_getRedactedAudioParams as getRedactedAudioParams, assemblyAIAPI_zod_getRedactedAudioResponse as getRedactedAudioResponse, assemblyAIAPI_zod_getSubtitlesParams as getSubtitlesParams, assemblyAIAPI_zod_getSubtitlesQueryParams as getSubtitlesQueryParams, assemblyAIAPI_zod_getSubtitlesResponse as getSubtitlesResponse, assemblyAIAPI_zod_getTranscriptParagraphsParams as getTranscriptParagraphsParams, assemblyAIAPI_zod_getTranscriptParagraphsResponse as getTranscriptParagraphsResponse, assemblyAIAPI_zod_getTranscriptParams as getTranscriptParams, assemblyAIAPI_zod_getTranscriptResponse as getTranscriptResponse, assemblyAIAPI_zod_getTranscriptResponseLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault as getTranscriptResponseLanguageDetectionOptionsCodeSwitchingConfidenceThresholdDefault, assemblyAIAPI_zod_getTranscriptResponseLanguageDetectionOptionsCodeSwitchingDefault as getTranscriptResponseLanguageDetectionOptionsCodeSwitchingDefault, assemblyAIAPI_zod_getTranscriptResponseLanguageDetectionOptionsFallbackLanguageDefault as getTranscriptResponseLanguageDetectionOptionsFallbackLanguageDefault, assemblyAIAPI_zod_getTranscriptResponseRedactPiiAudioOptionsReturnRedactedNoSpeechAudioDefault as getTranscriptResponseRedactPiiAudioOptionsReturnRedactedNoSpeechAudioDefault, assemblyAIAPI_zod_getTranscriptResponseSpeechUnderstandingRequestTranslationFormalDefault as getTranscriptResponseSpeechUnderstandingRequestTranslationFormalDefault, assemblyAIAPI_zod_getTranscriptResponseSpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault as getTranscriptResponseSpeechUnderstandingRequestTranslationMatchOriginalUtteranceDefault, assemblyAIAPI_zod_getTranscriptSentencesParams as getTranscriptSentencesParams, assemblyAIAPI_zod_getTranscriptSentencesResponse as getTranscriptSentencesResponse, assemblyAIAPI_zod_listTranscriptsQueryLimitDefault as listTranscriptsQueryLimitDefault, assemblyAIAPI_zod_listTranscriptsQueryParams as listTranscriptsQueryParams, assemblyAIAPI_zod_listTranscriptsQueryThrottledOnlyDefault as listTranscriptsQueryThrottledOnlyDefault, assemblyAIAPI_zod_listTranscriptsResponse as listTranscriptsResponse, assemblyAIAPI_zod_uploadFileResponse as uploadFileResponse, assemblyAIAPI_zod_wordSearchParams as wordSearchParams, assemblyAIAPI_zod_wordSearchQueryParams as wordSearchQueryParams, assemblyAIAPI_zod_wordSearchResponse as wordSearchResponse };
|
|
7631
7646
|
}
|
|
7632
7647
|
|
|
7633
7648
|
/**
|
|
@@ -7861,7 +7876,7 @@ declare const preRecordedControllerInitPreRecordedJobV2BodyAudioToLlmConfigModel
|
|
|
7861
7876
|
declare const preRecordedControllerInitPreRecordedJobV2BodyPiiRedactionDefault = false;
|
|
7862
7877
|
declare const preRecordedControllerInitPreRecordedJobV2BodySentencesDefault = false;
|
|
7863
7878
|
declare const preRecordedControllerInitPreRecordedJobV2BodyPunctuationEnhancedDefault = false;
|
|
7864
|
-
declare const preRecordedControllerInitPreRecordedJobV2BodyLanguageConfigLanguagesDefault:
|
|
7879
|
+
declare const preRecordedControllerInitPreRecordedJobV2BodyLanguageConfigLanguagesDefault: never[];
|
|
7865
7880
|
declare const preRecordedControllerInitPreRecordedJobV2BodyLanguageConfigCodeSwitchingDefault = false;
|
|
7866
7881
|
declare const preRecordedControllerInitPreRecordedJobV2Body: z.ZodObject<{
|
|
7867
7882
|
custom_vocabulary: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -8236,7 +8251,7 @@ declare const preRecordedControllerGetPreRecordedJobsV2ResponseItemsItemRequestP
|
|
|
8236
8251
|
declare const preRecordedControllerGetPreRecordedJobsV2ResponseItemsItemRequestParamsPiiRedactionDefault = false;
|
|
8237
8252
|
declare const preRecordedControllerGetPreRecordedJobsV2ResponseItemsItemRequestParamsSentencesDefault = false;
|
|
8238
8253
|
declare const preRecordedControllerGetPreRecordedJobsV2ResponseItemsItemRequestParamsPunctuationEnhancedDefault = false;
|
|
8239
|
-
declare const preRecordedControllerGetPreRecordedJobsV2ResponseItemsItemRequestParamsLanguageConfigLanguagesDefault:
|
|
8254
|
+
declare const preRecordedControllerGetPreRecordedJobsV2ResponseItemsItemRequestParamsLanguageConfigLanguagesDefault: never[];
|
|
8240
8255
|
declare const preRecordedControllerGetPreRecordedJobsV2ResponseItemsItemRequestParamsLanguageConfigCodeSwitchingDefault = false;
|
|
8241
8256
|
declare const preRecordedControllerGetPreRecordedJobsV2ResponseItemsItemResultTranscriptionUtterancesItemChannelMin = 0;
|
|
8242
8257
|
declare const preRecordedControllerGetPreRecordedJobsV2ResponseItemsItemResultTranscriptionUtterancesItemSpeakerMin = 0;
|
|
@@ -9261,45 +9276,6 @@ declare const preRecordedControllerGetPreRecordedJobsV2Response: z.ZodObject<{
|
|
|
9261
9276
|
is_empty: boolean;
|
|
9262
9277
|
exec_time: number;
|
|
9263
9278
|
}>>;
|
|
9264
|
-
speaker_reidentification: z.ZodOptional<z.ZodObject<{
|
|
9265
|
-
success: z.ZodBoolean;
|
|
9266
|
-
is_empty: z.ZodBoolean;
|
|
9267
|
-
exec_time: z.ZodNumber;
|
|
9268
|
-
error: z.ZodNullable<z.ZodObject<{
|
|
9269
|
-
status_code: z.ZodNumber;
|
|
9270
|
-
exception: z.ZodString;
|
|
9271
|
-
message: z.ZodString;
|
|
9272
|
-
}, "strip", z.ZodTypeAny, {
|
|
9273
|
-
message: string;
|
|
9274
|
-
status_code: number;
|
|
9275
|
-
exception: string;
|
|
9276
|
-
}, {
|
|
9277
|
-
message: string;
|
|
9278
|
-
status_code: number;
|
|
9279
|
-
exception: string;
|
|
9280
|
-
}>>;
|
|
9281
|
-
results: z.ZodString;
|
|
9282
|
-
}, "strip", z.ZodTypeAny, {
|
|
9283
|
-
error: {
|
|
9284
|
-
message: string;
|
|
9285
|
-
status_code: number;
|
|
9286
|
-
exception: string;
|
|
9287
|
-
} | null;
|
|
9288
|
-
success: boolean;
|
|
9289
|
-
results: string;
|
|
9290
|
-
is_empty: boolean;
|
|
9291
|
-
exec_time: number;
|
|
9292
|
-
}, {
|
|
9293
|
-
error: {
|
|
9294
|
-
message: string;
|
|
9295
|
-
status_code: number;
|
|
9296
|
-
exception: string;
|
|
9297
|
-
} | null;
|
|
9298
|
-
success: boolean;
|
|
9299
|
-
results: string;
|
|
9300
|
-
is_empty: boolean;
|
|
9301
|
-
exec_time: number;
|
|
9302
|
-
}>>;
|
|
9303
9279
|
structured_data_extraction: z.ZodOptional<z.ZodObject<{
|
|
9304
9280
|
success: z.ZodBoolean;
|
|
9305
9281
|
is_empty: z.ZodBoolean;
|
|
@@ -9953,17 +9929,6 @@ declare const preRecordedControllerGetPreRecordedJobsV2Response: z.ZodObject<{
|
|
|
9953
9929
|
is_empty: boolean;
|
|
9954
9930
|
exec_time: number;
|
|
9955
9931
|
} | undefined;
|
|
9956
|
-
speaker_reidentification?: {
|
|
9957
|
-
error: {
|
|
9958
|
-
message: string;
|
|
9959
|
-
status_code: number;
|
|
9960
|
-
exception: string;
|
|
9961
|
-
} | null;
|
|
9962
|
-
success: boolean;
|
|
9963
|
-
results: string;
|
|
9964
|
-
is_empty: boolean;
|
|
9965
|
-
exec_time: number;
|
|
9966
|
-
} | undefined;
|
|
9967
9932
|
structured_data_extraction?: {
|
|
9968
9933
|
error: {
|
|
9969
9934
|
message: string;
|
|
@@ -10207,17 +10172,6 @@ declare const preRecordedControllerGetPreRecordedJobsV2Response: z.ZodObject<{
|
|
|
10207
10172
|
is_empty: boolean;
|
|
10208
10173
|
exec_time: number;
|
|
10209
10174
|
} | undefined;
|
|
10210
|
-
speaker_reidentification?: {
|
|
10211
|
-
error: {
|
|
10212
|
-
message: string;
|
|
10213
|
-
status_code: number;
|
|
10214
|
-
exception: string;
|
|
10215
|
-
} | null;
|
|
10216
|
-
success: boolean;
|
|
10217
|
-
results: string;
|
|
10218
|
-
is_empty: boolean;
|
|
10219
|
-
exec_time: number;
|
|
10220
|
-
} | undefined;
|
|
10221
10175
|
structured_data_extraction?: {
|
|
10222
10176
|
error: {
|
|
10223
10177
|
message: string;
|
|
@@ -10550,17 +10504,6 @@ declare const preRecordedControllerGetPreRecordedJobsV2Response: z.ZodObject<{
|
|
|
10550
10504
|
is_empty: boolean;
|
|
10551
10505
|
exec_time: number;
|
|
10552
10506
|
} | undefined;
|
|
10553
|
-
speaker_reidentification?: {
|
|
10554
|
-
error: {
|
|
10555
|
-
message: string;
|
|
10556
|
-
status_code: number;
|
|
10557
|
-
exception: string;
|
|
10558
|
-
} | null;
|
|
10559
|
-
success: boolean;
|
|
10560
|
-
results: string;
|
|
10561
|
-
is_empty: boolean;
|
|
10562
|
-
exec_time: number;
|
|
10563
|
-
} | undefined;
|
|
10564
10507
|
structured_data_extraction?: {
|
|
10565
10508
|
error: {
|
|
10566
10509
|
message: string;
|
|
@@ -10893,17 +10836,6 @@ declare const preRecordedControllerGetPreRecordedJobsV2Response: z.ZodObject<{
|
|
|
10893
10836
|
is_empty: boolean;
|
|
10894
10837
|
exec_time: number;
|
|
10895
10838
|
} | undefined;
|
|
10896
|
-
speaker_reidentification?: {
|
|
10897
|
-
error: {
|
|
10898
|
-
message: string;
|
|
10899
|
-
status_code: number;
|
|
10900
|
-
exception: string;
|
|
10901
|
-
} | null;
|
|
10902
|
-
success: boolean;
|
|
10903
|
-
results: string;
|
|
10904
|
-
is_empty: boolean;
|
|
10905
|
-
exec_time: number;
|
|
10906
|
-
} | undefined;
|
|
10907
10839
|
structured_data_extraction?: {
|
|
10908
10840
|
error: {
|
|
10909
10841
|
message: string;
|
|
@@ -11241,17 +11173,6 @@ declare const preRecordedControllerGetPreRecordedJobsV2Response: z.ZodObject<{
|
|
|
11241
11173
|
is_empty: boolean;
|
|
11242
11174
|
exec_time: number;
|
|
11243
11175
|
} | undefined;
|
|
11244
|
-
speaker_reidentification?: {
|
|
11245
|
-
error: {
|
|
11246
|
-
message: string;
|
|
11247
|
-
status_code: number;
|
|
11248
|
-
exception: string;
|
|
11249
|
-
} | null;
|
|
11250
|
-
success: boolean;
|
|
11251
|
-
results: string;
|
|
11252
|
-
is_empty: boolean;
|
|
11253
|
-
exec_time: number;
|
|
11254
|
-
} | undefined;
|
|
11255
11176
|
structured_data_extraction?: {
|
|
11256
11177
|
error: {
|
|
11257
11178
|
message: string;
|
|
@@ -11589,17 +11510,6 @@ declare const preRecordedControllerGetPreRecordedJobsV2Response: z.ZodObject<{
|
|
|
11589
11510
|
is_empty: boolean;
|
|
11590
11511
|
exec_time: number;
|
|
11591
11512
|
} | undefined;
|
|
11592
|
-
speaker_reidentification?: {
|
|
11593
|
-
error: {
|
|
11594
|
-
message: string;
|
|
11595
|
-
status_code: number;
|
|
11596
|
-
exception: string;
|
|
11597
|
-
} | null;
|
|
11598
|
-
success: boolean;
|
|
11599
|
-
results: string;
|
|
11600
|
-
is_empty: boolean;
|
|
11601
|
-
exec_time: number;
|
|
11602
|
-
} | undefined;
|
|
11603
11513
|
structured_data_extraction?: {
|
|
11604
11514
|
error: {
|
|
11605
11515
|
message: string;
|
|
@@ -11670,7 +11580,7 @@ declare const preRecordedControllerGetPreRecordedJobV2ResponseRequestParamsAudio
|
|
|
11670
11580
|
declare const preRecordedControllerGetPreRecordedJobV2ResponseRequestParamsPiiRedactionDefault = false;
|
|
11671
11581
|
declare const preRecordedControllerGetPreRecordedJobV2ResponseRequestParamsSentencesDefault = false;
|
|
11672
11582
|
declare const preRecordedControllerGetPreRecordedJobV2ResponseRequestParamsPunctuationEnhancedDefault = false;
|
|
11673
|
-
declare const preRecordedControllerGetPreRecordedJobV2ResponseRequestParamsLanguageConfigLanguagesDefault:
|
|
11583
|
+
declare const preRecordedControllerGetPreRecordedJobV2ResponseRequestParamsLanguageConfigLanguagesDefault: never[];
|
|
11674
11584
|
declare const preRecordedControllerGetPreRecordedJobV2ResponseRequestParamsLanguageConfigCodeSwitchingDefault = false;
|
|
11675
11585
|
declare const preRecordedControllerGetPreRecordedJobV2ResponseResultTranscriptionUtterancesItemChannelMin = 0;
|
|
11676
11586
|
declare const preRecordedControllerGetPreRecordedJobV2ResponseResultTranscriptionUtterancesItemSpeakerMin = 0;
|
|
@@ -12691,45 +12601,6 @@ declare const preRecordedControllerGetPreRecordedJobV2Response: z.ZodObject<{
|
|
|
12691
12601
|
is_empty: boolean;
|
|
12692
12602
|
exec_time: number;
|
|
12693
12603
|
}>>;
|
|
12694
|
-
speaker_reidentification: z.ZodOptional<z.ZodObject<{
|
|
12695
|
-
success: z.ZodBoolean;
|
|
12696
|
-
is_empty: z.ZodBoolean;
|
|
12697
|
-
exec_time: z.ZodNumber;
|
|
12698
|
-
error: z.ZodNullable<z.ZodObject<{
|
|
12699
|
-
status_code: z.ZodNumber;
|
|
12700
|
-
exception: z.ZodString;
|
|
12701
|
-
message: z.ZodString;
|
|
12702
|
-
}, "strip", z.ZodTypeAny, {
|
|
12703
|
-
message: string;
|
|
12704
|
-
status_code: number;
|
|
12705
|
-
exception: string;
|
|
12706
|
-
}, {
|
|
12707
|
-
message: string;
|
|
12708
|
-
status_code: number;
|
|
12709
|
-
exception: string;
|
|
12710
|
-
}>>;
|
|
12711
|
-
results: z.ZodString;
|
|
12712
|
-
}, "strip", z.ZodTypeAny, {
|
|
12713
|
-
error: {
|
|
12714
|
-
message: string;
|
|
12715
|
-
status_code: number;
|
|
12716
|
-
exception: string;
|
|
12717
|
-
} | null;
|
|
12718
|
-
success: boolean;
|
|
12719
|
-
results: string;
|
|
12720
|
-
is_empty: boolean;
|
|
12721
|
-
exec_time: number;
|
|
12722
|
-
}, {
|
|
12723
|
-
error: {
|
|
12724
|
-
message: string;
|
|
12725
|
-
status_code: number;
|
|
12726
|
-
exception: string;
|
|
12727
|
-
} | null;
|
|
12728
|
-
success: boolean;
|
|
12729
|
-
results: string;
|
|
12730
|
-
is_empty: boolean;
|
|
12731
|
-
exec_time: number;
|
|
12732
|
-
}>>;
|
|
12733
12604
|
structured_data_extraction: z.ZodOptional<z.ZodObject<{
|
|
12734
12605
|
success: z.ZodBoolean;
|
|
12735
12606
|
is_empty: z.ZodBoolean;
|
|
@@ -13383,17 +13254,6 @@ declare const preRecordedControllerGetPreRecordedJobV2Response: z.ZodObject<{
|
|
|
13383
13254
|
is_empty: boolean;
|
|
13384
13255
|
exec_time: number;
|
|
13385
13256
|
} | undefined;
|
|
13386
|
-
speaker_reidentification?: {
|
|
13387
|
-
error: {
|
|
13388
|
-
message: string;
|
|
13389
|
-
status_code: number;
|
|
13390
|
-
exception: string;
|
|
13391
|
-
} | null;
|
|
13392
|
-
success: boolean;
|
|
13393
|
-
results: string;
|
|
13394
|
-
is_empty: boolean;
|
|
13395
|
-
exec_time: number;
|
|
13396
|
-
} | undefined;
|
|
13397
13257
|
structured_data_extraction?: {
|
|
13398
13258
|
error: {
|
|
13399
13259
|
message: string;
|
|
@@ -13637,17 +13497,6 @@ declare const preRecordedControllerGetPreRecordedJobV2Response: z.ZodObject<{
|
|
|
13637
13497
|
is_empty: boolean;
|
|
13638
13498
|
exec_time: number;
|
|
13639
13499
|
} | undefined;
|
|
13640
|
-
speaker_reidentification?: {
|
|
13641
|
-
error: {
|
|
13642
|
-
message: string;
|
|
13643
|
-
status_code: number;
|
|
13644
|
-
exception: string;
|
|
13645
|
-
} | null;
|
|
13646
|
-
success: boolean;
|
|
13647
|
-
results: string;
|
|
13648
|
-
is_empty: boolean;
|
|
13649
|
-
exec_time: number;
|
|
13650
|
-
} | undefined;
|
|
13651
13500
|
structured_data_extraction?: {
|
|
13652
13501
|
error: {
|
|
13653
13502
|
message: string;
|
|
@@ -13980,17 +13829,6 @@ declare const preRecordedControllerGetPreRecordedJobV2Response: z.ZodObject<{
|
|
|
13980
13829
|
is_empty: boolean;
|
|
13981
13830
|
exec_time: number;
|
|
13982
13831
|
} | undefined;
|
|
13983
|
-
speaker_reidentification?: {
|
|
13984
|
-
error: {
|
|
13985
|
-
message: string;
|
|
13986
|
-
status_code: number;
|
|
13987
|
-
exception: string;
|
|
13988
|
-
} | null;
|
|
13989
|
-
success: boolean;
|
|
13990
|
-
results: string;
|
|
13991
|
-
is_empty: boolean;
|
|
13992
|
-
exec_time: number;
|
|
13993
|
-
} | undefined;
|
|
13994
13832
|
structured_data_extraction?: {
|
|
13995
13833
|
error: {
|
|
13996
13834
|
message: string;
|
|
@@ -14323,17 +14161,6 @@ declare const preRecordedControllerGetPreRecordedJobV2Response: z.ZodObject<{
|
|
|
14323
14161
|
is_empty: boolean;
|
|
14324
14162
|
exec_time: number;
|
|
14325
14163
|
} | undefined;
|
|
14326
|
-
speaker_reidentification?: {
|
|
14327
|
-
error: {
|
|
14328
|
-
message: string;
|
|
14329
|
-
status_code: number;
|
|
14330
|
-
exception: string;
|
|
14331
|
-
} | null;
|
|
14332
|
-
success: boolean;
|
|
14333
|
-
results: string;
|
|
14334
|
-
is_empty: boolean;
|
|
14335
|
-
exec_time: number;
|
|
14336
|
-
} | undefined;
|
|
14337
14164
|
structured_data_extraction?: {
|
|
14338
14165
|
error: {
|
|
14339
14166
|
message: string;
|
|
@@ -14413,7 +14240,7 @@ declare const transcriptionControllerInitPreRecordedJobV2BodyAudioToLlmConfigMod
|
|
|
14413
14240
|
declare const transcriptionControllerInitPreRecordedJobV2BodyPiiRedactionDefault = false;
|
|
14414
14241
|
declare const transcriptionControllerInitPreRecordedJobV2BodySentencesDefault = false;
|
|
14415
14242
|
declare const transcriptionControllerInitPreRecordedJobV2BodyPunctuationEnhancedDefault = false;
|
|
14416
|
-
declare const transcriptionControllerInitPreRecordedJobV2BodyLanguageConfigLanguagesDefault:
|
|
14243
|
+
declare const transcriptionControllerInitPreRecordedJobV2BodyLanguageConfigLanguagesDefault: never[];
|
|
14417
14244
|
declare const transcriptionControllerInitPreRecordedJobV2BodyLanguageConfigCodeSwitchingDefault = false;
|
|
14418
14245
|
declare const transcriptionControllerInitPreRecordedJobV2Body: z.ZodObject<{
|
|
14419
14246
|
custom_vocabulary: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -14791,7 +14618,7 @@ declare const transcriptionControllerListV2ResponseItemsItemRequestParamsAudioTo
|
|
|
14791
14618
|
declare const transcriptionControllerListV2ResponseItemsItemRequestParamsPiiRedactionDefault = false;
|
|
14792
14619
|
declare const transcriptionControllerListV2ResponseItemsItemRequestParamsSentencesDefault = false;
|
|
14793
14620
|
declare const transcriptionControllerListV2ResponseItemsItemRequestParamsPunctuationEnhancedDefault = false;
|
|
14794
|
-
declare const transcriptionControllerListV2ResponseItemsItemRequestParamsLanguageConfigLanguagesDefault:
|
|
14621
|
+
declare const transcriptionControllerListV2ResponseItemsItemRequestParamsLanguageConfigLanguagesDefault: never[];
|
|
14795
14622
|
declare const transcriptionControllerListV2ResponseItemsItemRequestParamsLanguageConfigCodeSwitchingDefault = false;
|
|
14796
14623
|
declare const transcriptionControllerListV2ResponseItemsItemResultTranscriptionUtterancesItemChannelMin = 0;
|
|
14797
14624
|
declare const transcriptionControllerListV2ResponseItemsItemResultTranscriptionUtterancesItemSpeakerMin = 0;
|
|
@@ -15877,45 +15704,6 @@ declare const transcriptionControllerListV2Response: z.ZodObject<{
|
|
|
15877
15704
|
is_empty: boolean;
|
|
15878
15705
|
exec_time: number;
|
|
15879
15706
|
}>>;
|
|
15880
|
-
speaker_reidentification: z.ZodOptional<z.ZodObject<{
|
|
15881
|
-
success: z.ZodBoolean;
|
|
15882
|
-
is_empty: z.ZodBoolean;
|
|
15883
|
-
exec_time: z.ZodNumber;
|
|
15884
|
-
error: z.ZodNullable<z.ZodObject<{
|
|
15885
|
-
status_code: z.ZodNumber;
|
|
15886
|
-
exception: z.ZodString;
|
|
15887
|
-
message: z.ZodString;
|
|
15888
|
-
}, "strip", z.ZodTypeAny, {
|
|
15889
|
-
message: string;
|
|
15890
|
-
status_code: number;
|
|
15891
|
-
exception: string;
|
|
15892
|
-
}, {
|
|
15893
|
-
message: string;
|
|
15894
|
-
status_code: number;
|
|
15895
|
-
exception: string;
|
|
15896
|
-
}>>;
|
|
15897
|
-
results: z.ZodString;
|
|
15898
|
-
}, "strip", z.ZodTypeAny, {
|
|
15899
|
-
error: {
|
|
15900
|
-
message: string;
|
|
15901
|
-
status_code: number;
|
|
15902
|
-
exception: string;
|
|
15903
|
-
} | null;
|
|
15904
|
-
success: boolean;
|
|
15905
|
-
results: string;
|
|
15906
|
-
is_empty: boolean;
|
|
15907
|
-
exec_time: number;
|
|
15908
|
-
}, {
|
|
15909
|
-
error: {
|
|
15910
|
-
message: string;
|
|
15911
|
-
status_code: number;
|
|
15912
|
-
exception: string;
|
|
15913
|
-
} | null;
|
|
15914
|
-
success: boolean;
|
|
15915
|
-
results: string;
|
|
15916
|
-
is_empty: boolean;
|
|
15917
|
-
exec_time: number;
|
|
15918
|
-
}>>;
|
|
15919
15707
|
structured_data_extraction: z.ZodOptional<z.ZodObject<{
|
|
15920
15708
|
success: z.ZodBoolean;
|
|
15921
15709
|
is_empty: z.ZodBoolean;
|
|
@@ -16569,17 +16357,6 @@ declare const transcriptionControllerListV2Response: z.ZodObject<{
|
|
|
16569
16357
|
is_empty: boolean;
|
|
16570
16358
|
exec_time: number;
|
|
16571
16359
|
} | undefined;
|
|
16572
|
-
speaker_reidentification?: {
|
|
16573
|
-
error: {
|
|
16574
|
-
message: string;
|
|
16575
|
-
status_code: number;
|
|
16576
|
-
exception: string;
|
|
16577
|
-
} | null;
|
|
16578
|
-
success: boolean;
|
|
16579
|
-
results: string;
|
|
16580
|
-
is_empty: boolean;
|
|
16581
|
-
exec_time: number;
|
|
16582
|
-
} | undefined;
|
|
16583
16360
|
structured_data_extraction?: {
|
|
16584
16361
|
error: {
|
|
16585
16362
|
message: string;
|
|
@@ -16823,17 +16600,6 @@ declare const transcriptionControllerListV2Response: z.ZodObject<{
|
|
|
16823
16600
|
is_empty: boolean;
|
|
16824
16601
|
exec_time: number;
|
|
16825
16602
|
} | undefined;
|
|
16826
|
-
speaker_reidentification?: {
|
|
16827
|
-
error: {
|
|
16828
|
-
message: string;
|
|
16829
|
-
status_code: number;
|
|
16830
|
-
exception: string;
|
|
16831
|
-
} | null;
|
|
16832
|
-
success: boolean;
|
|
16833
|
-
results: string;
|
|
16834
|
-
is_empty: boolean;
|
|
16835
|
-
exec_time: number;
|
|
16836
|
-
} | undefined;
|
|
16837
16603
|
structured_data_extraction?: {
|
|
16838
16604
|
error: {
|
|
16839
16605
|
message: string;
|
|
@@ -17166,17 +16932,6 @@ declare const transcriptionControllerListV2Response: z.ZodObject<{
|
|
|
17166
16932
|
is_empty: boolean;
|
|
17167
16933
|
exec_time: number;
|
|
17168
16934
|
} | undefined;
|
|
17169
|
-
speaker_reidentification?: {
|
|
17170
|
-
error: {
|
|
17171
|
-
message: string;
|
|
17172
|
-
status_code: number;
|
|
17173
|
-
exception: string;
|
|
17174
|
-
} | null;
|
|
17175
|
-
success: boolean;
|
|
17176
|
-
results: string;
|
|
17177
|
-
is_empty: boolean;
|
|
17178
|
-
exec_time: number;
|
|
17179
|
-
} | undefined;
|
|
17180
16935
|
structured_data_extraction?: {
|
|
17181
16936
|
error: {
|
|
17182
16937
|
message: string;
|
|
@@ -17509,17 +17264,6 @@ declare const transcriptionControllerListV2Response: z.ZodObject<{
|
|
|
17509
17264
|
is_empty: boolean;
|
|
17510
17265
|
exec_time: number;
|
|
17511
17266
|
} | undefined;
|
|
17512
|
-
speaker_reidentification?: {
|
|
17513
|
-
error: {
|
|
17514
|
-
message: string;
|
|
17515
|
-
status_code: number;
|
|
17516
|
-
exception: string;
|
|
17517
|
-
} | null;
|
|
17518
|
-
success: boolean;
|
|
17519
|
-
results: string;
|
|
17520
|
-
is_empty: boolean;
|
|
17521
|
-
exec_time: number;
|
|
17522
|
-
} | undefined;
|
|
17523
17267
|
structured_data_extraction?: {
|
|
17524
17268
|
error: {
|
|
17525
17269
|
message: string;
|
|
@@ -19714,17 +19458,6 @@ declare const transcriptionControllerListV2Response: z.ZodObject<{
|
|
|
19714
19458
|
is_empty: boolean;
|
|
19715
19459
|
exec_time: number;
|
|
19716
19460
|
} | undefined;
|
|
19717
|
-
speaker_reidentification?: {
|
|
19718
|
-
error: {
|
|
19719
|
-
message: string;
|
|
19720
|
-
status_code: number;
|
|
19721
|
-
exception: string;
|
|
19722
|
-
} | null;
|
|
19723
|
-
success: boolean;
|
|
19724
|
-
results: string;
|
|
19725
|
-
is_empty: boolean;
|
|
19726
|
-
exec_time: number;
|
|
19727
|
-
} | undefined;
|
|
19728
19461
|
structured_data_extraction?: {
|
|
19729
19462
|
error: {
|
|
19730
19463
|
message: string;
|
|
@@ -20297,17 +20030,6 @@ declare const transcriptionControllerListV2Response: z.ZodObject<{
|
|
|
20297
20030
|
is_empty: boolean;
|
|
20298
20031
|
exec_time: number;
|
|
20299
20032
|
} | undefined;
|
|
20300
|
-
speaker_reidentification?: {
|
|
20301
|
-
error: {
|
|
20302
|
-
message: string;
|
|
20303
|
-
status_code: number;
|
|
20304
|
-
exception: string;
|
|
20305
|
-
} | null;
|
|
20306
|
-
success: boolean;
|
|
20307
|
-
results: string;
|
|
20308
|
-
is_empty: boolean;
|
|
20309
|
-
exec_time: number;
|
|
20310
|
-
} | undefined;
|
|
20311
20033
|
structured_data_extraction?: {
|
|
20312
20034
|
error: {
|
|
20313
20035
|
message: string;
|
|
@@ -20613,7 +20335,7 @@ declare const transcriptionControllerGetTranscriptV2ResponseRequestParamsAudioTo
|
|
|
20613
20335
|
declare const transcriptionControllerGetTranscriptV2ResponseRequestParamsPiiRedactionDefault = false;
|
|
20614
20336
|
declare const transcriptionControllerGetTranscriptV2ResponseRequestParamsSentencesDefault = false;
|
|
20615
20337
|
declare const transcriptionControllerGetTranscriptV2ResponseRequestParamsPunctuationEnhancedDefault = false;
|
|
20616
|
-
declare const transcriptionControllerGetTranscriptV2ResponseRequestParamsLanguageConfigLanguagesDefault:
|
|
20338
|
+
declare const transcriptionControllerGetTranscriptV2ResponseRequestParamsLanguageConfigLanguagesDefault: never[];
|
|
20617
20339
|
declare const transcriptionControllerGetTranscriptV2ResponseRequestParamsLanguageConfigCodeSwitchingDefault = false;
|
|
20618
20340
|
declare const transcriptionControllerGetTranscriptV2ResponseResultTranscriptionUtterancesItemChannelMin = 0;
|
|
20619
20341
|
declare const transcriptionControllerGetTranscriptV2ResponseResultTranscriptionUtterancesItemSpeakerMin = 0;
|
|
@@ -21695,45 +21417,6 @@ declare const transcriptionControllerGetTranscriptV2Response: z.ZodDiscriminated
|
|
|
21695
21417
|
is_empty: boolean;
|
|
21696
21418
|
exec_time: number;
|
|
21697
21419
|
}>>;
|
|
21698
|
-
speaker_reidentification: z.ZodOptional<z.ZodObject<{
|
|
21699
|
-
success: z.ZodBoolean;
|
|
21700
|
-
is_empty: z.ZodBoolean;
|
|
21701
|
-
exec_time: z.ZodNumber;
|
|
21702
|
-
error: z.ZodNullable<z.ZodObject<{
|
|
21703
|
-
status_code: z.ZodNumber;
|
|
21704
|
-
exception: z.ZodString;
|
|
21705
|
-
message: z.ZodString;
|
|
21706
|
-
}, "strip", z.ZodTypeAny, {
|
|
21707
|
-
message: string;
|
|
21708
|
-
status_code: number;
|
|
21709
|
-
exception: string;
|
|
21710
|
-
}, {
|
|
21711
|
-
message: string;
|
|
21712
|
-
status_code: number;
|
|
21713
|
-
exception: string;
|
|
21714
|
-
}>>;
|
|
21715
|
-
results: z.ZodString;
|
|
21716
|
-
}, "strip", z.ZodTypeAny, {
|
|
21717
|
-
error: {
|
|
21718
|
-
message: string;
|
|
21719
|
-
status_code: number;
|
|
21720
|
-
exception: string;
|
|
21721
|
-
} | null;
|
|
21722
|
-
success: boolean;
|
|
21723
|
-
results: string;
|
|
21724
|
-
is_empty: boolean;
|
|
21725
|
-
exec_time: number;
|
|
21726
|
-
}, {
|
|
21727
|
-
error: {
|
|
21728
|
-
message: string;
|
|
21729
|
-
status_code: number;
|
|
21730
|
-
exception: string;
|
|
21731
|
-
} | null;
|
|
21732
|
-
success: boolean;
|
|
21733
|
-
results: string;
|
|
21734
|
-
is_empty: boolean;
|
|
21735
|
-
exec_time: number;
|
|
21736
|
-
}>>;
|
|
21737
21420
|
structured_data_extraction: z.ZodOptional<z.ZodObject<{
|
|
21738
21421
|
success: z.ZodBoolean;
|
|
21739
21422
|
is_empty: z.ZodBoolean;
|
|
@@ -22387,17 +22070,6 @@ declare const transcriptionControllerGetTranscriptV2Response: z.ZodDiscriminated
|
|
|
22387
22070
|
is_empty: boolean;
|
|
22388
22071
|
exec_time: number;
|
|
22389
22072
|
} | undefined;
|
|
22390
|
-
speaker_reidentification?: {
|
|
22391
|
-
error: {
|
|
22392
|
-
message: string;
|
|
22393
|
-
status_code: number;
|
|
22394
|
-
exception: string;
|
|
22395
|
-
} | null;
|
|
22396
|
-
success: boolean;
|
|
22397
|
-
results: string;
|
|
22398
|
-
is_empty: boolean;
|
|
22399
|
-
exec_time: number;
|
|
22400
|
-
} | undefined;
|
|
22401
22073
|
structured_data_extraction?: {
|
|
22402
22074
|
error: {
|
|
22403
22075
|
message: string;
|
|
@@ -22641,17 +22313,6 @@ declare const transcriptionControllerGetTranscriptV2Response: z.ZodDiscriminated
|
|
|
22641
22313
|
is_empty: boolean;
|
|
22642
22314
|
exec_time: number;
|
|
22643
22315
|
} | undefined;
|
|
22644
|
-
speaker_reidentification?: {
|
|
22645
|
-
error: {
|
|
22646
|
-
message: string;
|
|
22647
|
-
status_code: number;
|
|
22648
|
-
exception: string;
|
|
22649
|
-
} | null;
|
|
22650
|
-
success: boolean;
|
|
22651
|
-
results: string;
|
|
22652
|
-
is_empty: boolean;
|
|
22653
|
-
exec_time: number;
|
|
22654
|
-
} | undefined;
|
|
22655
22316
|
structured_data_extraction?: {
|
|
22656
22317
|
error: {
|
|
22657
22318
|
message: string;
|
|
@@ -22984,17 +22645,6 @@ declare const transcriptionControllerGetTranscriptV2Response: z.ZodDiscriminated
|
|
|
22984
22645
|
is_empty: boolean;
|
|
22985
22646
|
exec_time: number;
|
|
22986
22647
|
} | undefined;
|
|
22987
|
-
speaker_reidentification?: {
|
|
22988
|
-
error: {
|
|
22989
|
-
message: string;
|
|
22990
|
-
status_code: number;
|
|
22991
|
-
exception: string;
|
|
22992
|
-
} | null;
|
|
22993
|
-
success: boolean;
|
|
22994
|
-
results: string;
|
|
22995
|
-
is_empty: boolean;
|
|
22996
|
-
exec_time: number;
|
|
22997
|
-
} | undefined;
|
|
22998
22648
|
structured_data_extraction?: {
|
|
22999
22649
|
error: {
|
|
23000
22650
|
message: string;
|
|
@@ -23327,17 +22977,6 @@ declare const transcriptionControllerGetTranscriptV2Response: z.ZodDiscriminated
|
|
|
23327
22977
|
is_empty: boolean;
|
|
23328
22978
|
exec_time: number;
|
|
23329
22979
|
} | undefined;
|
|
23330
|
-
speaker_reidentification?: {
|
|
23331
|
-
error: {
|
|
23332
|
-
message: string;
|
|
23333
|
-
status_code: number;
|
|
23334
|
-
exception: string;
|
|
23335
|
-
} | null;
|
|
23336
|
-
success: boolean;
|
|
23337
|
-
results: string;
|
|
23338
|
-
is_empty: boolean;
|
|
23339
|
-
exec_time: number;
|
|
23340
|
-
} | undefined;
|
|
23341
22980
|
structured_data_extraction?: {
|
|
23342
22981
|
error: {
|
|
23343
22982
|
message: string;
|
|
@@ -25420,7 +25059,7 @@ declare const historyControllerGetListV1ResponseItemsItemRequestParamsAudioToLlm
|
|
|
25420
25059
|
declare const historyControllerGetListV1ResponseItemsItemRequestParamsPiiRedactionDefault = false;
|
|
25421
25060
|
declare const historyControllerGetListV1ResponseItemsItemRequestParamsSentencesDefault = false;
|
|
25422
25061
|
declare const historyControllerGetListV1ResponseItemsItemRequestParamsPunctuationEnhancedDefault = false;
|
|
25423
|
-
declare const historyControllerGetListV1ResponseItemsItemRequestParamsLanguageConfigLanguagesDefault:
|
|
25062
|
+
declare const historyControllerGetListV1ResponseItemsItemRequestParamsLanguageConfigLanguagesDefault: never[];
|
|
25424
25063
|
declare const historyControllerGetListV1ResponseItemsItemRequestParamsLanguageConfigCodeSwitchingDefault = false;
|
|
25425
25064
|
declare const historyControllerGetListV1ResponseItemsItemResultTranscriptionUtterancesItemChannelMin = 0;
|
|
25426
25065
|
declare const historyControllerGetListV1ResponseItemsItemResultTranscriptionUtterancesItemSpeakerMin = 0;
|
|
@@ -26506,45 +26145,6 @@ declare const historyControllerGetListV1Response: z.ZodObject<{
|
|
|
26506
26145
|
is_empty: boolean;
|
|
26507
26146
|
exec_time: number;
|
|
26508
26147
|
}>>;
|
|
26509
|
-
speaker_reidentification: z.ZodOptional<z.ZodObject<{
|
|
26510
|
-
success: z.ZodBoolean;
|
|
26511
|
-
is_empty: z.ZodBoolean;
|
|
26512
|
-
exec_time: z.ZodNumber;
|
|
26513
|
-
error: z.ZodNullable<z.ZodObject<{
|
|
26514
|
-
status_code: z.ZodNumber;
|
|
26515
|
-
exception: z.ZodString;
|
|
26516
|
-
message: z.ZodString;
|
|
26517
|
-
}, "strip", z.ZodTypeAny, {
|
|
26518
|
-
message: string;
|
|
26519
|
-
status_code: number;
|
|
26520
|
-
exception: string;
|
|
26521
|
-
}, {
|
|
26522
|
-
message: string;
|
|
26523
|
-
status_code: number;
|
|
26524
|
-
exception: string;
|
|
26525
|
-
}>>;
|
|
26526
|
-
results: z.ZodString;
|
|
26527
|
-
}, "strip", z.ZodTypeAny, {
|
|
26528
|
-
error: {
|
|
26529
|
-
message: string;
|
|
26530
|
-
status_code: number;
|
|
26531
|
-
exception: string;
|
|
26532
|
-
} | null;
|
|
26533
|
-
success: boolean;
|
|
26534
|
-
results: string;
|
|
26535
|
-
is_empty: boolean;
|
|
26536
|
-
exec_time: number;
|
|
26537
|
-
}, {
|
|
26538
|
-
error: {
|
|
26539
|
-
message: string;
|
|
26540
|
-
status_code: number;
|
|
26541
|
-
exception: string;
|
|
26542
|
-
} | null;
|
|
26543
|
-
success: boolean;
|
|
26544
|
-
results: string;
|
|
26545
|
-
is_empty: boolean;
|
|
26546
|
-
exec_time: number;
|
|
26547
|
-
}>>;
|
|
26548
26148
|
structured_data_extraction: z.ZodOptional<z.ZodObject<{
|
|
26549
26149
|
success: z.ZodBoolean;
|
|
26550
26150
|
is_empty: z.ZodBoolean;
|
|
@@ -27198,17 +26798,6 @@ declare const historyControllerGetListV1Response: z.ZodObject<{
|
|
|
27198
26798
|
is_empty: boolean;
|
|
27199
26799
|
exec_time: number;
|
|
27200
26800
|
} | undefined;
|
|
27201
|
-
speaker_reidentification?: {
|
|
27202
|
-
error: {
|
|
27203
|
-
message: string;
|
|
27204
|
-
status_code: number;
|
|
27205
|
-
exception: string;
|
|
27206
|
-
} | null;
|
|
27207
|
-
success: boolean;
|
|
27208
|
-
results: string;
|
|
27209
|
-
is_empty: boolean;
|
|
27210
|
-
exec_time: number;
|
|
27211
|
-
} | undefined;
|
|
27212
26801
|
structured_data_extraction?: {
|
|
27213
26802
|
error: {
|
|
27214
26803
|
message: string;
|
|
@@ -27452,17 +27041,6 @@ declare const historyControllerGetListV1Response: z.ZodObject<{
|
|
|
27452
27041
|
is_empty: boolean;
|
|
27453
27042
|
exec_time: number;
|
|
27454
27043
|
} | undefined;
|
|
27455
|
-
speaker_reidentification?: {
|
|
27456
|
-
error: {
|
|
27457
|
-
message: string;
|
|
27458
|
-
status_code: number;
|
|
27459
|
-
exception: string;
|
|
27460
|
-
} | null;
|
|
27461
|
-
success: boolean;
|
|
27462
|
-
results: string;
|
|
27463
|
-
is_empty: boolean;
|
|
27464
|
-
exec_time: number;
|
|
27465
|
-
} | undefined;
|
|
27466
27044
|
structured_data_extraction?: {
|
|
27467
27045
|
error: {
|
|
27468
27046
|
message: string;
|
|
@@ -27795,17 +27373,6 @@ declare const historyControllerGetListV1Response: z.ZodObject<{
|
|
|
27795
27373
|
is_empty: boolean;
|
|
27796
27374
|
exec_time: number;
|
|
27797
27375
|
} | undefined;
|
|
27798
|
-
speaker_reidentification?: {
|
|
27799
|
-
error: {
|
|
27800
|
-
message: string;
|
|
27801
|
-
status_code: number;
|
|
27802
|
-
exception: string;
|
|
27803
|
-
} | null;
|
|
27804
|
-
success: boolean;
|
|
27805
|
-
results: string;
|
|
27806
|
-
is_empty: boolean;
|
|
27807
|
-
exec_time: number;
|
|
27808
|
-
} | undefined;
|
|
27809
27376
|
structured_data_extraction?: {
|
|
27810
27377
|
error: {
|
|
27811
27378
|
message: string;
|
|
@@ -28138,17 +27705,6 @@ declare const historyControllerGetListV1Response: z.ZodObject<{
|
|
|
28138
27705
|
is_empty: boolean;
|
|
28139
27706
|
exec_time: number;
|
|
28140
27707
|
} | undefined;
|
|
28141
|
-
speaker_reidentification?: {
|
|
28142
|
-
error: {
|
|
28143
|
-
message: string;
|
|
28144
|
-
status_code: number;
|
|
28145
|
-
exception: string;
|
|
28146
|
-
} | null;
|
|
28147
|
-
success: boolean;
|
|
28148
|
-
results: string;
|
|
28149
|
-
is_empty: boolean;
|
|
28150
|
-
exec_time: number;
|
|
28151
|
-
} | undefined;
|
|
28152
27708
|
structured_data_extraction?: {
|
|
28153
27709
|
error: {
|
|
28154
27710
|
message: string;
|
|
@@ -30343,17 +29899,6 @@ declare const historyControllerGetListV1Response: z.ZodObject<{
|
|
|
30343
29899
|
is_empty: boolean;
|
|
30344
29900
|
exec_time: number;
|
|
30345
29901
|
} | undefined;
|
|
30346
|
-
speaker_reidentification?: {
|
|
30347
|
-
error: {
|
|
30348
|
-
message: string;
|
|
30349
|
-
status_code: number;
|
|
30350
|
-
exception: string;
|
|
30351
|
-
} | null;
|
|
30352
|
-
success: boolean;
|
|
30353
|
-
results: string;
|
|
30354
|
-
is_empty: boolean;
|
|
30355
|
-
exec_time: number;
|
|
30356
|
-
} | undefined;
|
|
30357
29902
|
structured_data_extraction?: {
|
|
30358
29903
|
error: {
|
|
30359
29904
|
message: string;
|
|
@@ -30926,17 +30471,6 @@ declare const historyControllerGetListV1Response: z.ZodObject<{
|
|
|
30926
30471
|
is_empty: boolean;
|
|
30927
30472
|
exec_time: number;
|
|
30928
30473
|
} | undefined;
|
|
30929
|
-
speaker_reidentification?: {
|
|
30930
|
-
error: {
|
|
30931
|
-
message: string;
|
|
30932
|
-
status_code: number;
|
|
30933
|
-
exception: string;
|
|
30934
|
-
} | null;
|
|
30935
|
-
success: boolean;
|
|
30936
|
-
results: string;
|
|
30937
|
-
is_empty: boolean;
|
|
30938
|
-
exec_time: number;
|
|
30939
|
-
} | undefined;
|
|
30940
30474
|
structured_data_extraction?: {
|
|
30941
30475
|
error: {
|
|
30942
30476
|
message: string;
|
|
@@ -31219,7 +30753,7 @@ declare const streamingControllerInitStreamingSessionV2BodyEndpointingMax = 10;
|
|
|
31219
30753
|
declare const streamingControllerInitStreamingSessionV2BodyMaximumDurationWithoutEndpointingDefault = 5;
|
|
31220
30754
|
declare const streamingControllerInitStreamingSessionV2BodyMaximumDurationWithoutEndpointingMin = 5;
|
|
31221
30755
|
declare const streamingControllerInitStreamingSessionV2BodyMaximumDurationWithoutEndpointingMax = 60;
|
|
31222
|
-
declare const streamingControllerInitStreamingSessionV2BodyLanguageConfigLanguagesDefault:
|
|
30756
|
+
declare const streamingControllerInitStreamingSessionV2BodyLanguageConfigLanguagesDefault: never[];
|
|
31223
30757
|
declare const streamingControllerInitStreamingSessionV2BodyLanguageConfigCodeSwitchingDefault = false;
|
|
31224
30758
|
declare const streamingControllerInitStreamingSessionV2BodyPreProcessingAudioEnhancerDefault = false;
|
|
31225
30759
|
declare const streamingControllerInitStreamingSessionV2BodyPreProcessingSpeechThresholdDefault = 0.6;
|
|
@@ -31706,7 +31240,7 @@ declare const streamingControllerGetStreamingJobsV2ResponseItemsItemRequestParam
|
|
|
31706
31240
|
declare const streamingControllerGetStreamingJobsV2ResponseItemsItemRequestParamsMaximumDurationWithoutEndpointingDefault = 5;
|
|
31707
31241
|
declare const streamingControllerGetStreamingJobsV2ResponseItemsItemRequestParamsMaximumDurationWithoutEndpointingMin = 5;
|
|
31708
31242
|
declare const streamingControllerGetStreamingJobsV2ResponseItemsItemRequestParamsMaximumDurationWithoutEndpointingMax = 60;
|
|
31709
|
-
declare const streamingControllerGetStreamingJobsV2ResponseItemsItemRequestParamsLanguageConfigLanguagesDefault:
|
|
31243
|
+
declare const streamingControllerGetStreamingJobsV2ResponseItemsItemRequestParamsLanguageConfigLanguagesDefault: never[];
|
|
31710
31244
|
declare const streamingControllerGetStreamingJobsV2ResponseItemsItemRequestParamsLanguageConfigCodeSwitchingDefault = false;
|
|
31711
31245
|
declare const streamingControllerGetStreamingJobsV2ResponseItemsItemRequestParamsPreProcessingAudioEnhancerDefault = false;
|
|
31712
31246
|
declare const streamingControllerGetStreamingJobsV2ResponseItemsItemRequestParamsPreProcessingSpeechThresholdDefault = 0.6;
|
|
@@ -34120,7 +33654,7 @@ declare const streamingControllerGetStreamingJobV2ResponseRequestParamsEndpointi
|
|
|
34120
33654
|
declare const streamingControllerGetStreamingJobV2ResponseRequestParamsMaximumDurationWithoutEndpointingDefault = 5;
|
|
34121
33655
|
declare const streamingControllerGetStreamingJobV2ResponseRequestParamsMaximumDurationWithoutEndpointingMin = 5;
|
|
34122
33656
|
declare const streamingControllerGetStreamingJobV2ResponseRequestParamsMaximumDurationWithoutEndpointingMax = 60;
|
|
34123
|
-
declare const streamingControllerGetStreamingJobV2ResponseRequestParamsLanguageConfigLanguagesDefault:
|
|
33657
|
+
declare const streamingControllerGetStreamingJobV2ResponseRequestParamsLanguageConfigLanguagesDefault: never[];
|
|
34124
33658
|
declare const streamingControllerGetStreamingJobV2ResponseRequestParamsLanguageConfigCodeSwitchingDefault = false;
|
|
34125
33659
|
declare const streamingControllerGetStreamingJobV2ResponseRequestParamsPreProcessingAudioEnhancerDefault = false;
|
|
34126
33660
|
declare const streamingControllerGetStreamingJobV2ResponseRequestParamsPreProcessingSpeechThresholdDefault = 0.6;
|
|
@@ -36883,8 +36417,8 @@ declare const createTranscriptionBody$1: z.ZodObject<{
|
|
|
36883
36417
|
file: File;
|
|
36884
36418
|
language?: string | undefined;
|
|
36885
36419
|
prompt?: string | undefined;
|
|
36886
|
-
response_format?: "srt" | "vtt" | "json" | "text" | "verbose_json" | "diarized_json" | undefined;
|
|
36887
36420
|
temperature?: number | undefined;
|
|
36421
|
+
response_format?: "srt" | "vtt" | "json" | "text" | "verbose_json" | "diarized_json" | undefined;
|
|
36888
36422
|
include?: "logprobs"[] | undefined;
|
|
36889
36423
|
timestamp_granularities?: ("word" | "segment")[] | undefined;
|
|
36890
36424
|
stream?: boolean | null | undefined;
|
|
@@ -37146,8 +36680,8 @@ declare const createTranscriptionResponse: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
37146
36680
|
id: number;
|
|
37147
36681
|
start: number;
|
|
37148
36682
|
end: number;
|
|
37149
|
-
text: string;
|
|
37150
36683
|
temperature: number;
|
|
36684
|
+
text: string;
|
|
37151
36685
|
tokens: number[];
|
|
37152
36686
|
seek: number;
|
|
37153
36687
|
avg_logprob: number;
|
|
@@ -37157,8 +36691,8 @@ declare const createTranscriptionResponse: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
37157
36691
|
id: number;
|
|
37158
36692
|
start: number;
|
|
37159
36693
|
end: number;
|
|
37160
|
-
text: string;
|
|
37161
36694
|
temperature: number;
|
|
36695
|
+
text: string;
|
|
37162
36696
|
tokens: number[];
|
|
37163
36697
|
seek: number;
|
|
37164
36698
|
avg_logprob: number;
|
|
@@ -37188,8 +36722,8 @@ declare const createTranscriptionResponse: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
37188
36722
|
id: number;
|
|
37189
36723
|
start: number;
|
|
37190
36724
|
end: number;
|
|
37191
|
-
text: string;
|
|
37192
36725
|
temperature: number;
|
|
36726
|
+
text: string;
|
|
37193
36727
|
tokens: number[];
|
|
37194
36728
|
seek: number;
|
|
37195
36729
|
avg_logprob: number;
|
|
@@ -37213,8 +36747,8 @@ declare const createTranscriptionResponse: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
|
37213
36747
|
id: number;
|
|
37214
36748
|
start: number;
|
|
37215
36749
|
end: number;
|
|
37216
|
-
text: string;
|
|
37217
36750
|
temperature: number;
|
|
36751
|
+
text: string;
|
|
37218
36752
|
tokens: number[];
|
|
37219
36753
|
seek: number;
|
|
37220
36754
|
avg_logprob: number;
|
|
@@ -37247,8 +36781,8 @@ declare const createTranslationBody: z.ZodObject<{
|
|
|
37247
36781
|
model: string;
|
|
37248
36782
|
file: File;
|
|
37249
36783
|
prompt?: string | undefined;
|
|
37250
|
-
response_format?: "srt" | "vtt" | "json" | "text" | "verbose_json" | undefined;
|
|
37251
36784
|
temperature?: number | undefined;
|
|
36785
|
+
response_format?: "srt" | "vtt" | "json" | "text" | "verbose_json" | undefined;
|
|
37252
36786
|
}>;
|
|
37253
36787
|
declare const createTranslationResponse: z.ZodUnion<[z.ZodObject<{
|
|
37254
36788
|
text: z.ZodString;
|
|
@@ -37275,8 +36809,8 @@ declare const createTranslationResponse: z.ZodUnion<[z.ZodObject<{
|
|
|
37275
36809
|
id: number;
|
|
37276
36810
|
start: number;
|
|
37277
36811
|
end: number;
|
|
37278
|
-
text: string;
|
|
37279
36812
|
temperature: number;
|
|
36813
|
+
text: string;
|
|
37280
36814
|
tokens: number[];
|
|
37281
36815
|
seek: number;
|
|
37282
36816
|
avg_logprob: number;
|
|
@@ -37286,8 +36820,8 @@ declare const createTranslationResponse: z.ZodUnion<[z.ZodObject<{
|
|
|
37286
36820
|
id: number;
|
|
37287
36821
|
start: number;
|
|
37288
36822
|
end: number;
|
|
37289
|
-
text: string;
|
|
37290
36823
|
temperature: number;
|
|
36824
|
+
text: string;
|
|
37291
36825
|
tokens: number[];
|
|
37292
36826
|
seek: number;
|
|
37293
36827
|
avg_logprob: number;
|
|
@@ -37302,8 +36836,8 @@ declare const createTranslationResponse: z.ZodUnion<[z.ZodObject<{
|
|
|
37302
36836
|
id: number;
|
|
37303
36837
|
start: number;
|
|
37304
36838
|
end: number;
|
|
37305
|
-
text: string;
|
|
37306
36839
|
temperature: number;
|
|
36840
|
+
text: string;
|
|
37307
36841
|
tokens: number[];
|
|
37308
36842
|
seek: number;
|
|
37309
36843
|
avg_logprob: number;
|
|
@@ -37318,8 +36852,8 @@ declare const createTranslationResponse: z.ZodUnion<[z.ZodObject<{
|
|
|
37318
36852
|
id: number;
|
|
37319
36853
|
start: number;
|
|
37320
36854
|
end: number;
|
|
37321
|
-
text: string;
|
|
37322
36855
|
temperature: number;
|
|
36856
|
+
text: string;
|
|
37323
36857
|
tokens: number[];
|
|
37324
36858
|
seek: number;
|
|
37325
36859
|
avg_logprob: number;
|
|
@@ -42402,23 +41936,31 @@ declare const getModelsResponse: z.ZodObject<{
|
|
|
42402
41936
|
*/
|
|
42403
41937
|
declare const createTemporaryApiKeyBodyExpiresInSecondsMax = 3600;
|
|
42404
41938
|
declare const createTemporaryApiKeyBodyClientReferenceIdMaxOne = 256;
|
|
41939
|
+
declare const createTemporaryApiKeyBodyMaxSessionDurationSecondsMaxOne = 18000;
|
|
42405
41940
|
declare const createTemporaryApiKeyBody: z.ZodObject<{
|
|
42406
41941
|
usage_type: z.ZodEnum<["transcribe_websocket"]>;
|
|
42407
41942
|
expires_in_seconds: z.ZodNumber;
|
|
42408
41943
|
client_reference_id: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNull]>>;
|
|
41944
|
+
single_use: z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodNull]>>;
|
|
41945
|
+
max_session_duration_seconds: z.ZodOptional<z.ZodUnion<[z.ZodNumber, z.ZodNull]>>;
|
|
42409
41946
|
}, "strip", z.ZodTypeAny, {
|
|
42410
41947
|
usage_type: "transcribe_websocket";
|
|
42411
41948
|
expires_in_seconds: number;
|
|
42412
41949
|
client_reference_id?: string | null | undefined;
|
|
41950
|
+
single_use?: boolean | null | undefined;
|
|
41951
|
+
max_session_duration_seconds?: number | null | undefined;
|
|
42413
41952
|
}, {
|
|
42414
41953
|
usage_type: "transcribe_websocket";
|
|
42415
41954
|
expires_in_seconds: number;
|
|
42416
41955
|
client_reference_id?: string | null | undefined;
|
|
41956
|
+
single_use?: boolean | null | undefined;
|
|
41957
|
+
max_session_duration_seconds?: number | null | undefined;
|
|
42417
41958
|
}>;
|
|
42418
41959
|
|
|
42419
41960
|
declare const sonioxPublicAPI_zod_createTemporaryApiKeyBody: typeof createTemporaryApiKeyBody;
|
|
42420
41961
|
declare const sonioxPublicAPI_zod_createTemporaryApiKeyBodyClientReferenceIdMaxOne: typeof createTemporaryApiKeyBodyClientReferenceIdMaxOne;
|
|
42421
41962
|
declare const sonioxPublicAPI_zod_createTemporaryApiKeyBodyExpiresInSecondsMax: typeof createTemporaryApiKeyBodyExpiresInSecondsMax;
|
|
41963
|
+
declare const sonioxPublicAPI_zod_createTemporaryApiKeyBodyMaxSessionDurationSecondsMaxOne: typeof createTemporaryApiKeyBodyMaxSessionDurationSecondsMaxOne;
|
|
42422
41964
|
declare const sonioxPublicAPI_zod_createTranscriptionBody: typeof createTranscriptionBody;
|
|
42423
41965
|
declare const sonioxPublicAPI_zod_createTranscriptionBodyAudioUrlMaxOne: typeof createTranscriptionBodyAudioUrlMaxOne;
|
|
42424
41966
|
declare const sonioxPublicAPI_zod_createTranscriptionBodyAudioUrlRegExpOne: typeof createTranscriptionBodyAudioUrlRegExpOne;
|
|
@@ -42452,7 +41994,7 @@ declare const sonioxPublicAPI_zod_getTranscriptionsResponse: typeof getTranscrip
|
|
|
42452
41994
|
declare const sonioxPublicAPI_zod_uploadFileBody: typeof uploadFileBody;
|
|
42453
41995
|
declare const sonioxPublicAPI_zod_uploadFileBodyClientReferenceIdMaxOne: typeof uploadFileBodyClientReferenceIdMaxOne;
|
|
42454
41996
|
declare namespace sonioxPublicAPI_zod {
|
|
42455
|
-
export { sonioxPublicAPI_zod_createTemporaryApiKeyBody as createTemporaryApiKeyBody, sonioxPublicAPI_zod_createTemporaryApiKeyBodyClientReferenceIdMaxOne as createTemporaryApiKeyBodyClientReferenceIdMaxOne, sonioxPublicAPI_zod_createTemporaryApiKeyBodyExpiresInSecondsMax as createTemporaryApiKeyBodyExpiresInSecondsMax, sonioxPublicAPI_zod_createTranscriptionBody as createTranscriptionBody, sonioxPublicAPI_zod_createTranscriptionBodyAudioUrlMaxOne as createTranscriptionBodyAudioUrlMaxOne, sonioxPublicAPI_zod_createTranscriptionBodyAudioUrlRegExpOne as createTranscriptionBodyAudioUrlRegExpOne, sonioxPublicAPI_zod_createTranscriptionBodyClientReferenceIdMaxOne as createTranscriptionBodyClientReferenceIdMaxOne, sonioxPublicAPI_zod_createTranscriptionBodyLanguageHintsItemMax as createTranscriptionBodyLanguageHintsItemMax, sonioxPublicAPI_zod_createTranscriptionBodyLanguageHintsMaxOne as createTranscriptionBodyLanguageHintsMaxOne, sonioxPublicAPI_zod_createTranscriptionBodyModelMaxThree as createTranscriptionBodyModelMaxThree, sonioxPublicAPI_zod_createTranscriptionBodyWebhookAuthHeaderNameMaxOne as createTranscriptionBodyWebhookAuthHeaderNameMaxOne, sonioxPublicAPI_zod_createTranscriptionBodyWebhookAuthHeaderValueMaxOne as createTranscriptionBodyWebhookAuthHeaderValueMaxOne, sonioxPublicAPI_zod_createTranscriptionBodyWebhookUrlMaxOne as createTranscriptionBodyWebhookUrlMaxOne, sonioxPublicAPI_zod_createTranscriptionBodyWebhookUrlRegExpOne as createTranscriptionBodyWebhookUrlRegExpOne, sonioxPublicAPI_zod_deleteFileParams as deleteFileParams, sonioxPublicAPI_zod_deleteTranscriptionParams as deleteTranscriptionParams, sonioxPublicAPI_zod_getFileParams as getFileParams, sonioxPublicAPI_zod_getFileResponse as getFileResponse, sonioxPublicAPI_zod_getFilesCountResponse as getFilesCountResponse, sonioxPublicAPI_zod_getFilesQueryLimitDefault as getFilesQueryLimitDefault, sonioxPublicAPI_zod_getFilesQueryLimitMax as getFilesQueryLimitMax, sonioxPublicAPI_zod_getFilesQueryParams as getFilesQueryParams, sonioxPublicAPI_zod_getFilesResponse as getFilesResponse, sonioxPublicAPI_zod_getModelsResponse as getModelsResponse, sonioxPublicAPI_zod_getTranscriptionParams as getTranscriptionParams, sonioxPublicAPI_zod_getTranscriptionResponse as getTranscriptionResponse, sonioxPublicAPI_zod_getTranscriptionTranscriptParams as getTranscriptionTranscriptParams, sonioxPublicAPI_zod_getTranscriptionTranscriptResponse as getTranscriptionTranscriptResponse, sonioxPublicAPI_zod_getTranscriptionsCountResponse as getTranscriptionsCountResponse, sonioxPublicAPI_zod_getTranscriptionsQueryLimitDefault as getTranscriptionsQueryLimitDefault, sonioxPublicAPI_zod_getTranscriptionsQueryLimitMax as getTranscriptionsQueryLimitMax, sonioxPublicAPI_zod_getTranscriptionsQueryParams as getTranscriptionsQueryParams, sonioxPublicAPI_zod_getTranscriptionsResponse as getTranscriptionsResponse, sonioxPublicAPI_zod_uploadFileBody as uploadFileBody, sonioxPublicAPI_zod_uploadFileBodyClientReferenceIdMaxOne as uploadFileBodyClientReferenceIdMaxOne };
|
|
41997
|
+
export { sonioxPublicAPI_zod_createTemporaryApiKeyBody as createTemporaryApiKeyBody, sonioxPublicAPI_zod_createTemporaryApiKeyBodyClientReferenceIdMaxOne as createTemporaryApiKeyBodyClientReferenceIdMaxOne, sonioxPublicAPI_zod_createTemporaryApiKeyBodyExpiresInSecondsMax as createTemporaryApiKeyBodyExpiresInSecondsMax, sonioxPublicAPI_zod_createTemporaryApiKeyBodyMaxSessionDurationSecondsMaxOne as createTemporaryApiKeyBodyMaxSessionDurationSecondsMaxOne, sonioxPublicAPI_zod_createTranscriptionBody as createTranscriptionBody, sonioxPublicAPI_zod_createTranscriptionBodyAudioUrlMaxOne as createTranscriptionBodyAudioUrlMaxOne, sonioxPublicAPI_zod_createTranscriptionBodyAudioUrlRegExpOne as createTranscriptionBodyAudioUrlRegExpOne, sonioxPublicAPI_zod_createTranscriptionBodyClientReferenceIdMaxOne as createTranscriptionBodyClientReferenceIdMaxOne, sonioxPublicAPI_zod_createTranscriptionBodyLanguageHintsItemMax as createTranscriptionBodyLanguageHintsItemMax, sonioxPublicAPI_zod_createTranscriptionBodyLanguageHintsMaxOne as createTranscriptionBodyLanguageHintsMaxOne, sonioxPublicAPI_zod_createTranscriptionBodyModelMaxThree as createTranscriptionBodyModelMaxThree, sonioxPublicAPI_zod_createTranscriptionBodyWebhookAuthHeaderNameMaxOne as createTranscriptionBodyWebhookAuthHeaderNameMaxOne, sonioxPublicAPI_zod_createTranscriptionBodyWebhookAuthHeaderValueMaxOne as createTranscriptionBodyWebhookAuthHeaderValueMaxOne, sonioxPublicAPI_zod_createTranscriptionBodyWebhookUrlMaxOne as createTranscriptionBodyWebhookUrlMaxOne, sonioxPublicAPI_zod_createTranscriptionBodyWebhookUrlRegExpOne as createTranscriptionBodyWebhookUrlRegExpOne, sonioxPublicAPI_zod_deleteFileParams as deleteFileParams, sonioxPublicAPI_zod_deleteTranscriptionParams as deleteTranscriptionParams, sonioxPublicAPI_zod_getFileParams as getFileParams, sonioxPublicAPI_zod_getFileResponse as getFileResponse, sonioxPublicAPI_zod_getFilesCountResponse as getFilesCountResponse, sonioxPublicAPI_zod_getFilesQueryLimitDefault as getFilesQueryLimitDefault, sonioxPublicAPI_zod_getFilesQueryLimitMax as getFilesQueryLimitMax, sonioxPublicAPI_zod_getFilesQueryParams as getFilesQueryParams, sonioxPublicAPI_zod_getFilesResponse as getFilesResponse, sonioxPublicAPI_zod_getModelsResponse as getModelsResponse, sonioxPublicAPI_zod_getTranscriptionParams as getTranscriptionParams, sonioxPublicAPI_zod_getTranscriptionResponse as getTranscriptionResponse, sonioxPublicAPI_zod_getTranscriptionTranscriptParams as getTranscriptionTranscriptParams, sonioxPublicAPI_zod_getTranscriptionTranscriptResponse as getTranscriptionTranscriptResponse, sonioxPublicAPI_zod_getTranscriptionsCountResponse as getTranscriptionsCountResponse, sonioxPublicAPI_zod_getTranscriptionsQueryLimitDefault as getTranscriptionsQueryLimitDefault, sonioxPublicAPI_zod_getTranscriptionsQueryLimitMax as getTranscriptionsQueryLimitMax, sonioxPublicAPI_zod_getTranscriptionsQueryParams as getTranscriptionsQueryParams, sonioxPublicAPI_zod_getTranscriptionsResponse as getTranscriptionsResponse, sonioxPublicAPI_zod_uploadFileBody as uploadFileBody, sonioxPublicAPI_zod_uploadFileBodyClientReferenceIdMaxOne as uploadFileBodyClientReferenceIdMaxOne };
|
|
42456
41998
|
}
|
|
42457
41999
|
|
|
42458
42000
|
/**
|
|
@@ -44234,6 +43776,7 @@ declare const AssemblyAITranscriptionSchema: z.ZodObject<{
|
|
|
44234
43776
|
summary_model: z.ZodOptional<z.ZodEnum<["informative", "conversational", "catchy"]>>;
|
|
44235
43777
|
summary_type: z.ZodOptional<z.ZodEnum<["bullets", "bullets_verbose", "gist", "headline", "paragraph"]>>;
|
|
44236
43778
|
remove_audio_tags: z.ZodOptional<z.ZodUnion<[z.ZodEnum<["all"]>, z.ZodNull]>>;
|
|
43779
|
+
temperature: z.ZodOptional<z.ZodNumber>;
|
|
44237
43780
|
webhook_auth_header_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
44238
43781
|
webhook_auth_header_value: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
44239
43782
|
webhook_url: z.ZodOptional<z.ZodString>;
|
|
@@ -44320,6 +43863,7 @@ declare const AssemblyAITranscriptionSchema: z.ZodObject<{
|
|
|
44320
43863
|
summary_model?: "informative" | "conversational" | "catchy" | undefined;
|
|
44321
43864
|
summary_type?: "bullets" | "bullets_verbose" | "gist" | "headline" | "paragraph" | undefined;
|
|
44322
43865
|
remove_audio_tags?: "all" | null | undefined;
|
|
43866
|
+
temperature?: number | undefined;
|
|
44323
43867
|
webhook_auth_header_name?: string | null | undefined;
|
|
44324
43868
|
webhook_auth_header_value?: string | null | undefined;
|
|
44325
43869
|
webhook_url?: string | undefined;
|
|
@@ -44404,6 +43948,7 @@ declare const AssemblyAITranscriptionSchema: z.ZodObject<{
|
|
|
44404
43948
|
summary_model?: "informative" | "conversational" | "catchy" | undefined;
|
|
44405
43949
|
summary_type?: "bullets" | "bullets_verbose" | "gist" | "headline" | "paragraph" | undefined;
|
|
44406
43950
|
remove_audio_tags?: "all" | null | undefined;
|
|
43951
|
+
temperature?: number | undefined;
|
|
44407
43952
|
webhook_auth_header_name?: string | null | undefined;
|
|
44408
43953
|
webhook_auth_header_value?: string | null | undefined;
|
|
44409
43954
|
webhook_url?: string | undefined;
|
|
@@ -44594,8 +44139,8 @@ declare const OpenAITranscriptionSchema: z.ZodObject<{
|
|
|
44594
44139
|
file: File;
|
|
44595
44140
|
language?: string | undefined;
|
|
44596
44141
|
prompt?: string | undefined;
|
|
44597
|
-
response_format?: "srt" | "vtt" | "json" | "text" | "verbose_json" | "diarized_json" | undefined;
|
|
44598
44142
|
temperature?: number | undefined;
|
|
44143
|
+
response_format?: "srt" | "vtt" | "json" | "text" | "verbose_json" | "diarized_json" | undefined;
|
|
44599
44144
|
include?: "logprobs"[] | undefined;
|
|
44600
44145
|
timestamp_granularities?: ("word" | "segment")[] | undefined;
|
|
44601
44146
|
stream?: boolean | null | undefined;
|