redis 4.1.1 → 4.3.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/README.md CHANGED
@@ -35,6 +35,8 @@ npm install redis
35
35
 
36
36
  > :warning: The new interface is clean and cool, but if you have an existing codebase, you'll want to read the [migration guide](./docs/v3-to-v4.md).
37
37
 
38
+ Looking for a high-level library to handle object mapping? See [redis-om-node](https://github.com/redis/redis-om-node)!
39
+
38
40
  ## Usage
39
41
 
40
42
  ### Basic Example
package/dist/index.d.ts CHANGED
@@ -73,6 +73,8 @@ declare const modules: {
73
73
  _list: typeof import("@redis/search/dist/commands/_LIST");
74
74
  ALTER: typeof import("@redis/search/dist/commands/ALTER");
75
75
  alter: typeof import("@redis/search/dist/commands/ALTER");
76
+ AGGREGATE_WITHCURSOR: typeof import("@redis/search/dist/commands/AGGREGATE_WITHCURSOR");
77
+ aggregateWithCursor: typeof import("@redis/search/dist/commands/AGGREGATE_WITHCURSOR");
76
78
  AGGREGATE: typeof import("@redis/search/dist/commands/AGGREGATE");
77
79
  aggregate: typeof import("@redis/search/dist/commands/AGGREGATE");
78
80
  ALIASADD: typeof import("@redis/search/dist/commands/ALIASADD");
@@ -87,6 +89,10 @@ declare const modules: {
87
89
  configSet: typeof import("@redis/search/dist/commands/CONFIG_SET");
88
90
  CREATE: typeof import("@redis/search/dist/commands/CREATE");
89
91
  create: typeof import("@redis/search/dist/commands/CREATE");
92
+ CURSOR_DEL: typeof import("@redis/search/dist/commands/CURSOR_DEL");
93
+ cursorDel: typeof import("@redis/search/dist/commands/CURSOR_DEL");
94
+ CURSOR_READ: typeof import("@redis/search/dist/commands/CURSOR_READ");
95
+ cursorRead: typeof import("@redis/search/dist/commands/CURSOR_READ");
90
96
  DICTADD: typeof import("@redis/search/dist/commands/DICTADD");
91
97
  dictAdd: typeof import("@redis/search/dist/commands/DICTADD");
92
98
  DICTDEL: typeof import("@redis/search/dist/commands/DICTDEL");
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": "4.1.1",
4
+ "version": "4.3.1",
5
5
  "license": "MIT",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -24,16 +24,16 @@
24
24
  },
25
25
  "dependencies": {
26
26
  "@redis/bloom": "1.0.2",
27
- "@redis/client": "1.1.1",
27
+ "@redis/client": "1.3.0",
28
28
  "@redis/graph": "1.0.1",
29
- "@redis/json": "1.0.3",
30
- "@redis/search": "1.0.6",
29
+ "@redis/json": "1.0.4",
30
+ "@redis/search": "1.1.0",
31
31
  "@redis/time-series": "1.0.3"
32
32
  },
33
33
  "devDependencies": {
34
34
  "@tsconfig/node14": "^1.0.3",
35
35
  "gh-pages": "^4.0.0",
36
- "release-it": "^15.1.1",
36
+ "release-it": "^15.3.0",
37
37
  "typescript": "^4.7.4"
38
38
  },
39
39
  "repository": {