Rocky_Mountain_Vending/.pnpm-store/v10/files/ee/7034a1c14d86e01c7f9752c2492f6acf4396cfa91cc64709a0f58db09fcb1f4406ce355cefd046491bf20c0594274d0c14045e654f60ebde2336759af2902b
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

24 lines
901 B
Text

"use strict";
// File generated from our OpenAPI spec
Object.defineProperty(exports, "__esModule", { value: true });
exports.Payouts = void 0;
const StripeResource_js_1 = require("../StripeResource.js");
const stripeMethod = StripeResource_js_1.StripeResource.method;
exports.Payouts = StripeResource_js_1.StripeResource.extend({
create: stripeMethod({ method: 'POST', fullPath: '/v1/payouts' }),
retrieve: stripeMethod({ method: 'GET', fullPath: '/v1/payouts/{payout}' }),
update: stripeMethod({ method: 'POST', fullPath: '/v1/payouts/{payout}' }),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/payouts',
methodType: 'list',
}),
cancel: stripeMethod({
method: 'POST',
fullPath: '/v1/payouts/{payout}/cancel',
}),
reverse: stripeMethod({
method: 'POST',
fullPath: '/v1/payouts/{payout}/reverse',
}),
});