Rocky_Mountain_Vending/.pnpm-store/v10/files/da/62a8fc1e20d51ec26e6289c35cbb78637f11460f8c4dc4255a8f107b992c296c987415f51b4f21e9d1b59ab862a160de5f637c2f2c71fa383bb008e1c0cc79
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

19 lines
644 B
Text

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