Rocky_Mountain_Vending/.pnpm-store/v10/files/ae/b5871245a5dc1d88f4cfa1859f1a038cd722cf139ae148704df4971abf38da7622e0d0dd1be16914f21543b77ae42631177eaaf494b084d33a86aea0f2e73e
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

14 lines
617 B
Text

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