From ec40e0be4c03066f8a83832fa9239ca37b5c1832 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Dur=C3=A1n?= Date: Wed, 2 Oct 2019 20:21:15 -0700 Subject: [PATCH 1/3] Support the schain module --- dev-docs/bidders/sharethrough.md | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-docs/bidders/sharethrough.md b/dev-docs/bidders/sharethrough.md index a451447c9d..aeca3b3af9 100644 --- a/dev-docs/bidders/sharethrough.md +++ b/dev-docs/bidders/sharethrough.md @@ -7,6 +7,7 @@ biddercode: sharethrough media_types: native gdpr_supported: true userIds: unifiedId/tradedesk +schain_supported: true --- ### Note: From 24dc3c1f8179dd75ff88cd0608dacd0d21d7d5d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Dur=C3=A1n?= Date: Mon, 7 Oct 2019 17:53:06 -0700 Subject: [PATCH 2/3] List Sharethrough adapter support for schain module + bidfloor param --- dev-docs/bidders/sharethrough.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/dev-docs/bidders/sharethrough.md b/dev-docs/bidders/sharethrough.md index aeca3b3af9..39764887a3 100644 --- a/dev-docs/bidders/sharethrough.md +++ b/dev-docs/bidders/sharethrough.md @@ -16,8 +16,9 @@ The Sharethrough bidder adapter requires additional setup and approval from the ### Bid Params {: .table .table-bordered .table-striped } -| Name | Scope | Description | Example | Type | -|--------------|----------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|------------------------------|------------------| -| `pkey` | required | The placement key | `'DfFKxpkRGPMS7A9f71CquBgZ'` | `string` | -| `iframe` | optional | If `true`, the ad will render in an iframe. Defaults to `false`. | `true` | `boolean` | -| `iframeSize` | optional | `[width, height]` If provided, use this size for the iframe size. Only applicable if `iframe` is `true`. If omitted, the largest size from the ad unit sizes array will be used. | `[300, 250]` | `Array` | +| Name | Scope | Description | Example | Type +| ---- | ----- | ----------- | ------- | ---- +| `pkey` | required | The placement key | `'DfFKxpkRGPMS7A9f71CquBgZ'` | `string` +| `iframe` | optional | If `true`, the ad will render in an iframe. Defaults to `false`. | `true` | `boolean` +| `iframeSize` | optional | `[width, height]` If provided, use this size for the iframe size. Only applicable if `iframe` is `true`. If omitted, the largest size from the ad unit sizes array will be used. | `[300, 250]` | `[integer]` +| `bidfloor` | optional | The floor price, or minimum amount, a publisher will accept for an impression, given in CPM in USD. | `"1.00"` or `1.00` | `string` or `float` From 1b6940e958e65235250f770c558a235eca18feec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Dur=C3=A1n?= Date: Thu, 17 Oct 2019 15:35:12 -0700 Subject: [PATCH 3/3] Update documentation to specify that bidfloor should only be a float --- dev-docs/bidders/sharethrough.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-docs/bidders/sharethrough.md b/dev-docs/bidders/sharethrough.md index 39764887a3..0f7a4ccf32 100644 --- a/dev-docs/bidders/sharethrough.md +++ b/dev-docs/bidders/sharethrough.md @@ -21,4 +21,4 @@ The Sharethrough bidder adapter requires additional setup and approval from the | `pkey` | required | The placement key | `'DfFKxpkRGPMS7A9f71CquBgZ'` | `string` | `iframe` | optional | If `true`, the ad will render in an iframe. Defaults to `false`. | `true` | `boolean` | `iframeSize` | optional | `[width, height]` If provided, use this size for the iframe size. Only applicable if `iframe` is `true`. If omitted, the largest size from the ad unit sizes array will be used. | `[300, 250]` | `[integer]` -| `bidfloor` | optional | The floor price, or minimum amount, a publisher will accept for an impression, given in CPM in USD. | `"1.00"` or `1.00` | `string` or `float` +| `bidfloor` | optional | The floor price, or minimum amount, a publisher will accept for an impression, given in CPM in USD. | `1.00` | `float`