From c927106739170614f036652132391e0c819909b6 Mon Sep 17 00:00:00 2001
From: Jozef Bartek <31618107+jbartek25@users.noreply.github.com>
Date: Thu, 19 May 2022 00:59:15 +0200
Subject: [PATCH] Improve Digital adapter: Extend mode (#1) (#3782)
---
dev-docs/bidders/improvedigital.md | 18 ++++++++++++++++++
1 file changed, 18 insertions(+)
diff --git a/dev-docs/bidders/improvedigital.md b/dev-docs/bidders/improvedigital.md
index 5d622682fd..b77db46be5 100755
--- a/dev-docs/bidders/improvedigital.md
+++ b/dev-docs/bidders/improvedigital.md
@@ -26,6 +26,7 @@ pbs_app_supported: true
| `keyValues` | optional | Contains one or more key-value pairings for key-value targeting | `{ testKey1: ['testValueA'], testKey2: ['testValueB', 'testValueC'] }` | `object` |
| `bidFloor` | optional | Bid floor price | `0.01` | `float` |
| `bidFloorCur` | optional | Bid floor price currency. Supported values: USD (default), EUR, GBP, AUD, DKK, SEK, CZK, CHF, NOK | `'USD'` | `string` |
+| `extend` | optional | See the [Extend mode section](#improvedigital-extend) | `true` | `boolean` |
| `rendererConfig` | optional | Configuration object for JS renderer of the RAZR creatives. Provided by Improve Digital. | `{ key1: value1 }` | `object` |
| `video` | optional | Object with video parameters. See the [Video params](#improvedigital-video) section below for details. | | `object` |
@@ -69,6 +70,23 @@ pbjs.setConfig({
});
```
+
+
+#### Extend Mode
+
+Improve Digital Extend mode provides publishers with access to additional demand from other SSPs. Before enabling please contact our team for more information.
+The Extend mode can be enabled:
+* per ad unit via the `extend` [bid param](#improvedigital-params)
+* for all ad units via `setConfig()`:
+
+```
+pbjs.setConfig({
+ improvedigital: {
+ extend: true
+ }
+});
+```
+
### Examples