Skip to content

Commit

Permalink
AirGrid RTD Provider: update TCF ID with MiQ TCF ID (prebid#12710)
Browse files Browse the repository at this point in the history
* chore: update `getAudiencesAsBidderOrtb2` implementation and test

* chore: use provided tag insertion method

* fix: add `airgrid` to `_approvedLoadExternalJSList`

* fix: use 'sdk' path if no publisherId is provided

* fix: use accountId as path param for script url

* fix: assign edktInitializor props before `loadExternalScript` call

* fix: set `edktInitializor.invoked` before calling `loadExternalScript`

* fix: restore method for setting `user.ext.data`
feat: extend module data setting using `user.keywords` for appnexus

* fix: rollback changes to data setting method

* replace AG TCF ID with MiQ TCF ID (AirGrid acquired by MiQ)

---------

Co-authored-by: naripok <[email protected]>
  • Loading branch information
alexander-kislitsyn and naripok authored Jan 30, 2025
1 parent b89d9e6 commit a1e8b12
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/airgridRtdProvider.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {MODULE_TYPE_RTD} from '../src/activities/modules.js';

const MODULE_NAME = 'realTimeData';
const SUBMODULE_NAME = 'airgrid';
const AG_TCF_ID = 782;
const MIQ_TCF_ID = 101;
export const AG_AUDIENCE_IDS_KEY = 'edkt_matched_audience_ids';

export const storage = getStorageManager({
Expand Down Expand Up @@ -76,7 +76,7 @@ export function setAudiencesAsBidderOrtb2(bidConfig, rtdConfig, audiences) {

const agUserData = [
{
id: String(AG_TCF_ID),
id: String(MIQ_TCF_ID),
ext: {
segtax: 540,
},
Expand Down Expand Up @@ -129,7 +129,7 @@ export const airgridSubmodule = {
name: SUBMODULE_NAME,
init: init,
getBidRequestData: passAudiencesToBidders,
gvlid: AG_TCF_ID
gvlid: MIQ_TCF_ID
};

submodule(MODULE_NAME, airgridSubmodule);

0 comments on commit a1e8b12

Please sign in to comment.