The auctions module turns selected products into time-limited auctions. Customers place bids; the module enforces minimum-increment rules, holds reserve prices, and notifies the winner when the auction closes. The winning bid converts to an order on confirmation. Source:Documentation Index
Fetch the complete documentation index at: https://86d.app/docs/llms.txt
Use this file to discover all available pages before exploring further.
modules/auctions · npm: @86d-app/auctions
Installation
Store endpoints
| Method | Path | Description |
|---|---|---|
GET | /auctions | Active auctions |
GET | /auctions/:id | Auction detail |
POST | /auctions/:id/bid | Place a bid |
Admin endpoints
| Method | Path | Description |
|---|---|---|
POST | /admin/auctions | Create an auction |
POST | /admin/auctions/:id/end | Force-close |
Components
<AuctionDetail id={id} />,<BidForm auctionId={id} />,<LiveBidFeed auctionId={id} />.

