I used following decorator within my entity. The subscriber got triggered, but the event is null. Anyone has suggestions?
@AfterInsert() async newBillingCreated(event: InsertEvent) {
console.log("--in newBillingCreated", event);
}
event is undefined?