Rocky_Mountain_Vending/.pnpm-store/v10/files/18/5fc5d41a7556495ce413e9b52a26d9d6745211984378b1df1d57accb217a74941d88626b1c2690cde8995ce285c736a0414f929ec28be6f8e0d87e7549c6be
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

25 lines
805 B
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
/**
* Login Links are single-use URLs for a connected account to access the Express Dashboard. The connected account's [account.controller.stripe_dashboard.type](https://stripe.com/api/accounts/object#account_object-controller-stripe_dashboard-type) must be `express` to have access to the Express Dashboard.
*/
interface LoginLink {
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'login_link';
/**
* Time at which the object was created. Measured in seconds since the Unix epoch.
*/
created: number;
/**
* The URL for the login link.
*/
url: string;
}
}
}