Rocky_Mountain_Vending/.pnpm-store/v10/files/76/67f3e8c9c64fa9b9a36aaac4db524e36c2f3f0d9a3122c3b3815eba584c8104c0ec01f6b73916df0acd66a699051e07c6c7708628bf8115cea51573d8b6052
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
724 B
Text

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