Rocky_Mountain_Vending/.pnpm-store/v10/files/f9/496eb623b978b7987a904dba2398ab2267b4a378d79d4d5b68163621277e633455f6c8399aac72272b02445af05f1b1590c44f19b6191d0d83620da3eba416
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

13 lines
560 B
Text

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