HomeVendure CoreMoreMoreEntitiesHistoryEntryOn this pageHistoryEntry@vendure/coreSource An abstract entity representing an entry in the history of an Order (OrderHistoryEntry) or a Customer (CustomerHistoryEntry). Signatureclass HistoryEntry extends VendureEntity implements HasCustomFields { @Index() @ManyToOne(type => Administrator) administrator?: Administrator; @Column({ nullable: false, type: 'varchar' }) readonly type: HistoryEntryType; @Column() isPublic: boolean; @Column('simple-json') data: any; @Column(type => CustomHistoryEntryFields) customFields: CustomHistoryEntryFields;} Extends: VendureEntity Implements: HasCustomFields administratorpropertyAdministratortypepropertyHistoryEntryTypeisPublicpropertybooleandatapropertyanycustomFieldspropertyCustomHistoryEntryFieldsWas this chapter helpful?It was helpfulIt wasn't helpfulReport IssuePreviousGlobalSettingsNextInterfacesEdited Jan 28, 2026ยทEdit this page