Rocky_Mountain_Vending/.pnpm-store/v10/files/a1/433e46ff8bba8d76ab8ec80ed415c58422d4e2c4b7152e98cfaaf9d85095ffa827f8ee86c8e726df1b91f3ab47a7a611bc86b6724c844363c621304ef978a5
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

68 lines
2.1 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace FinancialConnections {
interface TransactionRetrieveParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
interface TransactionListParams extends PaginationParams {
/**
* The ID of the Financial Connections Account whose transactions will be retrieved.
*/
account: string;
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
/**
* A filter on the list based on the object `transacted_at` field. The value can be a string with an integer Unix timestamp, or it can be a dictionary with the following options:
*/
transacted_at?: Stripe.RangeQueryParam | number;
/**
* A filter on the list based on the object `transaction_refresh` field. The value can be a dictionary with the following options:
*/
transaction_refresh?: TransactionListParams.TransactionRefresh;
}
namespace TransactionListParams {
interface TransactionRefresh {
/**
* Return results where the transactions were created or updated by a refresh that took place after this refresh (non-inclusive).
*/
after: string;
}
}
class TransactionsResource {
/**
* Retrieves the details of a Financial Connections Transaction
*/
retrieve(
id: string,
params?: TransactionRetrieveParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.FinancialConnections.Transaction>>;
retrieve(
id: string,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.FinancialConnections.Transaction>>;
/**
* Returns a list of Financial Connections Transaction objects.
*/
list(
params: TransactionListParams,
options?: RequestOptions
): ApiListPromise<Stripe.FinancialConnections.Transaction>;
}
}
}
}