Rocky_Mountain_Vending/.pnpm-store/v10/files/87/00907516cb190ed1450814f5aa7362add37a7dd8e8e683b0aa4b3987fd7d5470cceaed079f1a27885b43433a56ce9f9709108fff237ffdb9a8babc83d02317
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

23 lines
770 B
Text

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