ueberdb2 4.2.80 → 4.2.81
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/dist/index.js +11 -5
- package/package.json +4 -4
package/dist/index.js
CHANGED
|
@@ -199156,7 +199156,6 @@ var table = Table$1;(function (module) {
|
|
|
199156
199156
|
return TYPES.NVarChar
|
|
199157
199157
|
|
|
199158
199158
|
case 'number':
|
|
199159
|
-
case 'bigint':
|
|
199160
199159
|
if (value % 1 === 0) {
|
|
199161
199160
|
if (value < -2147483648 || value > 2147483647) {
|
|
199162
199161
|
return TYPES.BigInt
|
|
@@ -199167,6 +199166,13 @@ var table = Table$1;(function (module) {
|
|
|
199167
199166
|
return TYPES.Float
|
|
199168
199167
|
}
|
|
199169
199168
|
|
|
199169
|
+
case 'bigint':
|
|
199170
|
+
if (value < -2147483648n || value > 2147483647n) {
|
|
199171
|
+
return TYPES.BigInt
|
|
199172
|
+
} else {
|
|
199173
|
+
return TYPES.Int
|
|
199174
|
+
}
|
|
199175
|
+
|
|
199170
199176
|
case 'boolean':
|
|
199171
199177
|
for (const item of Array.from(map)) {
|
|
199172
199178
|
if (item.js === Boolean) {
|
|
@@ -307812,7 +307818,7 @@ var genericPool = {
|
|
|
307812
307818
|
return new Pool(DefaultEvictor, Deque, PriorityQueue, factory, config);
|
|
307813
307819
|
}
|
|
307814
307820
|
};var name = "@redis/client";
|
|
307815
|
-
var version = "1.5.
|
|
307821
|
+
var version = "1.5.16";
|
|
307816
307822
|
var license = "MIT";
|
|
307817
307823
|
var main = "./dist/index.js";
|
|
307818
307824
|
var types = "./dist/index.d.ts";
|
|
@@ -308843,10 +308849,10 @@ _a = RedisClusterSlots, _RedisClusterSlots_options = new WeakMap(), _RedisCluste
|
|
|
308843
308849
|
if (__classPrivateFieldGet$2(this, _RedisClusterSlots_options, "f").defaults) {
|
|
308844
308850
|
let socket;
|
|
308845
308851
|
if (__classPrivateFieldGet$2(this, _RedisClusterSlots_options, "f").defaults.socket) {
|
|
308846
|
-
socket =
|
|
308852
|
+
socket = {
|
|
308847
308853
|
...__classPrivateFieldGet$2(this, _RedisClusterSlots_options, "f").defaults.socket,
|
|
308848
|
-
...options
|
|
308849
|
-
}
|
|
308854
|
+
...options?.socket
|
|
308855
|
+
};
|
|
308850
308856
|
}
|
|
308851
308857
|
else {
|
|
308852
308858
|
socket = options?.socket;
|
package/package.json
CHANGED
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
29
29
|
"@rollup/plugin-terser": "^0.4.4",
|
|
30
30
|
"@types/async": "^3.2.24",
|
|
31
|
-
"@types/better-sqlite3": "^7.6.
|
|
31
|
+
"@types/better-sqlite3": "^7.6.11",
|
|
32
32
|
"@types/mssql": "^9.1.5",
|
|
33
33
|
"@types/node": "^20.14.9",
|
|
34
34
|
"@types/pg": "^8.11.5",
|
|
@@ -43,12 +43,12 @@
|
|
|
43
43
|
"eslint-config-etherpad": "^4.0.4",
|
|
44
44
|
"eslint-plugin-import": "^2.29.1",
|
|
45
45
|
"mongodb": "^6.8.0",
|
|
46
|
-
"mssql": "^11.0.
|
|
46
|
+
"mssql": "^11.0.1",
|
|
47
47
|
"mysql2": "^3.10.1",
|
|
48
48
|
"nano": "^10.1.3",
|
|
49
49
|
"pg": "^8.12.0",
|
|
50
50
|
"randexp-ts": "^1.0.5",
|
|
51
|
-
"redis": "^4.6.
|
|
51
|
+
"redis": "^4.6.15",
|
|
52
52
|
"rethinkdb": "^2.4.2",
|
|
53
53
|
"rollup-plugin-typescript2": "^0.36.0",
|
|
54
54
|
"semver": "^7.6.2",
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
"url": "https://github.com/ether/ueberDB.git"
|
|
65
65
|
},
|
|
66
66
|
"main": "./dist/index.js",
|
|
67
|
-
"version": "4.2.
|
|
67
|
+
"version": "4.2.81",
|
|
68
68
|
"bugs": {
|
|
69
69
|
"url": "https://github.com/ether/ueberDB/issues"
|
|
70
70
|
},
|