Rocky_Mountain_Vending/.pnpm-store/v10/files/ce/004fd5a56a2ed33e70ac9ddaeed88c81fd4c8d21e664a4dfc6049532dc6c1811d568fac0a89dae0019ef2b5f53fffaf89827c32f140bd3c62c633517e4baac
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

15 lines
692 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../StripeResource.js';
const stripeMethod = StripeResource.method;
export const EphemeralKeys = StripeResource.extend({
create: stripeMethod({
method: 'POST',
fullPath: '/v1/ephemeral_keys',
validator: (data, options) => {
if (!options.headers || !options.headers['Stripe-Version']) {
throw new Error('Passing apiVersion in a separate options hash is required to create an ephemeral key. See https://stripe.com/docs/api/versioning?lang=node');
}
},
}),
del: stripeMethod({ method: 'DELETE', fullPath: '/v1/ephemeral_keys/{key}' }),
});