@schemeless/event-store-types 2.3.0 → 2.3.1-rc1
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.
|
@@ -31,6 +31,7 @@ export interface EventFlow<PartialPayload = any, Payload extends PartialPayload
|
|
|
31
31
|
readonly sideEffectFailedRetryAllowed?: number;
|
|
32
32
|
};
|
|
33
33
|
readonly eventType?: CreatedEvent<Payload>;
|
|
34
|
+
readonly baseEventType?: BaseEvent<Payload>;
|
|
34
35
|
readonly payloadType?: PartialPayload | Payload;
|
|
35
36
|
readonly samplePayload?: PartialPayload | Payload;
|
|
36
37
|
readonly receive: (eventStore: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@schemeless/event-store-types",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1-rc1",
|
|
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": "8a6e017a7517f7ca1ec0e622b455f5fcc4e98030"
|
|
36
36
|
}
|