Rocky_Mountain_Vending/.pnpm-store/v10/files/5b/a9c1aa168105296791b2cf88aba197d364fb84f0c5a6d428ce030a3736fef878ff54aa41fbc2888213917c94426452baec1f41e169287911abfb24dc00064c
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

47 lines
1.3 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace Reporting {
interface ReportTypeRetrieveParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
interface ReportTypeListParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
class ReportTypesResource {
/**
* Retrieves the details of a Report Type. (Certain report types require a [live-mode API key](https://stripe.com/docs/keys#test-live-modes).)
*/
retrieve(
id: string,
params?: ReportTypeRetrieveParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Reporting.ReportType>>;
retrieve(
id: string,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Reporting.ReportType>>;
/**
* Returns a full list of Report Types.
*/
list(
params?: ReportTypeListParams,
options?: RequestOptions
): ApiListPromise<Stripe.Reporting.ReportType>;
list(
options?: RequestOptions
): ApiListPromise<Stripe.Reporting.ReportType>;
}
}
}
}