Rocky_Mountain_Vending/.pnpm-store/v10/files/81/a799bf52754b495093a88515aaf01557e150d1a96d02516cd8fe011d2b825b0cb58179274587277857e7b0e02f49d8f5e3317a0027c0d55fe531e7378c8833
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.3 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
interface TaxCodeRetrieveParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
interface TaxCodeListParams extends PaginationParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
class TaxCodesResource {
/**
* Retrieves the details of an existing tax code. Supply the unique tax code ID and Stripe will return the corresponding tax code information.
*/
retrieve(
id: string,
params?: TaxCodeRetrieveParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.TaxCode>>;
retrieve(
id: string,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.TaxCode>>;
/**
* A list of [all tax codes available](https://stripe.com/docs/tax/tax-categories) to add to Products in order to allow specific tax calculations.
*/
list(
params?: TaxCodeListParams,
options?: RequestOptions
): ApiListPromise<Stripe.TaxCode>;
list(options?: RequestOptions): ApiListPromise<Stripe.TaxCode>;
}
}
}