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>
54 lines
1.5 KiB
Text
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>;
|
|
}
|
|
}
|
|
}
|
|
}
|