Rocky_Mountain_Vending/.pnpm-store/v10/files/15/cc06ee18f419f4170405e181f5897331f12912e2d07986bdbe53f3bf75bf5b125d1d42b51a032d956a2cdac16486dfc59c6e59b1ed37fa1679a804f94a52ec
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

33 lines
893 B
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
/**
* Account Links are the means by which a Connect platform grants a connected account permission to access
* Stripe-hosted applications, such as Connect Onboarding.
*
* Related guide: [Connect Onboarding](https://stripe.com/docs/connect/custom/hosted-onboarding)
*/
interface AccountLink {
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'account_link';
/**
* Time at which the object was created. Measured in seconds since the Unix epoch.
*/
created: number;
/**
* The timestamp at which this account link will expire.
*/
expires_at: number;
/**
* The URL for the account link.
*/
url: string;
}
}
}