Rocky_Mountain_Vending/.pnpm-store/v10/files/d7/dc06d5d82fc98ae27fc5d45f1013170bfaea36d3a7891bb87bf211fa99bcf1204ded4e6a2bce890ac51bb97f643169eebb8ac1f19c46241a205abd78c1f7e3
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
724 B
Text

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