Rocky_Mountain_Vending/.pnpm-store/v10/files/d5/c0d37bf9554ea99b54e789aa1c887227855e7dd5c198c1c07b0a1a32b43e3d1c0440af0ef3fda649110efc2534ba1e8a35bc56958fef87526007d4d4b21996
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

57 lines
1.2 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
/**
* The ApplePayDomain object.
*/
interface ApplePayDomain {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'apple_pay_domain';
/**
* Time at which the object was created. Measured in seconds since the Unix epoch.
*/
created: number;
/**
* Always true for a deleted object
*/
deleted?: void;
domain_name: string;
/**
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
*/
livemode: boolean;
}
/**
* The DeletedApplePayDomain object.
*/
interface DeletedApplePayDomain {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'apple_pay_domain';
/**
* Always true for a deleted object
*/
deleted: true;
}
}
}