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>
35 lines
972 B
Text
35 lines
972 B
Text
// File generated from our OpenAPI spec
|
|
|
|
declare module 'stripe' {
|
|
namespace Stripe {
|
|
interface SetupAttemptListParams extends PaginationParams {
|
|
/**
|
|
* Only return SetupAttempts created by the SetupIntent specified by
|
|
* this ID.
|
|
*/
|
|
setup_intent: string;
|
|
|
|
/**
|
|
* A filter on the list, based on the object `created` field. The value
|
|
* can be a string with an integer Unix timestamp or a
|
|
* dictionary with a number of different query options.
|
|
*/
|
|
created?: Stripe.RangeQueryParam | number;
|
|
|
|
/**
|
|
* Specifies which fields in the response should be expanded.
|
|
*/
|
|
expand?: Array<string>;
|
|
}
|
|
|
|
class SetupAttemptsResource {
|
|
/**
|
|
* Returns a list of SetupAttempts that associate with a provided SetupIntent.
|
|
*/
|
|
list(
|
|
params: SetupAttemptListParams,
|
|
options?: RequestOptions
|
|
): ApiListPromise<Stripe.SetupAttempt>;
|
|
}
|
|
}
|
|
}
|