Rocky_Mountain_Vending/.pnpm-store/v10/files/75/860a58e6267babb48d0acad00b6ddaaee8edcea4287cb5c408bb9e16a816f1cb39e7db6f321f6930be6a7815442852ff631d1d95e13bcdbe72773f6d929049
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

45 lines
1.2 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace Climate {
interface ProductRetrieveParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
interface ProductListParams extends PaginationParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
class ProductsResource {
/**
* Retrieves the details of a Climate product with the given ID.
*/
retrieve(
id: string,
params?: ProductRetrieveParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Climate.Product>>;
retrieve(
id: string,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Climate.Product>>;
/**
* Lists all available Climate product objects.
*/
list(
params?: ProductListParams,
options?: RequestOptions
): ApiListPromise<Stripe.Climate.Product>;
list(options?: RequestOptions): ApiListPromise<Stripe.Climate.Product>;
}
}
}
}