Skip to content

Commit b633478

Browse files
Roffrayjsnellbaker
authored andcommitted
Add: vuble adapter handles dealId (#2322)
* Add: vuble adapter handles dealId * Fix: new publihser id vuble
1 parent d8c2a48 commit b633478

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

modules/vubleBidAdapter.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ export const spec = {
100100
height: bid.data.height,
101101
ttl: TTL,
102102
creativeId: responseBody.creativeId,
103+
dealId: responseBody.dealId,
103104
netRevenue: true,
104105
currency: CURRENCIES[bid.data.env],
105106
vastUrl: responseBody.url,

modules/vubleBidAdapter.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Module that connects to Vuble's demand sources
2626
bidder: "vuble",
2727
params: {
2828
env: 'net',
29-
pubId: '3',
29+
pubId: '18',
3030
zoneId: '12345',
3131
referrer: "http://www.vuble.tv/", // optional
3232
floorPrice: 5.00 // optional
@@ -47,7 +47,7 @@ Module that connects to Vuble's demand sources
4747
bidder: "vuble",
4848
params: {
4949
env: 'net',
50-
pubId: '3',
50+
pubId: '18',
5151
zoneId: '12345',
5252
referrer: "http://www.vuble.tv/", // optional
5353
floorPrice: 5.00 // optional

test/spec/modules/vubleBidAdapter_spec.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,8 @@ describe('VubleAdapter', () => {
174174
status: 'ok',
175175
cpm: 5.00,
176176
creativeId: '2468',
177-
url: 'https//player.mediabong.net/prebid/ad/a1b2c3d4'
177+
url: 'https//player.mediabong.net/prebid/ad/a1b2c3d4',
178+
dealId: 'MDB-TEST-1357'
178179
}
179180
};
180181
// bid Request
@@ -200,6 +201,7 @@ describe('VubleAdapter', () => {
200201
height: '360',
201202
ttl: 60,
202203
creativeId: '2468',
204+
dealId: 'MDB-TEST-1357',
203205
netRevenue: true,
204206
currency: 'USD',
205207
vastUrl: 'https//player.mediabong.net/prebid/ad/a1b2c3d4',

0 commit comments

Comments
 (0)