From 77e3026f57a5c12b514f126c96fd68ad65c5b01c Mon Sep 17 00:00:00 2001 From: matthieularere-msq <63732822+matthieularere-msq@users.noreply.github.com> Date: Wed, 6 Dec 2023 14:06:41 +0100 Subject: [PATCH] add event bidAccepted add event bidAccepted --- dev-docs/publisher-api-reference/getEvents.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-docs/publisher-api-reference/getEvents.md b/dev-docs/publisher-api-reference/getEvents.md index cc643102e0..ccf5c2711f 100644 --- a/dev-docs/publisher-api-reference/getEvents.md +++ b/dev-docs/publisher-api-reference/getEvents.md @@ -24,7 +24,7 @@ The available events are: {: .table .table-bordered .table-striped } | Event | Description | Callback Arguments | -|---------------+-----------------------------------------|--------------------| +| --- | --- | --- | | auctionInit | The auction has started | Object containing auction details | | auctionEnd | The auction has ended | Object containing auction details | | beforeRequestBids | Bids are about to be requested from adapters (added in 3.x) | Array of adunits in the auction | @@ -45,6 +45,7 @@ The available events are: | bidderDone | A bidder has signaled they are done responding | Bid request object | | bidderError | A bidder responded with an error | Object with the XMLHttpRequest error and the bid request object `{ error, bidderRequest }` | | tcf2Enforcement | There was a TCF2 enforcement action taken | `{ storageBlocked: ['moduleA', 'moduleB'], biddersBlocked: ['moduleB'], analyticsBlocked: ['moduleC'] }` | +| bidAccepted | A bid was accepted and is about to be added to auction | Bid response object | The example below shows how these events can be used.