Rocky_Mountain_Vending/.pnpm-store/v10/files/77/db559c0c0600c8f16ec3dd0dbb54745b283fc28041ee56f0b07dcfc02411825c488a65da4722935250a12d8f32de1f0a7c5a5bac986a43de95d70c4248cb1b
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

64 lines
2 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace Radar {
interface EarlyFraudWarningRetrieveParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
interface EarlyFraudWarningListParams extends PaginationParams {
/**
* Only return early fraud warnings for the charge specified by this charge ID.
*/
charge?: string;
/**
* Only return early fraud warnings that were created during the given date interval.
*/
created?: Stripe.RangeQueryParam | number;
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
/**
* Only return early fraud warnings for charges that were created by the PaymentIntent specified by this PaymentIntent ID.
*/
payment_intent?: string;
}
class EarlyFraudWarningsResource {
/**
* Retrieves the details of an early fraud warning that has previously been created.
*
* Please refer to the [early fraud warning](https://stripe.com/docs/api#early_fraud_warning_object) object reference for more details.
*/
retrieve(
id: string,
params?: EarlyFraudWarningRetrieveParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Radar.EarlyFraudWarning>>;
retrieve(
id: string,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Radar.EarlyFraudWarning>>;
/**
* Returns a list of early fraud warnings.
*/
list(
params?: EarlyFraudWarningListParams,
options?: RequestOptions
): ApiListPromise<Stripe.Radar.EarlyFraudWarning>;
list(
options?: RequestOptions
): ApiListPromise<Stripe.Radar.EarlyFraudWarning>;
}
}
}
}