@voice-ping/cognitive-services-speech
Version:
VoicePing Cognitive Services Speech SDK for JavaScript forked from Microsoft
52 lines (50 loc) • 1.33 kB
JavaScript
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
export class QueryParameterNames {
static get TestHooksParamName() {
return "testhooks";
}
static get ConnectionIdHeader() {
return "X-ConnectionId";
}
static get DeploymentIdParamName() {
return "cid";
}
static get FormatParamName() {
return "format";
}
static get LanguageParamName() {
return "language";
}
static get TranslationFromParamName() {
return "from";
}
static get TranslationToParamName() {
return "to";
}
static get Profanify() {
return "profanity";
}
static get EnableAudioLogging() {
return "storeAudio";
}
static get EnableWordLevelTimestamps() {
return "wordLevelTimestamps";
}
static get InitialSilenceTimeoutMs() {
return "initialSilenceTimeoutMs";
}
static get EndSilenceTimeoutMs() {
return "endSilenceTimeoutMs";
}
static get StableIntermediateThreshold() {
return "stableIntermediateThreshold";
}
static get StableTranslation() {
return "stableTranslation";
}
static get EnableLanguageID() {
return "lidEnabled";
}
}
//# sourceMappingURL=QueryParameterNames.js.map