Rocky_Mountain_Vending/.pnpm-store/v10/files/ea/977b7a0435395b74a180236e425602850138406f749ba7a7b8c204740803b577a1db23ad5c7eee413e76461e593946120da29c936effc666b44caf6ebab9a9
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

58 lines
1.6 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace Treasury {
interface ReceivedDebitRetrieveParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
interface ReceivedDebitListParams extends PaginationParams {
/**
* The FinancialAccount that funds were pulled from.
*/
financial_account: string;
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
/**
* Only return ReceivedDebits that have the given status: `succeeded` or `failed`.
*/
status?: ReceivedDebitListParams.Status;
}
namespace ReceivedDebitListParams {
type Status = 'failed' | 'succeeded';
}
class ReceivedDebitsResource {
/**
* Retrieves the details of an existing ReceivedDebit by passing the unique ReceivedDebit ID from the ReceivedDebit list
*/
retrieve(
id: string,
params?: ReceivedDebitRetrieveParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Treasury.ReceivedDebit>>;
retrieve(
id: string,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Treasury.ReceivedDebit>>;
/**
* Returns a list of ReceivedDebits.
*/
list(
params: ReceivedDebitListParams,
options?: RequestOptions
): ApiListPromise<Stripe.Treasury.ReceivedDebit>;
}
}
}
}