Rocky_Mountain_Vending/.pnpm-store/v10/files/9c/c2d555db06351cb70bf60b5ff07eecd6baf568258e577bbb21d02c44f5c6ea8e0bb61cd74bc64f6437c760c6269b6f1dd813c576872b1c4d31189dcf4beafa
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

30 lines
1,023 B
Text

"use strict";
// File generated from our OpenAPI spec
Object.defineProperty(exports, "__esModule", { value: true });
exports.CreditGrants = void 0;
const StripeResource_js_1 = require("../../StripeResource.js");
const stripeMethod = StripeResource_js_1.StripeResource.method;
exports.CreditGrants = StripeResource_js_1.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',
}),
});