Skip to content

Commit 77829ae

Browse files
Applying documentation updates.
1 parent f366027 commit 77829ae

31 files changed

+107
-51
lines changed

trackers/browser-tracker/docs/markdown/browser-tracker.browserplugin.activatebrowserplugin.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@
66

77
Called when the plugin is initialised during the Tracker construction
88

9-
Use to capture the specific Tracker instance for each instance of a Browser Plugin
10-
119
<b>Signature:</b>
1210

1311
```typescript
1412
activateBrowserPlugin?: (tracker: BrowserTracker) => void;
1513
```
14+
15+
## Remarks
16+
17+
Use to capture the specific Tracker instance for each instance of a Browser Plugin
18+

trackers/browser-tracker/docs/markdown/browser-tracker.browserplugin.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,5 @@ interface BrowserPlugin extends CorePlugin
1717
1818
| Property | Type | Description |
1919
| --- | --- | --- |
20-
| [activateBrowserPlugin?](./browser-tracker.browserplugin.activatebrowserplugin.md) | (tracker: BrowserTracker) =&gt; void | <i>(Optional)</i> Called when the plugin is initialised during the Tracker construction<!-- -->Use to capture the specific Tracker instance for each instance of a Browser Plugin |
20+
| [activateBrowserPlugin?](./browser-tracker.browserplugin.activatebrowserplugin.md) | (tracker: BrowserTracker) =&gt; void | <i>(Optional)</i> Called when the plugin is initialised during the Tracker construction |
2121

trackers/node-tracker/docs/markdown/node-tracker.adclickevent.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,16 @@
66

77
An Ad Click Event Used to track an advertisement click
88

9-
If you provide the cost field, you must also provide one of 'cpa', 'cpc', and 'cpm' for the costModel field.
10-
119
<b>Signature:</b>
1210

1311
```typescript
1412
interface AdClickEvent
1513
```
1614

15+
## Remarks
16+
17+
If you provide the cost field, you must also provide one of 'cpa', 'cpc', and 'cpm' for the costModel field.
18+
1719
## Properties
1820

1921
| Property | Type | Description |

trackers/node-tracker/docs/markdown/node-tracker.adconversionevent.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,16 @@
66

77
An Ad Conversion Event Used to track an advertisement click
88

9-
If you provide the cost field, you must also provide one of 'cpa', 'cpc', and 'cpm' for the costModel field.
10-
119
<b>Signature:</b>
1210

1311
```typescript
1412
interface AdConversionEvent
1513
```
1614

15+
## Remarks
16+
17+
If you provide the cost field, you must also provide one of 'cpa', 'cpc', and 'cpm' for the costModel field.
18+
1719
## Properties
1820

1921
| Property | Type | Description |

trackers/node-tracker/docs/markdown/node-tracker.adimpressionevent.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,16 @@
66

77
An Ad Impression Event Used to track an advertisement impression
88

9-
If you provide the cost field, you must also provide one of 'cpa', 'cpc', and 'cpm' for the costModel field.
10-
119
<b>Signature:</b>
1210

1311
```typescript
1412
interface AdImpressionEvent
1513
```
1614

15+
## Remarks
16+
17+
If you provide the cost field, you must also provide one of 'cpa', 'cpc', and 'cpm' for the costModel field.
18+
1719
## Properties
1820

1921
| Property | Type | Description |

trackers/node-tracker/docs/markdown/node-tracker.buildadclick.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66

77
Build a Ad Click Event Used to track an advertisement click
88

9-
If you provide the cost field, you must also provide one of 'cpa', 'cpc', and 'cpm' for the costModel field.
10-
119
<b>Signature:</b>
1210

