Rocky_Mountain_Vending/.pnpm-store/v10/files/b7/0b7307c7aa8f5b5483bb8d1cee96d7d6c2efb8b99660689aa93c970d8f540a8ba8d688dc2f5f8716180699d74e85766c3b4d657920dce64cf323bdaaadf856
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
618 B
Text

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