Avo can code generate Avo Functions in TypeScript targeted at the following platforms
Avo functions usage consists of 4 steps.
To get the Avo generated TypeScript file you must be a member of an Avo workspace with a TypeScript source. Ask for an invite from a colleague or create a new workspace
TerminalCopy$$$npm install -g avoavo loginavo pull --branch my-branch-name
Learn more about the CLI here.
You can also download the file manually from your Avo workspace.
Import Avo from the generated file and initialize it by calling the initAvo
method before tracking
TypeScriptCopy123456import Avo from './Avo';Avo.initAvo({ env: Avo.AvoEnv.Dev },/*, other parameters depending on your tracking plan setup*/);
The actual parameters depend on your tracking plan setup, see the parameters explanation in the reference below.
Every event in your tracking plan, marked with the "Implement with Avo" checkbox, gets a function in the generated code, named according to the event name, in camelCase.
For example, if you have a "Signup Start" event defined like this in Avo:
You'll be able to call it like this from the generated code
TypeScriptCopy1Avo.signupStart({ referral: 'direct' });
Notice, that you are not passing the System property with the call. System properties are defined on the init step and then automatically included with all events. You can update the system properties with
setSystemProperties
function.
Use the Implementation status in your Avo workspace and the visual debuggers to verify that your implementation is correct.
TypeScriptCopy123456789101112131415161718Avo.initAvo(options: {env: AvoEnv;webDebugger?: boolean;strict?: boolean;noop?: boolean;reportFailureAs?: 'error' | 'warn' | 'log';inspector?: AvoInspector;avoLogger?: AvoLogger;},systemProperties?: {systemProperty0: number;systemProperty1: boolean;...},destinationOptions?: any,interfaceDestination?: CustomDestination,otherInterfaceDestination?: CustomDestination,...Destination?: CustomDestination
Initializes Avo, needs to be called before the tracking methods.
This method will call the make(env)
callback in all the provided destination interfaces. It will also initialize the analytics SDKs of the legacy Avo Managed destinations.
options
: {env, [noop], [strict], [avoLogger], [inspector], [mobileDebugger]}
env
: AvoEnv, can be set to dev, prod and staging.[strict = true]
: bool defaulting to true, if true, Avo will throw an exception when it detects a tracking problem in development or staging. Note that the strict flag is ignored in production.[noop = false]
: bool defaulting to false, if true, Avo won't make any network calls (no tracking) in development and staging environments. Note that the noop flag is ignored in production.[inspector]
: optional Avo Inspector instance. If you use Avo Inspector pass it here to make the Avo functions automatically report the invocations to the Avo Inspector.[avoLogger]
: optional custom implementation of the logger. Can be used to disable logs. Find the code snippet here.systemProperties
: an object where each field represents a system property in your tracking plan.
When you define system properties in your Avo workspace you set name and type - the fields of this object are named the same as system properties, in camelCase, and you should provide corresponding types, can be string, int, long, float, bool, array, object and any.
destinationOptions
: {[segmentDestinationName], [anotherSegmentDestinationName], [amplitudeDestinationName], [mixpanelDestinationName]}
. Keys of this objects are the camelCase versions of your destinations in the Avo UI.
mixpanelDestinationName
: optional object, if you use Mixpanel destination managed by Avo, this object will be passed to mixpanel.init(apiKey, options)
as the second parameter, options
amplitudeDestinationName
: optional object, if you use Amplitude destination managed by Avo, this object will be passed to amplitude.init(apiKey, null, options)
as the third parameter, options
segmentDestinationName
: optional object, if you use Segment destination managed by Avo, this object will be passed to analytics.load(apiKey, options)
as the second parameter, options
destination
: CustomDestination, each destination you are sending events to gets a separate parameter in the init function with hooks that the Avo generated code will trigger, unless you are using the legacy Avo managed destinations. Each method in the destination interface is directly mapped to the Actions attached to each event in Avo. Learn more about event Actions in this doc.
Custom destination interface format:
TypeScriptCopy1234567891011121314{make?: function (env: AvoEnv): void, // This method is optional, you can skip it if you've already initialized your Analytics SDKlogEvent?: function (eventName: string, eventProperties: object): void,setUserProperties?: function (userId: string, userProperties: object): void,identify?: function (userId: string): void,unidentify?: function (): void,logPage?: function (pageName: string, eventProperties: object): voidrevenue?: function (amount: number, eventProperties: object): void// The following methods are used for group analytics and are not required. Learn more about group analytics <Link passHref href="/data-design/groups"><a>here</a></Link>setGroupProperties?: function(groupType: string, groupId: string, groupProperties: object),addCurrentUserToGroup?: function(groupType: string, groupId: string, groupProperties: object),logEventWithGroups?: function(eventName: string, eventProperties: object, groupTypesToGroupIds: object)};
In Node each callback is asynchronous and gets an additional first parameter - userId
and, optionally, a anonymousId
parameter. To get the anonymousId
parameter in your workspace reach out to us.
TypeScriptCopy123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566# Example: Destination interface for the Mixpanel SDK. Replace the Mixpanel implementation with your own tracking SDK methodslet customDestination = {make: function (env: AvoEnv, apiKey: string) {mixpanel.getInstance().init(apiKey);},logEvent: function (eventName: string, eventProperties: object) {mixpanel.getInstance().track(eventName, eventProperties);},setUserProperties: function (userId: string, userProperties: object) {mixpanel.getInstance().people.set(userProperties);},identify: function (userId: string) {mixpanel.getInstance().identify(userId);},unidentify: function () {mixpanel.getInstance().reset();},logPage: function (pageName: string, eventProperties: object) {mixpanel.track("Page Viewed", eventProperties.assign({"pageName": pageName}));},revenue: function (amount: number, eventProperties: object) {mixpanel.getInstance().people.track_charge(amount, eventProperties);},// The following methods are used for group analytics and are not required. Learn more about group analytics <Link passHref href="/data-design/groups"><a>here</a></Link>setGroupProperties(groupType: string,groupId: string,groupProperties: object,) {// Mixpanel examplemixpanel.get_group(groupType, groupId).set(groupProperties);// Amplitude examplevar identify = new amplitude.Identify().set(groupProperties);amplitude.groupIdentify(groupType, groupId, identify);},addCurrentUserToGroup: function (groupType: string,groupId: string,groupProperties: object,) {// Segment exampleanalytics.group(groupType, {name: groupId,...groupProperties,});// Mixpanel examplemixpanel.set_group(groupType, groupId);mixpanel.get_group(groupType, groupId).set(groupProperties);// Amplitude exampleamplitude.getInstance().setGroup(groupType, groupId);var identify = new amplitude.Identify().set(groupProperties);amplitude.groupIdentify(groupType, groupId, identify);},logEventWithGroups: function (eventName: string,eventProperties: object,groupTypesToGroupIds: object,) {// Mixpanel examplemixpanel.track_with_groups(eventName, eventProperties, groupTypesToGroupIds);// Amplitude exampleamplitude.getInstance().logEventWithGroups(eventName, eventProperties, groupTypesToGroupIds);},};
TypeScriptCopy123456789101112131415161718192021222324252627282930313233343536373839404142434445# Example: Destination interface for the Segment SDK. Replace the Segment implementation with your own tracking SDK methodslet customDestination = {make: function (env: AvoEnv, apiKey: string) {analytics.load(apiKey)},logEvent: function (eventName: string, eventProperties: object) {analytics.track(eventName, eventProperties)},setUserProperties: function (userId: string, userProperties: object) {analytics.identify(userId, userProperties);},identify: function (userId: string) {analytics.identify(userId);},unidentify: function () {analytics.identify(null);},logPage: function (pageName: string, eventProperties: object) {analytics.page(eventProperties.assign({"pageName": pageName}));},revenue: function (amount: number, eventProperties: object) {analytics.track("Purchase Complete", eventProperties.assign({"revenue": amount}))},// The following methods are used for group analytics and are not required. Learn more about group analytics <Link passHref href="/data-design/groups"><a>here</a></Link>setGroupProperties(groupType: string,groupId: string,groupProperties: object,) {analytics.group(groupId, groupProperties);},addCurrentUserToGroup: function (groupType: string,groupId: string,) {analytics.group(groupId)},logEventWithGroups: function (eventName: string,eventProperties: object,groupTypesToGroupIds: object,) {// Not supported by the Segment SDK},};
Find destination interface snippets for different platforms and analytics destinations in our GitHub.
Read more about the destination interface here.
TypeScriptCopy1Avo.setAvoLogger(avoLogger);
This method allows you to provide custom implementation of the logger used by the Avo Functions, same as the avoLogger
parameter in the initAvo
call.
Can for example be used to disable logs or change which logging method is used.
avoLogger
: custom implementation of the logger. Find the code snippet here.
TypeScriptCopy1Avo.setSystemProperties(systemProperties);
A method to update system properties. If you provide undefined values here corresponding properties won't be updated
systemProperties
: an object where each field represents a system property in your tracking plan.
When you define system properties in your Avo workspace you set name and type - the fields of this object are named the same as system properties, in camelCase, and you should provide corresponding types.
TypeScriptCopy1Avo.yourEventName(properties: { [eventProperty0], [eventProperty1], ..., [userProperty0], [userProperty1], ..., [groupType0GroupId], [groupType1GroupId], ..., [groupProperty0], [groupProperty1], ..., [userId_], [anonymousId_], [segmentContext_] })
Every event you define in your tracking plan in Avo gets a function named after the event in camelCase. The arguments of the function depend on how it's defined in your tracking plan
eventProperty
: type defined in the Avo tracking plan, can be string, int, long, float, bool, array, object and any.
Every event property attached to the event in the Avo UI gets a corresponding argument.
The argument key is camelCase version of the property name defined in the Avo UI.
Pass the value of the property to track here.
userProperty
: type defined in the Avo tracking plan, can be string, int, long, float, bool, array, object and any.
Every user property attached to the event in the Avo UI gets a corresponding argument.
The argument key is camelCase version of the property name defined in the Avo UI.
Pass the value of the property to update here.
groupTypeGroupId
: string, if this event has group type attached in the UI, you'll provide the group id here.
The argument key is camelCase version of the group type defined in the Avo UI with the "GroupId" suffix.
E.g. if the event has "company" group type, the property will be celled "companyGroupId" and you would provide the company name.
groupProperty
: type defined in the Avo tracking plan, can be string, int, long, float, bool, array, object and any.
Every group property attached to the event in the Avo UI with the "Group Update" action gets a corresponding argument.
The argument key is camelCase version of the property name defined in the Avo UI.
Pass the value of the property to update here.
userId_
: string, used to connect event to specific user
Web and React Native: Added if the event has the Identify User
action
Node.js: added to all events, you have to either provide it or the anonymousId_
anonymousId_
: string, Node.js only, this argument is automatically added if corresponding setting is enabled, used to track anonymous users
segmentContext_
: object, Node.js only, passed down to Segment as the Segment context, e.g. segment.track({..., context: context})
Snowplow SDK's tracking interface is a little different from the common event tracking libraries and working with Snowplow through Avo is slightly different too.
If you add a snowplow destination to a JavaScript source you'll need to provide the following object as
TypeScriptCopy1options[snowplowDestination]
You'll implement it like this:
TypeScriptCopy1234567891011121314151617181920212223242526272829const snowplowDestination = {make: function(env: string) {// Your custom Snowplow initialization, that includes the `newTracker` callnewTracker('sp1', '{{collector_url}}', { appId: 'my-app-id', plugins: [ ], });// Learn more: https://docs.snowplowanalytics.com/docs/collecting-data/collecting-from-own-applications/javascript-trackers/browser-tracker/browser-tracker-v3-reference/tracker-setup/},trackSelfDescribingEvent: (schema: string, data: any, contexts: any[]): void => {trackSelfDescribingEvent({event: {schema: schema,data: data},context: contexts});// Learn more: https://docs.snowplowanalytics.com/docs/collecting-data/collecting-from-own-applications/javascript-trackers/browser-tracker/browser-tracker-v3-reference/tracking-events/},trackPageView: (title: string): void => {trackPageView(title);// Learn more: https://docs.snowplowanalytics.com/docs/collecting-data/collecting-from-own-applications/javascript-trackers/browser-tracker/browser-tracker-v3-reference/tracking-events/#page-views},identify: (userId: string): void => {setUserId(userId);// Learn more: https://github.com/snowplow/snowplow-javascript-tracker/blob/master/trackers/browser-tracker/docs/markdown/browser-tracker.setuserid.md},unidentify: (): void => {clearUserData();// Learn more: https://github.com/snowplow/snowplow-javascript-tracker/blob/master/trackers/browser-tracker/docs/markdown/browser-tracker.clearuserdata.md},};
You can send your data using the Avo generated TypeScript code to any data destination that accepts custom events, including: