Rocky_Mountain_Vending/.pnpm-store/v10/files/13/3961b07f47a8ac97fd31caf07723fde229fa525dec9eeefe81047167227ae9c3e0f7b79e6347646dd18323f78fcdc268d5f2094aefc16fcd0b089bdb7ca4c6
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

26 lines
958 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../../StripeResource.js';
const stripeMethod = StripeResource.method;
export const Meters = StripeResource.extend({
create: stripeMethod({ method: 'POST', fullPath: '/v1/billing/meters' }),
retrieve: stripeMethod({ method: 'GET', fullPath: '/v1/billing/meters/{id}' }),
update: stripeMethod({ method: 'POST', fullPath: '/v1/billing/meters/{id}' }),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/billing/meters',
methodType: 'list',
}),
deactivate: stripeMethod({
method: 'POST',
fullPath: '/v1/billing/meters/{id}/deactivate',
}),
listEventSummaries: stripeMethod({
method: 'GET',
fullPath: '/v1/billing/meters/{id}/event_summaries',
methodType: 'list',
}),
reactivate: stripeMethod({
method: 'POST',
fullPath: '/v1/billing/meters/{id}/reactivate',
}),
});