Rocky_Mountain_Vending/.pnpm-store/v10/files/9a/c0ba42b8ff7008490036834f19d60ed8354372193c4c49b0e7acadc7ea644704bee70620fba56c0c59ad7f649d700c43d292dab151ef027a930181d0a8671d
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

57 lines
1.3 KiB
Text

// File generated from our OpenAPI spec
/// <reference path='../EventTypes.d.ts' />
declare module 'stripe' {
namespace Stripe {
namespace V2 {
namespace Core {
interface EventRetrieveParams {}
}
namespace Core {
interface EventListParams {
/**
* Primary object ID used to retrieve related events.
*/
object_id: string;
/**
* The page size.
*/
limit?: number;
/**
* The requested page.
*/
page?: string;
}
}
namespace Core {
class EventsResource {
/**
* Retrieves the details of an event.
*/
retrieve(
id: string,
params?: EventRetrieveParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.V2.Event>>;
retrieve(
id: string,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.V2.Event>>;
/**
* List events, going back up to 30 days.
*/
list(
params: EventListParams,
options?: RequestOptions
): ApiListPromise<Stripe.V2.Event>;
}
}
}
}
}