redis-consumer 1.1.1 → 1.1.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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # redis-streams-nodejs
1
+ # redis-consumer
2
2
 
3
3
  Simple node package for easy use of Redis Streams functionality. This package allows for creation of a Redis consumer and producer.
4
4
 
@@ -1,4 +1,5 @@
1
1
  /// <reference types="node" />
2
+ /// <reference types="node" />
2
3
  import { StreamProcessingFunction, RedisConsumer } from './consumer';
3
4
  import { StreamMessageReply } from '@redis/client/dist/lib/commands/generic-transformers';
4
5
  import { RedisScripts } from 'redis';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "redis-consumer",
3
- "version": "1.1.1",
3
+ "version": "1.1.3",
4
4
  "description": "Simple NodeJs consumer and producer for Redis Streams",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -12,7 +12,7 @@
12
12
  },
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "git+https://github.com/Seboeb/redis-streams-nodejs.git"
15
+ "url": "git+https://github.com/tomasky/redis-streams-nodejs.git"
16
16
  },
17
17
  "author": "Sebastiaan Hekner",
18
18
  "keywords": [
@@ -31,9 +31,9 @@
31
31
  "bugs": {
32
32
  "url": "https://github.com/Seboeb/redis-streams-nodejs/issues"
33
33
  },
34
- "homepage": "https://github.com/Seboeb/redis-streams-nodejs#readme",
34
+ "homepage": "https://github.com/tomasky/redis-streams-nodejs#readme",
35
35
  "dependencies": {
36
- "redis": "^4.6.10"
36
+ "redis": "^4.6.12"
37
37
  },
38
38
  "devDependencies": {
39
39
  "@types/node": "^18.0.0",