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>
36 lines
847 B
Text
36 lines
847 B
Text
// This is a manually maintained file
|
|
|
|
declare module 'stripe' {
|
|
namespace Stripe {
|
|
namespace Event {
|
|
/**
|
|
* Object containing the reference to API resource relevant to the event.
|
|
*/
|
|
interface RelatedObject {
|
|
/**
|
|
* Unique identifier for the object relevant to the event.
|
|
*/
|
|
id: string;
|
|
|
|
/**
|
|
* Type of the object relevant to the event.
|
|
*/
|
|
type: string;
|
|
|
|
/**
|
|
* URL to retrieve the resource.
|
|
*/
|
|
url: string;
|
|
}
|
|
}
|
|
/**
|
|
* The Event object as recieved from StripeClient.parseThinEvent.
|
|
*/
|
|
interface ThinEvent extends V2.EventBase {
|
|
/**
|
|
* Object containing the reference to API resource relevant to the event.
|
|
*/
|
|
related_object: Event.RelatedObject | null;
|
|
}
|
|
}
|
|
}
|