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>
47 lines
1.3 KiB
Text
47 lines
1.3 KiB
Text
// File generated from our OpenAPI spec
|
|
|
|
declare module 'stripe' {
|
|
namespace Stripe {
|
|
namespace Sigma {
|
|
interface ScheduledQueryRunRetrieveParams {
|
|
/**
|
|
* Specifies which fields in the response should be expanded.
|
|
*/
|
|
expand?: Array<string>;
|
|
}
|
|
|
|
interface ScheduledQueryRunListParams extends PaginationParams {
|
|
/**
|
|
* Specifies which fields in the response should be expanded.
|
|
*/
|
|
expand?: Array<string>;
|
|
}
|
|
|
|
class ScheduledQueryRunsResource {
|
|
/**
|
|
* Retrieves the details of an scheduled query run.
|
|
*/
|
|
retrieve(
|
|
id: string,
|
|
params?: ScheduledQueryRunRetrieveParams,
|
|
options?: RequestOptions
|
|
): Promise<Stripe.Response<Stripe.Sigma.ScheduledQueryRun>>;
|
|
retrieve(
|
|
id: string,
|
|
options?: RequestOptions
|
|
): Promise<Stripe.Response<Stripe.Sigma.ScheduledQueryRun>>;
|
|
|
|
/**
|
|
* Returns a list of scheduled query runs.
|
|
*/
|
|
list(
|
|
params?: ScheduledQueryRunListParams,
|
|
options?: RequestOptions
|
|
): ApiListPromise<Stripe.Sigma.ScheduledQueryRun>;
|
|
list(
|
|
options?: RequestOptions
|
|
): ApiListPromise<Stripe.Sigma.ScheduledQueryRun>;
|
|
}
|
|
}
|
|
}
|
|
}
|