Rocky_Mountain_Vending/.pnpm-store/v10/files/8e/080705160897d368fedad3b13a3501e8285c2c24ee3a8732c630b8fdab33ece2ad374c31a1eb879cb852e0aecaad109c394f101a0938a39e17bc5a575915a7
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

15 lines
498 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../StripeResource.js';
const stripeMethod = StripeResource.method;
export const Reviews = StripeResource.extend({
retrieve: stripeMethod({ method: 'GET', fullPath: '/v1/reviews/{review}' }),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/reviews',
methodType: 'list',
}),
approve: stripeMethod({
method: 'POST',
fullPath: '/v1/reviews/{review}/approve',
}),
});