Rocky_Mountain_Vending/.pnpm-store/v10/files/a2/e68fa700d35065f71fe9e08dc51391e7c5393bfdac7dcc59e19ab04d0bd0e1854ebeddb1b301df44cdfe5441eb63a7191bf023840cdd6952dcca7746354409
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

26 lines
847 B
Text

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