redis-smq-common 3.0.0-rc.10 → 3.0.0-rc.11
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/CHANGELOG.md +7 -0
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
+
## [3.0.0-rc.11](https://github.com/weyoss/redis-smq-common/compare/v3.0.0-rc.10...v3.0.0-rc.11) (2024-02-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Codebase Refactoring
|
|
7
|
+
|
|
8
|
+
* improve typing ([a3d69ee](https://github.com/weyoss/redis-smq-common/commit/a3d69ee6ba0c5a4745b2ee778f50adeaabf3087a))
|
|
9
|
+
|
|
3
10
|
## [3.0.0-rc.10](https://github.com/weyoss/redis-smq-common/compare/v3.0.0-rc.9...v3.0.0-rc.10) (2024-02-01)
|
|
4
11
|
|
|
5
12
|
|
package/dist/index.d.cts
CHANGED
|
@@ -373,7 +373,7 @@ declare interface EventEmitter<Events extends TEventEmitterEvent> extends EventE
|
|
|
373
373
|
declare class EventEmitter<Events extends TEventEmitterEvent> extends EventEmitter$1 {
|
|
374
374
|
}
|
|
375
375
|
|
|
376
|
-
declare function getEventBusInstance<T extends TEvent>(): EventEmitter<
|
|
376
|
+
declare function getEventBusInstance<T extends TEvent>(): EventEmitter<T>;
|
|
377
377
|
|
|
378
378
|
declare class Ticker extends EventEmitter<TEvent> {
|
|
379
379
|
protected powerManager: PowerSwitch;
|
package/dist/index.d.ts
CHANGED
|
@@ -373,7 +373,7 @@ declare interface EventEmitter<Events extends TEventEmitterEvent> extends EventE
|
|
|
373
373
|
declare class EventEmitter<Events extends TEventEmitterEvent> extends EventEmitter$1 {
|
|
374
374
|
}
|
|
375
375
|
|
|
376
|
-
declare function getEventBusInstance<T extends TEvent>(): EventEmitter<
|
|
376
|
+
declare function getEventBusInstance<T extends TEvent>(): EventEmitter<T>;
|
|
377
377
|
|
|
378
378
|
declare class Ticker extends EventEmitter<TEvent> {
|
|
379
379
|
protected powerManager: PowerSwitch;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "redis-smq-common",
|
|
3
|
-
"version": "3.0.0-rc.
|
|
3
|
+
"version": "3.0.0-rc.11",
|
|
4
4
|
"description": "RedisSMQ Common Library provides many components that are mainly used by RedisSMQ and RedisSMQ Monitor.",
|
|
5
5
|
"author": "Weyoss <weyoss@protonmail.com>",
|
|
6
6
|
"license": "MIT",
|