@sotatech/nest-quickfix
Version:
A powerful NestJS implementation of the FIX (Financial Information eXchange) protocol. Provides high-performance, reliable messaging for financial trading applications with built-in session management, message validation, and recovery mechanisms.
14 lines • 1.01 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MatchExceptionType = void 0;
var MatchExceptionType;
(function (MatchExceptionType) {
MatchExceptionType[MatchExceptionType["NoMatchingConfirmation"] = 0] = "NoMatchingConfirmation";
MatchExceptionType[MatchExceptionType["NoMatchingAllocation"] = 1] = "NoMatchingAllocation";
MatchExceptionType[MatchExceptionType["AllocationDataElementMissing"] = 2] = "AllocationDataElementMissing";
MatchExceptionType[MatchExceptionType["ConfirmationDataElementMissing"] = 3] = "ConfirmationDataElementMissing";
MatchExceptionType[MatchExceptionType["DataDifferenceNotWithinTolerance"] = 4] = "DataDifferenceNotWithinTolerance";
MatchExceptionType[MatchExceptionType["MatchWithinTolerance"] = 5] = "MatchWithinTolerance";
MatchExceptionType[MatchExceptionType["Other"] = 99] = "Other";
})(MatchExceptionType || (exports.MatchExceptionType = MatchExceptionType = {}));
//# sourceMappingURL=MatchExceptionType.js.map