Rocky_Mountain_Vending/.pnpm-store/v10/files/ec/5b47635c456d8e756f8f9538b2885fa56dee9d442de71f267dc5eae2337df7d9e3e5642e1f493bf056dde655be1daf213a4d077dc62d52f440c79ba3428e38
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

19 lines
641 B
Text

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