Rocky_Mountain_Vending/.pnpm-store/v10/files/15/27b9adbef369e2af5f6b79edf6fb5b86a4a0fdbf3f4cd01e94b7ce660c2e5dc6e8d890e4b0b277b7d000d4a156e080310aee2f4b0cc630408a08edb2e498d5
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

77 lines
2.3 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace Tax {
interface SettingsRetrieveParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
interface SettingsUpdateParams {
/**
* Default configuration to be used on Stripe Tax calculations.
*/
defaults?: SettingsUpdateParams.Defaults;
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
/**
* The place where your business is located.
*/
head_office?: SettingsUpdateParams.HeadOffice;
}
namespace SettingsUpdateParams {
interface Defaults {
/**
* Specifies the default [tax behavior](https://stripe.com/docs/tax/products-prices-tax-categories-tax-behavior#tax-behavior) to be used when the item's price has unspecified tax behavior. One of inclusive, exclusive, or inferred_by_currency. Once specified, it cannot be changed back to null.
*/
tax_behavior?: Defaults.TaxBehavior;
/**
* A [tax code](https://stripe.com/docs/tax/tax-categories) ID.
*/
tax_code?: string;
}
namespace Defaults {
type TaxBehavior = 'exclusive' | 'inclusive' | 'inferred_by_currency';
}
interface HeadOffice {
/**
* The location of the business for tax purposes.
*/
address: Stripe.AddressParam;
}
}
class SettingsResource {
/**
* Retrieves Tax Settings for a merchant.
*/
retrieve(
params?: SettingsRetrieveParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Tax.Settings>>;
retrieve(
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Tax.Settings>>;
/**
* Updates Tax Settings parameters used in tax calculations. All parameters are editable but none can be removed once set.
*/
update(
params?: SettingsUpdateParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Tax.Settings>>;
}
}
}
}