Skip to content

Commit

Permalink
reverted ext configs for bidders, set ext targeting to includewinners…
Browse files Browse the repository at this point in the history
… false instead of removing it
  • Loading branch information
anastasiiapankivFS committed Jun 10, 2024
1 parent aaf0bcf commit d1ba3e8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
4 changes: 4 additions & 0 deletions libraries/pbsExtensions/processors/requestExtPrebid.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ export function setRequestExtPrebid(ortbRequest, bidderRequest) {
mergeDeep(
{
auctiontimestamp: bidderRequest.auctionStart,
targeting: {
includewinners: false,
includebidderkeys: false
}
},
ortbRequest.ext?.prebid,
)
Expand Down
5 changes: 5 additions & 0 deletions modules/bluebillywigBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,11 @@ export const spec = {
tmax: Math.min(BB_CONSTANTS.DEFAULT_TIMEOUT, bidderRequest.timeout),
imp: imps,
test: DEV_MODE ? 1 : 0,
ext: {
prebid: {
targeting: { includewinners: true, includebidderkeys: false }
}
}
};

// handle privacy settings for GDPR/CCPA/COPPA
Expand Down
9 changes: 9 additions & 0 deletions modules/luponmediaBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -315,6 +315,15 @@ function newOrtbBidRequest(bidRequest, bidderRequest, currentImps) {
format: bannerSizes
}
}]),
ext: {
prebid: {
targeting: {
includewinners: true,
// includebidderkeys always false for openrtb
includebidderkeys: false
}
}
},
user: {
}
};
Expand Down

0 comments on commit d1ba3e8

Please sign in to comment.