Skip to content

Commit

Permalink
fixes seedtag adapter jsdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
sangarbe committed Sep 30, 2024
1 parent 3375189 commit 107d1fa
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions modules/seedtagBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ import { _map, isArray, triggerPixel } from '../src/utils.js';
* @typedef {import('../src/adapters/bidderFactory.js').SyncOptions} SyncOptions
* @typedef {import('../src/adapters/bidderFactory.js').UserSync} UserSync
* @typedef {import('../src/adapters/bidderFactory.js').validBidRequests} validBidRequests
* @typedef {import('../src/adapters/bidderFactory.js').bidderRequest} bidderRequest
* @typedef {import('../src/adapters/bidderFactory.js').TimedOutBid} TimedOutBid
*/

const BIDDER_CODE = 'seedtag';
Expand Down Expand Up @@ -292,7 +294,8 @@ export const spec = {
/**
* Make a server request from the list of BidRequests.
*
* @param {validBidRequests[]} - an array of bids
* @param {validBidRequests[]} validBidRequests an array of bids
* @param {bidderRequest} bidderRequest an array of bids
* @return ServerRequest Info describing the request to the server.
*/
buildRequests(validBidRequests, bidderRequest) {
Expand Down Expand Up @@ -416,7 +419,7 @@ export const spec = {

/**
* Register bidder specific code, which will execute if bidder timed out after an auction
* @param {data} Containing timeout specific data
* @param {TimedOutBid} data Containing timeout specific data
*/
onTimeout(data) {
const url = getTimeoutUrl(data);
Expand All @@ -425,7 +428,7 @@ export const spec = {

/**
* Function to call when the adapter wins the auction
* @param {bid} Bid information received from the server
* @param {Bid} bid The bid information received from the server
*/
onBidWon: function (bid) {
if (bid && bid.nurl) {
Expand Down

0 comments on commit 107d1fa

Please sign in to comment.