From 04a779ec2ba275be6f780686980c6d7318f6c67b Mon Sep 17 00:00:00 2001 From: Shashank <=> Date: Mon, 9 Mar 2026 14:37:57 +0530 Subject: [PATCH 1/4] Mile Bidder Adapter: Initial Release --- dev-docs/bidders/mile.md | 53 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 dev-docs/bidders/mile.md diff --git a/dev-docs/bidders/mile.md b/dev-docs/bidders/mile.md new file mode 100644 index 0000000000..103d8ae468 --- /dev/null +++ b/dev-docs/bidders/mile.md @@ -0,0 +1,53 @@ +--- +layout: bidder +title: Mile +description: Prebid Mile Bidder Adapter +biddercode: mile +tcfeu_supported: true +gvl_id: 1464 +usp_supported: true +coppa_supported: true +schain_supported: true +media_types: banner +safeframes_ok: true +deals_supported: false +floors_supported: true +fpd_supported: true +pbjs: true +pbs: false +sidebarType: 1 +--- + +### Bid Params + +{: .table .table-bordered .table-striped } +| Name | Scope | Description | Example | Type | +|---------------|----------|---------------------------------|----------------------|----------| +| `publisherId` | required | The publisher ID from Mile | `'1234'` | `string` | +| `placementId` | required | The placement ID from Mile | `'1234'` | `string` | +| `siteId` | required | The site ID from Mile | `'1234'` | `string` | + +### Configuration + +The Mile adapter requires `publisherId`, `placementId`, and `siteId` parameters to be provided. Contact your Mile account representative to obtain these values. + +### Example Ad Unit: Banner + +```javascript +var adUnits = [{ + code: 'banner-div', + mediaTypes: { + banner: { + sizes: [[300, 250], [728, 90]] + } + }, + bids: [{ + bidder: 'mile', + params: { + publisherId: 'publisherId', + placementId: 'placementId', + siteId: 'siteId' + } + }] +}]; +``` From d07a45833398f49df8382b7649f6a70b4bcdbcf3 Mon Sep 17 00:00:00 2001 From: Shashank <=> Date: Fri, 13 Mar 2026 09:09:53 +0530 Subject: [PATCH 2/4] fix: enable download for automatadAnalyticsAdapter --- dev-docs/analytics/automatad.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/analytics/automatad.md b/dev-docs/analytics/automatad.md index 83e13d5d7d..b63f394d84 100644 --- a/dev-docs/analytics/automatad.md +++ b/dev-docs/analytics/automatad.md @@ -7,7 +7,7 @@ tcfeu_supported: false usp_supported: false coppa_supported: false prebid_member: false -enable_download: false +enable_download: true --- #### Instructions for usage From 72741607444ea7baa240ae684410ed07129e8d65 Mon Sep 17 00:00:00 2001 From: JP Mohan Date: Wed, 25 Mar 2026 14:25:14 +0530 Subject: [PATCH 3/4] Fixing module code to make sure the prebid js download succeeds --- dev-docs/analytics/automatad.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/analytics/automatad.md b/dev-docs/analytics/automatad.md index b63f394d84..5adfa7e5fc 100644 --- a/dev-docs/analytics/automatad.md +++ b/dev-docs/analytics/automatad.md @@ -2,7 +2,7 @@ layout: analytics title: Automatad description: Automatad Prebid Analytics Adapter -modulecode: automatadAnalytics +modulecode: automatad tcfeu_supported: false usp_supported: false coppa_supported: false From 01c3271749f37e642a1a27881a97d5830393a497 Mon Sep 17 00:00:00 2001 From: JP Mohan Date: Wed, 25 Mar 2026 15:18:34 +0530 Subject: [PATCH 4/4] fixed markdown lint issues --- dev-docs/analytics/automatad.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/dev-docs/analytics/automatad.md b/dev-docs/analytics/automatad.md index 5adfa7e5fc..bb2e588a62 100644 --- a/dev-docs/analytics/automatad.md +++ b/dev-docs/analytics/automatad.md @@ -10,20 +10,21 @@ prebid_member: false enable_download: true --- -#### Instructions for usage +## Instructions for usage The [Automatad](https://automatad.com/) analytics adapter requires on-boarding, configuration parameters & addition of an external script that will be supplied to you by your Automatad account team. Please reach out to your account team or for more information. -#### Adapter Configuration Options +## 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 | + +| 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