@surfside/surfside-events
v3.6.4
Published
Surfside Digital Analytics > Custom Events
Keywords
Readme
Surfside Digital Analytics
Setup repository
clone repo
npm install -g @microsoft/rush
rush updatePackage Installation
With npm:
npm install @surfside/surfside-eventsUsage
Use the available functions from this package to track to all trackers which have been initialized with the SurfsideEvent plugin:
import { SurfsideEvent, addProduct, addPromo, setCommerceAction } 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',
});
setCommerceAction({ action: 'purchase' });
