Skip to content

Commit

Permalink
IMDS Bid Adapter : add support for video.plcmt (prebid#11615)
Browse files Browse the repository at this point in the history
* imds: Rename usersync from "pixel" to correct name of "image".

* imds: Update documentation for "DFP Video Creative" to match prebid.github.io.

* imds: Test modifications for renamed pixel->image usersync

* imds: Remove warning for valid no-bid empty body 204 responses.

* updates imds bidder for prebid9 with video.plcmt

* newline

---------

Co-authored-by: Timothy M. Ace <tace@imds.tv>
  • Loading branch information
tgcallaway and ecammit authored Jun 3, 2024
1 parent ccf9813 commit 4d1692e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion modules/imdsBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const BID_SCHEME = 'https://';
const BID_DOMAIN = 'technoratimedia.com';
const USER_SYNC_IFRAME_URL = 'https://ad-cdn.technoratimedia.com/html/usersync.html';
const USER_SYNC_PIXEL_URL = 'https://sync.technoratimedia.com/services';
const VIDEO_PARAMS = [ 'minduration', 'maxduration', 'startdelay', 'placement', 'linearity', 'mimes', 'protocols', 'api' ];
const VIDEO_PARAMS = [ 'minduration', 'maxduration', 'startdelay', 'placement', 'plcmt', 'linearity', 'mimes', 'protocols', 'api' ];
const BLOCKED_AD_SIZES = [
'1x1',
'1x2'
Expand Down
12 changes: 6 additions & 6 deletions test/spec/modules/imdsBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ describe('imdsBidAdapter ', function () {
maxduration: 45,
startdelay: 1,
linearity: 1,
placement: 1,
plcmt: 1,
mimes: ['video/mp4'],
protocols: [1],
api: 1
Expand Down Expand Up @@ -622,7 +622,7 @@ describe('imdsBidAdapter ', function () {
maxduration: 45,
startdelay: 1,
linearity: 1,
placement: 1,
plcmt: 1,
mimes: ['video/mp4'],
protocols: [1],
api: 1
Expand Down Expand Up @@ -651,7 +651,7 @@ describe('imdsBidAdapter ', function () {
playerSize: [[640, 480]],
startdelay: 1,
linearity: 1,
placement: 1,
plcmt: 1,
mimes: ['video/mp4']
}
},
Expand Down Expand Up @@ -680,7 +680,7 @@ describe('imdsBidAdapter ', function () {
maxduration: 45,
startdelay: 1,
linearity: 1,
placement: 1,
plcmt: 1,
mimes: ['video/mp4'],
protocols: [1],
api: 1
Expand All @@ -703,7 +703,7 @@ describe('imdsBidAdapter ', function () {
playerSize: [[ 640, 480 ]],
startdelay: 1,
linearity: 1,
placement: 1,
plcmt: 1,
mimes: ['video/mp4']
}
},
Expand All @@ -726,7 +726,7 @@ describe('imdsBidAdapter ', function () {
w: 640,
startdelay: 1,
linearity: 1,
placement: 1,
plcmt: 1,
mimes: ['video/mp4']
},
id: 'v2624fabbb078e8-640x480',
Expand Down

0 comments on commit 4d1692e

Please sign in to comment.