Rocky_Mountain_Vending/.pnpm-store/v10/files/88/31e5d69ea392753f050519f1d96bcd543e9ab0042ea02a11e05ca5d1bfc4e32f59c4e9a90cf3861bc67d1dfdc9a97cb0667faddca0439a6b5ad1e55ea8a3c5
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

56 lines
1.4 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
/**
* A usage record summary represents an aggregated view of how much usage was accrued for a subscription item within a subscription billing period.
*/
interface UsageRecordSummary {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'usage_record_summary';
/**
* The invoice in which this usage period has been billed for.
*/
invoice: string | null;
/**
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
*/
livemode: boolean;
period: UsageRecordSummary.Period;
/**
* The ID of the subscription item this summary is describing.
*/
subscription_item: string;
/**
* The total usage within this usage period.
*/
total_usage: number;
}
namespace UsageRecordSummary {
interface Period {
/**
* The end date of this usage period. All usage up to and including this point in time is included.
*/
end: number | null;
/**
* The start date of this usage period. All usage after this point in time is included.
*/
start: number | null;
}
}
}
}