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

Justpremium, dspx, VisX, Yieldlab bid adapters: Add missing GVL IDs #6983

Merged
merged 4 commits into from
Jun 9, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
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: 2 additions & 0 deletions modules/dspxBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,11 @@ const BIDDER_CODE = 'dspx';
const ENDPOINT_URL = 'https://buyer.dspx.tv/request/';
const ENDPOINT_URL_DEV = 'https://dcbuyer.dspx.tv/request/';
const DEFAULT_VAST_FORMAT = 'vast2';
const GVLID = 937;
muuki88 marked this conversation as resolved.
Show resolved Hide resolved

export const spec = {
code: BIDDER_CODE,
gvlid: GVLID,
aliases: ['dspx'],
supportedMediaTypes: [BANNER, VIDEO],
isBidRequestValid: function(bid) {
Expand Down
2 changes: 2 additions & 0 deletions modules/justpremiumBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@ import { registerBidder } from '../src/adapters/bidderFactory.js'
import { deepAccess } from '../src/utils.js';

const BIDDER_CODE = 'justpremium'
const GVLID = 62;
muuki88 marked this conversation as resolved.
Show resolved Hide resolved
const ENDPOINT_URL = 'https://pre.ads.justpremium.com/v/2.0/t/xhr'
const JP_ADAPTER_VERSION = '1.7'
const pixels = []

export const spec = {
code: BIDDER_CODE,
gvlid: GVLID,
time: 60000,

isBidRequestValid: (bid) => {
Expand Down
2 changes: 2 additions & 0 deletions modules/visxBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { BANNER, VIDEO } from '../src/mediaTypes.js';
import { INSTREAM as VIDEO_INSTREAM } from '../src/video.js';
const { parseSizesInput, getKeys, logError, deepAccess } = utils;
const BIDDER_CODE = 'visx';
const GVLID = 154
muuki88 marked this conversation as resolved.
Show resolved Hide resolved
const BASE_URL = 'https://t.visx.net';
const ENDPOINT_URL = BASE_URL + '/hb';
const TIME_TO_LIVE = 360;
Expand All @@ -30,6 +31,7 @@ const currencyWhiteList = ['EUR', 'USD', 'GBP', 'PLN'];
const RE_EMPTY_OR_ONLY_COMMAS = /^,*$/;
export const spec = {
code: BIDDER_CODE,
gvlid: GVLID,
supportedMediaTypes: [BANNER, VIDEO],
isBidRequestValid: function(bid) {
if (_isVideoBid(bid)) {
Expand Down
2 changes: 2 additions & 0 deletions modules/yieldlabBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ const BIDDER_CODE = 'yieldlab'
const BID_RESPONSE_TTL_SEC = 300
const CURRENCY_CODE = 'EUR'
const OUTSTREAMPLAYER_URL = 'https://ad.adition.com/dynamic.ad?a=o193092&ma_loadEvent=ma-start-event'
const GVLID = 70

export const spec = {
code: BIDDER_CODE,
gvlid: GVLID,
supportedMediaTypes: [VIDEO, BANNER],

isBidRequestValid: function (bid) {
Expand Down