Rocky_Mountain_Vending/.pnpm-store/v10/files/dc/618d3ae9e72250c7e3f04336f8cb3a369083812343ae56b955e152e5b73971cb78d697b7b79a9efbd1c83d5f4a8c927731588c9d0738b681bb70366ee008f3
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

22 lines
777 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../StripeResource.js';
const stripeMethod = StripeResource.method;
export const Charges = StripeResource.extend({
create: stripeMethod({ method: 'POST', fullPath: '/v1/charges' }),
retrieve: stripeMethod({ method: 'GET', fullPath: '/v1/charges/{charge}' }),
update: stripeMethod({ method: 'POST', fullPath: '/v1/charges/{charge}' }),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/charges',
methodType: 'list',
}),
capture: stripeMethod({
method: 'POST',
fullPath: '/v1/charges/{charge}/capture',
}),
search: stripeMethod({
method: 'GET',
fullPath: '/v1/charges/search',
methodType: 'search',
}),
});