Rocky_Mountain_Vending/.pnpm-store/v10/files/91/68c5db6ce3dbcceda14fa1c13c56f97852ce4ac1f7afa232e603d957e9d74540a01c4dc0bbb3dcf7543e95ec7fc5d527b44aad2095b10f076e30b767168a0b
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.6 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
/**
* The DeletedProductFeature object.
*/
interface DeletedProductFeature {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'product_feature';
/**
* Always true for a deleted object
*/
deleted: true;
}
/**
* A product_feature represents an attachment between a feature and a product.
* When a product is purchased that has a feature attached, Stripe will create an entitlement to the feature for the purchasing customer.
*/
interface ProductFeature {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'product_feature';
/**
* Always true for a deleted object
*/
deleted?: void;
/**
* A feature represents a monetizable ability or functionality in your system.
* Features can be assigned to products, and when those products are purchased, Stripe will create an entitlement to the feature for the purchasing customer.
*/
entitlement_feature: Stripe.Entitlements.Feature;
/**
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
*/
livemode: boolean;
}
}
}