Rocky_Mountain_Vending/.pnpm-store/v10/files/2c/120489ba9f9d22cc408c6e710beb47f476e4c153bcb10010d2f975801eb08bdab8b004676ddbeba3ebe95218fccb27c06a2e05c64e3266f7d4d0a2a632c129
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

41 lines
1.3 KiB
Text

"use strict";
// File generated from our OpenAPI spec
Object.defineProperty(exports, "__esModule", { value: true });
exports.EventDestinations = void 0;
const StripeResource_js_1 = require("../../../StripeResource.js");
const stripeMethod = StripeResource_js_1.StripeResource.method;
exports.EventDestinations = StripeResource_js_1.StripeResource.extend({
create: stripeMethod({
method: 'POST',
fullPath: '/v2/core/event_destinations',
}),
retrieve: stripeMethod({
method: 'GET',
fullPath: '/v2/core/event_destinations/{id}',
}),
update: stripeMethod({
method: 'POST',
fullPath: '/v2/core/event_destinations/{id}',
}),
list: stripeMethod({
method: 'GET',
fullPath: '/v2/core/event_destinations',
methodType: 'list',
}),
del: stripeMethod({
method: 'DELETE',
fullPath: '/v2/core/event_destinations/{id}',
}),
disable: stripeMethod({
method: 'POST',
fullPath: '/v2/core/event_destinations/{id}/disable',
}),
enable: stripeMethod({
method: 'POST',
fullPath: '/v2/core/event_destinations/{id}/enable',
}),
ping: stripeMethod({
method: 'POST',
fullPath: '/v2/core/event_destinations/{id}/ping',
}),
});