import utils from'@eventcatalog/utils'; const{ addEntityToService }=utils('/path/to/eventcatalog'); // adds a new entity (User) to the InventoryService awaitaddEntityToService('InventoryService',{ id:'User', version:'1.0.0'}); // adds a new entity (Product) to a specific version of the InventoryService awaitaddEntityToService('InventoryService',{ id:'Product', version:'1.0.0'},'2.0.0');
Add an entity to a service by its id.