Rocky_Mountain_Vending/.pnpm-store/v10/files/c7/afe3b9ce190e9a34e98bf8e4abc4b6d11f1a1607415a99d0524ec182dd48d23cfd89b7b9c12399cd3ed02097d495a7c663aca6ca362ee8b46608dfee25b025
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

28 lines
903 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../../StripeResource.js';
const stripeMethod = StripeResource.method;
export const Sessions = StripeResource.extend({
create: stripeMethod({ method: 'POST', fullPath: '/v1/checkout/sessions' }),
retrieve: stripeMethod({
method: 'GET',
fullPath: '/v1/checkout/sessions/{session}',
}),
update: stripeMethod({
method: 'POST',
fullPath: '/v1/checkout/sessions/{session}',
}),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/checkout/sessions',
methodType: 'list',
}),
expire: stripeMethod({
method: 'POST',
fullPath: '/v1/checkout/sessions/{session}/expire',
}),
listLineItems: stripeMethod({
method: 'GET',
fullPath: '/v1/checkout/sessions/{session}/line_items',
methodType: 'list',
}),
});