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

IMDS Bid Adapter : add support for video.plcmt #11615

Merged
merged 7 commits into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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