Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NovatiqId User Module: include IAB Vendor ID #8479

Merged
merged 25 commits into from
May 25, 2022
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
18d1849
Novatiq snowflake userId submodule
Feb 23, 2021
2a8ccd5
change request updates
Feb 24, 2021
1b41398
Update novatiqIdSystem_spec.js
Feb 24, 2021
65b7592
Update novatiqIdSystem.md
Mar 2, 2021
0d5b439
Merge branch 'prebid_master' into merge_latest
rajsidhunovatiq Jan 20, 2022
ae8b5ce
Merge pull request #2 from novatiq/merge_latest
rajsidhunovatiq Jan 20, 2022
efa7915
use the sharedId if available and configured
rajsidhunovatiq Jan 31, 2022
829655e
updated docs
rajsidhunovatiq Jan 31, 2022
72ccd50
test changes
rajsidhunovatiq Jan 31, 2022
1ac92f9
Merge pull request #3 from novatiq/sharedID
rajsidhunovatiq Jan 31, 2022
11c2e65
Merge branch 'prebid:master' into master
rajsidhunovatiq Jan 31, 2022
82245a5
defensive code not required
rajsidhunovatiq Feb 1, 2022
2651b19
Use the prebid storage manager instead of using native functions
rajsidhunovatiq Feb 10, 2022
c105b51
doc changes
rajsidhunovatiq Feb 10, 2022
ae006d8
trailing spaces
rajsidhunovatiq Feb 10, 2022
ef193ab
Merge branch 'prebid:master' into master
rajsidhunovatiq Feb 14, 2022
c9a0003
Merge branch 'prebid:master' into master
rajsidhunovatiq Feb 18, 2022
172b694
Allow configuration of the sync URL and to allow callbacks for specif…
rajsidhunovatiq Feb 18, 2022
c90d36c
update documentation
rajsidhunovatiq Feb 18, 2022
361d5ed
Merge branch 'prebid:master' into master
rajsidhunovatiq Feb 18, 2022
996f8c9
attempt to fix firefox test timeout
rajsidhunovatiq Feb 18, 2022
b896067
Merge branch 'master' of https://github.com/novatiq/Prebid.js
rajsidhunovatiq Feb 18, 2022
d039277
Merge branch 'master' of https://github.com/prebid/Prebid.js
rajsidhunovatiq Mar 7, 2022
19c7410
Merge branch 'prebid_master' into merge_latest
rajsidhunovatiq May 25, 2022
ec86432
include the AIB Vendor Id
rajsidhunovatiq May 25, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion modules/novatiqIdSystem.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ export const novatiqIdSubmodule = {
* @type {string}
*/
name: 'novatiq',
/**
* used to specify vendor id
* @type {number}
*/
gvlid: 1119,

/**
* decode the stored id value for passing to bid requests
Expand Down Expand Up @@ -202,7 +207,7 @@ export const novatiqIdSubmodule = {
let sharedId = null;
if (this.useSharedId(configParams)) {
let cookieOrStorageID = this.getCookieOrStorageID(configParams);
const storage = getStorageManager({moduleName: 'pubCommonId'});
const storage = getStorageManager({gvlid: this.gvlid, moduleName: 'pubCommonId'});

// first check local storage
if (storage.hasLocalStorage()) {
Expand Down