@james-surfside/surfside-events
v3.5.0
Published
Surfside Digital Analytics > Custom Events
Downloads
158
Readme
Surfside Digital Analytics
Setup repository
clone repo
npm install -g @microsoft/rush
rush update
Package Installation
With npm:
npm install @james-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 '@james-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' });