Rocky_Mountain_Vending/.pnpm-store/v10/files/c5/e0285d945c5e2dca3d11edcfa506b3d583c73c08efc3eb976b6afb56df6442217f991d46fe71f1fc62b796c63f19455b39b36e98f626ee92cd8a85abbbcc3b
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

79 lines
2.5 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace Tax {
/**
* You can use Tax `Settings` to manage configurations used by Stripe Tax calculations.
*
* Related guide: [Using the Settings API](https://stripe.com/docs/tax/settings-api)
*/
interface Settings {
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'tax.settings';
defaults: Settings.Defaults;
/**
* The place where your business is located.
*/
head_office: Settings.HeadOffice | null;
/**
* 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 status of the Tax `Settings`.
*/
status: Settings.Status;
status_details: Settings.StatusDetails;
}
namespace Settings {
interface Defaults {
/**
* Default [tax behavior](https://stripe.com/docs/tax/products-prices-tax-categories-tax-behavior#tax-behavior) used to specify whether the price is considered inclusive of taxes or exclusive of taxes. If the item's price has a tax behavior set, it will take precedence over the default tax behavior.
*/
tax_behavior: Defaults.TaxBehavior | null;
/**
* Default [tax code](https://stripe.com/docs/tax/tax-categories) used to classify your products and prices.
*/
tax_code: string | null;
}
namespace Defaults {
type TaxBehavior = 'exclusive' | 'inclusive' | 'inferred_by_currency';
}
interface HeadOffice {
address: Stripe.Address;
}
type Status = 'active' | 'pending';
interface StatusDetails {
active?: StatusDetails.Active;
pending?: StatusDetails.Pending;
}
namespace StatusDetails {
interface Active {}
interface Pending {
/**
* The list of missing fields that are required to perform calculations. It includes the entry `head_office` when the status is `pending`. It is recommended to set the optional values even if they aren't listed as required for calculating taxes. Calculations can fail if missing fields aren't explicitly provided on every call.
*/
missing_fields: Array<string> | null;
}
}
}
}
}
}