Rocky_Mountain_Vending/.pnpm-store/v10/files/61/1c1c930b9c4be7aacb8bec9d675f30f775101fceb0c61fe2003db9c2dcc9ed7fb2dde52b03295355d4f27f8c5a158a8409c4ee90590d80ddb70ee962ad3e13
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

9 lines
262 B
Text

/**
* Parameters that will be passed on to the Stripe API to confirm payment for an Order's PaymentIntent.
*/
export interface ProcessOrderParams {
/**
* The url your customer will be directed to after they complete payment.
*/
return_url: string;
}