Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Admixer adapter update - add deal id #6042

Merged
merged 16 commits into from
Dec 1, 2020
1 change: 1 addition & 0 deletions modules/admixerBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ export const spec = {
netRevenue: bidResponse.netRevenue,
currency: bidResponse.currency,
vastUrl: bidResponse.vastUrl,
dealId: bidResponse.dealId,
};
bidResponses.push(bidResp);
});
Expand Down
4 changes: 3 additions & 1 deletion test/spec/modules/admixerBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,8 @@ describe('AdmixerAdapter', function () {
'creativeId': 'ccca3e5e-0c54-4761-9667-771322fbdffc',
'ttl': 360,
'netRevenue': false,
'bidId': '5e4e763b6bc60b'
'bidId': '5e4e763b6bc60b',
'dealId': 'asd123',
}]
}
};
Expand All @@ -107,6 +108,7 @@ describe('AdmixerAdapter', function () {
'currency': ads[0].currency,
'netRevenue': ads[0].netRevenue,
'ttl': ads[0].ttl,
'dealId': ads[0].dealId,
}
];

Expand Down