Rocky_Mountain_Vending/.pnpm-store/v10/files/34/0ba2009847d45432881003b0379f6b31d3087b30cc89fe55ae9f607a12bfae428c597e48502ce22d9ab3f6b0448cc490333d1e4777172af35f5580ec29edf6
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

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