@@ -57,15 +57,8 @@ export function AdTrackingPlugin(): BrowserPlugin {
5757/**
5858 * Track an ad being served
5959 *
60- * @param string impressionId Identifier for a particular ad impression
61- * @param string costModel The cost model. 'cpa', 'cpc', or 'cpm'
62- * @param number cost Cost
63- * @param string bannerId Identifier for the ad banner displayed
64- * @param string zoneId Identifier for the ad zone
65- * @param string advertiserId Identifier for the advertiser
66- * @param string campaignId Identifier for the campaign which the banner belongs to
67- * @param object Custom context relating to the event
68- * @param timestamp number or Timestamp object
60+ * @param event The event information
61+ * @param trackers The tracker identifiers which the event will be sent to
6962 */
7063export function trackAdImpression (
7164 event : AdImpressionEvent & CommonEventProperties ,
@@ -81,17 +74,8 @@ export function trackAdImpression(
8174/**
8275 * Track an ad being clicked
8376 *
84- * @param string clickId Identifier for the ad click
85- * @param string costModel The cost model. 'cpa', 'cpc', or 'cpm'
86- * @param number cost Cost
87- * @param string targetUrl (required) The link's target URL
88- * @param string bannerId Identifier for the ad banner displayed
89- * @param string zoneId Identifier for the ad zone
90- * @param string impressionId Identifier for a particular ad impression
91- * @param string advertiserId Identifier for the advertiser
92- * @param string campaignId Identifier for the campaign which the banner belongs to
93- * @param object Custom context relating to the event
94- * @param timestamp number or Timestamp object
77+ * @param event The event information
78+ * @param trackers The tracker identifiers which the event will be sent to
9579 */
9680export function trackAdClick (
9781 event : AdClickEvent & CommonEventProperties ,
@@ -107,17 +91,8 @@ export function trackAdClick(
10791/**
10892 * Track an ad conversion event
10993 *
110- * @param string conversionId Identifier for the ad conversion event
111- * @param number cost Cost
112- * @param string category The name you supply for the group of objects you want to track
113- * @param string action A string that is uniquely paired with each category
114- * @param string property Describes the object of the conversion or the action performed on it
115- * @param number initialValue Revenue attributable to the conversion at time of conversion
116- * @param string advertiserId Identifier for the advertiser
117- * @param string costModel The cost model. 'cpa', 'cpc', or 'cpm'
118- * @param string campaignId Identifier for the campaign which the banner belongs to
119- * @param object Custom context relating to the event
120- * @param timestamp number or Timestamp object
94+ * @param event The event information
95+ * @param trackers The tracker identifiers which the event will be sent to
12196 */
12297export function trackAdConversion (
12398 event : AdConversionEvent & CommonEventProperties ,
0 commit comments