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>
19 lines
597 B
Text
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;
|
|
}
|