Skip to content

Commit

Permalink
AdmixerBidAdapter: add native media type support (prebid#7717)
Browse files Browse the repository at this point in the history
* add native support

* fix single quote linting error

Co-authored-by: atkachov <[email protected]>
Co-authored-by: Chris Huie <[email protected]>
  • Loading branch information
3 people authored and Chris Pabst committed Jan 10, 2022
1 parent 082430d commit 50dd1e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/admixerBidAdapter.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
import { logError } from '../src/utils.js';
import {registerBidder} from '../src/adapters/bidderFactory.js';
import {config} from '../src/config.js';
import {BANNER, VIDEO, NATIVE} from '../src/mediaTypes.js';

const BIDDER_CODE = 'admixer';
const ALIASES = ['go2net', 'adblender', 'adsyield'];
const ENDPOINT_URL = 'https://inv-nets.admixer.net/prebid.1.2.aspx';
export const spec = {
code: BIDDER_CODE,
aliases: ALIASES,
supportedMediaTypes: ['banner', 'video'],
supportedMediaTypes: [BANNER, VIDEO, NATIVE],
/**
* Determines whether or not the given bid request is valid.
*/
Expand Down

0 comments on commit 50dd1e5

Please sign in to comment.