Rocky_Mountain_Vending/.pnpm-store/v10/files/26/eccbc7ee595e928706bbd0552075bee386a7a80ce9bbd4235e5305c0d9840a9600deadf7a782479d2af76aa756be2b061efd7a7e7c990c2beaa57d0c9ad516
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

27 lines
874 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../../StripeResource.js';
const stripeMethod = StripeResource.method;
export const CreditGrants = StripeResource.extend({
create: stripeMethod({ method: 'POST', fullPath: '/v1/billing/credit_grants' }),
retrieve: stripeMethod({
method: 'GET',
fullPath: '/v1/billing/credit_grants/{id}',
}),
update: stripeMethod({
method: 'POST',
fullPath: '/v1/billing/credit_grants/{id}',
}),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/billing/credit_grants',
methodType: 'list',
}),
expire: stripeMethod({
method: 'POST',
fullPath: '/v1/billing/credit_grants/{id}/expire',
}),
voidGrant: stripeMethod({
method: 'POST',
fullPath: '/v1/billing/credit_grants/{id}/void',
}),
});