Rocky_Mountain_Vending/.pnpm-store/v10/files/44/c3ff77f43764ed9a88ee56583c15059c16124138d10cd6b7d509c9cc68c339e4f765263b3511c465199ac9ca17a111823a5d00e0fb50e99289a1c502b5cd2e
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

33 lines
1.2 KiB
Text

"use strict";
// File generated from our OpenAPI spec
Object.defineProperty(exports, "__esModule", { value: true });
exports.Transfers = void 0;
const StripeResource_js_1 = require("../StripeResource.js");
const stripeMethod = StripeResource_js_1.StripeResource.method;
exports.Transfers = StripeResource_js_1.StripeResource.extend({
create: stripeMethod({ method: 'POST', fullPath: '/v1/transfers' }),
retrieve: stripeMethod({ method: 'GET', fullPath: '/v1/transfers/{transfer}' }),
update: stripeMethod({ method: 'POST', fullPath: '/v1/transfers/{transfer}' }),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/transfers',
methodType: 'list',
}),
createReversal: stripeMethod({
method: 'POST',
fullPath: '/v1/transfers/{id}/reversals',
}),
listReversals: stripeMethod({
method: 'GET',
fullPath: '/v1/transfers/{id}/reversals',
methodType: 'list',
}),
retrieveReversal: stripeMethod({
method: 'GET',
fullPath: '/v1/transfers/{transfer}/reversals/{id}',
}),
updateReversal: stripeMethod({
method: 'POST',
fullPath: '/v1/transfers/{transfer}/reversals/{id}',
}),
});