Skip to content

Commit 549317d

Browse files
authored
33across, Smaato, OneVideo, & Sharethrough Bid Adapters: Add GVLID (#8104)
* Update 33acrossBidAdapter.js * Update smaatoBidAdapter.js * Update sharethroughBidAdapter.js * Update oneVideoBidAdapter.js
1 parent e4047ee commit 549317d

File tree

4 files changed

+5
-1
lines changed

4 files changed

+5
-1
lines changed

modules/33acrossBidAdapter.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ const END_POINT = 'https://ssc.33across.com/api/v1/hb';
2020
const SYNC_ENDPOINT = 'https://ssc-cms.33across.com/ps/?m=xch&rt=html&ru=deb';
2121

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

2526
const PRODUCT = {
@@ -735,6 +736,7 @@ export const spec = {
735736

736737
code: BIDDER_CODE,
737738
supportedMediaTypes: [ BANNER, VIDEO ],
739+
gvlid: GVLID,
738740
isBidRequestValid,
739741
buildRequests,
740742
interpretResponse,

modules/oneVideoBidAdapter.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ export const spec = {
1010
SYNC_ENDPOINT1: 'https://pixel.advertising.com/ups/57304/sync?gdpr=&gdpr_consent=&_origin=0&redir=true',
1111
SYNC_ENDPOINT2: 'https://match.adsrvr.org/track/cmf/generic?ttd_pid=adaptv&ttd_tpi=1',
1212
supportedMediaTypes: ['video', 'banner'],
13+
gvlid: 25,
1314
/**
1415
* Determines whether or not the given bid request is valid.
1516
*

modules/sharethroughBidAdapter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const sharethroughInternal = {
1818
export const sharethroughAdapterSpec = {
1919
code: BIDDER_CODE,
2020
supportedMediaTypes: [VIDEO, BANNER],
21-
21+
gvlid: 80,
2222
isBidRequestValid: bid => !!bid.params.pkey && bid.bidder === BIDDER_CODE,
2323

2424
buildRequests: (bidRequests, bidderRequest) => {

modules/smaatoBidAdapter.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ const buildServerRequest = (validBidRequest, data) => {
110110
export const spec = {
111111
code: BIDDER_CODE,
112112
supportedMediaTypes: [BANNER, VIDEO],
113+
gvlid: 82,
113114

114115
/**
115116
* Determines whether or not the given bid request is valid.

0 commit comments

Comments
 (0)