Skip to content

Commit 6f03e45

Browse files
fix type and bump v5.0.16
1 parent d5fc38c commit 6f03e45

File tree

2 files changed

+6
-14
lines changed

2 files changed

+6
-14
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nestjs-geteventstore",
3-
"version": "5.0.15",
3+
"version": "5.0.16",
44
"description": "Event Store connector for NestJS-Cqrs",
55
"author": "Vincent Vermersch <[email protected] >",
66
"contributors": [

src/interfaces/config/read-event-bus-config.type.ts

+5-13
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,8 @@ type EventConstructorType<T extends IReadEvent = IReadEvent> = new (
1010
...args: any[]
1111
) => T;
1212

13-
export type ReadEventBusConfigType<
14-
T extends IReadEvent = IReadEvent
15-
> = IEventBusPrepublishConfig<T> &
16-
(
17-
| {
18-
eventMapper: EventMapperType;
19-
allowedEvents?: never;
20-
}
21-
| {
22-
eventMapper?: never;
23-
allowedEvents: { [key: string]: EventConstructorType };
24-
}
25-
);
13+
export type ReadEventBusConfigType<T extends IReadEvent = IReadEvent> =
14+
IEventBusPrepublishConfig<T> & {
15+
eventMapper?: EventMapperType;
16+
allowedEvents?: { [key: string]: EventConstructorType };
17+
};

0 commit comments

Comments
 (0)