@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.
13 lines • 804 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PosReqResult = void 0;
var PosReqResult;
(function (PosReqResult) {
PosReqResult[PosReqResult["ValidRequest"] = 0] = "ValidRequest";
PosReqResult[PosReqResult["InvalidOrUnsupportedRequest"] = 1] = "InvalidOrUnsupportedRequest";
PosReqResult[PosReqResult["NoPositionsFoundThatMatchCriteria"] = 2] = "NoPositionsFoundThatMatchCriteria";
PosReqResult[PosReqResult["NotAuthorizedToRequestPositions"] = 3] = "NotAuthorizedToRequestPositions";
PosReqResult[PosReqResult["RequestForPositionNotSupported"] = 4] = "RequestForPositionNotSupported";
PosReqResult[PosReqResult["Other"] = 99] = "Other";
})(PosReqResult || (exports.PosReqResult = PosReqResult = {}));
//# sourceMappingURL=PosReqResult.js.map