Rocky_Mountain_Vending/.pnpm-store/v10/files/03/d02d94b50d9f4b23c3a1ee9635db9c0394156742c53ec57c314a40df4849d0e86c96f9a6ebc35e3ed432f36ac9e1c3a303e9d63c32eb2ebb3d7fc2d8f0963c
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

16 lines
578 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../../StripeResource.js';
const stripeMethod = StripeResource.method;
export const Secrets = StripeResource.extend({
create: stripeMethod({ method: 'POST', fullPath: '/v1/apps/secrets' }),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/apps/secrets',
methodType: 'list',
}),
deleteWhere: stripeMethod({
method: 'POST',
fullPath: '/v1/apps/secrets/delete',
}),
find: stripeMethod({ method: 'GET', fullPath: '/v1/apps/secrets/find' }),
});