UNPKG

@soniox/soniox-node

Version:

Node.js client library for Soniox speech recognition service.

777 lines (725 loc) 113 kB
declare module '@soniox/soniox-node/proto/google/protobuf/Timestamp' { import type { Long } from '@grpc/proto-loader'; export interface Timestamp { 'seconds'?: (number | string | Long); 'nanos'?: (number); } export interface Timestamp__Output { 'seconds': (string); 'nanos': (number); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/AddSpeakerAudioRequest' { /// <reference types="node" /> export interface AddSpeakerAudioRequest { 'api_key'?: (string); 'speaker_name'?: (string); 'audio_name'?: (string); 'audio'?: (Buffer | Uint8Array | string); } export interface AddSpeakerAudioRequest__Output { 'api_key': (string); 'speaker_name': (string); 'audio_name': (string); 'audio': (Buffer); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/AddSpeakerAudioResponse' { import type { Timestamp as _google_protobuf_Timestamp, Timestamp__Output as _google_protobuf_Timestamp__Output } from '@soniox/soniox-node/proto/google/protobuf/Timestamp'; export interface AddSpeakerAudioResponse { 'speaker_name'?: (string); 'audio_name'?: (string); 'created'?: (_google_protobuf_Timestamp | null); 'duration_ms'?: (number); } export interface AddSpeakerAudioResponse__Output { 'speaker_name': (string); 'audio_name': (string); 'created': (_google_protobuf_Timestamp__Output | null); 'duration_ms': (number); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/AddSpeakerRequest' { export interface AddSpeakerRequest { 'api_key'?: (string); 'name'?: (string); } export interface AddSpeakerRequest__Output { 'api_key': (string); 'name': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/AddSpeakerResponse' { import type { Timestamp as _google_protobuf_Timestamp, Timestamp__Output as _google_protobuf_Timestamp__Output } from '@soniox/soniox-node/proto/google/protobuf/Timestamp'; export interface AddSpeakerResponse { 'name'?: (string); 'created'?: (_google_protobuf_Timestamp | null); } export interface AddSpeakerResponse__Output { 'name': (string); 'created': (_google_protobuf_Timestamp__Output | null); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/CreateSpeechContextRequest' { import type { SpeechContext as _soniox_speech_service_SpeechContext, SpeechContext__Output as _soniox_speech_service_SpeechContext__Output } from '@soniox/soniox-node/proto/soniox/speech_service/SpeechContext'; export interface CreateSpeechContextRequest { 'api_key'?: (string); 'speech_context'?: (_soniox_speech_service_SpeechContext | null); } export interface CreateSpeechContextRequest__Output { 'api_key': (string); 'speech_context': (_soniox_speech_service_SpeechContext__Output | null); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/CreateSpeechContextResponse' { export interface CreateSpeechContextResponse { } export interface CreateSpeechContextResponse__Output { } } declare module '@soniox/soniox-node/proto/soniox/speech_service/CreateTemporaryApiKeyRequest' { export interface CreateTemporaryApiKeyRequest { 'api_key'?: (string); 'usage_type'?: (string); 'client_request_reference'?: (string); 'expires_in_s'?: (number); } export interface CreateTemporaryApiKeyRequest__Output { 'api_key': (string); 'usage_type': (string); 'client_request_reference': (string); 'expires_in_s': (number); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/CreateTemporaryApiKeyResponse' { import type { Timestamp as _google_protobuf_Timestamp, Timestamp__Output as _google_protobuf_Timestamp__Output } from '@soniox/soniox-node/proto/google/protobuf/Timestamp'; export interface CreateTemporaryApiKeyResponse { 'key'?: (string); 'expires_datetime'?: (_google_protobuf_Timestamp | null); } export interface CreateTemporaryApiKeyResponse__Output { 'key': (string); 'expires_datetime': (_google_protobuf_Timestamp__Output | null); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/DeleteObjectRequest' { export interface DeleteObjectRequest { 'api_key'?: (string); 'object_id'?: (string); } export interface DeleteObjectRequest__Output { 'api_key': (string); 'object_id': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/DeleteObjectResponse' { export interface DeleteObjectResponse { } export interface DeleteObjectResponse__Output { } } declare module '@soniox/soniox-node/proto/soniox/speech_service/DeleteSpeechContextRequest' { export interface DeleteSpeechContextRequest { 'api_key'?: (string); 'name'?: (string); } export interface DeleteSpeechContextRequest__Output { 'api_key': (string); 'name': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/DeleteSpeechContextResponse' { export interface DeleteSpeechContextResponse { } export interface DeleteSpeechContextResponse__Output { } } declare module '@soniox/soniox-node/proto/soniox/speech_service/DeleteTranscribeAsyncFileRequest' { export interface DeleteTranscribeAsyncFileRequest { 'api_key'?: (string); 'file_id'?: (string); } export interface DeleteTranscribeAsyncFileRequest__Output { 'api_key': (string); 'file_id': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/DeleteTranscribeAsyncFileResponse' { export interface DeleteTranscribeAsyncFileResponse { } export interface DeleteTranscribeAsyncFileResponse__Output { } } declare module '@soniox/soniox-node/proto/soniox/speech_service/GetAudioRequest' { export interface _soniox_speech_service_GetAudioRequest_TimeSegment { 'start_ms'?: (number); 'duration_ms'?: (number); } export interface _soniox_speech_service_GetAudioRequest_TimeSegment__Output { 'start_ms': (number); 'duration_ms': (number); } export interface _soniox_speech_service_GetAudioRequest_TokenSegment { 'token_start'?: (number); 'token_end'?: (number); } export interface _soniox_speech_service_GetAudioRequest_TokenSegment__Output { 'token_start': (number); 'token_end': (number); } export interface GetAudioRequest { 'api_key'?: (string); 'object_id'?: (string); 'time_segment'?: (_soniox_speech_service_GetAudioRequest_TimeSegment | null); 'token_segment'?: (_soniox_speech_service_GetAudioRequest_TokenSegment | null); 'audio_bytes_format'?: (string); 'oneof_segment'?: "time_segment" | "token_segment"; } export interface GetAudioRequest__Output { 'api_key': (string); 'object_id': (string); 'time_segment'?: (_soniox_speech_service_GetAudioRequest_TimeSegment__Output | null); 'token_segment'?: (_soniox_speech_service_GetAudioRequest_TokenSegment__Output | null); 'audio_bytes_format': (string); 'oneof_segment': "time_segment" | "token_segment"; } } declare module '@soniox/soniox-node/proto/soniox/speech_service/GetAudioResponse' { /// <reference types="node" /> export interface GetAudioResponse { 'object_id'?: (string); 'start_ms'?: (number); 'duration_ms'?: (number); 'total_duration_ms'?: (number); 'data'?: (Buffer | Uint8Array | string); 'num_audio_channels'?: (number); } export interface GetAudioResponse__Output { 'object_id': (string); 'start_ms': (number); 'duration_ms': (number); 'total_duration_ms': (number); 'data': (Buffer); 'num_audio_channels': (number); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/GetObjectRequest' { export interface GetObjectRequest { 'api_key'?: (string); 'object_id'?: (string); } export interface GetObjectRequest__Output { 'api_key': (string); 'object_id': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/GetObjectResponse' { import type { StoredObject as _soniox_speech_service_StoredObject, StoredObject__Output as _soniox_speech_service_StoredObject__Output } from '@soniox/soniox-node/proto/soniox/speech_service/StoredObject'; export interface GetObjectResponse { 'object'?: (_soniox_speech_service_StoredObject | null); } export interface GetObjectResponse__Output { 'object': (_soniox_speech_service_StoredObject__Output | null); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/GetSpeakerAudioRequest' { export interface GetSpeakerAudioRequest { 'api_key'?: (string); 'speaker_name'?: (string); 'audio_name'?: (string); } export interface GetSpeakerAudioRequest__Output { 'api_key': (string); 'speaker_name': (string); 'audio_name': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/GetSpeakerAudioResponse' { /// <reference types="node" /> import type { Timestamp as _google_protobuf_Timestamp, Timestamp__Output as _google_protobuf_Timestamp__Output } from '@soniox/soniox-node/proto/google/protobuf/Timestamp'; export interface GetSpeakerAudioResponse { 'speaker_name'?: (string); 'audio_name'?: (string); 'created'?: (_google_protobuf_Timestamp | null); 'duration_ms'?: (number); 'audio'?: (Buffer | Uint8Array | string); } export interface GetSpeakerAudioResponse__Output { 'speaker_name': (string); 'audio_name': (string); 'created': (_google_protobuf_Timestamp__Output | null); 'duration_ms': (number); 'audio': (Buffer); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/GetSpeakerRequest' { export interface GetSpeakerRequest { 'api_key'?: (string); 'name'?: (string); } export interface GetSpeakerRequest__Output { 'api_key': (string); 'name': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/GetSpeakerResponse' { import type { Timestamp as _google_protobuf_Timestamp, Timestamp__Output as _google_protobuf_Timestamp__Output } from '@soniox/soniox-node/proto/google/protobuf/Timestamp'; import type { GetSpeakerResponseAudio as _soniox_speech_service_GetSpeakerResponseAudio, GetSpeakerResponseAudio__Output as _soniox_speech_service_GetSpeakerResponseAudio__Output } from '@soniox/soniox-node/proto/soniox/speech_service/GetSpeakerResponseAudio'; export interface GetSpeakerResponse { 'name'?: (string); 'created'?: (_google_protobuf_Timestamp | null); 'audios'?: (_soniox_speech_service_GetSpeakerResponseAudio)[]; } export interface GetSpeakerResponse__Output { 'name': (string); 'created': (_google_protobuf_Timestamp__Output | null); 'audios': (_soniox_speech_service_GetSpeakerResponseAudio__Output)[]; } } declare module '@soniox/soniox-node/proto/soniox/speech_service/GetSpeakerResponseAudio' { import type { Timestamp as _google_protobuf_Timestamp, Timestamp__Output as _google_protobuf_Timestamp__Output } from '@soniox/soniox-node/proto/google/protobuf/Timestamp'; export interface GetSpeakerResponseAudio { 'audio_name'?: (string); 'created'?: (_google_protobuf_Timestamp | null); 'duration_ms'?: (number); } export interface GetSpeakerResponseAudio__Output { 'audio_name': (string); 'created': (_google_protobuf_Timestamp__Output | null); 'duration_ms': (number); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/GetSpeechContextRequest' { export interface GetSpeechContextRequest { 'api_key'?: (string); 'name'?: (string); } export interface GetSpeechContextRequest__Output { 'api_key': (string); 'name': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/GetSpeechContextResponse' { import type { SpeechContext as _soniox_speech_service_SpeechContext, SpeechContext__Output as _soniox_speech_service_SpeechContext__Output } from '@soniox/soniox-node/proto/soniox/speech_service/SpeechContext'; export interface GetSpeechContextResponse { 'speech_context'?: (_soniox_speech_service_SpeechContext | null); } export interface GetSpeechContextResponse__Output { 'speech_context': (_soniox_speech_service_SpeechContext__Output | null); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/GetTranscribeAsyncResultRequest' { export interface GetTranscribeAsyncResultRequest { 'api_key'?: (string); 'file_id'?: (string); } export interface GetTranscribeAsyncResultRequest__Output { 'api_key': (string); 'file_id': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/GetTranscribeAsyncResultResponse' { import type { Result as _soniox_speech_service_Result, Result__Output as _soniox_speech_service_Result__Output } from '@soniox/soniox-node/proto/soniox/speech_service/Result'; import type { TranscriptionMetadata as _soniox_speech_service_TranscriptionMetadata, TranscriptionMetadata__Output as _soniox_speech_service_TranscriptionMetadata__Output } from '@soniox/soniox-node/proto/soniox/speech_service/TranscriptionMetadata'; export interface GetTranscribeAsyncResultResponse { 'result'?: (_soniox_speech_service_Result | null); 'separate_recognition_per_channel'?: (boolean); 'metadata'?: (_soniox_speech_service_TranscriptionMetadata | null); } export interface GetTranscribeAsyncResultResponse__Output { 'result': (_soniox_speech_service_Result__Output | null); 'separate_recognition_per_channel': (boolean); 'metadata': (_soniox_speech_service_TranscriptionMetadata__Output | null); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/GetTranscribeAsyncStatusRequest' { export interface GetTranscribeAsyncStatusRequest { 'api_key'?: (string); 'file_id'?: (string); } export interface GetTranscribeAsyncStatusRequest__Output { 'api_key': (string); 'file_id': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/GetTranscribeAsyncStatusResponse' { import type { TranscribeAsyncFileStatus as _soniox_speech_service_TranscribeAsyncFileStatus, TranscribeAsyncFileStatus__Output as _soniox_speech_service_TranscribeAsyncFileStatus__Output } from '@soniox/soniox-node/proto/soniox/speech_service/TranscribeAsyncFileStatus'; export interface GetTranscribeAsyncStatusResponse { 'files'?: (_soniox_speech_service_TranscribeAsyncFileStatus)[]; } export interface GetTranscribeAsyncStatusResponse__Output { 'files': (_soniox_speech_service_TranscribeAsyncFileStatus__Output)[]; } } declare module '@soniox/soniox-node/proto/soniox/speech_service/Keyterm' { export interface Keyterm { 'text'?: (string); 'score'?: (number | string); 'token_start_indexes'?: (number)[]; } export interface Keyterm__Output { 'text': (string); 'score': (number); 'token_start_indexes': (number)[]; } } declare module '@soniox/soniox-node/proto/soniox/speech_service/ListObjectsRequest' { import type { Timestamp as _google_protobuf_Timestamp, Timestamp__Output as _google_protobuf_Timestamp__Output } from '@soniox/soniox-node/proto/google/protobuf/Timestamp'; import type { Long } from '@grpc/proto-loader'; export interface ListObjectsRequest { 'api_key'?: (string); 'stored_datetime_from'?: (_google_protobuf_Timestamp | null); 'stored_datetime_to'?: (_google_protobuf_Timestamp | null); 'start'?: (number | string | Long); 'num'?: (number | string | Long); } export interface ListObjectsRequest__Output { 'api_key': (string); 'stored_datetime_from': (_google_protobuf_Timestamp__Output | null); 'stored_datetime_to': (_google_protobuf_Timestamp__Output | null); 'start': (string); 'num': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/ListObjectsResponse' { import type { ListObjectsResponseObject as _soniox_speech_service_ListObjectsResponseObject, ListObjectsResponseObject__Output as _soniox_speech_service_ListObjectsResponseObject__Output } from '@soniox/soniox-node/proto/soniox/speech_service/ListObjectsResponseObject'; import type { Long } from '@grpc/proto-loader'; export interface ListObjectsResponse { 'start'?: (number | string | Long); 'objects'?: (_soniox_speech_service_ListObjectsResponseObject)[]; } export interface ListObjectsResponse__Output { 'start': (string); 'objects': (_soniox_speech_service_ListObjectsResponseObject__Output)[]; } } declare module '@soniox/soniox-node/proto/soniox/speech_service/ListObjectsResponseObject' { import type { Timestamp as _google_protobuf_Timestamp, Timestamp__Output as _google_protobuf_Timestamp__Output } from '@soniox/soniox-node/proto/google/protobuf/Timestamp'; export interface ListObjectsResponseObject { 'object_id'?: (string); 'stored_datetime'?: (_google_protobuf_Timestamp | null); 'audio_stored'?: (boolean); 'transcript_stored'?: (boolean); 'audio_duration_ms'?: (number); 'stored_audio_ms'?: (number); } export interface ListObjectsResponseObject__Output { 'object_id': (string); 'stored_datetime': (_google_protobuf_Timestamp__Output | null); 'audio_stored': (boolean); 'transcript_stored': (boolean); 'audio_duration_ms': (number); 'stored_audio_ms': (number); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/ListSpeakersRequest' { export interface ListSpeakersRequest { 'api_key'?: (string); } export interface ListSpeakersRequest__Output { 'api_key': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/ListSpeakersResponse' { import type { ListSpeakersResponseSpeaker as _soniox_speech_service_ListSpeakersResponseSpeaker, ListSpeakersResponseSpeaker__Output as _soniox_speech_service_ListSpeakersResponseSpeaker__Output } from '@soniox/soniox-node/proto/soniox/speech_service/ListSpeakersResponseSpeaker'; export interface ListSpeakersResponse { 'speakers'?: (_soniox_speech_service_ListSpeakersResponseSpeaker)[]; } export interface ListSpeakersResponse__Output { 'speakers': (_soniox_speech_service_ListSpeakersResponseSpeaker__Output)[]; } } declare module '@soniox/soniox-node/proto/soniox/speech_service/ListSpeakersResponseSpeaker' { import type { Timestamp as _google_protobuf_Timestamp, Timestamp__Output as _google_protobuf_Timestamp__Output } from '@soniox/soniox-node/proto/google/protobuf/Timestamp'; export interface ListSpeakersResponseSpeaker { 'name'?: (string); 'created'?: (_google_protobuf_Timestamp | null); 'num_audios'?: (number); } export interface ListSpeakersResponseSpeaker__Output { 'name': (string); 'created': (_google_protobuf_Timestamp__Output | null); 'num_audios': (number); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/ListSpeechContextNamesRequest' { export interface ListSpeechContextNamesRequest { 'api_key'?: (string); } export interface ListSpeechContextNamesRequest__Output { 'api_key': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/ListSpeechContextNamesResponse' { export interface ListSpeechContextNamesResponse { 'names'?: (string)[]; } export interface ListSpeechContextNamesResponse__Output { 'names': (string)[]; } } declare module '@soniox/soniox-node/proto/soniox/speech_service/Paragraph' { export interface Paragraph { 'sentence_start'?: (number); 'sentence_end'?: (number); } export interface Paragraph__Output { 'sentence_start': (number); 'sentence_end': (number); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/RemoveSpeakerAudioRequest' { export interface RemoveSpeakerAudioRequest { 'api_key'?: (string); 'speaker_name'?: (string); 'audio_name'?: (string); } export interface RemoveSpeakerAudioRequest__Output { 'api_key': (string); 'speaker_name': (string); 'audio_name': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/RemoveSpeakerAudioResponse' { export interface RemoveSpeakerAudioResponse { } export interface RemoveSpeakerAudioResponse__Output { } } declare module '@soniox/soniox-node/proto/soniox/speech_service/RemoveSpeakerRequest' { export interface RemoveSpeakerRequest { 'api_key'?: (string); 'name'?: (string); } export interface RemoveSpeakerRequest__Output { 'api_key': (string); 'name': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/RemoveSpeakerResponse' { export interface RemoveSpeakerResponse { } export interface RemoveSpeakerResponse__Output { } } declare module '@soniox/soniox-node/proto/soniox/speech_service/Result' { import type { Word as _soniox_speech_service_Word, Word__Output as _soniox_speech_service_Word__Output } from '@soniox/soniox-node/proto/soniox/speech_service/Word'; import type { ResultSpeaker as _soniox_speech_service_ResultSpeaker, ResultSpeaker__Output as _soniox_speech_service_ResultSpeaker__Output } from '@soniox/soniox-node/proto/soniox/speech_service/ResultSpeaker'; export interface Result { 'words'?: (_soniox_speech_service_Word)[]; 'final_proc_time_ms'?: (number); 'total_proc_time_ms'?: (number); 'speakers'?: (_soniox_speech_service_ResultSpeaker)[]; 'channel'?: (number); } export interface Result__Output { 'words': (_soniox_speech_service_Word__Output)[]; 'final_proc_time_ms': (number); 'total_proc_time_ms': (number); 'speakers': (_soniox_speech_service_ResultSpeaker__Output)[]; 'channel': (number); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/ResultSpeaker' { export interface ResultSpeaker { 'speaker'?: (number); 'name'?: (string); } export interface ResultSpeaker__Output { 'speaker': (number); 'name': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/SearchRequest' { import type { Timestamp as _google_protobuf_Timestamp, Timestamp__Output as _google_protobuf_Timestamp__Output } from '@soniox/soniox-node/proto/google/protobuf/Timestamp'; export interface SearchRequest { 'api_key'?: (string); 'object_id'?: (string); 'metadata_query'?: (string); 'datetime_from'?: (_google_protobuf_Timestamp | null); 'datetime_to'?: (_google_protobuf_Timestamp | null); 'text_query'?: (string); 'start'?: (number); 'num'?: (number); } export interface SearchRequest__Output { 'api_key': (string); 'object_id': (string); 'metadata_query': (string); 'datetime_from': (_google_protobuf_Timestamp__Output | null); 'datetime_to': (_google_protobuf_Timestamp__Output | null); 'text_query': (string); 'start': (number); 'num': (number); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/SearchResponse' { import type { SearchResult as _soniox_speech_service_SearchResult, SearchResult__Output as _soniox_speech_service_SearchResult__Output } from '@soniox/soniox-node/proto/soniox/speech_service/SearchResult'; export interface SearchResponse { 'num_found'?: (number); 'start'?: (number); 'results'?: (_soniox_speech_service_SearchResult)[]; } export interface SearchResponse__Output { 'num_found': (number); 'start': (number); 'results': (_soniox_speech_service_SearchResult__Output)[]; } } declare module '@soniox/soniox-node/proto/soniox/speech_service/SearchResult' { import type { Timestamp as _google_protobuf_Timestamp, Timestamp__Output as _google_protobuf_Timestamp__Output } from '@soniox/soniox-node/proto/google/protobuf/Timestamp'; export interface SearchResult { 'object_id'?: (string); 'metadata'?: ({ [key: string]: string; }); 'title'?: (string); 'datetime'?: (_google_protobuf_Timestamp | null); 'duration_ms'?: (number); 'preview'?: (string); } export interface SearchResult__Output { 'object_id': (string); 'metadata': ({ [key: string]: string; }); 'title': (string); 'datetime': (_google_protobuf_Timestamp__Output | null); 'duration_ms': (number); 'preview': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/Sentence' { export interface Sentence { 'token_start'?: (number); 'token_end'?: (number); } export interface Sentence__Output { 'token_start': (number); 'token_end': (number); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/SpeechContext' { import type { SpeechContextEntry as _soniox_speech_service_SpeechContextEntry, SpeechContextEntry__Output as _soniox_speech_service_SpeechContextEntry__Output } from '@soniox/soniox-node/proto/soniox/speech_service/SpeechContextEntry'; export interface SpeechContext { 'entries'?: (_soniox_speech_service_SpeechContextEntry)[]; 'name'?: (string); } export interface SpeechContext__Output { 'entries': (_soniox_speech_service_SpeechContextEntry__Output)[]; 'name': (string); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/SpeechContextEntry' { export interface SpeechContextEntry { 'phrases'?: (string)[]; 'boost'?: (number | string); } export interface SpeechContextEntry__Output { 'phrases': (string)[]; 'boost': (number); } } declare module '@soniox/soniox-node/proto/soniox/speech_service/SpeechService' { import type * as grpc from '@grpc/grpc-js'; import type { MethodDefinition } from '@grpc/proto-loader'; import type { AddSpeakerAudioRequest as _soniox_speech_service_AddSpeakerAudioRequest, AddSpeakerAudioRequest__Output as _soniox_speech_service_AddSpeakerAudioRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/AddSpeakerAudioRequest'; import type { AddSpeakerAudioResponse as _soniox_speech_service_AddSpeakerAudioResponse, AddSpeakerAudioResponse__Output as _soniox_speech_service_AddSpeakerAudioResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/AddSpeakerAudioResponse'; import type { AddSpeakerRequest as _soniox_speech_service_AddSpeakerRequest, AddSpeakerRequest__Output as _soniox_speech_service_AddSpeakerRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/AddSpeakerRequest'; import type { AddSpeakerResponse as _soniox_speech_service_AddSpeakerResponse, AddSpeakerResponse__Output as _soniox_speech_service_AddSpeakerResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/AddSpeakerResponse'; import type { CreateSpeechContextRequest as _soniox_speech_service_CreateSpeechContextRequest, CreateSpeechContextRequest__Output as _soniox_speech_service_CreateSpeechContextRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/CreateSpeechContextRequest'; import type { CreateSpeechContextResponse as _soniox_speech_service_CreateSpeechContextResponse, CreateSpeechContextResponse__Output as _soniox_speech_service_CreateSpeechContextResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/CreateSpeechContextResponse'; import type { CreateTemporaryApiKeyRequest as _soniox_speech_service_CreateTemporaryApiKeyRequest, CreateTemporaryApiKeyRequest__Output as _soniox_speech_service_CreateTemporaryApiKeyRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/CreateTemporaryApiKeyRequest'; import type { CreateTemporaryApiKeyResponse as _soniox_speech_service_CreateTemporaryApiKeyResponse, CreateTemporaryApiKeyResponse__Output as _soniox_speech_service_CreateTemporaryApiKeyResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/CreateTemporaryApiKeyResponse'; import type { DeleteObjectRequest as _soniox_speech_service_DeleteObjectRequest, DeleteObjectRequest__Output as _soniox_speech_service_DeleteObjectRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/DeleteObjectRequest'; import type { DeleteObjectResponse as _soniox_speech_service_DeleteObjectResponse, DeleteObjectResponse__Output as _soniox_speech_service_DeleteObjectResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/DeleteObjectResponse'; import type { DeleteSpeechContextRequest as _soniox_speech_service_DeleteSpeechContextRequest, DeleteSpeechContextRequest__Output as _soniox_speech_service_DeleteSpeechContextRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/DeleteSpeechContextRequest'; import type { DeleteSpeechContextResponse as _soniox_speech_service_DeleteSpeechContextResponse, DeleteSpeechContextResponse__Output as _soniox_speech_service_DeleteSpeechContextResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/DeleteSpeechContextResponse'; import type { DeleteTranscribeAsyncFileRequest as _soniox_speech_service_DeleteTranscribeAsyncFileRequest, DeleteTranscribeAsyncFileRequest__Output as _soniox_speech_service_DeleteTranscribeAsyncFileRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/DeleteTranscribeAsyncFileRequest'; import type { DeleteTranscribeAsyncFileResponse as _soniox_speech_service_DeleteTranscribeAsyncFileResponse, DeleteTranscribeAsyncFileResponse__Output as _soniox_speech_service_DeleteTranscribeAsyncFileResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/DeleteTranscribeAsyncFileResponse'; import type { GetAudioRequest as _soniox_speech_service_GetAudioRequest, GetAudioRequest__Output as _soniox_speech_service_GetAudioRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/GetAudioRequest'; import type { GetAudioResponse as _soniox_speech_service_GetAudioResponse, GetAudioResponse__Output as _soniox_speech_service_GetAudioResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/GetAudioResponse'; import type { GetObjectRequest as _soniox_speech_service_GetObjectRequest, GetObjectRequest__Output as _soniox_speech_service_GetObjectRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/GetObjectRequest'; import type { GetObjectResponse as _soniox_speech_service_GetObjectResponse, GetObjectResponse__Output as _soniox_speech_service_GetObjectResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/GetObjectResponse'; import type { GetSpeakerAudioRequest as _soniox_speech_service_GetSpeakerAudioRequest, GetSpeakerAudioRequest__Output as _soniox_speech_service_GetSpeakerAudioRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/GetSpeakerAudioRequest'; import type { GetSpeakerAudioResponse as _soniox_speech_service_GetSpeakerAudioResponse, GetSpeakerAudioResponse__Output as _soniox_speech_service_GetSpeakerAudioResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/GetSpeakerAudioResponse'; import type { GetSpeakerRequest as _soniox_speech_service_GetSpeakerRequest, GetSpeakerRequest__Output as _soniox_speech_service_GetSpeakerRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/GetSpeakerRequest'; import type { GetSpeakerResponse as _soniox_speech_service_GetSpeakerResponse, GetSpeakerResponse__Output as _soniox_speech_service_GetSpeakerResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/GetSpeakerResponse'; import type { GetSpeechContextRequest as _soniox_speech_service_GetSpeechContextRequest, GetSpeechContextRequest__Output as _soniox_speech_service_GetSpeechContextRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/GetSpeechContextRequest'; import type { GetSpeechContextResponse as _soniox_speech_service_GetSpeechContextResponse, GetSpeechContextResponse__Output as _soniox_speech_service_GetSpeechContextResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/GetSpeechContextResponse'; import type { GetTranscribeAsyncResultRequest as _soniox_speech_service_GetTranscribeAsyncResultRequest, GetTranscribeAsyncResultRequest__Output as _soniox_speech_service_GetTranscribeAsyncResultRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/GetTranscribeAsyncResultRequest'; import type { GetTranscribeAsyncResultResponse as _soniox_speech_service_GetTranscribeAsyncResultResponse, GetTranscribeAsyncResultResponse__Output as _soniox_speech_service_GetTranscribeAsyncResultResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/GetTranscribeAsyncResultResponse'; import type { GetTranscribeAsyncStatusRequest as _soniox_speech_service_GetTranscribeAsyncStatusRequest, GetTranscribeAsyncStatusRequest__Output as _soniox_speech_service_GetTranscribeAsyncStatusRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/GetTranscribeAsyncStatusRequest'; import type { GetTranscribeAsyncStatusResponse as _soniox_speech_service_GetTranscribeAsyncStatusResponse, GetTranscribeAsyncStatusResponse__Output as _soniox_speech_service_GetTranscribeAsyncStatusResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/GetTranscribeAsyncStatusResponse'; import type { ListObjectsRequest as _soniox_speech_service_ListObjectsRequest, ListObjectsRequest__Output as _soniox_speech_service_ListObjectsRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/ListObjectsRequest'; import type { ListObjectsResponse as _soniox_speech_service_ListObjectsResponse, ListObjectsResponse__Output as _soniox_speech_service_ListObjectsResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/ListObjectsResponse'; import type { ListSpeakersRequest as _soniox_speech_service_ListSpeakersRequest, ListSpeakersRequest__Output as _soniox_speech_service_ListSpeakersRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/ListSpeakersRequest'; import type { ListSpeakersResponse as _soniox_speech_service_ListSpeakersResponse, ListSpeakersResponse__Output as _soniox_speech_service_ListSpeakersResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/ListSpeakersResponse'; import type { ListSpeechContextNamesRequest as _soniox_speech_service_ListSpeechContextNamesRequest, ListSpeechContextNamesRequest__Output as _soniox_speech_service_ListSpeechContextNamesRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/ListSpeechContextNamesRequest'; import type { ListSpeechContextNamesResponse as _soniox_speech_service_ListSpeechContextNamesResponse, ListSpeechContextNamesResponse__Output as _soniox_speech_service_ListSpeechContextNamesResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/ListSpeechContextNamesResponse'; import type { RemoveSpeakerAudioRequest as _soniox_speech_service_RemoveSpeakerAudioRequest, RemoveSpeakerAudioRequest__Output as _soniox_speech_service_RemoveSpeakerAudioRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/RemoveSpeakerAudioRequest'; import type { RemoveSpeakerAudioResponse as _soniox_speech_service_RemoveSpeakerAudioResponse, RemoveSpeakerAudioResponse__Output as _soniox_speech_service_RemoveSpeakerAudioResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/RemoveSpeakerAudioResponse'; import type { RemoveSpeakerRequest as _soniox_speech_service_RemoveSpeakerRequest, RemoveSpeakerRequest__Output as _soniox_speech_service_RemoveSpeakerRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/RemoveSpeakerRequest'; import type { RemoveSpeakerResponse as _soniox_speech_service_RemoveSpeakerResponse, RemoveSpeakerResponse__Output as _soniox_speech_service_RemoveSpeakerResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/RemoveSpeakerResponse'; import type { SearchRequest as _soniox_speech_service_SearchRequest, SearchRequest__Output as _soniox_speech_service_SearchRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/SearchRequest'; import type { SearchResponse as _soniox_speech_service_SearchResponse, SearchResponse__Output as _soniox_speech_service_SearchResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/SearchResponse'; import type { TranscribeAsyncRequest as _soniox_speech_service_TranscribeAsyncRequest, TranscribeAsyncRequest__Output as _soniox_speech_service_TranscribeAsyncRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/TranscribeAsyncRequest'; import type { TranscribeAsyncResponse as _soniox_speech_service_TranscribeAsyncResponse, TranscribeAsyncResponse__Output as _soniox_speech_service_TranscribeAsyncResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/TranscribeAsyncResponse'; import type { TranscribeMeetingRequest as _soniox_speech_service_TranscribeMeetingRequest, TranscribeMeetingRequest__Output as _soniox_speech_service_TranscribeMeetingRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/TranscribeMeetingRequest'; import type { TranscribeMeetingResponse as _soniox_speech_service_TranscribeMeetingResponse, TranscribeMeetingResponse__Output as _soniox_speech_service_TranscribeMeetingResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/TranscribeMeetingResponse'; import type { TranscribeRequest as _soniox_speech_service_TranscribeRequest, TranscribeRequest__Output as _soniox_speech_service_TranscribeRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/TranscribeRequest'; import type { TranscribeResponse as _soniox_speech_service_TranscribeResponse, TranscribeResponse__Output as _soniox_speech_service_TranscribeResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/TranscribeResponse'; import type { TranscribeStreamRequest as _soniox_speech_service_TranscribeStreamRequest, TranscribeStreamRequest__Output as _soniox_speech_service_TranscribeStreamRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/TranscribeStreamRequest'; import type { TranscribeStreamResponse as _soniox_speech_service_TranscribeStreamResponse, TranscribeStreamResponse__Output as _soniox_speech_service_TranscribeStreamResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/TranscribeStreamResponse'; import type { UpdateSpeechContextRequest as _soniox_speech_service_UpdateSpeechContextRequest, UpdateSpeechContextRequest__Output as _soniox_speech_service_UpdateSpeechContextRequest__Output } from '@soniox/soniox-node/proto/soniox/speech_service/UpdateSpeechContextRequest'; import type { UpdateSpeechContextResponse as _soniox_speech_service_UpdateSpeechContextResponse, UpdateSpeechContextResponse__Output as _soniox_speech_service_UpdateSpeechContextResponse__Output } from '@soniox/soniox-node/proto/soniox/speech_service/UpdateSpeechContextResponse'; export interface SpeechServiceClient extends grpc.Client { AddSpeaker(argument: _soniox_speech_service_AddSpeakerRequest, metadata: grpc.Metadata, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_AddSpeakerResponse__Output>): grpc.ClientUnaryCall; AddSpeaker(argument: _soniox_speech_service_AddSpeakerRequest, metadata: grpc.Metadata, callback: grpc.requestCallback<_soniox_speech_service_AddSpeakerResponse__Output>): grpc.ClientUnaryCall; AddSpeaker(argument: _soniox_speech_service_AddSpeakerRequest, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_AddSpeakerResponse__Output>): grpc.ClientUnaryCall; AddSpeaker(argument: _soniox_speech_service_AddSpeakerRequest, callback: grpc.requestCallback<_soniox_speech_service_AddSpeakerResponse__Output>): grpc.ClientUnaryCall; addSpeaker(argument: _soniox_speech_service_AddSpeakerRequest, metadata: grpc.Metadata, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_AddSpeakerResponse__Output>): grpc.ClientUnaryCall; addSpeaker(argument: _soniox_speech_service_AddSpeakerRequest, metadata: grpc.Metadata, callback: grpc.requestCallback<_soniox_speech_service_AddSpeakerResponse__Output>): grpc.ClientUnaryCall; addSpeaker(argument: _soniox_speech_service_AddSpeakerRequest, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_AddSpeakerResponse__Output>): grpc.ClientUnaryCall; addSpeaker(argument: _soniox_speech_service_AddSpeakerRequest, callback: grpc.requestCallback<_soniox_speech_service_AddSpeakerResponse__Output>): grpc.ClientUnaryCall; AddSpeakerAudio(argument: _soniox_speech_service_AddSpeakerAudioRequest, metadata: grpc.Metadata, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_AddSpeakerAudioResponse__Output>): grpc.ClientUnaryCall; AddSpeakerAudio(argument: _soniox_speech_service_AddSpeakerAudioRequest, metadata: grpc.Metadata, callback: grpc.requestCallback<_soniox_speech_service_AddSpeakerAudioResponse__Output>): grpc.ClientUnaryCall; AddSpeakerAudio(argument: _soniox_speech_service_AddSpeakerAudioRequest, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_AddSpeakerAudioResponse__Output>): grpc.ClientUnaryCall; AddSpeakerAudio(argument: _soniox_speech_service_AddSpeakerAudioRequest, callback: grpc.requestCallback<_soniox_speech_service_AddSpeakerAudioResponse__Output>): grpc.ClientUnaryCall; addSpeakerAudio(argument: _soniox_speech_service_AddSpeakerAudioRequest, metadata: grpc.Metadata, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_AddSpeakerAudioResponse__Output>): grpc.ClientUnaryCall; addSpeakerAudio(argument: _soniox_speech_service_AddSpeakerAudioRequest, metadata: grpc.Metadata, callback: grpc.requestCallback<_soniox_speech_service_AddSpeakerAudioResponse__Output>): grpc.ClientUnaryCall; addSpeakerAudio(argument: _soniox_speech_service_AddSpeakerAudioRequest, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_AddSpeakerAudioResponse__Output>): grpc.ClientUnaryCall; addSpeakerAudio(argument: _soniox_speech_service_AddSpeakerAudioRequest, callback: grpc.requestCallback<_soniox_speech_service_AddSpeakerAudioResponse__Output>): grpc.ClientUnaryCall; CreateSpeechContext(argument: _soniox_speech_service_CreateSpeechContextRequest, metadata: grpc.Metadata, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_CreateSpeechContextResponse__Output>): grpc.ClientUnaryCall; CreateSpeechContext(argument: _soniox_speech_service_CreateSpeechContextRequest, metadata: grpc.Metadata, callback: grpc.requestCallback<_soniox_speech_service_CreateSpeechContextResponse__Output>): grpc.ClientUnaryCall; CreateSpeechContext(argument: _soniox_speech_service_CreateSpeechContextRequest, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_CreateSpeechContextResponse__Output>): grpc.ClientUnaryCall; CreateSpeechContext(argument: _soniox_speech_service_CreateSpeechContextRequest, callback: grpc.requestCallback<_soniox_speech_service_CreateSpeechContextResponse__Output>): grpc.ClientUnaryCall; createSpeechContext(argument: _soniox_speech_service_CreateSpeechContextRequest, metadata: grpc.Metadata, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_CreateSpeechContextResponse__Output>): grpc.ClientUnaryCall; createSpeechContext(argument: _soniox_speech_service_CreateSpeechContextRequest, metadata: grpc.Metadata, callback: grpc.requestCallback<_soniox_speech_service_CreateSpeechContextResponse__Output>): grpc.ClientUnaryCall; createSpeechContext(argument: _soniox_speech_service_CreateSpeechContextRequest, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_CreateSpeechContextResponse__Output>): grpc.ClientUnaryCall; createSpeechContext(argument: _soniox_speech_service_CreateSpeechContextRequest, callback: grpc.requestCallback<_soniox_speech_service_CreateSpeechContextResponse__Output>): grpc.ClientUnaryCall; CreateTemporaryApiKey(argument: _soniox_speech_service_CreateTemporaryApiKeyRequest, metadata: grpc.Metadata, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_CreateTemporaryApiKeyResponse__Output>): grpc.ClientUnaryCall; CreateTemporaryApiKey(argument: _soniox_speech_service_CreateTemporaryApiKeyRequest, metadata: grpc.Metadata, callback: grpc.requestCallback<_soniox_speech_service_CreateTemporaryApiKeyResponse__Output>): grpc.ClientUnaryCall; CreateTemporaryApiKey(argument: _soniox_speech_service_CreateTemporaryApiKeyRequest, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_CreateTemporaryApiKeyResponse__Output>): grpc.ClientUnaryCall; CreateTemporaryApiKey(argument: _soniox_speech_service_CreateTemporaryApiKeyRequest, callback: grpc.requestCallback<_soniox_speech_service_CreateTemporaryApiKeyResponse__Output>): grpc.ClientUnaryCall; createTemporaryApiKey(argument: _soniox_speech_service_CreateTemporaryApiKeyRequest, metadata: grpc.Metadata, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_CreateTemporaryApiKeyResponse__Output>): grpc.ClientUnaryCall; createTemporaryApiKey(argument: _soniox_speech_service_CreateTemporaryApiKeyRequest, metadata: grpc.Metadata, callback: grpc.requestCallback<_soniox_speech_service_CreateTemporaryApiKeyResponse__Output>): grpc.ClientUnaryCall; createTemporaryApiKey(argument: _soniox_speech_service_CreateTemporaryApiKeyRequest, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_CreateTemporaryApiKeyResponse__Output>): grpc.ClientUnaryCall; createTemporaryApiKey(argument: _soniox_speech_service_CreateTemporaryApiKeyRequest, callback: grpc.requestCallback<_soniox_speech_service_CreateTemporaryApiKeyResponse__Output>): grpc.ClientUnaryCall; DeleteObject(argument: _soniox_speech_service_DeleteObjectRequest, metadata: grpc.Metadata, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_DeleteObjectResponse__Output>): grpc.ClientUnaryCall; DeleteObject(argument: _soniox_speech_service_DeleteObjectRequest, metadata: grpc.Metadata, callback: grpc.requestCallback<_soniox_speech_service_DeleteObjectResponse__Output>): grpc.ClientUnaryCall; DeleteObject(argument: _soniox_speech_service_DeleteObjectRequest, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_DeleteObjectResponse__Output>): grpc.ClientUnaryCall; DeleteObject(argument: _soniox_speech_service_DeleteObjectRequest, callback: grpc.requestCallback<_soniox_speech_service_DeleteObjectResponse__Output>): grpc.ClientUnaryCall; deleteObject(argument: _soniox_speech_service_DeleteObjectRequest, metadata: grpc.Metadata, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_DeleteObjectResponse__Output>): grpc.ClientUnaryCall; deleteObject(argument: _soniox_speech_service_DeleteObjectRequest, metadata: grpc.Metadata, callback: grpc.requestCallback<_soniox_speech_service_DeleteObjectResponse__Output>): grpc.ClientUnaryCall; deleteObject(argument: _soniox_speech_service_DeleteObjectRequest, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_DeleteObjectResponse__Output>): grpc.ClientUnaryCall; deleteObject(argument: _soniox_speech_service_DeleteObjectRequest, callback: grpc.requestCallback<_soniox_speech_service_DeleteObjectResponse__Output>): grpc.ClientUnaryCall; DeleteSpeechContext(argument: _soniox_speech_service_DeleteSpeechContextRequest, metadata: grpc.Metadata, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_DeleteSpeechContextResponse__Output>): grpc.ClientUnaryCall; DeleteSpeechContext(argument: _soniox_speech_service_DeleteSpeechContextRequest, metadata: grpc.Metadata, callback: grpc.requestCallback<_soniox_speech_service_DeleteSpeechContextResponse__Output>): grpc.ClientUnaryCall; DeleteSpeechContext(argument: _soniox_speech_service_DeleteSpeechContextRequest, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_DeleteSpeechContextResponse__Output>): grpc.ClientUnaryCall; DeleteSpeechContext(argument: _soniox_speech_service_DeleteSpeechContextRequest, callback: grpc.requestCallback<_soniox_speech_service_DeleteSpeechContextResponse__Output>): grpc.ClientUnaryCall; deleteSpeechContext(argument: _soniox_speech_service_DeleteSpeechContextRequest, metadata: grpc.Metadata, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_DeleteSpeechContextResponse__Output>): grpc.ClientUnaryCall; deleteSpeechContext(argument: _soniox_speech_service_DeleteSpeechContextRequest, metadata: grpc.Metadata, callback: grpc.requestCallback<_soniox_speech_service_DeleteSpeechContextResponse__Output>): grpc.ClientUnaryCall; deleteSpeechContext(argument: _soniox_speech_service_DeleteSpeechContextRequest, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_DeleteSpeechContextResponse__Output>): grpc.ClientUnaryCall; deleteSpeechContext(argument: _soniox_speech_service_DeleteSpeechContextRequest, callback: grpc.requestCallback<_soniox_speech_service_DeleteSpeechContextResponse__Output>): grpc.ClientUnaryCall; DeleteTranscribeAsyncFile(argument: _soniox_speech_service_DeleteTranscribeAsyncFileRequest, metadata: grpc.Metadata, options: grpc.CallOptions, callback: grpc.requestCallback<_soniox_speech_service_DeleteTranscribeAsyncFileRes