Rocky_Mountain_Vending/.pnpm-store/v10/files/0c/d8183f2906f2d40763309d2f1973bf17c306ffeaf21057c524a34b32c1339f54dadbde8c781748fe4b9e62f656f8bb2d1db3bfede4ea9b475a1d815181f69a
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

18 lines
567 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../../StripeResource.js';
const stripeMethod = StripeResource.method;
export const Transactions = StripeResource.extend({
retrieve: stripeMethod({
method: 'GET',
fullPath: '/v1/issuing/transactions/{transaction}',
}),
update: stripeMethod({
method: 'POST',
fullPath: '/v1/issuing/transactions/{transaction}',
}),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/issuing/transactions',
methodType: 'list',
}),
});