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

30 lines
932 B
Text

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