Skip to content

Commit

Permalink
33across, Smaato, OneVideo, & Sharethrough Bid Adapters: Add GVLID (#…
Browse files Browse the repository at this point in the history
…8104)

* Update 33acrossBidAdapter.js

* Update smaatoBidAdapter.js

* Update sharethroughBidAdapter.js

* Update oneVideoBidAdapter.js
  • Loading branch information
patmmccann authored Feb 22, 2022
1 parent e4047ee commit 549317d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions modules/33acrossBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ const END_POINT = 'https://ssc.33across.com/api/v1/hb';
const SYNC_ENDPOINT = 'https://ssc-cms.33across.com/ps/?m=xch&rt=html&ru=deb';

const CURRENCY = 'USD';
const GVLID = 58;
const GUID_PATTERN = /^[a-zA-Z0-9_-]{22}$/;

const PRODUCT = {
Expand Down Expand Up @@ -735,6 +736,7 @@ export const spec = {

code: BIDDER_CODE,
supportedMediaTypes: [ BANNER, VIDEO ],
gvlid: GVLID,
isBidRequestValid,
buildRequests,
interpretResponse,
Expand Down
1 change: 1 addition & 0 deletions modules/oneVideoBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ export const spec = {
SYNC_ENDPOINT1: 'https://pixel.advertising.com/ups/57304/sync?gdpr=&gdpr_consent=&_origin=0&redir=true',
SYNC_ENDPOINT2: 'https://match.adsrvr.org/track/cmf/generic?ttd_pid=adaptv&ttd_tpi=1',
supportedMediaTypes: ['video', 'banner'],
gvlid: 25,
/**
* Determines whether or not the given bid request is valid.
*
Expand Down
2 changes: 1 addition & 1 deletion modules/sharethroughBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const sharethroughInternal = {
export const sharethroughAdapterSpec = {
code: BIDDER_CODE,
supportedMediaTypes: [VIDEO, BANNER],

gvlid: 80,
isBidRequestValid: bid => !!bid.params.pkey && bid.bidder === BIDDER_CODE,

buildRequests: (bidRequests, bidderRequest) => {
Expand Down
1 change: 1 addition & 0 deletions modules/smaatoBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ const buildServerRequest = (validBidRequest, data) => {
export const spec = {
code: BIDDER_CODE,
supportedMediaTypes: [BANNER, VIDEO],
gvlid: 82,

/**
* Determines whether or not the given bid request is valid.
Expand Down

0 comments on commit 549317d

Please sign in to comment.