@voice-ping/cognitive-services-speech
Version:
VoicePing Cognitive Services Speech SDK for JavaScript forked from Microsoft
55 lines (53 loc) • 2.63 kB
JavaScript
;
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
var Exports_1 = require("../common.speech/Exports");
var CancellationDetailsBase_1 = require("./CancellationDetailsBase");
var Exports_2 = require("./Exports");
/**
* Contains detailed information about why a result was canceled.
* @class CancellationDetails
*/
var CancellationDetails = /** @class */ (function (_super) {
__extends(CancellationDetails, _super);
function CancellationDetails(reason, errorDetails, errorCode) {
return _super.call(this, reason, errorDetails, errorCode) || this;
}
/**
* Creates an instance of CancellationDetails object for the canceled RecognitionResult.
* @member CancellationDetails.fromResult
* @function
* @public
* @param {RecognitionResult | SpeechSynthesisResult} result - The result that was canceled.
* @returns {CancellationDetails} The cancellation details object being created.
*/
CancellationDetails.fromResult = function (result) {
var reason = Exports_2.CancellationReason.Error;
var errorCode = Exports_2.CancellationErrorCode.NoError;
if (result instanceof Exports_2.RecognitionResult && !!result.json) {
var simpleSpeech = Exports_1.SimpleSpeechPhrase.fromJSON(result.json);
reason = Exports_1.EnumTranslation.implTranslateCancelResult(simpleSpeech.RecognitionStatus);
}
if (!!result.properties) {
errorCode = Exports_2.CancellationErrorCode[result.properties.getProperty(Exports_1.CancellationErrorCodePropertyName, Exports_2.CancellationErrorCode[Exports_2.CancellationErrorCode.NoError])];
}
return new CancellationDetails(reason, result.errorDetails, errorCode);
};
return CancellationDetails;
}(CancellationDetailsBase_1.CancellationDetailsBase));
exports.CancellationDetails = CancellationDetails;
//# sourceMappingURL=CancellationDetails.js.map