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

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;
}
}
}