Rocky_Mountain_Vending/.pnpm-store/v10/files/ed/084725da32cba766cf8b7b0fcf2deda8a40a38f43b5295ef04e470d61371de02de97582b124232e7df6c684f2b709a2a3de88f847c4c91ae42b02ae392397b
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

98 lines
2.6 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace TestHelpers {
/**
* The DeletedTestClock object.
*/
interface DeletedTestClock {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'test_helpers.test_clock';
/**
* Always true for a deleted object
*/
deleted: true;
}
/**
* A test clock enables deterministic control over objects in testmode. With a test clock, you can create
* objects at a frozen time in the past or future, and advance to a specific future time to observe webhooks and state changes. After the clock advances,
* you can either validate the current state of your scenario (and test your assumptions), change the current state of your scenario (and test more complex scenarios), or keep advancing forward in time.
*/
interface TestClock {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'test_helpers.test_clock';
/**
* Time at which the object was created. Measured in seconds since the Unix epoch.
*/
created: number;
/**
* Always true for a deleted object
*/
deleted?: void;
/**
* Time at which this clock is scheduled to auto delete.
*/
deletes_after: number;
/**
* Time at which all objects belonging to this clock are frozen.
*/
frozen_time: number;
/**
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
*/
livemode: boolean;
/**
* The custom name supplied at creation.
*/
name: string | null;
/**
* The status of the Test Clock.
*/
status: TestClock.Status;
status_details: TestClock.StatusDetails;
}
namespace TestClock {
type Status = 'advancing' | 'internal_failure' | 'ready';
interface StatusDetails {
advancing?: StatusDetails.Advancing;
}
namespace StatusDetails {
interface Advancing {
/**
* The `frozen_time` that the Test Clock is advancing towards.
*/
target_frozen_time: number;
}
}
}
}
}
}