Rocky_Mountain_Vending/.pnpm-store/v10/files/48/08acae7b5fb17fb8db0bca6d7306d78753fb140edebf078f5bb521540a92a02b80ff2d52f8c401d66ffe698af5ef6c3baaa963453520133fe3c20d41bc7b21
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

43 lines
1.1 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
interface CountrySpecRetrieveParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
interface CountrySpecListParams extends PaginationParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
class CountrySpecsResource {
/**
* Returns a Country Spec for a given Country code.
*/
retrieve(
id: string,
params?: CountrySpecRetrieveParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.CountrySpec>>;
retrieve(
id: string,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.CountrySpec>>;
/**
* Lists all Country Spec objects available in the API.
*/
list(
params?: CountrySpecListParams,
options?: RequestOptions
): ApiListPromise<Stripe.CountrySpec>;
list(options?: RequestOptions): ApiListPromise<Stripe.CountrySpec>;
}
}
}