Rocky_Mountain_Vending/.pnpm-store/v10/files/e2/4af13d239e07e6991d076ad32c3a59c1ada3ceb1958e11522a947985bb3da91df605e1d274e919c729f0c9c662eaf1f777ad59c55da2a5f004f2fc7f3e750a
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

13 lines
549 B
Text

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