Hey no worries I know how to get back the data from the event I just thought that giving the abi would allow feeding the table with the data contained in the event 
I just made an after save trigger on the table given to the plugin then i apply the following logic
const { object: auditorRegisteredEvent } = request
    const events = await factoryContract.getPastEvents('auditorRegistered', {
      fromBlock: auditorRegisteredEvent.attributes.block_number,
      toBlock: auditorRegisteredEvent.attributes.block_number + 1,
    });
    const foundEvent = events.find(
      (event) => event.logIndex === auditorRegisteredEvent.attributes.log_index,
    );
    const auditorAddress = foundEvent.returnValues._auditor.toLowerCase();
 
      
    


