From 2ec61c51d2448f4f4f37fb73ae8703bcfef40c06 Mon Sep 17 00:00:00 2001 From: Brett Bloxom Date: Thu, 23 May 2024 16:16:01 -0600 Subject: [PATCH] adds dealid property to bid responses --- modules/concertBidAdapter.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/concertBidAdapter.js b/modules/concertBidAdapter.js index bc2c4555c54..1912f8c332d 100644 --- a/modules/concertBidAdapter.js +++ b/modules/concertBidAdapter.js @@ -121,7 +121,8 @@ export const spec = { meta: { advertiserDomains: bid && bid.adomain ? bid.adomain : [] }, creativeId: bid.creativeId, netRevenue: bid.netRevenue, - currency: bid.currency + currency: bid.currency, + ...(bid.dealid && { dealId: bid.dealid }), }; });