Skip to content

Commit

Permalink
fixed the docs page where in was shown as an object but should be an …
Browse files Browse the repository at this point in the history
…array (prebid#5427)

Co-authored-by: NikhilX <nikhil@pubx.ai>
  • Loading branch information
2 people authored and linzhucheng committed Jul 5, 2024
1 parent b366f04 commit ebedc98
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions dev-docs/modules/pubxaiRtdProvider.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,20 @@ pbjs.setConfig({
...,
realTimeData: {
auctionDelay: AUCTION_DELAY,
dataProviders: {
name: "pubxai",
waitForIt: true,
params: {
pubxId: `<publisher_id>`,
endpoint: `<publisher_endpoint>`, // (optional)
floorMin: `<floorMin>`, // (optional)
enforcement: `<enforcement>`, // (optional)
data: `<defaultConfig>` // (optional)
}
}
}
dataProviders: [
{
name: "pubxai",
waitForIt: true,
params: {
pubxId: `<publisher_id>`,
endpoint: `<publisher_endpoint>`, // (optional)
floorMin: `<floorMin>`, // (optional)
enforcement: `<enforcement>`, // (optional)
data: `<defaultConfig>` // (optional)
},
},
],
},
// rest of the config
...,
});
Expand Down

0 comments on commit ebedc98

Please sign in to comment.