Rocky_Mountain_Vending/.pnpm-store/v10/files/37/3ca082cc48cc8ff3c2fe7952055fd7394bd9e723fe85023d7a654795a30779388fb9d58629a130257b8a5a2331183fa5ff1462586ccc002afdf79b6366b54c
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

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>;
}
}
}