1311
```typescript
@@ -18,9 +16,15 @@ declare function buildAdClick(event: AdClickEvent): PayloadBuilder;
1816

1917
| Parameter | Type | Description |
2018
| --- | --- | --- |
21-
| event | AdClickEvent | Contains the properties for the Ad Click event PayloadBuilder to be sent to |
19+
| event | AdClickEvent | Contains the properties for the Ad Click event |
2220

2321
<b>Returns:</b>
2422

2523
PayloadBuilder
2624

25+
PayloadBuilder to be sent to
26+
27+
## Remarks
28+
29+
If you provide the cost field, you must also provide one of 'cpa', 'cpc', and 'cpm' for the costModel field.
30+

trackers/node-tracker/docs/markdown/node-tracker.buildadconversion.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66

77
Build a Ad Conversion Event Used to track an advertisement click
88

9-
If you provide the cost field, you must also provide one of 'cpa', 'cpc', and 'cpm' for the costModel field.
10-
119
<b>Signature:</b>
1210

1311
```typescript
@@ -18,9 +16,15 @@ declare function buildAdConversion(event: AdConversionEvent): PayloadBuilder;
1816

1917
| Parameter | Type | Description |
2018
| --- | --- | --- |
21-
| event | AdConversionEvent | Contains the properties for the Ad Conversion event PayloadBuilder to be sent to |
19+
| event | AdConversionEvent | Contains the properties for the Ad Conversion event |
2220

2321
<b>Returns:</b>
2422

2523
PayloadBuilder
2624

25+
PayloadBuilder to be sent to
26+
27+
## Remarks
28+
29+
If you provide the cost field, you must also provide one of 'cpa', 'cpc', and 'cpm' for the costModel field.
30+

trackers/node-tracker/docs/markdown/node-tracker.buildaddtocart.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,11 @@ declare function buildAddToCart(event: AddToCartEvent): PayloadBuilder;
1616

1717
| Parameter | Type | Description |
1818
| --- | --- | --- |
19-
| event | AddToCartEvent | Contains the properties for the Add To Cart event PayloadBuilder to be sent to |
19+
| event | AddToCartEvent | Contains the properties for the Add To Cart event |
2020

2121
<b>Returns:</b>
2222

2323
PayloadBuilder
2424

25+
PayloadBuilder to be sent to
26+

trackers/node-tracker/docs/markdown/node-tracker.buildadimpression.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66

77
Build a Ad Impression Event Used to track an advertisement impression
88

9-
If you provide the cost field, you must also provide one of 'cpa', 'cpc', and 'cpm' for the costModel field.
10-
119
<b>Signature:</b>
1210

1311
```typescript
@@ -18,9 +16,15 @@ declare function buildAdImpression(event: AdImpressionEvent): PayloadBuilder;
1816

1917
| Parameter | Type | Description |
2018
| --- | --- | --- |
21-
| event | AdImpressionEvent | Contains the properties for the Ad Impression event PayloadBuilder to be sent to |
19+
| event | AdImpressionEvent | Contains the properties for the Ad Impression event |
2220

2321
<b>Returns:</b>
2422

2523
PayloadBuilder
2624

25+
PayloadBuilder to be sent to
26+
27+
## Remarks
28+
29+
If you provide the cost field, you must also provide one of 'cpa', 'cpc', and 'cpm' for the costModel field.
30+

trackers/node-tracker/docs/markdown/node-tracker.buildconsentgranted.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,11 @@ declare function buildConsentGranted(event: ConsentGrantedEvent): {
2222

2323
| Parameter | Type | Description |
2424
| --- | --- | --- |
25-
| event | ConsentGrantedEvent | Contains the properties for the Consent Granted event An object containing the PayloadBuilder to be sent to and a 'consent\_document' context |
25+
| event | ConsentGrantedEvent | Contains the properties for the Consent Granted event |
2626

2727
<b>Returns:</b>
2828

2929
{ event: PayloadBuilder; context: { schema: string; data: Record&lt;string, unknown&gt;; }\[\]; }
3030

31+
An object containing the PayloadBuilder to be sent to and a 'consent\_document' context
32+

0 commit comments

Comments
 (0)