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>
84 lines
2.3 KiB
Text
84 lines
2.3 KiB
Text
// File generated from our OpenAPI spec
|
|
|
|
declare module 'stripe' {
|
|
namespace Stripe {
|
|
namespace Billing {
|
|
/**
|
|
* 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.
|
|
*/
|
|
interface Alert {
|
|
/**
|
|
* Unique identifier for the object.
|
|
*/
|
|
id: string;
|
|
|
|
/**
|
|
* String representing the object's type. Objects of the same type share the same value.
|
|
*/
|
|
object: 'billing.alert';
|
|
|
|
/**
|
|
* Defines the type of the alert.
|
|
*/
|
|
alert_type: 'usage_threshold';
|
|
|
|
/**
|
|
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
|
|
*/
|
|
livemode: boolean;
|
|
|
|
/**
|
|
* Status of the alert. This can be active, inactive or archived.
|
|
*/
|
|
status: Alert.Status | null;
|
|
|
|
/**
|
|
* Title of the alert.
|
|
*/
|
|
title: string;
|
|
|
|
/**
|
|
* Encapsulates configuration of the alert to monitor usage on a specific [Billing Meter](https://stripe.com/docs/api/billing/meter).
|
|
*/
|
|
usage_threshold: Alert.UsageThreshold | null;
|
|
}
|
|
|
|
namespace Alert {
|
|
type Status = 'active' | 'archived' | 'inactive';
|
|
|
|
interface UsageThreshold {
|
|
/**
|
|
* The filters allow limiting the scope of this usage alert. You can only specify up to one filter at this time.
|
|
*/
|
|
filters: Array<UsageThreshold.Filter> | null;
|
|
|
|
/**
|
|
* The value at which this alert will trigger.
|
|
*/
|
|
gte: number;
|
|
|
|
/**
|
|
* The [Billing Meter](https://stripe.com/api/billing/meter) ID whose usage is monitored.
|
|
*/
|
|
meter: string | Stripe.Billing.Meter;
|
|
|
|
/**
|
|
* Defines how the alert will behave.
|
|
*/
|
|
recurrence: 'one_time';
|
|
}
|
|
|
|
namespace UsageThreshold {
|
|
interface Filter {
|
|
/**
|
|
* Limit the scope of the alert to this customer ID
|
|
*/
|
|
customer: string | Stripe.Customer | null;
|
|
|
|
type: 'customer';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|