@@ -16447,11 +16447,10 @@ return /******/ (function(modules) { // webpackBootstrap
16447
16447
16448
16448
var writeIEEE754 = __webpack_require__(353).writeIEEE754,
16449
16449
Long = __webpack_require__(334).Long,
16450
- MinKey = __webpack_require__(347).MinKey,
16451
16450
Map = __webpack_require__(333),
16452
16451
Binary = __webpack_require__(350).Binary;
16453
16452
16454
- const normalizedFunctionString = __webpack_require__(354).normalizedFunctionString;
16453
+ var normalizedFunctionString = __webpack_require__(354).normalizedFunctionString;
16455
16454
16456
16455
// try {
16457
16456
// var _Buffer = Uint8Array;
@@ -16460,6 +16459,7 @@ return /******/ (function(modules) { // webpackBootstrap
16460
16459
// }
16461
16460
16462
16461
var regexp = /\x00/; // eslint-disable-line no-control-regex
16462
+ var ignoreKeys = ['$db', '$ref', '$id', '$clusterTime'];
16463
16463
16464
16464
// To ensure that 0.4 of node works correctly
16465
16465
var isDate = function isDate(d) {
@@ -16666,7 +16666,7 @@ return /******/ (function(modules) { // webpackBootstrap
16666
16666
// Write the type of either min or max key
16667
16667
if (value === null) {
16668
16668
buffer[index++] = BSON.BSON_DATA_NULL;
16669
- } else if (value instanceof MinKey) {
16669
+ } else if (value._bsontype === ' MinKey' ) {
16670
16670
buffer[index++] = BSON.BSON_DATA_MIN_KEY;
16671
16671
} else {
16672
16672
buffer[index++] = BSON.BSON_DATA_MAX_KEY;
@@ -17044,7 +17044,7 @@ return /******/ (function(modules) { // webpackBootstrap
17044
17044
index = serializeNull(buffer, key, value, index, true);
17045
17045
} else if (value === null) {
17046
17046
index = serializeNull(buffer, key, value, index, true);
17047
- } else if (value['_bsontype'] === 'ObjectID') {
17047
+ } else if (value['_bsontype'] === 'ObjectID' || value['_bsontype'] === 'ObjectId' ) {
17048
17048
index = serializeObjectId(buffer, key, value, index, true);
17049
17049
} else if (Buffer.isBuffer(value)) {
17050
17050
index = serializeBuffer(buffer, key, value, index, true);
@@ -17095,7 +17095,7 @@ return /******/ (function(modules) { // webpackBootstrap
17095
17095
type = typeof value;
17096
17096
17097
17097
// Check the key and throw error if it's illegal
17098
- if (key !== '$db' && key !== '$ref ' && key !== '$id' ) {
17098
+ if (typeof key === 'string ' && ignoreKeys.indexOf( key) === -1 ) {
17099
17099
if (key.match(regexp) != null) {
17100
17100
// The BSON spec doesn't allow keys with null bytes because keys are
17101
17101
// null-terminated.
@@ -17122,7 +17122,7 @@ return /******/ (function(modules) { // webpackBootstrap
17122
17122
// } else if (value === undefined && ignoreUndefined === true) {
17123
17123
} else if (value === null || value === undefined && ignoreUndefined === false) {
17124
17124
index = serializeNull(buffer, key, value, index);
17125
- } else if (value['_bsontype'] === 'ObjectID') {
17125
+ } else if (value['_bsontype'] === 'ObjectID' || value['_bsontype'] === 'ObjectId' ) {
17126
17126
index = serializeObjectId(buffer, key, value, index);
17127
17127
} else if (Buffer.isBuffer(value)) {
17128
17128
index = serializeBuffer(buffer, key, value, index);
@@ -17175,7 +17175,7 @@ return /******/ (function(modules) { // webpackBootstrap
17175
17175
type = typeof value;
17176
17176
17177
17177
// Check the key and throw error if it's illegal
17178
- if (key !== '$db' && key !== '$ref ' && key !== '$id' ) {
17178
+ if (typeof key === 'string ' && ignoreKeys.indexOf( key) === -1 ) {
17179
17179
if (key.match(regexp) != null) {
17180
17180
// The BSON spec doesn't allow keys with null bytes because keys are
17181
17181
// null-terminated.
@@ -17203,7 +17203,7 @@ return /******/ (function(modules) { // webpackBootstrap
17203
17203
if (ignoreUndefined === false) index = serializeNull(buffer, key, value, index);
17204
17204
} else if (value === null) {
17205
17205
index = serializeNull(buffer, key, value, index);
17206
- } else if (value['_bsontype'] === 'ObjectID') {
17206
+ } else if (value['_bsontype'] === 'ObjectID' || value['_bsontype'] === 'ObjectId' ) {
17207
17207
index = serializeObjectId(buffer, key, value, index);
17208
17208
} else if (Buffer.isBuffer(value)) {
17209
17209
index = serializeBuffer(buffer, key, value, index);
@@ -17667,7 +17667,7 @@ return /******/ (function(modules) { // webpackBootstrap
17667
17667
case 'object':
17668
17668
if (value == null || value instanceof MinKey || value instanceof MaxKey || value['_bsontype'] === 'MinKey' || value['_bsontype'] === 'MaxKey') {
17669
17669
return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + 1;
17670
- } else if (value instanceof ObjectID || value['_bsontype'] === 'ObjectID') {
17670
+ } else if (value instanceof ObjectID || value['_bsontype'] === 'ObjectID' || value['_bsontype'] === 'ObjectId' ) {
17671
17671
return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (12 + 1);
17672
17672
} else if (value instanceof Date || isDate(value)) {
17673
17673
return (name != null ? Buffer.byteLength(name, 'utf8') + 1 : 0) + (8 + 1);
0 commit comments