bson 6.3.0 → 6.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bson.d.ts CHANGED
@@ -619,8 +619,6 @@ export declare interface Int32Extended {
619
619
  $numberInt: string;
620
620
  }
621
621
 
622
- declare const kId: unique symbol;
623
-
624
622
  /**
625
623
  * A class representing a 64-bit integer
626
624
  * @public
@@ -993,7 +991,7 @@ export declare class ObjectId extends BSONValue {
993
991
  get _bsontype(): 'ObjectId';
994
992
  /* Excluded from this release type: index */
995
993
  static cacheHexString: boolean;
996
- /* Excluded from this release type: [kId] */
994
+ /* Excluded from this release type: buffer */
997
995
  /* Excluded from this release type: __id */
998
996
  /**
999
997
  * Create ObjectId from a number.
@@ -1066,6 +1064,7 @@ export declare class ObjectId extends BSONValue {
1066
1064
  /** Returns the generation date (accurate up to the second) that this ID was generated. */
1067
1065
  getTimestamp(): Date;
1068
1066
  /* Excluded from this release type: createPk */
1067
+ /* Excluded from this release type: serializeInto */
1069
1068
  /**
1070
1069
  * Creates an ObjectId from a second based number, with the rest of the ObjectId zeroed out. Used for comparisons or sorting the ObjectId.
1071
1070
  *