Rocky_Mountain_Vending/.pnpm-store/v10/files/9a/80f4c6bf221ed1a52feb5f9fd914675ccbfbcfb42cb184b9d7fc2863335200de54bd325e3b4063dd3e3967d1b80b7d26bf1e17c4c219aa4bf70031a9209526
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
636 B
Text

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