Skip to content

Commit 09dfc3b

Browse files
Merge branch 'master' into feature/smartytech-docs-userid-consent-chunks
2 parents a6bd22c + 7770f81 commit 09dfc3b

File tree

5 files changed

+34
-7
lines changed

5 files changed

+34
-7
lines changed

dev-docs/bidders/fwssp.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,18 @@ The following bid params are for use with the Prebid.js bid adapter:
3636
| `profile` | required | Profile Name - The value should contain a profile name. and NOT a numeric profile ID. This can either include the network ID prefix or with the profile name alone | "96749:global-js" | `string` |
3737
| `siteSectionId` | required | Custom Site Section tag or numeric Site Section ID | "ss_12345" | `string` |
3838
| `videoAssetId` | required | Custom content Video Asset ID | "pause_ad_video" | `string` |
39+
| `bidfloor` | optional | Bid floor price | 13.2118 | `number` |
40+
| `bidfloorcur` | optional | Bid floor currency | "USD" | `string` |
3941
| `flags` | optional | Optional flags to include in the ad request | '+play-uapl' | `string` |
4042
| `mode` | optional | Request mode. Valid values are: “on-demand", "live". Default: "on-demand" | "live" | `string` |
4143
| `adRequestKeyValues` | optional | An object of ad request key-value pairs. | { \_fw_player_width: '1920', \_fw_player_height: '1080' } | `object` |
4244
| `gdpr_consented_providers` | optional | List of Consented Providers. A comma-separated list of ids. | "216,229,80,359,479" | `string` |
4345
| `tpos` | optional | Slot time position in seconds. Default: 0 | 10 | `number` |
4446
| `slid` | optional | Slot custom ID. Any string with valid letters/digits/symbols. Default: "Preroll_1" | "CustomPreroll" | `string` |
4547
| `slau` | optional | Specify custom ad unit names for this slot. Multiple ad unit names can be put into this parameter, separated by "\|". Ad unit group names are also supported but you can only specify one ad unit group; multiple ad unit groups or mixed ad unit group and ad unit names are not supported. Default: "preroll" | "pre1\|pre2" | `string` |
46-
| `minD` | optional | The minimum duration of a slot, in seconds. | 30 | `number` |
47-
| `maxD` | optional | The maximum duration of a slot, in seconds. | 30 | `number` |
4848
| `listeners` | optional | An object of AdManager event listeners | { onSlotStarted: this.onSlotStarted, adEvent: this.onAdEvent, onSlotEnded: this.onSlotEnded } | `object` |
49-
| `isMuted` | optional | Constrols if ad playback should start with volume muted. Default: true | false | `boolean` |
50-
| `showMuteButton` | optional | Controls if a mute button should be shown during ad playback. Default: false | true | `boolean` |
49+
| `isMuted` | optional | Controls if ad playback should start with volume muted. Default: true | false | `boolean` |
50+
| `showMuteButton` | optional | Controls if a mute button should be shown during ad playback. Default: false | true | `boolean` |
5151
| `playerParams` | optional | An object of AdManager player parameter values | { "renderer.video.startDetectTimeout": 5000 } | `object` |
5252
| `sdkVersion` | optional | The AdManager sdk version to use for playback. This is only valid for "outstream" formats. Default: "7.10.0" | "7.11.0" | `string` |
5353
| `format` | optional | The format to use for displaying the ad. Default: outstream | "inbanner" | `string` |

dev-docs/bidders/lane4.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,30 @@ var adUnits = [
9090
}
9191
];
9292
```
93+
94+
#### First Party Data
95+
96+
In release 4.30 and later, publishers should use the `ortb2` method of setting [First Party Data](https://docs.prebid.org/features/firstPartyData.html). The following fields are supported:
97+
98+
* ortb2.user.id
99+
* ortb2.user.buyeruid
100+
* ortb2.user.keywords
101+
* ortb2.user.ext.*
102+
103+
Example first party data that's available to all bidders and all adunits:
104+
105+
```javascript
106+
pbjs.setConfig({
107+
ortb2: {
108+
user: {
109+
id: 123456789, // Unique pseudonymized ID for the user (e.g., NPI).
110+
buyeruid: 987654321, // DSP-assigned user ID for identity resolution.
111+
keywords: "kw1,kw2", // Interest or specialty tags (e.g., oncology, cardiology)
112+
ext: {
113+
key1: "values", // Custom healthcare metadata (e.g., icd10), single or comma seperated.
114+
key2: "values" // Additional campaign context (e.g., ndc), single or comma seperated.
115+
}
116+
}
117+
}
118+
});
119+
```

dev-docs/bidders/pubmatic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Publishers can use Prebid.js to call PubMatic in any of the following ways:
4747
* **Call through our client-side adapter**: Prebid.js calls PubMatic directly from the browser using our client-side adapter.
4848
* **Call through our server-side adapter**: Prebid.js makes a call to Prebid Server and then Prebid Server uses our server-side adapter to call PubMatic.
4949

50-
We highly recommend adding the `gptPreAuction` module to populate GPID (Global Placement ID) values. See the [gptPreAuction module documentation](https://docs.prebid.org/dev-docs/modules/gptPreAuction.html) for implementation details.
50+
We highly recommend adding the `gptPreAuction` module to populate GPID (Global Placement ID) values. See the [gptPreAuction module documentation](https://docs.prebid.org/dev-docs/modules/gpt-pre-auction.html) for implementation details.
5151

5252
### Bid Params
5353

dev-docs/modules/userId.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ The table below has the options that are common across ID systems. See the secti
102102

103103
## Permissions
104104

105-
Publishers can control which user ids are shared with the bid adapters they choose to work with by using the bidders array. The bidders array is part of the User id module config, publisher may choose to send an id to some bidders but not all, the default behavior is that each user id go to all bid adapters the publisher is working with.
105+
Publishers can control which user ids are shared with the bid adapters they choose to work with by using the bidders array. The bidders array is part of the User id module config, publisher may choose to send an id to some bidders but not all, the default behavior is that each user id goes to all bid adapters the publisher is working with.
106106

107107
Use the optional `bidders` parameter to define an array of bidder codes to which this user ID may be sent.
108108

dev-docs/modules/userid-submodules/intentiq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ By leveraging the Intent IQ identity graph, our module helps publishers, SSPs, a
1717
## Registration
1818

1919
Navigate to [our portal](https://www.intentiq.com/) and contact our team for partner ID.
20-
check our [documentation](https://pbmodule.documents.intentiq.com/) to get more information about our solution and how utilze it's full potential
20+
check our [documentation](https://pbmodule.documents.intentiq.com/) to get more information about our solution and how to utilze it's full potential
2121

2222
## Integration
2323

0 commit comments

Comments
 (0)