From 9c2625fccc78c2fe9bece91858fd6e99231e5dbf Mon Sep 17 00:00:00 2001 From: Samuel Fabel Date: Thu, 12 Dec 2024 10:34:03 -0300 Subject: [PATCH 1/2] Put placementId parameter at docs (#5724) --- dev-docs/bidders/blue.md | 1 + 1 file changed, 1 insertion(+) diff --git a/dev-docs/bidders/blue.md b/dev-docs/bidders/blue.md index f7200c9154..5f5bab5674 100644 --- a/dev-docs/bidders/blue.md +++ b/dev-docs/bidders/blue.md @@ -27,3 +27,4 @@ The bidder requires setup before usage. Please get in touch with our publisher t | Name | Scope | Description | Example | Type | |---------------|----------|---------------------|---------------|----------| | `publisherId` | required | Unique publisher ID | `'ABCDEF'` | `string` | +| `placementId` | optional | Unique placement ID | `'ABCDEF'` | `string` | From 60be8ab70e40e89f4fe7e841695a36c951a0cebb Mon Sep 17 00:00:00 2001 From: dmytro-po Date: Thu, 12 Dec 2024 15:36:01 +0200 Subject: [PATCH 2/2] Intent IQ Analytics Adapter: Support domainName parameter (#5701) * update documentation * White space fixes * Apply suggestions from code review Co-authored-by: bretg * Add example and link to Universal ID configuration * Support domainName parameter --------- Co-authored-by: DimaIntentIQ Co-authored-by: DimaIntentIQ <139111483+DimaIntentIQ@users.noreply.github.com> Co-authored-by: bretg --- dev-docs/modules/userid-submodules/intentiq.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-docs/modules/userid-submodules/intentiq.md b/dev-docs/modules/userid-submodules/intentiq.md index 373f8171c5..9c1880b98a 100644 --- a/dev-docs/modules/userid-submodules/intentiq.md +++ b/dev-docs/modules/userid-submodules/intentiq.md @@ -45,6 +45,7 @@ Please find below list of parameters that could be used in configuring Intent IQ | params.timeoutInMillis | Optional | Number | This is the timeout in milliseconds, which defines the maximum duration before the callback is triggered. The default value is 500. | `450` | | params.browserBlackList | Optional |  String | This is the name of a browser that can be added to a blacklist. | `"chrome"` | | params.manualWinReportEnabled | Optional | Boolean | This variable determines whether the bidWon event is triggered automatically. If set to false, the event will occur automatically, and manual reporting with reportExternalWin will be disabled. If set to true, the event will not occur automatically, allowing manual reporting through reportExternalWin. The default value is false. | `true`| +| params.domainName | Optional | String | Specifies the domain of the page in which the IntentIQ object is currently running and serving the impression. This domain will be used later in the revenue reporting breakdown by domain. For example, cnn.com. It identifies the primary source of requests to the IntentIQ servers, even within nested web pages. | `"currentDomain.com"` | ### Configuration example @@ -58,7 +59,8 @@ pbjs.setConfig({ timeoutInMillis: 500, browserBlackList: "chrome", callback: (data, group) => window.pbjs.requestBids(), - manualWinReportEnabled: true + manualWinReportEnabled: true, + domainName: "currentDomain.com" }, storage: { type: "html5",