Skip to content

Commit

Permalink
Justpremium, dspx, VisX, Yieldlab bid adapters: Add missing GVL IDs (#…
Browse files Browse the repository at this point in the history
…6983)

* Add missing GVL IDs for bidders

* Remove semicolon

* Add semicolon

* Use Online Solutions Vendor ID
  • Loading branch information
muuki88 authored Jun 9, 2021
1 parent 3fad473 commit 7ab3d15
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
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 = 602;

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
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;
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

0 comments on commit 7ab3d15

Please sign in to comment.