Rocky_Mountain_Vending/.pnpm-store/v10/files/7d/009f0503446085b4e9df2b61e30d452f4306efff3985134c3dd75e8b0cf3504dd55ca9026cadd07c7a4b2f718b29a9be59875dc435b1fb1365a2d20fbd0ee2
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

17 lines
647 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../StripeResource.js';
const stripeMethod = StripeResource.method;
export const Refunds = StripeResource.extend({
create: stripeMethod({ method: 'POST', fullPath: '/v1/refunds' }),
retrieve: stripeMethod({ method: 'GET', fullPath: '/v1/refunds/{refund}' }),
update: stripeMethod({ method: 'POST', fullPath: '/v1/refunds/{refund}' }),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/refunds',
methodType: 'list',
}),
cancel: stripeMethod({
method: 'POST',
fullPath: '/v1/refunds/{refund}/cancel',
}),
});