Rocky_Mountain_Vending/.pnpm-store/v10/files/40/a122b0bb7a083d5d71cb013ab739f04e0131fbe8966d80ccccfa7671497d8c1b9e37c23d7ddb75ce6bac25d83fca68f0cc60c4b041d25c566fcdd5ee332e0e
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

21 lines
707 B
Text

// File generated from our OpenAPI spec
import { multipartRequestDataProcessor } from '../multipart.js';
import { StripeResource } from '../StripeResource.js';
const stripeMethod = StripeResource.method;
export const Files = StripeResource.extend({
create: stripeMethod({
method: 'POST',
fullPath: '/v1/files',
headers: {
'Content-Type': 'multipart/form-data',
},
host: 'files.stripe.com',
}),
retrieve: stripeMethod({ method: 'GET', fullPath: '/v1/files/{file}' }),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/files',
methodType: 'list',
}),
requestDataProcessor: multipartRequestDataProcessor,
});