Rocky_Mountain_Vending/.pnpm-store/v10/files/51/92340c264d0fe1e25ab4a4337939149e216af75e8418af003bb0206fd23ab11b60542bc9acb79ffb4b344b7ef70827406a2deebb82d778f12c3345f21f93d6
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

16 lines
582 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../StripeResource.js';
const stripeMethod = StripeResource.method;
export const Disputes = StripeResource.extend({
retrieve: stripeMethod({ method: 'GET', fullPath: '/v1/disputes/{dispute}' }),
update: stripeMethod({ method: 'POST', fullPath: '/v1/disputes/{dispute}' }),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/disputes',
methodType: 'list',
}),
close: stripeMethod({
method: 'POST',
fullPath: '/v1/disputes/{dispute}/close',
}),
});