HomeVendure CoreMoreMoreEventsVendureEntityEventOn this pageVendureEntityEvent@vendure/coreSource The base class for all entity events used by the EventBus system. For event type 'deleted' the input will most likely be an id: ID Signatureclass VendureEntityEvent<Entity, Input = any> extends VendureEvent { public readonly entity: Entity; public readonly type: 'created' | 'updated' | 'deleted'; public readonly ctx: RequestContext; public readonly input?: Input; constructor(entity: Entity, type: 'created' | 'updated' | 'deleted', ctx: RequestContext, input?: Input)} Extends: VendureEvent entitypropertyEntitytypeproperty'created' | 'updated' | 'deleted'ctxpropertyRequestContextinputpropertyInputWas this chapter helpful?It was helpfulIt wasn't helpfulReport IssuePreviousEventBusNextVendureEventEdited Apr 20, 2026ยทEdit this page