Rocky_Mountain_Vending/.pnpm-store/v10/files/2f/2044ba33f2f159f0e2462f986041e860c524387d86adb7dd42501384b60fcc9a44dc88bf613207e2c40c8fed09b45d334928d2aea9b83d83d8e24954b214cd
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
737 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../StripeResource.js';
const stripeMethod = StripeResource.method;
export const InvoiceRenderingTemplates = StripeResource.extend({
retrieve: stripeMethod({
method: 'GET',
fullPath: '/v1/invoice_rendering_templates/{template}',
}),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/invoice_rendering_templates',
methodType: 'list',
}),
archive: stripeMethod({
method: 'POST',
fullPath: '/v1/invoice_rendering_templates/{template}/archive',
}),
unarchive: stripeMethod({
method: 'POST',
fullPath: '/v1/invoice_rendering_templates/{template}/unarchive',
}),
});