Rocky_Mountain_Vending/.pnpm-store/v10/files/e9/d18b2a9c0a4e3dae43f4d94970d18769c3767e180dc39374706e78d48684e2207f3e62d4bf28997cd2d160cee2b6f5852f6f53e8df133f91996debb093d7e7
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

15 lines
554 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../../StripeResource.js';
const stripeMethod = StripeResource.method;
export const Calculations = StripeResource.extend({
create: stripeMethod({ method: 'POST', fullPath: '/v1/tax/calculations' }),
retrieve: stripeMethod({
method: 'GET',
fullPath: '/v1/tax/calculations/{calculation}',
}),
listLineItems: stripeMethod({
method: 'GET',
fullPath: '/v1/tax/calculations/{calculation}/line_items',
methodType: 'list',
}),
});