bson 4.6.2 → 4.6.3
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/bower.json +1 -1
- package/bson-ts34.d.ts +1133 -0
- package/bson.d.ts +1228 -1118
- package/dist/bson.browser.esm.js +16 -1
- package/dist/bson.browser.esm.js.map +1 -1
- package/dist/bson.browser.umd.js +16 -1
- package/dist/bson.browser.umd.js.map +1 -1
- package/dist/bson.bundle.js +16 -1
- package/dist/bson.bundle.js.map +1 -1
- package/dist/bson.esm.js +16 -1
- package/dist/bson.esm.js.map +1 -1
- package/lib/binary.js +1 -0
- package/lib/binary.js.map +1 -1
- package/lib/code.js +1 -0
- package/lib/code.js.map +1 -1
- package/lib/db_ref.js +1 -0
- package/lib/db_ref.js.map +1 -1
- package/lib/decimal128.js +1 -0
- package/lib/decimal128.js.map +1 -1
- package/lib/double.js +1 -0
- package/lib/double.js.map +1 -1
- package/lib/int_32.js +1 -0
- package/lib/int_32.js.map +1 -1
- package/lib/long.js +1 -0
- package/lib/long.js.map +1 -1
- package/lib/max_key.js +1 -0
- package/lib/max_key.js.map +1 -1
- package/lib/min_key.js +1 -0
- package/lib/min_key.js.map +1 -1
- package/lib/objectid.js +1 -0
- package/lib/objectid.js.map +1 -1
- package/lib/regexp.js +1 -0
- package/lib/regexp.js.map +1 -1
- package/lib/symbol.js +1 -0
- package/lib/symbol.js.map +1 -1
- package/lib/timestamp.js +4 -1
- package/lib/timestamp.js.map +1 -1
- package/package.json +11 -3
- package/src/binary.ts +1 -0
- package/src/code.ts +1 -0
- package/src/db_ref.ts +1 -0
- package/src/decimal128.ts +1 -0
- package/src/double.ts +1 -0
- package/src/int_32.ts +1 -0
- package/src/long.ts +1 -0
- package/src/max_key.ts +1 -0
- package/src/min_key.ts +1 -0
- package/src/objectid.ts +1 -0
- package/src/regexp.ts +1 -0
- package/src/symbol.ts +1 -0
- package/src/timestamp.ts +4 -1
package/dist/bson.bundle.js
CHANGED
|
@@ -2447,6 +2447,7 @@ var BSON = (function (exports) {
|
|
|
2447
2447
|
/**
|
|
2448
2448
|
* A class representation of the BSON Binary type.
|
|
2449
2449
|
* @public
|
|
2450
|
+
* @category BSONType
|
|
2450
2451
|
*/
|
|
2451
2452
|
var Binary = /** @class */ (function () {
|
|
2452
2453
|
/**
|
|
@@ -2677,6 +2678,7 @@ var BSON = (function (exports) {
|
|
|
2677
2678
|
/**
|
|
2678
2679
|
* A class representation of the BSON Code type.
|
|
2679
2680
|
* @public
|
|
2681
|
+
* @category BSONType
|
|
2680
2682
|
*/
|
|
2681
2683
|
var Code = /** @class */ (function () {
|
|
2682
2684
|
/**
|
|
@@ -2725,6 +2727,7 @@ var BSON = (function (exports) {
|
|
|
2725
2727
|
/**
|
|
2726
2728
|
* A class representation of the BSON DBRef type.
|
|
2727
2729
|
* @public
|
|
2730
|
+
* @category BSONType
|
|
2728
2731
|
*/
|
|
2729
2732
|
var DBRef = /** @class */ (function () {
|
|
2730
2733
|
/**
|
|
@@ -2829,6 +2832,7 @@ var BSON = (function (exports) {
|
|
|
2829
2832
|
/**
|
|
2830
2833
|
* A class representing a 64-bit integer
|
|
2831
2834
|
* @public
|
|
2835
|
+
* @category BSONType
|
|
2832
2836
|
* @remarks
|
|
2833
2837
|
* The internal representation of a long is the two given signed, 32-bit values.
|
|
2834
2838
|
* We use 32-bit pieces because these are the size of integers on which
|
|
@@ -3791,6 +3795,7 @@ var BSON = (function (exports) {
|
|
|
3791
3795
|
/**
|
|
3792
3796
|
* A class representation of the BSON Decimal128 type.
|
|
3793
3797
|
* @public
|
|
3798
|
+
* @category BSONType
|
|
3794
3799
|
*/
|
|
3795
3800
|
var Decimal128 = /** @class */ (function () {
|
|
3796
3801
|
/**
|
|
@@ -4362,6 +4367,7 @@ var BSON = (function (exports) {
|
|
|
4362
4367
|
/**
|
|
4363
4368
|
* A class representation of the BSON Double type.
|
|
4364
4369
|
* @public
|
|
4370
|
+
* @category BSONType
|
|
4365
4371
|
*/
|
|
4366
4372
|
var Double = /** @class */ (function () {
|
|
4367
4373
|
/**
|
|
@@ -4433,6 +4439,7 @@ var BSON = (function (exports) {
|
|
|
4433
4439
|
/**
|
|
4434
4440
|
* A class representation of a BSON Int32 type.
|
|
4435
4441
|
* @public
|
|
4442
|
+
* @category BSONType
|
|
4436
4443
|
*/
|
|
4437
4444
|
var Int32 = /** @class */ (function () {
|
|
4438
4445
|
/**
|
|
@@ -4486,6 +4493,7 @@ var BSON = (function (exports) {
|
|
|
4486
4493
|
/**
|
|
4487
4494
|
* A class representation of the BSON MaxKey type.
|
|
4488
4495
|
* @public
|
|
4496
|
+
* @category BSONType
|
|
4489
4497
|
*/
|
|
4490
4498
|
var MaxKey = /** @class */ (function () {
|
|
4491
4499
|
function MaxKey() {
|
|
@@ -4514,6 +4522,7 @@ var BSON = (function (exports) {
|
|
|
4514
4522
|
/**
|
|
4515
4523
|
* A class representation of the BSON MinKey type.
|
|
4516
4524
|
* @public
|
|
4525
|
+
* @category BSONType
|
|
4517
4526
|
*/
|
|
4518
4527
|
var MinKey = /** @class */ (function () {
|
|
4519
4528
|
function MinKey() {
|
|
@@ -4547,6 +4556,7 @@ var BSON = (function (exports) {
|
|
|
4547
4556
|
/**
|
|
4548
4557
|
* A class representation of the BSON ObjectId type.
|
|
4549
4558
|
* @public
|
|
4559
|
+
* @category BSONType
|
|
4550
4560
|
*/
|
|
4551
4561
|
var ObjectId = /** @class */ (function () {
|
|
4552
4562
|
/**
|
|
@@ -4834,6 +4844,7 @@ var BSON = (function (exports) {
|
|
|
4834
4844
|
/**
|
|
4835
4845
|
* A class representation of the BSON RegExp type.
|
|
4836
4846
|
* @public
|
|
4847
|
+
* @category BSONType
|
|
4837
4848
|
*/
|
|
4838
4849
|
var BSONRegExp = /** @class */ (function () {
|
|
4839
4850
|
/**
|
|
@@ -4899,6 +4910,7 @@ var BSON = (function (exports) {
|
|
|
4899
4910
|
/**
|
|
4900
4911
|
* A class representation of the BSON Symbol type.
|
|
4901
4912
|
* @public
|
|
4913
|
+
* @category BSONType
|
|
4902
4914
|
*/
|
|
4903
4915
|
var BSONSymbol = /** @class */ (function () {
|
|
4904
4916
|
/**
|
|
@@ -4941,7 +4953,10 @@ var BSON = (function (exports) {
|
|
|
4941
4953
|
|
|
4942
4954
|
/** @public */
|
|
4943
4955
|
var LongWithoutOverridesClass = Long;
|
|
4944
|
-
/**
|
|
4956
|
+
/**
|
|
4957
|
+
* @public
|
|
4958
|
+
* @category BSONType
|
|
4959
|
+
* */
|
|
4945
4960
|
var Timestamp = /** @class */ (function (_super) {
|
|
4946
4961
|
__extends(Timestamp, _super);
|
|
4947
4962
|
function Timestamp(low, high) {
|