Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 0 additions & 28 deletions dev-docs/bidders/automatad.md

This file was deleted.

53 changes: 53 additions & 0 deletions dev-docs/bidders/mile.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
---
layout: analytics
title: Mile
description: Mile Prebid Analytics Adapter
modulecode: mileAnalytics
tcfeu_supported: false
usp_supported: false
coppa_supported: false
prebid_member: false
enable_download: false
---

#### Instructions for usage

The [Mile](https://mile.tech/) analytics adapter requires on-boarding, configuration
parameters & addition of an external script that will be supplied to you by your Mile account team. Please reach out to your account team or
<[email protected]> for more information.

#### Adapter Configuration Options

{: .table .table-bordered .table-striped }
| Name | Scope | Description | Example | Type |
|--------------|--------------------|-----------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|------------------|
| siteID | required | Your site ID | `N8vZLx` | string |
| publisherID | required | Your publisher ID | `PXfvBq` | string |
| logDebug | optional | Flag to collect debug data pertaining to auctions. Defaults to false | `false` | boolean |

### Example Configuration

```js
import CONSTANTS '../src/constants.json';
// ...
const EVENTS = CONSTANTS.EVENTS
// ...
pbjs.enableAnalytics({
provider: 'mileAnalytics',
options: {
siteID: 'N8vZLx', // supplied by Mile
publisherID: 'PXfvBq', // supplied by Mile
logDebug: false // Defaults to false
},
includeEvents: [
EVENTS.AUCTION_INIT,
EVENTS.BID_RESPONSE,
EVENTS.AUCTION_DEBUG,
EVENTS.BID_WON,
EVENTS.BIDDER_DONE,
EVENTS.NO_BID,
EVENTS.BID_TIMEOUT,
EVENTS.AUCTION_END
]
});
```