Rocky_Mountain_Vending/.pnpm-store/v10/files/83/8da1f9f9072cd30f4d0bf0e2989b8f85d581382eb2101ab74a42bdf872379de8711843557eef134fd26c3eb1703307d208dcdb1079f84442d8b1e173936f00
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

27 lines
929 B
Text

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