Rocky_Mountain_Vending/.pnpm-store/v10/files/ff/562cf99acee2b026f0cfb24603c544c4b8c7f3087dacf7dbeeba6b3d29c010a63a6e80ce072058cd82c825df50948a30160da025a71c0a1a7b26a75d2f3fa9
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

30 lines
1 KiB
Text

"use strict";
// File generated from our OpenAPI spec
Object.defineProperty(exports, "__esModule", { value: true });
exports.PaymentMethods = void 0;
const StripeResource_js_1 = require("../StripeResource.js");
const stripeMethod = StripeResource_js_1.StripeResource.method;
exports.PaymentMethods = StripeResource_js_1.StripeResource.extend({
create: stripeMethod({ method: 'POST', fullPath: '/v1/payment_methods' }),
retrieve: stripeMethod({
method: 'GET',
fullPath: '/v1/payment_methods/{payment_method}',
}),
update: stripeMethod({
method: 'POST',
fullPath: '/v1/payment_methods/{payment_method}',
}),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/payment_methods',
methodType: 'list',
}),
attach: stripeMethod({
method: 'POST',
fullPath: '/v1/payment_methods/{payment_method}/attach',
}),
detach: stripeMethod({
method: 'POST',
fullPath: '/v1/payment_methods/{payment_method}/detach',
}),
});