Rocky_Mountain_Vending/.pnpm-store/v10/files/56/0cf34a3991a9e9c1775c293cf230373f317bd4b43e39abcc49c6ef2cc543e8a47d8479dc73325be22601b94a7e518ea7d2052512219cee9727815fac2f2944
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
741 B
Text

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