Rocky_Mountain_Vending/.pnpm-store/v10/files/21/16e712428e76ceeb1a2ea1c871b2f11a4ccda873a200e52a16f18d0aad712e441c1177da8e404322aab810bf2767467bb0f4f24b530115297164dcaf4cd786
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

108 lines
3.1 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace TestHelpers {
interface TestClockCreateParams {
/**
* The initial frozen time for this test clock.
*/
frozen_time: number;
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
/**
* The name for this test clock.
*/
name?: string;
}
interface TestClockRetrieveParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
interface TestClockListParams extends PaginationParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
interface TestClockDeleteParams {}
interface TestClockAdvanceParams {
/**
* The time to advance the test clock. Must be after the test clock's current frozen time. Cannot be more than two intervals in the future from the shortest subscription in this test clock. If there are no subscriptions in this test clock, it cannot be more than two years in the future.
*/
frozen_time: number;
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
class TestClocksResource {
/**
* Creates a new test clock that can be attached to new customers and quotes.
*/
create(
params: TestClockCreateParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.TestHelpers.TestClock>>;
/**
* Retrieves a test clock.
*/
retrieve(
id: string,
params?: TestClockRetrieveParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.TestHelpers.TestClock>>;
retrieve(
id: string,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.TestHelpers.TestClock>>;
/**
* Returns a list of your test clocks.
*/
list(
params?: TestClockListParams,
options?: RequestOptions
): ApiListPromise<Stripe.TestHelpers.TestClock>;
list(
options?: RequestOptions
): ApiListPromise<Stripe.TestHelpers.TestClock>;
/**
* Deletes a test clock.
*/
del(
id: string,
params?: TestClockDeleteParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.TestHelpers.DeletedTestClock>>;
del(
id: string,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.TestHelpers.DeletedTestClock>>;
/**
* Starts advancing a test clock to a specified time in the future. Advancement is done when status changes to Ready.
*/
advance(
id: string,
params: TestClockAdvanceParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.TestHelpers.TestClock>>;
}
}
}
}