Rocky_Mountain_Vending/.pnpm-store/v10/files/47/6f5231bb322bbe96e7e81a212301862189ee0de62f9c627de1e5c09cb5d15d0f340429e675ef31bf25a86d816e24e4759479df1dcff056891d6e43278cfe23
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

54 lines
1.5 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace Billing {
interface CreditBalanceTransactionRetrieveParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
interface CreditBalanceTransactionListParams extends PaginationParams {
/**
* The customer for which to fetch credit balance transactions.
*/
customer: string;
/**
* The credit grant for which to fetch credit balance transactions.
*/
credit_grant?: string;
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
class CreditBalanceTransactionsResource {
/**
* Retrieves a credit balance transaction.
*/
retrieve(
id: string,
params?: CreditBalanceTransactionRetrieveParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Billing.CreditBalanceTransaction>>;
retrieve(
id: string,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Billing.CreditBalanceTransaction>>;
/**
* Retrieve a list of credit balance transactions.
*/
list(
params: CreditBalanceTransactionListParams,
options?: RequestOptions
): ApiListPromise<Stripe.Billing.CreditBalanceTransaction>;
}
}
}
}