@euirim/microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
111 lines (109 loc) • 3.3 kB
JavaScript
;
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
Object.defineProperty(exports, "__esModule", { value: true });
var QueryParameterNames = /** @class */ (function () {
function QueryParameterNames() {
}
Object.defineProperty(QueryParameterNames, "TestHooksParamName", {
get: function () {
return "testhooks";
},
enumerable: true,
configurable: true
});
Object.defineProperty(QueryParameterNames, "ConnectionIdHeader", {
get: function () {
return "X-ConnectionId";
},
enumerable: true,
configurable: true
});
Object.defineProperty(QueryParameterNames, "DeploymentIdParamName", {
get: function () {
return "cid";
},
enumerable: true,
configurable: true
});
Object.defineProperty(QueryParameterNames, "FormatParamName", {
get: function () {
return "format";
},
enumerable: true,
configurable: true
});
Object.defineProperty(QueryParameterNames, "LanguageParamName", {
get: function () {
return "language";
},
enumerable: true,
configurable: true
});
Object.defineProperty(QueryParameterNames, "TranslationFromParamName", {
get: function () {
return "from";
},
enumerable: true,
configurable: true
});
Object.defineProperty(QueryParameterNames, "TranslationToParamName", {
get: function () {
return "to";
},
enumerable: true,
configurable: true
});
Object.defineProperty(QueryParameterNames, "Profanify", {
get: function () {
return "profanity";
},
enumerable: true,
configurable: true
});
Object.defineProperty(QueryParameterNames, "EnableAudioLogging", {
get: function () {
return "storeAudio";
},
enumerable: true,
configurable: true
});
Object.defineProperty(QueryParameterNames, "EnableWordLevelTimestamps", {
get: function () {
return "wordLevelTimestamps";
},
enumerable: true,
configurable: true
});
Object.defineProperty(QueryParameterNames, "InitialSilenceTimeoutMs", {
get: function () {
return "initialSilenceTimeoutMs";
},
enumerable: true,
configurable: true
});
Object.defineProperty(QueryParameterNames, "EndSilenceTimeoutMs", {
get: function () {
return "endSilenceTimeoutMs";
},
enumerable: true,
configurable: true
});
Object.defineProperty(QueryParameterNames, "StableIntermediateThreshold", {
get: function () {
return "stableIntermediateThreshold";
},
enumerable: true,
configurable: true
});
Object.defineProperty(QueryParameterNames, "StableTranslation", {
get: function () {
return "stableTranslation";
},
enumerable: true,
configurable: true
});
return QueryParameterNames;
}());
exports.QueryParameterNames = QueryParameterNames;
//# sourceMappingURL=QueryParameterNames.js.map