Rocky_Mountain_Vending/.pnpm-store/v10/files/94/93829926710350f69b52c4df347fcd0d541da1a7b36c17ae6a8af824da0a3e0f28744286df1707a9c14922edfed62c8829c01f996797d652d1857a153224ff
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
1 KiB
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../StripeResource.js';
const stripeMethod = StripeResource.method;
export const CreditNotes = StripeResource.extend({
create: stripeMethod({ method: 'POST', fullPath: '/v1/credit_notes' }),
retrieve: stripeMethod({ method: 'GET', fullPath: '/v1/credit_notes/{id}' }),
update: stripeMethod({ method: 'POST', fullPath: '/v1/credit_notes/{id}' }),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/credit_notes',
methodType: 'list',
}),
listLineItems: stripeMethod({
method: 'GET',
fullPath: '/v1/credit_notes/{credit_note}/lines',
methodType: 'list',
}),
listPreviewLineItems: stripeMethod({
method: 'GET',
fullPath: '/v1/credit_notes/preview/lines',
methodType: 'list',
}),
preview: stripeMethod({ method: 'GET', fullPath: '/v1/credit_notes/preview' }),
voidCreditNote: stripeMethod({
method: 'POST',
fullPath: '/v1/credit_notes/{id}/void',
}),
});