redis 5.0.0-next.7 → 5.0.0
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.d.ts +2 -2
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -377,13 +377,13 @@ declare const modules: {
|
|
|
377
377
|
CONFIG_SET: {
|
|
378
378
|
readonly NOT_KEYED_COMMAND: true;
|
|
379
379
|
readonly IS_READ_ONLY: true;
|
|
380
|
-
readonly parseCommand: (this: void, parser: import("@redis/client/dist/lib/client/parser").CommandParser, property: Buffer |
|
|
380
|
+
readonly parseCommand: (this: void, parser: import("@redis/client/dist/lib/client/parser").CommandParser, property: Buffer | "a" | "b" | (string & {}), value: import("@redis/client").RedisArgument) => void;
|
|
381
381
|
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
382
382
|
};
|
|
383
383
|
configSet: {
|
|
384
384
|
readonly NOT_KEYED_COMMAND: true;
|
|
385
385
|
readonly IS_READ_ONLY: true;
|
|
386
|
-
readonly parseCommand: (this: void, parser: import("@redis/client/dist/lib/client/parser").CommandParser, property: Buffer |
|
|
386
|
+
readonly parseCommand: (this: void, parser: import("@redis/client/dist/lib/client/parser").CommandParser, property: Buffer | "a" | "b" | (string & {}), value: import("@redis/client").RedisArgument) => void;
|
|
387
387
|
readonly transformReply: () => import("@redis/client/dist/lib/RESP/types").SimpleStringReply<"OK">;
|
|
388
388
|
};
|
|
389
389
|
CREATE: {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "redis",
|
|
3
3
|
"description": "A modern, high performance Redis client",
|
|
4
|
-
"version": "5.0.0
|
|
4
|
+
"version": "5.0.0",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -10,11 +10,11 @@
|
|
|
10
10
|
"!dist/tsconfig.tsbuildinfo"
|
|
11
11
|
],
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@redis/bloom": "5.0.0
|
|
14
|
-
"@redis/client": "5.0.0
|
|
15
|
-
"@redis/json": "5.0.0
|
|
16
|
-
"@redis/search": "5.0.0
|
|
17
|
-
"@redis/time-series": "5.0.0
|
|
13
|
+
"@redis/bloom": "5.0.0",
|
|
14
|
+
"@redis/client": "5.0.0",
|
|
15
|
+
"@redis/json": "5.0.0",
|
|
16
|
+
"@redis/search": "5.0.0",
|
|
17
|
+
"@redis/time-series": "5.0.0"
|
|
18
18
|
},
|
|
19
19
|
"engines": {
|
|
20
20
|
"node": ">= 18"
|