Rocky_Mountain_Vending/.pnpm-store/v10/files/f0/a4ce236b92f2f670917e6a53837eb43fe04fdad386157658cf5cb6d9380b25f328afbe1d5d145cc2b877011606b293e18a2c5059a743fc7797dd9ad6c2f08b
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

34 lines
1.1 KiB
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../../StripeResource.js';
const stripeMethod = StripeResource.method;
export const FinancialAccounts = StripeResource.extend({
create: stripeMethod({
method: 'POST',
fullPath: '/v1/treasury/financial_accounts',
}),
retrieve: stripeMethod({
method: 'GET',
fullPath: '/v1/treasury/financial_accounts/{financial_account}',
}),
update: stripeMethod({
method: 'POST',
fullPath: '/v1/treasury/financial_accounts/{financial_account}',
}),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/treasury/financial_accounts',
methodType: 'list',
}),
close: stripeMethod({
method: 'POST',
fullPath: '/v1/treasury/financial_accounts/{financial_account}/close',
}),
retrieveFeatures: stripeMethod({
method: 'GET',
fullPath: '/v1/treasury/financial_accounts/{financial_account}/features',
}),
updateFeatures: stripeMethod({
method: 'POST',
fullPath: '/v1/treasury/financial_accounts/{financial_account}/features',
}),
});