Rocky_Mountain_Vending/.pnpm-store/v10/files/19/453ba8d88d9c0d28efd083690b4ad0407a1c22803ac0877e6ffe19791724d8e0a70918af1b1f21830c3dbf9d2a9d2192b31718f34c8f9c649fae0eab640e05
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

24 lines
825 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../../StripeResource.js';
const stripeMethod = StripeResource.method;
export const Alerts = StripeResource.extend({
create: stripeMethod({ method: 'POST', fullPath: '/v1/billing/alerts' }),
retrieve: stripeMethod({ method: 'GET', fullPath: '/v1/billing/alerts/{id}' }),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/billing/alerts',
methodType: 'list',
}),
activate: stripeMethod({
method: 'POST',
fullPath: '/v1/billing/alerts/{id}/activate',
}),
archive: stripeMethod({
method: 'POST',
fullPath: '/v1/billing/alerts/{id}/archive',
}),
deactivate: stripeMethod({
method: 'POST',
fullPath: '/v1/billing/alerts/{id}/deactivate',
}),
});