SDK Event and Action Types

This article describes how to access event and action types.

Events

The available events are as follows:

  • RecordImpressions
  • RecordPageEvents
  • RecordRecClicks
  • RecordRecImpressions
  • ContextIpAddress
  • ContextCustomVariables
  • ContextUserAgent
  • ContextPageView
  • ContextProductView
  • ContextCart
  • ContextAddToCart
  • ContextPurchase
  • ContextMetadata
  • ContextProductDetailView
  • ContextProductThumbnailView
  • ContextReferrer
  • ContextCoordinates
  • ContextScreenSize
  • ContextClosedSession

Events are defined in the common package. You can access these events by importing this package with the following code:

import { EventTypes } from '@personalization-js-sdk/common';

Once imported, you can reference these events using the syntax EventTypes.<event name>. For example, RecordImpressions is referenced by EventTypes.RecordImpressions.

Actions

The available actions are as follows:

  • OmniChannelJson
  • OmniChannelImageBadging
  • OmniChannelRecommendation
  • OmniSocialProofData

Actions are defined in the common package. You can access these actions by importing this package with the following code:

import { ActionTypes } from '@personalization-js-sdk/common';

Once imported, you can reference these actions using the syntax ActionTypes.<action name>. For example, OmniChannelJson is referenced by ActionTypes.OmniChannelJson.