Rocky_Mountain_Vending/.pnpm-store/v10/files/1a/571092d051e031e483cb3cd6f608482c3c2e36c66871a2868e89edfed2944b9dda4ca18db787a7c65a601d2101a880894f302dc483112a445dfbb9459f8a21
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

31 lines
981 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../StripeResource.js';
const stripeMethod = StripeResource.method;
export const SetupIntents = StripeResource.extend({
create: stripeMethod({ method: 'POST', fullPath: '/v1/setup_intents' }),
retrieve: stripeMethod({
method: 'GET',
fullPath: '/v1/setup_intents/{intent}',
}),
update: stripeMethod({
method: 'POST',
fullPath: '/v1/setup_intents/{intent}',
}),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/setup_intents',
methodType: 'list',
}),
cancel: stripeMethod({
method: 'POST',
fullPath: '/v1/setup_intents/{intent}/cancel',
}),
confirm: stripeMethod({
method: 'POST',
fullPath: '/v1/setup_intents/{intent}/confirm',
}),
verifyMicrodeposits: stripeMethod({
method: 'POST',
fullPath: '/v1/setup_intents/{intent}/verify_microdeposits',
}),
});