Rocky_Mountain_Vending/.pnpm-store/v10/files/ac/6642a861773d400012b0f87e96ae1fcf9b96792879ffdecf87b9641af3520429755abb9d1ebf1374a73b3c3305acbea9f8845037c89167a2d81154f94c61b4
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

23 lines
726 B
Text

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