Rocky_Mountain_Vending/.pnpm-store/v10/files/70/c36449031712071b35bf68f2f179cffc6f751b17aa34d48d34d4818b54d8831d49de7294bda748a5edb6ab7707a767296de15d5ef49eb4d1602cae39771f0c
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

19 lines
597 B
Text

/**
* Data to be sent with a `stripe.collectFinancialConnectionsAccounts` request.
*/
export interface CollectFinancialConnectionsAccountsOptions {
/**
* The client secret of the [Financial Connections Session](https://stripe.com/docs/api/financial_connections/session).
*/
clientSecret: string;
}
/**
* Data to be sent with a `stripe.collectBankAccountToken` request.
*/
export interface CollectBankAccountTokenOptions {
/**
* The client secret of the [Financial Connections Session](https://stripe.com/docs/api/financial_connections/session).
*/
clientSecret: string;
}