@schemeless/event-store-types 2.2.1 → 2.2.2
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.
|
@@ -18,7 +18,7 @@ export interface BaseEvent<Payload, META = undefined> extends BaseEventInput<Pay
|
|
|
18
18
|
}
|
|
19
19
|
export interface CreatedEvent<Payload, META = undefined> extends BaseEvent<Payload, META> {
|
|
20
20
|
id: string;
|
|
21
|
-
readonly created
|
|
21
|
+
readonly created: Date;
|
|
22
22
|
}
|
|
23
23
|
export interface StoredEvent<Payload, META = undefined> extends CreatedEvent<Payload, META> {
|
|
24
24
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schemeless/event-store-types",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.2",
|
|
4
4
|
"typescript:main": "src/index.ts",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "c026883b7d5be087421918d686315f747cc5d055"
|
|
36
36
|
}
|