Rocky_Mountain_Vending/.pnpm-store/v10/files/fb/8b3fe1a9f91f851e4d10a7ef10c8a5dffb20c87d8d30a239fdf33e4582b99259e1d00a88a43d993216fca35e06d6a72744b6886750e5f6bed3367e6ecf0d04
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

13 lines
529 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../StripeResource.js';
const stripeMethod = StripeResource.method;
export const TaxIds = StripeResource.extend({
create: stripeMethod({ method: 'POST', fullPath: '/v1/tax_ids' }),
retrieve: stripeMethod({ method: 'GET', fullPath: '/v1/tax_ids/{id}' }),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/tax_ids',
methodType: 'list',
}),
del: stripeMethod({ method: 'DELETE', fullPath: '/v1/tax_ids/{id}' }),
});