Rocky_Mountain_Vending/.pnpm-store/v10/files/90/99cb8498669d7a88afa45d454a8862613dc37da12cc4f7966fdf2f51ca566e2d73fbdaa1f540a849044594e4701d14db302fca32aae1d3b04e22931e061e56
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

63 lines
2.3 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
interface EventRetrieveParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
interface EventListParams extends PaginationParams {
/**
* Only return events that were created during the given date interval.
*/
created?: Stripe.RangeQueryParam | number;
/**
* Filter events by whether all webhooks were successfully delivered. If false, events which are still pending or have failed all delivery attempts to a webhook endpoint will be returned.
*/
delivery_success?: boolean;
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
/**
* A string containing a specific event name, or group of events using * as a wildcard. The list will be filtered to include only events with a matching event property.
*/
type?: string;
/**
* An array of up to 20 strings containing specific event names. The list will be filtered to include only events with a matching event property. You may pass either `type` or `types`, but not both.
*/
types?: Array<string>;
}
class EventsResource {
/**
* Retrieves the details of an event if it was created in the last 30 days. Supply the unique identifier of the event, which you might have received in a webhook.
*/
retrieve(
id: string,
params?: EventRetrieveParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Event>>;
retrieve(
id: string,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Event>>;
/**
* List events, going back up to 30 days. Each event data is rendered according to Stripe API version at its creation time, specified in [event object](https://docs.stripe.com/api/events/object) api_version attribute (not according to your current Stripe API version or Stripe-Version header).
*/
list(
params?: EventListParams,
options?: RequestOptions
): ApiListPromise<Stripe.Event>;
list(options?: RequestOptions): ApiListPromise<Stripe.Event>;
}
}
}