Rocky_Mountain_Vending/.pnpm-store/v10/files/20/4d9f3c85012b0acb23b699e5e38488ab197eb7f1b83c9d8da49dae607f28491c8548be050416de6d223d4496f9900b16dbe92cd26a8adb1fc58181ef183b0e
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

38 lines
1.1 KiB
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../../../StripeResource.js';
const stripeMethod = StripeResource.method;
export const EventDestinations = StripeResource.extend({
create: stripeMethod({
method: 'POST',
fullPath: '/v2/core/event_destinations',
}),
retrieve: stripeMethod({
method: 'GET',
fullPath: '/v2/core/event_destinations/{id}',
}),
update: stripeMethod({
method: 'POST',
fullPath: '/v2/core/event_destinations/{id}',
}),
list: stripeMethod({
method: 'GET',
fullPath: '/v2/core/event_destinations',
methodType: 'list',
}),
del: stripeMethod({
method: 'DELETE',
fullPath: '/v2/core/event_destinations/{id}',
}),
disable: stripeMethod({
method: 'POST',
fullPath: '/v2/core/event_destinations/{id}/disable',
}),
enable: stripeMethod({
method: 'POST',
fullPath: '/v2/core/event_destinations/{id}/enable',
}),
ping: stripeMethod({
method: 'POST',
fullPath: '/v2/core/event_destinations/{id}/ping',
}),
});