Rocky_Mountain_Vending/.pnpm-store/v10/files/60/2216f2181982421625d653675322134546972b8a77779afcfbe0f7c094064822ea0b17e6fafdff3f75c67b9b7ad21f6ba6f9c0ef4a824c14b8747bdc762d88
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

22 lines
667 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../../StripeResource.js';
const stripeMethod = StripeResource.method;
export const ValueListItems = StripeResource.extend({
create: stripeMethod({
method: 'POST',
fullPath: '/v1/radar/value_list_items',
}),
retrieve: stripeMethod({
method: 'GET',
fullPath: '/v1/radar/value_list_items/{item}',
}),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/radar/value_list_items',
methodType: 'list',
}),
del: stripeMethod({
method: 'DELETE',
fullPath: '/v1/radar/value_list_items/{item}',
}),
});