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.browser.umd.js
CHANGED
|
@@ -2450,6 +2450,7 @@
|
|
|
2450
2450
|
/**
|
|
2451
2451
|
* A class representation of the BSON Binary type.
|
|
2452
2452
|
* @public
|
|
2453
|
+
* @category BSONType
|
|
2453
2454
|
*/
|
|
2454
2455
|
var Binary = /** @class */ (function () {
|
|
2455
2456
|
/**
|
|
@@ -2680,6 +2681,7 @@
|
|
|
2680
2681
|
/**
|
|
2681
2682
|
* A class representation of the BSON Code type.
|
|
2682
2683
|
* @public
|
|
2684
|
+
* @category BSONType
|
|
2683
2685
|
*/
|
|
2684
2686
|
var Code = /** @class */ (function () {
|
|
2685
2687
|
/**
|
|
@@ -2728,6 +2730,7 @@
|
|
|
2728
2730
|
/**
|
|
2729
2731
|
* A class representation of the BSON DBRef type.
|
|
2730
2732
|
* @public
|
|
2733
|
+
* @category BSONType
|
|
2731
2734
|
*/
|
|
2732
2735
|
var DBRef = /** @class */ (function () {
|
|
2733
2736
|
/**
|
|
@@ -2832,6 +2835,7 @@
|
|
|
2832
2835
|
/**
|
|
2833
2836
|
* A class representing a 64-bit integer
|
|
2834
2837
|
* @public
|
|
2838
|
+
* @category BSONType
|
|
2835
2839
|
* @remarks
|
|
2836
2840
|
* The internal representation of a long is the two given signed, 32-bit values.
|
|
2837
2841
|
* We use 32-bit pieces because these are the size of integers on which
|
|
@@ -3794,6 +3798,7 @@
|
|
|
3794
3798
|
/**
|
|
3795
3799
|
* A class representation of the BSON Decimal128 type.
|
|
3796
3800
|
* @public
|
|
3801
|
+
* @category BSONType
|
|
3797
3802
|
*/
|
|
3798
3803
|
var Decimal128 = /** @class */ (function () {
|
|
3799
3804
|
/**
|
|
@@ -4365,6 +4370,7 @@
|
|
|
4365
4370
|
/**
|
|
4366
4371
|
* A class representation of the BSON Double type.
|
|
4367
4372
|
* @public
|
|
4373
|
+
* @category BSONType
|
|
4368
4374
|
*/
|
|
4369
4375
|
var Double = /** @class */ (function () {
|
|
4370
4376
|
/**
|
|
@@ -4436,6 +4442,7 @@
|
|
|
4436
4442
|
/**
|
|
4437
4443
|
* A class representation of a BSON Int32 type.
|
|
4438
4444
|
* @public
|
|
4445
|
+
* @category BSONType
|
|
4439
4446
|
*/
|
|
4440
4447
|
var Int32 = /** @class */ (function () {
|
|
4441
4448
|
/**
|
|
@@ -4489,6 +4496,7 @@
|
|
|
4489
4496
|
/**
|
|
4490
4497
|
* A class representation of the BSON MaxKey type.
|
|
4491
4498
|
* @public
|
|
4499
|
+
* @category BSONType
|
|
4492
4500
|
*/
|
|
4493
4501
|
var MaxKey = /** @class */ (function () {
|
|
4494
4502
|
function MaxKey() {
|
|
@@ -4517,6 +4525,7 @@
|
|
|
4517
4525
|
/**
|
|
4518
4526
|
* A class representation of the BSON MinKey type.
|
|
4519
4527
|
* @public
|
|
4528
|
+
* @category BSONType
|
|
4520
4529
|
*/
|
|
4521
4530
|
var MinKey = /** @class */ (function () {
|
|
4522
4531
|
function MinKey() {
|
|
@@ -4550,6 +4559,7 @@
|
|
|
4550
4559
|
/**
|
|
4551
4560
|
* A class representation of the BSON ObjectId type.
|
|
4552
4561
|
* @public
|
|
4562
|
+
* @category BSONType
|
|
4553
4563
|
*/
|
|
4554
4564
|
var ObjectId = /** @class */ (function () {
|
|
4555
4565
|
/**
|
|
@@ -4837,6 +4847,7 @@
|
|
|
4837
4847
|
/**
|
|
4838
4848
|
* A class representation of the BSON RegExp type.
|
|
4839
4849
|
* @public
|
|
4850
|
+
* @category BSONType
|
|
4840
4851
|
*/
|
|
4841
4852
|
var BSONRegExp = /** @class */ (function () {
|
|
4842
4853
|
/**
|
|
@@ -4902,6 +4913,7 @@
|
|
|
4902
4913
|
/**
|
|
4903
4914
|
* A class representation of the BSON Symbol type.
|
|
4904
4915
|
* @public
|
|
4916
|
+
* @category BSONType
|
|
4905
4917
|
*/
|
|
4906
4918
|
var BSONSymbol = /** @class */ (function () {
|
|
4907
4919
|
/**
|
|
@@ -4944,7 +4956,10 @@
|
|
|
4944
4956
|
|
|
4945
4957
|
/** @public */
|
|
4946
4958
|
var LongWithoutOverridesClass = Long;
|
|
4947
|
-
/**
|
|
4959
|
+
/**
|
|
4960
|
+
* @public
|
|
4961
|
+
* @category BSONType
|
|
4962
|
+
* */
|
|
4948
4963
|
var Timestamp = /** @class */ (function (_super) {
|
|
4949
4964
|
__extends(Timestamp, _super);
|
|
4950
4965
|
function Timestamp(low, high) {
|