Rocky_Mountain_Vending/.pnpm-store/v10/files/56/775bb38eb071168d63531c972d7e66cf50f4dc8d1ef5f5f6167a526c9a2c529fdeee578318f031a16e9088853fb806379a5a7a889b1146900b7ee3b807ffda
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

22 lines
703 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../../StripeResource.js';
const stripeMethod = StripeResource.method;
export const InboundTransfers = StripeResource.extend({
create: stripeMethod({
method: 'POST',
fullPath: '/v1/treasury/inbound_transfers',
}),
retrieve: stripeMethod({
method: 'GET',
fullPath: '/v1/treasury/inbound_transfers/{id}',
}),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/treasury/inbound_transfers',
methodType: 'list',
}),
cancel: stripeMethod({
method: 'POST',
fullPath: '/v1/treasury/inbound_transfers/{inbound_transfer}/cancel',
}),
});