Rocky_Mountain_Vending/.pnpm-store/v10/files/af/cd0c6f9a94d1192ffb514b5f2027f3d90549d828d9bd5186a42f5c7e2000cf937ee81e0f1f60fd1b4865e0d7cf617cb7759c5844c30dde0df75fe949dfb88f
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

42 lines
1.1 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace Billing {
/**
* The AlertTriggered object.
*/
interface AlertTriggered {
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'billing.alert_triggered';
/**
* A billing alert is a resource that notifies you when a certain usage threshold on a meter is crossed. For example, you might create a billing alert to notify you when a certain user made 100 API requests.
*/
alert: Stripe.Billing.Alert;
/**
* Time at which the object was created. Measured in seconds since the Unix epoch.
*/
created: number;
/**
* ID of customer for which the alert triggered
*/
customer: 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 value triggering the alert
*/
value: number;
}
}
}
}