Skip to main content

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.

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: modules/auctions · npm: @86d-app/auctions

Installation

86d module add auctions

Store endpoints

MethodPathDescription
GET/auctionsActive auctions
GET/auctions/:idAuction detail
POST/auctions/:id/bidPlace a bid

Admin endpoints

MethodPathDescription
POST/admin/auctionsCreate an auction
POST/admin/auctions/:id/endForce-close

Components

  • <AuctionDetail id={id} />, <BidForm auctionId={id} />, <LiveBidFeed auctionId={id} />.