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>
21 lines
841 B
Text
21 lines
841 B
Text
"use strict";
|
|
// ResourceNamespace allows you to create nested resources, i.e. `stripe.issuing.cards`.
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.resourceNamespace = void 0;
|
|
// It also works recursively, so you could do i.e. `stripe.billing.invoicing.pay`.
|
|
function ResourceNamespace(stripe, resources) {
|
|
for (const name in resources) {
|
|
if (!Object.prototype.hasOwnProperty.call(resources, name)) {
|
|
continue;
|
|
}
|
|
const camelCaseName = name[0].toLowerCase() + name.substring(1);
|
|
const resource = new resources[name](stripe);
|
|
this[camelCaseName] = resource;
|
|
}
|
|
}
|
|
function resourceNamespace(namespace, resources) {
|
|
return function (stripe) {
|
|
return new ResourceNamespace(stripe, resources);
|
|
};
|
|
}
|
|
exports.resourceNamespace = resourceNamespace;
|