Rocky_Mountain_Vending/.pnpm-store/v10/files/ee/44524d7120c1f2a00a10d07c62c82cf3d67c2d289e477b7e3bc47258a56d6c949908f5e0391a60f9e81abeaf7830f00e46c26b984f2042053b4c2757dab993
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

19 lines
622 B
Text

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