Return the published or notified events log of a given app.
The log action type
Return the notified events log of a given app.
Name of the micro frontend app or component
Return the published events log of a given app.
Name of the micro frontend app or component
Method to get the a given app logs by its name
Name of the micro frontend app or component
Method to get a subscriber notified or published events.
Name of the micro frontend app or component which published the event
Valid trace action
Method to get a subscriber's notified events.
Name of the micro frontend app or component which published the event
Method to get a publisher's' published events.
Name of the micro frontend app or component which published the event
Method to get the apps logs
Method to store on the logs a notifying event type.
Published event
Method to store on the logs a publishing event type.
Name of the micro frontend app or component which published the event
Published event
Save an app log into the corresponding action type section.
Method to update an app notified or published events log.
Generated using TypeDoc
Store the application events with the next structure:
{ 'ShopperPlatform': { // MUI app name 'published': { 'SUCCESSFUL_OFFER_SAVE': [{eventDetailObject1}, {eventDetailObject2}] // Events published } 'notified': undefined // undefined by default, undefined = not subscribed to any event }, 'IncentivesMUI': { // MUI app name 'published': undefined // undefined by default, no event published 'notified': { 'SUCCESSFUL_PAYMENT': [{eventDetailObject3}, {eventDetailObject6}, {eventDetailObject9}], // Events notified 'INCENTIVE_SAVE_SUCCESS': [{eventDetailObject4}, {eventDetailObject22}], // Events notified 'PAYMENT_FAILURE': [], // No event published } }, 'TestDrive': { // MUI app name 'published': { 'SUCCESSFUL_OFFER_SAVE': [{eventDetailObject1}, {eventDetailObject2}] // Events published } 'notified': { 'SUCCESSFUL_PAYMENT': [{eventDetailObject3}, {eventDetailObject6}, {eventDetailObject9}], // Events notified 'INCENTIVE_SAVE_SUCCESS': [{eventDetailObject4}, {eventDetailObject22}], // Events notified 'PAYMENT_FAILURE': [], // No event published } } }