3.5.0 • Published 1 year ago

@james-surf/surfside-events v3.5.0

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

Surfside Digital Analytics

Setup repository

clone repo
npm install -g @microsoft/rush 
rush update

Package Installation

With npm:

npm install @surfside/surfside-events

Usage

Use the available functions from this package to track to all trackers which have been initialized with this plugin:

import { addProduct, addPromo, setAction } from '@surfside/surfside-events';

addProduct({
  id: 'P12345',
  name: 'Blue T-Shirt',
  list: 'Search Results',
  brand: 'The T-Shirt Company',
  category: 'Apparel/T-Shirts',
  variant: 'Black',
  quantity: 1,
});

addPromo({
  id: 'PROMO_1234',
  name: 'Summer Sale',
  creative: 'summer_banner2',
  position: 'banner_slot1',
});

setAction({ action: 'purchase' });