Skip to content

Commit

Permalink
fix payload type
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagobustamante committed Sep 3, 2018
1 parent 4d6abbb commit 01854fd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@
npm-debug.log*
tsconfig.json
tslint.json
test
test
stryker.conf.json
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eventstore.net/event.store",
"version": "1.2.2",
"version": "1.2.3",
"description": "A simple and fast EventStore that support multiple persistence and notification providers",
"author": "Thiago da Rosa de Bustamante <trbustamante@gmail.com>",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/model/event.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export interface Event {
/**
* The event payload. The payload can be any data associated with the event
*/
payload: string;
payload: any;
/**
* The time where the event was persisted in the {@link EventStream}
*/
Expand Down

0 comments on commit 01854fd

Please sign in to comment.