@punks/backend-entity-manager 0.0.51 → 0.0.52
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/dist/index.d.ts
CHANGED
|
@@ -510,8 +510,9 @@ interface ISearchResultsPaging<TCursor> {
|
|
|
510
510
|
|
|
511
511
|
interface IEventLog<TPayload> {
|
|
512
512
|
type: string;
|
|
513
|
-
payload
|
|
513
|
+
payload?: TPayload;
|
|
514
514
|
userId?: string;
|
|
515
|
+
userName?: string;
|
|
515
516
|
timestamp: Date;
|
|
516
517
|
}
|
|
517
518
|
interface IEventsTracker<TEventLog extends IEventLog<unknown>> {
|