The documentation is a little fuzzy on the subject of custom event types. If we want to send purchase details with our conversion event, it seems we can do it like so:
twq('track','Purchase', {
value: '100',
currency: 'USD',
num_items: '1'
});
But if we create a conversion event and set the type to “Purchase” the generated snippet uses only:
twq('track','PageView');
Does this mean we need to add the Purchase event in addition to the PageView event, or in replacement of?
As an aside: It seems from this post that you’re actively supporting both events, but maybe not the others mentioned in the documentation.
Thanks for any clarification on any of these points!