constants.js 870 B

1234567891011121314151617
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. exports.OP_MSG = exports.OP_COMPRESSED = exports.OP_KILL_CURSORS = exports.OP_DELETE = exports.OP_GETMORE = exports.OP_QUERY = exports.OP_INSERT = exports.OP_UPDATE = exports.OP_REPLY = exports.MAX_SUPPORTED_WIRE_VERSION = exports.MIN_SUPPORTED_WIRE_VERSION = exports.MAX_SUPPORTED_SERVER_VERSION = exports.MIN_SUPPORTED_SERVER_VERSION = void 0;
  4. exports.MIN_SUPPORTED_SERVER_VERSION = '3.6';
  5. exports.MAX_SUPPORTED_SERVER_VERSION = '6.0';
  6. exports.MIN_SUPPORTED_WIRE_VERSION = 6;
  7. exports.MAX_SUPPORTED_WIRE_VERSION = 17;
  8. exports.OP_REPLY = 1;
  9. exports.OP_UPDATE = 2001;
  10. exports.OP_INSERT = 2002;
  11. exports.OP_QUERY = 2004;
  12. exports.OP_GETMORE = 2005;
  13. exports.OP_DELETE = 2006;
  14. exports.OP_KILL_CURSORS = 2007;
  15. exports.OP_COMPRESSED = 2012;
  16. exports.OP_MSG = 2013;
  17. //# sourceMappingURL=constants.js.map