Skip to content

Commit 9459b52

Browse files
authored
Teal bid adapter: include native and video media types (#14493)
1 parent 50bc036 commit 9459b52

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/tealBidAdapter.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {deepSetValue, deepAccess, triggerPixel, deepClone, isEmpty, logError, shuffle} from '../src/utils.js';
22
import {registerBidder} from '../src/adapters/bidderFactory.js';
33
import {ortbConverter} from '../libraries/ortbConverter/converter.js'
4-
import {BANNER} from '../src/mediaTypes.js';
4+
import {BANNER, NATIVE, VIDEO} from '../src/mediaTypes.js';
55
import {pbsExtensions} from '../libraries/pbsExtensions/pbsExtensions.js'
66
const BIDDER_CODE = 'teal';
77
const GVLID = 1378;
@@ -43,7 +43,7 @@ const converter = ortbConverter({
4343
export const spec = {
4444
code: BIDDER_CODE,
4545
gvlid: GVLID,
46-
supportedMediaTypes: [BANNER],
46+
supportedMediaTypes: [BANNER, NATIVE, VIDEO],
4747
aliases: [],
4848

4949
isBidRequestValid: function(bid) {

0 commit comments

Comments
 (0)