Rocky_Mountain_Vending/.pnpm-store/v10/files/90/7575b63bfc7a4f3abcf21cc193f95c7484cdcf8695f88aaa1793b958c21d6cec6bb46142d973653c1daad19d98d1f0903ad758cf04b588eab9e3fcd182bc0b
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

46 lines
1.9 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace Billing {
interface MeterEventCreateParams {
/**
* The name of the meter event. Corresponds with the `event_name` field on a meter.
*/
event_name: string;
/**
* The payload of the event. This must contain the fields corresponding to a meter's `customer_mapping.event_payload_key` (default is `stripe_customer_id`) and `value_settings.event_payload_key` (default is `value`). Read more about the [payload](https://docs.stripe.com/billing/subscriptions/usage-based/recording-usage#payload-key-overrides).
*/
payload: {
[key: string]: string;
};
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
/**
* A unique identifier for the event. If not provided, one is generated. We recommend using UUID-like identifiers. We will enforce uniqueness within a rolling period of at least 24 hours. The enforcement of uniqueness primarily addresses issues arising from accidental retries or other problems occurring within extremely brief time intervals. This approach helps prevent duplicate entries and ensures data integrity in high-frequency operations.
*/
identifier?: string;
/**
* The time of the event. Measured in seconds since the Unix epoch. Must be within the past 35 calendar days or up to 5 minutes in the future. Defaults to current timestamp if not specified.
*/
timestamp?: number;
}
class MeterEventsResource {
/**
* Creates a billing meter event.
*/
create(
params: MeterEventCreateParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Billing.MeterEvent>>;
}
}
}
}